diff --git a/.gitignore b/.gitignore index 8d86b9587..9e6504184 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,7 @@ include/jquery-1.4.2.min.js favicon.* home.html addon +*.orig *~ robots.txt @@ -57,4 +58,4 @@ venv/ /view/asset #ignore config files from JetBrains -/.idea \ No newline at end of file +/.idea diff --git a/boot.php b/boot.php index 1ca8b8d8d..ae2f4b1a0 100644 --- a/boot.php +++ b/boot.php @@ -1018,114 +1018,6 @@ function get_max_import_size() return (x($a->config, 'max_import_size') ? $a->config['max_import_size'] : 0); } - -function current_theme() -{ - $app_base_themes = ['duepuntozero', 'dispy', 'quattro']; - - $a = get_app(); - - $page_theme = null; - - // Find the theme that belongs to the user whose stuff we are looking at - - if ($a->profile_uid && ($a->profile_uid != local_user())) { - $r = q( - "select theme from user where uid = %d limit 1", - intval($a->profile_uid) - ); - if (DBM::is_result($r)) { - $page_theme = $r[0]['theme']; - } - } - - // Allow folks to over-rule user themes and always use their own on their own site. - // This works only if the user is on the same server - - if ($page_theme && local_user() && (local_user() != $a->profile_uid)) { - if (PConfig::get(local_user(), 'system', 'always_my_theme')) { - $page_theme = null; - } - } - -// $mobile_detect = new Mobile_Detect(); -// $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet(); - $is_mobile = $a->is_mobile || $a->is_tablet; - - $standard_system_theme = Config::get('system', 'theme', ''); - $standard_theme_name = ((isset($_SESSION) && x($_SESSION, 'theme')) ? $_SESSION['theme'] : $standard_system_theme); - - if ($is_mobile) { - if (isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) { - $theme_name = $standard_theme_name; - } else { - $system_theme = Config::get('system', 'mobile-theme', ''); - if ($system_theme == '') { - $system_theme = $standard_system_theme; - } - $theme_name = ((isset($_SESSION) && x($_SESSION, 'mobile-theme')) ? $_SESSION['mobile-theme'] : $system_theme); - - if ($theme_name === '---') { - // user has selected to have the mobile theme be the same as the normal one - $theme_name = $standard_theme_name; - - if ($page_theme) { - $theme_name = $page_theme; - } - } - } - } else { - $theme_name = $standard_theme_name; - - if ($page_theme) { - $theme_name = $page_theme; - } - } - - if ($theme_name - && (file_exists('view/theme/' . $theme_name . '/style.css') - || file_exists('view/theme/' . $theme_name . '/style.php')) - ) { - return($theme_name); - } - - foreach ($app_base_themes as $t) { - if (file_exists('view/theme/' . $t . '/style.css') - || file_exists('view/theme/' . $t . '/style.php') - ) { - return($t); - } - } - - $fallback = array_merge(glob('view/theme/*/style.css'), glob('view/theme/*/style.php')); - if (count($fallback)) { - return (str_replace('view/theme/', '', substr($fallback[0], 0, -10))); - } - - /// @TODO No final return statement? -} - -/** - * @brief Return full URL to theme which is currently in effect. - * - * Provide a sane default if nothing is chosen or the specified theme does not exist. - * - * @return string - */ -function current_theme_url() -{ - $a = get_app(); - - $t = current_theme(); - - $opts = (($a->profile_uid) ? '?f=&puid=' . $a->profile_uid : ''); - if (file_exists('view/theme/' . $t . '/style.php')) { - return('view/theme/' . $t . '/style.pcss' . $opts); - } - - return('view/theme/' . $t . '/style.css'); -} - function feed_birthday($uid, $tz) { /** @@ -1292,7 +1184,7 @@ function get_server() $server = Config::get("system", "directory"); if ($server == "") { - $server = "http://dir.friendica.social"; + $server = "https://dir.friendica.social"; } return($server); diff --git a/include/conversation.php b/include/conversation.php index 41f10959b..0d6f852c8 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -470,11 +470,15 @@ These Fields are not added below (yet). They are here to for bug search. * @brief SQL join for contacts that are needed for displaying items */ function item_joins() { - return "STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND - (NOT `contact`.`blocked` OR `contact`.`pending`) + return sprintf("STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id` + AND NOT `contact`.`blocked` + AND ((NOT `contact`.`readonly` AND NOT `contact`.`pending` AND (`contact`.`rel` IN (%s, %s))) + OR `contact`.`self` OR (`item`.`id` != `item`.`parent`)) LEFT JOIN `contact` AS `author` ON `author`.`id`=`item`.`author-id` LEFT JOIN `contact` AS `owner` ON `owner`.`id`=`item`.`owner-id` - LEFT JOIN `event` ON `event-id` = `event`.`id`"; + LEFT JOIN `event` ON `event-id` = `event`.`id`", + CONTACT_IS_SHARING, CONTACT_IS_FRIEND + ); } /** diff --git a/include/dba.php b/include/dba.php index d2f631c06..1d3b43214 100644 --- a/include/dba.php +++ b/include/dba.php @@ -1,5 +1,6 @@ mode == App::MODE_INSTALL) { // server has to be a non-empty string that is not 'localhost' and not an IP if (strlen($server) && ($server !== 'localhost') && filter_var($server, FILTER_VALIDATE_IP) === false) { if (! dns_get_record($server, DNS_A + DNS_CNAME)) { @@ -93,6 +94,7 @@ class dba { // No suitable SQL driver was found. if (!self::$connected) { + self::$driver = null; self::$db = null; } $a->save_timestamp($stamp1, "network"); diff --git a/include/text.php b/include/text.php index 5e189d58f..4c9a8864d 100644 --- a/include/text.php +++ b/include/text.php @@ -513,7 +513,7 @@ function load_view_file($s) { return $content; } - $theme = current_theme(); + $theme = $a->getCurrentTheme(); if (file_exists("$d/theme/$theme/$b")) { $stamp1 = microtime(true); @@ -637,7 +637,7 @@ function logger($msg, $level = 0) { // turn off logger in install mode if ( - $a->module == 'install' + $a->mode == App::MODE_INSTALL || !dba::$connected ) { return; @@ -709,7 +709,7 @@ function dlogger($msg, $level = 0) { // turn off logger in install mode if ( - $a->module == 'install' + $a->mode == App::MODE_INSTALL || !dba::$connected ) { return; @@ -1249,7 +1249,7 @@ function prepare_body(array &$item, $attach = false, $is_preview = false) // Compile eventual content filter reasons $filter_reasons = []; - if (!$is_preview && !($item['self'] && local_user() == $item['uid'])) { + if (!$is_preview && public_contact() != $item['author-id']) { if (!empty($item['content-warning']) && (!local_user() || !PConfig::get(local_user(), 'system', 'disable_cw', false))) { $filter_reasons[] = L10n::t('Content warning: %s', $item['content-warning']); } diff --git a/index.php b/index.php index 2f23ea791..aeda99982 100644 --- a/index.php +++ b/index.php @@ -31,16 +31,8 @@ BaseObject::setApp($a); // The value is set to "true" by default in boot.php $a->backend = false; -/** - * Load the configuration file which contains our DB credentials. - * Ignore errors. If the file doesn't exist or is empty, we are running in - * installation mode. - */ - -$install = ((file_exists('.htconfig.php') && filesize('.htconfig.php')) ? false : true); - -// Only load config if found, don't surpress errors -if (!$install) { +// Only load config if found, don't suppress errors +if (!$a->mode == App::MODE_INSTALL) { include ".htconfig.php"; } @@ -50,7 +42,7 @@ if (!$install) { require_once "include/dba.php"; -if (!$install) { +if (!$a->mode == App::MODE_INSTALL) { $result = dba::connect($db_host, $db_user, $db_pass, $db_data); unset($db_host, $db_user, $db_pass, $db_data); @@ -85,7 +77,7 @@ if (!$install) { Addon::loadHooks(); Addon::callHooks('init_1'); - $maintenance = Config::get('system', 'maintenance'); + $a->checkMaintenanceMode(); } $lang = L10n::getBrowserLanguage(); @@ -129,7 +121,7 @@ if ((x($_SESSION, 'language')) && ($_SESSION['language'] !== $lang)) { L10n::loadTranslationTable($lang); } -if ((x($_GET, 'zrl')) && (!$install && !$maintenance)) { +if ((x($_GET, 'zrl')) && $a->mode == App::MODE_NORMAL) { // Only continue when the given profile link seems valid // Valid profile links contain a path with "/profile/" and no query parameters if ((parse_url($_GET['zrl'], PHP_URL_QUERY) == "") @@ -181,9 +173,9 @@ $_SESSION['last_updated'] = defaults($_SESSION, 'last_updated', []); // in install mode, any url loads install module // but we need "view" module for stylesheet -if ($install && $a->module!="view") { +if ($a->mode == App::MODE_INSTALL && $a->module!="view") { $a->module = 'install'; -} elseif ($maintenance && $a->module!="view") { +} elseif ($a->mode == App::MODE_MAINTENANCE && $a->module!="view") { $a->module = 'maintenance'; } else { check_url($a); @@ -330,7 +322,7 @@ if (strlen($a->module)) { /** * Load current theme info */ -$theme_info_file = "view/theme/".current_theme()."/theme.php"; +$theme_info_file = 'view/theme/' . $a->getCurrentTheme() . '/theme.php'; if (file_exists($theme_info_file)) { require_once $theme_info_file; } @@ -342,7 +334,7 @@ if (! x($a->page, 'content')) { $a->page['content'] = ''; } -if (!$install && !$maintenance) { +if ($a->mode == App::MODE_NORMAL) { Addon::callHooks('page_content_top', $a->page['content']); } @@ -363,8 +355,8 @@ if ($a->module_loaded) { $func($a); } - if (function_exists(str_replace('-', '_', current_theme()) . '_init')) { - $func = str_replace('-', '_', current_theme()) . '_init'; + if (function_exists(str_replace('-', '_', $a->getCurrentTheme()) . '_init')) { + $func = str_replace('-', '_', $a->getCurrentTheme()) . '_init'; $func($a); } @@ -402,8 +394,8 @@ if ($a->module_loaded) { $a->page['content'] .= $arr['content']; } - if (function_exists(str_replace('-', '_', current_theme()) . '_content_loaded')) { - $func = str_replace('-', '_', current_theme()) . '_content_loaded'; + if (function_exists(str_replace('-', '_', $a->getCurrentTheme()) . '_content_loaded')) { + $func = str_replace('-', '_', $a->getCurrentTheme()) . '_content_loaded'; $func($a); } } @@ -478,7 +470,7 @@ if ($a->is_mobile || $a->is_tablet) { */ if (!$a->theme['stylesheet']) { - $stylesheet = current_theme_url(); + $stylesheet = $a->getCurrentThemeStylesheetPath(); } else { $stylesheet = $a->theme['stylesheet']; } diff --git a/mod/admin.php b/mod/admin.php index 7749cff6d..3090376be 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -1120,6 +1120,7 @@ function admin_page_site_post(App $a) } Config::set('system', 'language', $language); Config::set('system', 'theme', $theme); + Theme::install($theme); if ($theme_mobile == '---') { Config::delete('system', 'mobile-theme'); diff --git a/mod/install.php b/mod/install.php index eb740c7b6..4596f9a25 100644 --- a/mod/install.php +++ b/mod/install.php @@ -5,11 +5,9 @@ use Friendica\App; use Friendica\Core\L10n; +use Friendica\Core\Install; use Friendica\Core\System; use Friendica\Database\DBM; -use Friendica\Database\DBStructure; -use Friendica\Object\Image; -use Friendica\Util\Network; use Friendica\Util\Temporal; $install_wizard_pass = 1; @@ -27,6 +25,8 @@ function install_init(App $a) { $a->config['system']['theme'] = "../install"; $a->theme['stylesheet'] = System::baseUrl()."/view/install/style.css"; + Install::setInstallMode(); + global $install_wizard_pass; if (x($_POST, 'pass')) { $install_wizard_pass = intval($_POST['pass']); @@ -51,7 +51,7 @@ function install_post(App $a) { $phpath = notags(trim($_POST['phpath'])); require_once("include/dba.php"); - if (!dba::connect($dbhost, $dbuser, $dbpass, $dbdata, true)) { + if (!dba::connect($dbhost, $dbuser, $dbpass, $dbdata)) { $a->data['db_conn_failed'] = true; } @@ -70,36 +70,9 @@ function install_post(App $a) { $rino = 1; // connect to db - dba::connect($dbhost, $dbuser, $dbpass, $dbdata, true); + dba::connect($dbhost, $dbuser, $dbpass, $dbdata); - $tpl = get_markup_template('htconfig.tpl'); - $txt = replace_macros($tpl,[ - '$dbhost' => $dbhost, - '$dbuser' => $dbuser, - '$dbpass' => $dbpass, - '$dbdata' => $dbdata, - '$timezone' => $timezone, - '$language' => $language, - '$urlpath' => $urlpath, - '$phpath' => $phpath, - '$adminmail' => $adminmail, - '$rino' => $rino - ]); - - - $result = file_put_contents('.htconfig.php', $txt); - if (! $result) { - $a->data['txt'] = $txt; - } - - $errors = load_database(); - - - if ($errors) { - $a->data['db_failed'] = $errors; - } else { - $a->data['db_installed'] = true; - } + Install::install($urlpath, $dbhost, $dbuser, $dbpass, $dbdata, $phpath, $timezone, $language, $adminmail, $rino); return; break; @@ -167,37 +140,11 @@ function install_content(App $a) { switch ($install_wizard_pass) { case 1: { // System check - - $checks = []; - - check_funcs($checks); - - check_imagik($checks); - - check_htconfig($checks); - - check_smarty3($checks); - - check_keys($checks); - if (x($_POST, 'phpath')) { $phpath = notags(trim($_POST['phpath'])); } - check_php($phpath, $checks); - - check_htaccess($checks); - - /// @TODO Maybe move this out? - function check_passed($v, $c) { - if ($c['required']) { - $v = $v && $c['status']; - } - return $v; - } - $checkspassed = array_reduce($checks, "check_passed", true); - - + list($checks, $checkspassed) = Install::check($phpath); $tpl = get_markup_template('install_checks.tpl'); $o .= replace_macros($tpl, [ @@ -296,238 +243,6 @@ function install_content(App $a) { } } -/** - * checks : array passed to template - * title : string - * status : boolean - * required : boolean - * help : string optional - */ -function check_add(&$checks, $title, $status, $required, $help) { - $checks[] = [ - 'title' => $title, - 'status' => $status, - 'required' => $required, - 'help' => $help, - ]; -} - -function check_php(&$phpath, &$checks) { - $passed = $passed2 = $passed3 = false; - if (strlen($phpath)) { - $passed = file_exists($phpath); - } else { - $phpath = trim(shell_exec('which php')); - $passed = strlen($phpath); - } - $help = ""; - if (!$passed) { - $help .= L10n::t('Could not find a command line version of PHP in the web server PATH.'). EOL; - $help .= L10n::t("If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'") . EOL; - $help .= EOL . EOL; - $tpl = get_markup_template('field_input.tpl'); - $help .= replace_macros($tpl, [ - '$field' => ['phpath', L10n::t('PHP executable path'), $phpath, L10n::t('Enter full path to php executable. You can leave this blank to continue the installation.')], - ]); - $phpath = ""; - } - - check_add($checks, L10n::t('Command line PHP').($passed?" ($phpath)":""), $passed, false, $help); - - if ($passed) { - $cmd = "$phpath -v"; - $result = trim(shell_exec($cmd)); - $passed2 = ( strpos($result, "(cli)") !== false); - list($result) = explode("\n", $result); - $help = ""; - if (!$passed2) { - $help .= L10n::t("PHP executable is not the php cli binary \x28could be cgi-fgci version\x29"). EOL; - $help .= L10n::t('Found PHP version: ')."$result"; - } - check_add($checks, L10n::t('PHP cli binary'), $passed2, true, $help); - } - - - if ($passed2) { - $str = autoname(8); - $cmd = "$phpath testargs.php $str"; - $result = trim(shell_exec($cmd)); - $passed3 = $result == $str; - $help = ""; - if (!$passed3) { - $help .= L10n::t('The command line version of PHP on your system does not have "register_argc_argv" enabled.'). EOL; - $help .= L10n::t('This is required for message delivery to work.'); - } - check_add($checks, L10n::t('PHP register_argc_argv'), $passed3, true, $help); - } - - -} - -function check_keys(&$checks) { - - $help = ''; - - $res = false; - - if (function_exists('openssl_pkey_new')) { - $res = openssl_pkey_new([ - 'digest_alg' => 'sha1', - 'private_key_bits' => 4096, - 'encrypt_key' => false - ]); - } - - // Get private key - - if (! $res) { - $help .= L10n::t('Error: the "openssl_pkey_new" function on this system is not able to generate encryption keys'). EOL; - $help .= L10n::t('If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".'); - } - check_add($checks, L10n::t('Generate encryption keys'), $res, true, $help); - -} - - -function check_funcs(&$checks) { - $ck_funcs = []; - check_add($ck_funcs, L10n::t('libCurl PHP module'), true, true, ""); - check_add($ck_funcs, L10n::t('GD graphics PHP module'), true, true, ""); - check_add($ck_funcs, L10n::t('OpenSSL PHP module'), true, true, ""); - check_add($ck_funcs, L10n::t('PDO or MySQLi PHP module'), true, true, ""); - check_add($ck_funcs, L10n::t('mb_string PHP module'), true, true, ""); - check_add($ck_funcs, L10n::t('XML PHP module'), true, true, ""); - check_add($ck_funcs, L10n::t('iconv PHP module'), true, true, ""); - check_add($ck_funcs, L10n::t('POSIX PHP module'), true, true, ""); - - if (function_exists('apache_get_modules')) { - if (! in_array('mod_rewrite',apache_get_modules())) { - check_add($ck_funcs, L10n::t('Apache mod_rewrite module'), false, true, L10n::t('Error: Apache webserver mod-rewrite module is required but not installed.')); - } else { - check_add($ck_funcs, L10n::t('Apache mod_rewrite module'), true, true, ""); - } - } - - if (! function_exists('curl_init')) { - $ck_funcs[0]['status'] = false; - $ck_funcs[0]['help'] = L10n::t('Error: libCURL PHP module required but not installed.'); - } - if (! function_exists('imagecreatefromjpeg')) { - $ck_funcs[1]['status'] = false; - $ck_funcs[1]['help'] = L10n::t('Error: GD graphics PHP module with JPEG support required but not installed.'); - } - if (! function_exists('openssl_public_encrypt')) { - $ck_funcs[2]['status'] = false; - $ck_funcs[2]['help'] = L10n::t('Error: openssl PHP module required but not installed.'); - } - if (! function_exists('mysqli_connect') && !class_exists('pdo')) { - $ck_funcs[3]['status'] = false; - $ck_funcs[3]['help'] = L10n::t('Error: PDO or MySQLi PHP module required but not installed.'); - } - if (!function_exists('mysqli_connect') && class_exists('pdo') && !in_array('mysql', PDO::getAvailableDrivers())) { - $ck_funcs[3]['status'] = false; - $ck_funcs[3]['help'] = L10n::t('Error: The MySQL driver for PDO is not installed.'); - } - if (! function_exists('mb_strlen')) { - $ck_funcs[4]['status'] = false; - $ck_funcs[4]['help'] = L10n::t('Error: mb_string PHP module required but not installed.'); - } - if (! function_exists('iconv_strlen')) { - $ck_funcs[6]['status'] = false; - $ck_funcs[6]['help'] = L10n::t('Error: iconv PHP module required but not installed.'); - } - if (! function_exists('posix_kill')) { - $ck_funcs[7]['status'] = false; - $ck_funcs[7]['help'] = L10n::t('Error: POSIX PHP module required but not installed.'); - } - - $checks = array_merge($checks, $ck_funcs); - - // check for XML DOM Documents being able to be generated - try { - $xml = new DOMDocument(); - } catch (Exception $e) { - $ck_funcs[5]['status'] = false; - $ck_funcs[5]['help'] = L10n::t('Error, XML PHP module required but not installed.'); - } -} - - -function check_htconfig(&$checks) { - $status = true; - $help = ""; - if ((file_exists('.htconfig.php') && !is_writable('.htconfig.php')) || - (!file_exists('.htconfig.php') && !is_writable('.'))) { - - $status = false; - $help = L10n::t('The web installer needs to be able to create a file called ".htconfig.php" in the top folder of your web server and it is unable to do so.') .EOL; - $help .= L10n::t('This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can.').EOL; - $help .= L10n::t('At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder.').EOL; - $help .= L10n::t('You can alternatively skip this procedure and perform a manual installation. Please see the file "INSTALL.txt" for instructions.').EOL; - } - - check_add($checks, L10n::t('.htconfig.php is writable'), $status, false, $help); - -} - -function check_smarty3(&$checks) { - $status = true; - $help = ""; - if (!is_writable('view/smarty3')) { - - $status = false; - $help = L10n::t('Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering.') .EOL; - $help .= L10n::t('In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder.').EOL; - $help .= L10n::t("Please ensure that the user that your web server runs as \x28e.g. www-data\x29 has write access to this folder.").EOL; - $help .= L10n::t("Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files \x28.tpl\x29 that it contains.").EOL; - } - - check_add($checks, L10n::t('view/smarty3 is writable'), $status, true, $help); - -} - -function check_htaccess(&$checks) { - $status = true; - $help = ""; - if (function_exists('curl_init')) { - $test = Network::fetchUrl(System::baseUrl()."/install/testrewrite"); - - if ($test != "ok") { - $test = Network::fetchUrl(normalise_link(System::baseUrl()."/install/testrewrite")); - } - - if ($test != "ok") { - $status = false; - $help = L10n::t('Url rewrite in .htaccess is not working. Check your server configuration.'); - } - check_add($checks, L10n::t('Url rewrite is working'), $status, true, $help); - } else { - // cannot check modrewrite if libcurl is not installed - /// @TODO Maybe issue warning here? - } -} - -function check_imagik(&$checks) { - $imagick = false; - $gif = false; - - if (class_exists('Imagick')) { - $imagick = true; - $supported = Image::supportedTypes(); - if (array_key_exists('image/gif', $supported)) { - $gif = true; - } - } - if ($imagick == false) { - check_add($checks, L10n::t('ImageMagick PHP extension is not installed'), $imagick, false, ""); - } else { - check_add($checks, L10n::t('ImageMagick PHP extension is installed'), $imagick, false, ""); - if ($imagick) { - check_add($checks, L10n::t('ImageMagick supports GIF'), $gif, false, ""); - } - } -} - function manual_config(App $a) { $data = htmlentities($a->data['txt'],ENT_COMPAT, 'UTF-8'); $o = L10n::t('The database configuration file ".htconfig.php" could not be written. Please use the enclosed text to create a configuration file in your web server root.'); @@ -544,12 +259,6 @@ function load_database_rem($v, $i) { } } -function load_database() { - $errors = DBStructure::update(false, true, true); - - return $errors; -} - function what_next() { $baseurl = System::baseUrl(); return diff --git a/mod/network.php b/mod/network.php index a35f0619b..87594a77c 100644 --- a/mod/network.php +++ b/mod/network.php @@ -836,14 +836,10 @@ function networkThreadedView(App $a, $update, $parent) STRAIGHT_JOIN (SELECT `oid` FROM `term` WHERE `term` IN (SELECT SUBSTR(`term`, 2) FROM `search` WHERE `uid` = ? AND `term` LIKE '#%') AND `otype` = ? AND `type` = ? AND `uid` = 0) AS `term` ON `item`.`id` = `term`.`oid` - STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`author-id` - AND (`item`.`parent-uri` != `item`.`uri` - OR `contact`.`uid` = `item`.`uid` AND `contact`.`self` - OR `contact`.`rel` IN (?, ?) AND NOT `contact`.`readonly`) + STRAIGHT_JOIN `contact` AS `author` ON `author`.`id` = `item`.`author-id` WHERE `item`.`uid` = 0 AND `item`.$ordering < ? AND `item`.$ordering > ? - AND NOT `contact`.`hidden` AND NOT `contact`.`blocked`" . $sql_tag_nets, + AND NOT `author`.`hidden` AND NOT `author`.`blocked`" . $sql_tag_nets, local_user(), TERM_OBJ_POST, TERM_HASHTAG, - CONTACT_IS_SHARING, CONTACT_IS_FRIEND, $top_limit, $bottom_limit); $data = dba::inArray($items); @@ -860,7 +856,12 @@ function networkThreadedView(App $a, $update, $parent) $s[$item['uri']] = $item; } foreach ($data as $item) { - $s[$item['uri']] = $item; + // Don't show hash tag posts from blocked or ignored contacts + $condition = ["`nurl` = ? AND `uid` = ? AND (`blocked` OR `readonly`)", + normalise_link($item['author-link']), local_user()]; + if (!dba::exists('contact', $condition)) { + $s[$item['uri']] = $item; + } } $r = $s; } diff --git a/mod/settings.php b/mod/settings.php index aec2b2a05..3102fef23 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -12,6 +12,7 @@ use Friendica\Core\Config; use Friendica\Core\L10n; use Friendica\Core\PConfig; use Friendica\Core\System; +use Friendica\Core\Theme; use Friendica\Core\Worker; use Friendica\Database\DBM; use Friendica\Model\Contact; @@ -354,6 +355,7 @@ function settings_post(App $a) theme_post($a); } } + Theme::install($theme); $r = q("UPDATE `user` SET `theme` = '%s' WHERE `uid` = %d", dbesc($theme), diff --git a/src/App.php b/src/App.php index d76351b97..f08f6f66d 100644 --- a/src/App.php +++ b/src/App.php @@ -32,6 +32,10 @@ require_once 'include/text.php'; */ class App { + const MODE_NORMAL = 0; + const MODE_INSTALL = 1; + const MODE_MAINTENANCE = 2; + public $module_loaded = false; public $module_class = null; public $query_string; @@ -52,6 +56,7 @@ class App public $argv; public $argc; public $module; + public $mode = App::MODE_NORMAL; public $pager; public $strings; public $basepath; @@ -288,6 +293,14 @@ class App // Register template engines $this->register_template_engine('Friendica\Render\FriendicaSmartyEngine'); + /** + * Load the configuration file which contains our DB credentials. + * Ignore errors. If the file doesn't exist or is empty, we are running in + * installation mode. * + */ + $this->mode = ((file_exists('.htconfig.php') && filesize('.htconfig.php')) ? App::MODE_NORMAL : App::MODE_INSTALL); + + self::$a = $this; } @@ -1067,4 +1080,100 @@ class App return $sender_email; } + + /** + * @note Checks, if the App is in the Maintenance-Mode + * + * @return boolean + */ + public function checkMaintenanceMode() + { + if (Config::get('system', 'maintenance')) { + $this->mode = App::MODE_MAINTENANCE; + return true; + } + + return false; + } + + /** + * Returns the current theme name. + * + * @return string + */ + public function getCurrentTheme() + { + if (!$this->current_theme) { + $this->computeCurrentTheme(); + } + + return $this->current_theme; + } + + /** + * Computes the current theme name based on the node settings, the user settings and the device type + * + * @throws Exception + */ + private function computeCurrentTheme() + { + $system_theme = Config::get('system', 'theme'); + if (!$system_theme) { + throw new Exception(L10n::t('No system theme config value set.')); + } + + // Sane default + $this->current_theme = $system_theme; + + $allowed_themes = explode(',', Config::get('system', 'allowed_themes', $system_theme)); + + $page_theme = null; + // Find the theme that belongs to the user whose stuff we are looking at + if ($this->profile_uid && ($this->profile_uid != local_user())) { + // Allow folks to override user themes and always use their own on their own site. + // This works only if the user is on the same server + $user = dba::selectFirst('user', ['theme'], ['uid' => $this->profile_uid]); + if (DBM::is_result($user) && !PConfig::get(local_user(), 'system', 'always_my_theme')) { + $page_theme = $user['theme']; + } + } + + $user_theme = defaults($_SESSION, 'theme', $system_theme); + // Specific mobile theme override + if (($this->is_mobile || $this->is_tablet) && defaults($_SESSION, 'show-mobile', true)) { + $system_mobile_theme = Config::get('system', 'mobile-theme'); + $user_mobile_theme = defaults($_SESSION, 'mobile-theme', $system_mobile_theme); + + // --- means same mobile theme as desktop + if (!empty($user_mobile_theme) && $user_mobile_theme !== '---') { + $user_theme = $user_mobile_theme; + } + } + + if ($page_theme) { + $theme_name = $page_theme; + } else { + $theme_name = $user_theme; + } + + if ($theme_name + && in_array($theme_name, $allowed_themes) + && (file_exists('view/theme/' . $theme_name . '/style.css') + || file_exists('view/theme/' . $theme_name . '/style.php')) + ) { + $this->current_theme = $theme_name; + } + } + + /** + * @brief Return full URL to theme which is currently in effect. + * + * Provide a sane default if nothing is chosen or the specified theme does not exist. + * + * @return string + */ + public function getCurrentThemeStylesheetPath() + { + return Core\Theme::getStylesheetPath($this->getCurrentTheme()); + } } diff --git a/src/Core/Addon.php b/src/Core/Addon.php index 3adc7fc0e..50247d240 100644 --- a/src/Core/Addon.php +++ b/src/Core/Addon.php @@ -228,14 +228,15 @@ class Addon /** * @brief Calls a single hook. * - * @param string $name of the hook to call - * @param array $hook Hook data - * @param string|array &$data to transmit to the callback handler + * @param \Friendica\App $a + * @param string $name of the hook to call + * @param array $hook Hook data + * @param string|array &$data to transmit to the callback handler */ - public static function callSingleHook($a, $name, $hook, &$data = null) + public static function callSingleHook(\Friendica\App $a, $name, $hook, &$data = null) { // Don't run a theme's hook if the user isn't using the theme - if (strpos($hook[0], 'view/theme/') !== false && strpos($hook[0], 'view/theme/'.current_theme()) === false) { + if (strpos($hook[0], 'view/theme/') !== false && strpos($hook[0], 'view/theme/' . $a->getCurrentTheme()) === false) { return; } diff --git a/src/Core/Console/AutomaticInstallation.php b/src/Core/Console/AutomaticInstallation.php index 6318b19a8..e888d5a49 100644 --- a/src/Core/Console/AutomaticInstallation.php +++ b/src/Core/Console/AutomaticInstallation.php @@ -5,6 +5,7 @@ namespace Friendica\Core\Console; use Asika\SimpleConsole\Console; use dba; use Friendica\App; +use Friendica\Core\Install; require_once 'mod/install.php'; require_once 'include/dba.php'; @@ -43,6 +44,8 @@ HELP; $db_data = ''; require_once 'htconfig.php'; + Install::setInstallMode(); + $this->out(" Complete!\n\n"); // Check basic setup @@ -74,7 +77,7 @@ HELP; // Install database $this->out("Inserting data into database...\n"); - $checkResults['data'] = load_database(); + $checkResults['data'] = Install::installDatabaseStructure(); if ($checkResults['data'] !== '') { throw new \RuntimeException("ERROR: DB Database creation error. Is the DB empty?\n"); @@ -101,14 +104,14 @@ HELP; { $checks = []; - check_funcs($checks); - check_imagik($checks); - check_htconfig($checks); - check_smarty3($checks); - check_keys($checks); + Install::checkFunctions($checks); + Install::checkImagick($checks); + Install::checkHtConfig($checks); + Install::checkSmarty3($checks); + Install::checkKeys($checks); if (!empty($app->config['php_path'])) { - check_php($app->config['php_path'], $checks); + Install::checkPHP($app->config['php_path'], $checks); } else { throw new \RuntimeException(" ERROR: The php_path is not set in the config. Please check the file .htconfig.php.\n"); } @@ -135,7 +138,7 @@ HELP; ); - if (!dba::connect($db_host, $db_user, $db_pass, $db_data, true)) { + if (!dba::connect($db_host, $db_user, $db_pass, $db_data)) { $result['status'] = false; $result['help'] = 'Failed, please check your MySQL settings and credentials.'; } diff --git a/src/Core/Install.php b/src/Core/Install.php new file mode 100644 index 000000000..4ebc663e8 --- /dev/null +++ b/src/Core/Install.php @@ -0,0 +1,428 @@ +mode = App::MODE_INSTALL; + } + + /** + * Checks the current installation environment. There are optional and mandatory checks. + * + * @param string $phpath Optional path to the PHP binary (Default is 'php') + * + * @return array First element is a list of all checks and their results, + * the second element is a list of passed checks + */ + public static function check($phpath = 'php') + { + $checks = []; + + self::checkFunctions($checks); + + self::checkImagick($checks); + + self::checkHtConfig($checks); + + self::checkSmarty3($checks); + + self::checkKeys($checks); + + self::checkPHP($phpath, $checks); + + self::checkHtAccess($checks); + + $checkspassed = array_reduce($checks, + function ($v, $c) { + if ($c['require']) { + $v = $v && $c['status']; + } + return $v; + }, + true); + + return array($checks, $checkspassed); + } + + /** + * Executes the installation of Friendica in the given environment. + * - Creates `.htconfig.php` + * - Installs Database Structure + * + * @param string $urlpath Path based on the URL of Friendica (e.g. '/friendica') + * @param string $dbhost Hostname/IP of the Friendica Database + * @param string $dbuser Username of the Database connection credentials + * @param string $dbpass Password of the Database connection credentials + * @param string $dbdata Name of the Database + * @param string $phpath Path to the PHP-Binary (e.g. 'php' or '/usr/bin/php') + * @param string $timezone Timezone of the Friendica Installaton (e.g. 'Europe/Berlin') + * @param string $language 2-letter ISO 639-1 code (eg. 'en') + * @param string $adminmail Mail-Adress of the administrator + * @param int $rino Rino-enabled (1 = true, 0 = false) + */ + public static function install($urlpath, $dbhost, $dbuser, $dbpass, $dbdata, $phpath, $timezone, $language, $adminmail, $rino = 1) + { + $tpl = get_markup_template('htconfig.tpl'); + $txt = replace_macros($tpl,[ + '$dbhost' => $dbhost, + '$dbuser' => $dbuser, + '$dbpass' => $dbpass, + '$dbdata' => $dbdata, + '$timezone' => $timezone, + '$language' => $language, + '$urlpath' => $urlpath, + '$phpath' => $phpath, + '$adminmail' => $adminmail, + '$rino' => $rino + ]); + + $result = file_put_contents('.htconfig.php', $txt); + if (! $result) { + self::getApp()->data['txt'] = $txt; + } + + $errors = self::installDatabaseStructure(); + + if ($errors) { + self::getApp()->data['db_failed'] = $errors; + } else { + self::getApp()->data['db_installed'] = true; + } + } + + /** + * Adds new checks to the array $checks + * + * @param array $checks The list of all checks (by-ref parameter!) + * @param string $title The title of the current check + * @param bool $status 1 = check passed, 0 = check not passed + * @param bool $required 1 = check is mandatory, 0 = check is optional + * @param string $help A help-string for the current check + * @param string $error_msg Optional. A error message, if the current check failed + */ + private static function addCheck(&$checks, $title, $status, $required, $help, $error_msg = "") + { + $checks[] = [ + 'title' => $title, + 'status' => $status, + 'required' => $required, + 'help' => $help, + 'error_msg' => $error_msg, + ]; + } + + /** + * PHP Check + * + * Checks the PHP environment. + * + * - Checks if a PHP binary is available + * - Checks if it is the CLI version + * - Checks if "register_argc_argv" is enabled + * + * @param string $phpath Optional. The Path to the PHP-Binary + * @param array $checks The list of all checks (by-ref parameter!) + */ + public static function checkPHP(&$phpath, &$checks) + { + $passed = $passed2 = $passed3 = false; + if (strlen($phpath)) { + $passed = file_exists($phpath); + } else { + $phpath = trim(shell_exec('which php')); + $passed = strlen($phpath); + } + $help = ""; + if (!$passed) { + $help .= L10n::t('Could not find a command line version of PHP in the web server PATH.') . EOL; + $help .= L10n::t("If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'") . EOL; + $help .= EOL . EOL; + $tpl = get_markup_template('field_input.tpl'); + $help .= replace_macros($tpl, [ + '$field' => ['phpath', L10n::t('PHP executable path'), $phpath, L10n::t('Enter full path to php executable. You can leave this blank to continue the installation.')], + ]); + $phpath = ""; + } + + self::addCheck($checks, L10n::t('Command line PHP').($passed?" ($phpath)":""), $passed, false, $help); + + if ($passed) { + $cmd = "$phpath -v"; + $result = trim(shell_exec($cmd)); + $passed2 = (strpos($result, "(cli)") !== false); + list($result) = explode("\n", $result); + $help = ""; + if (!$passed2) { + $help .= L10n::t("PHP executable is not the php cli binary \x28could be cgi-fgci version\x29") . EOL; + $help .= L10n::t('Found PHP version: ') . "$result"; + } + self::addCheck($checks, L10n::t('PHP cli binary'), $passed2, true, $help); + } + + if ($passed2) { + $str = autoname(8); + $cmd = "$phpath testargs.php $str"; + $result = trim(shell_exec($cmd)); + $passed3 = $result == $str; + $help = ""; + if (!$passed3) { + $help .= L10n::t('The command line version of PHP on your system does not have "register_argc_argv" enabled.') . EOL; + $help .= L10n::t('This is required for message delivery to work.'); + } + self::addCheck($checks, L10n::t('PHP register_argc_argv'), $passed3, true, $help); + } + } + + /** + * OpenSSL Check + * + * Checks the OpenSSL Environment + * + * - Checks, if the command "openssl_pkey_new" is available + * + * @param array $checks The list of all checks (by-ref parameter!) + */ + public static function checkKeys(&$checks) + { + $help = ''; + $res = false; + + if (function_exists('openssl_pkey_new')) { + $res = openssl_pkey_new([ + 'digest_alg' => 'sha1', + 'private_key_bits' => 4096, + 'encrypt_key' => false + ]); + } + + // Get private key + if (!$res) { + $help .= L10n::t('Error: the "openssl_pkey_new" function on this system is not able to generate encryption keys') . EOL; + $help .= L10n::t('If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".'); + } + self::addCheck($checks, L10n::t('Generate encryption keys'), $res, true, $help); + } + + /** + * PHP functions Check + * + * Checks the following PHP functions + * - libCurl + * - GD Graphics + * - OpenSSL + * - PDO or MySQLi + * - mb_string + * - XML + * - iconv + * - POSIX + * + * @param array $checks The list of all checks (by-ref parameter!) + */ + public static function checkFunctions(&$checks) + { + $ck_funcs = []; + self::addCheck($ck_funcs, L10n::t('libCurl PHP module'), true, true, ""); + self::addCheck($ck_funcs, L10n::t('GD graphics PHP module'), true, true, ""); + self::addCheck($ck_funcs, L10n::t('OpenSSL PHP module'), true, true, ""); + self::addCheck($ck_funcs, L10n::t('PDO or MySQLi PHP module'), true, true, ""); + self::addCheck($ck_funcs, L10n::t('mb_string PHP module'), true, true, ""); + self::addCheck($ck_funcs, L10n::t('XML PHP module'), true, true, ""); + self::addCheck($ck_funcs, L10n::t('iconv PHP module'), true, true, ""); + self::addCheck($ck_funcs, L10n::t('POSIX PHP module'), true, true, ""); + + if (function_exists('apache_get_modules')) { + if (! in_array('mod_rewrite',apache_get_modules())) { + self::addCheck($ck_funcs, L10n::t('Apache mod_rewrite module'), false, true, L10n::t('Error: Apache webserver mod-rewrite module is required but not installed.')); + } else { + self::addCheck($ck_funcs, L10n::t('Apache mod_rewrite module'), true, true, ""); + } + } + + if (!function_exists('curl_init')) { + $ck_funcs[0]['status'] = false; + $ck_funcs[0]['help'] = L10n::t('Error: libCURL PHP module required but not installed.'); + } + if (!function_exists('imagecreatefromjpeg')) { + $ck_funcs[1]['status'] = false; + $ck_funcs[1]['help'] = L10n::t('Error: GD graphics PHP module with JPEG support required but not installed.'); + } + if (!function_exists('openssl_public_encrypt')) { + $ck_funcs[2]['status'] = false; + $ck_funcs[2]['help'] = L10n::t('Error: openssl PHP module required but not installed.'); + } + if (!function_exists('mysqli_connect') && !class_exists('pdo')) { + $ck_funcs[3]['status'] = false; + $ck_funcs[3]['help'] = L10n::t('Error: PDO or MySQLi PHP module required but not installed.'); + } + if (!function_exists('mysqli_connect') && class_exists('pdo') && !in_array('mysql', PDO::getAvailableDrivers())) { + $ck_funcs[3]['status'] = false; + $ck_funcs[3]['help'] = L10n::t('Error: The MySQL driver for PDO is not installed.'); + } + if (!function_exists('mb_strlen')) { + $ck_funcs[4]['status'] = false; + $ck_funcs[4]['help'] = L10n::t('Error: mb_string PHP module required but not installed.'); + } + if (!function_exists('iconv_strlen')) { + $ck_funcs[6]['status'] = false; + $ck_funcs[6]['help'] = L10n::t('Error: iconv PHP module required but not installed.'); + } + if (!function_exists('posix_kill')) { + $ck_funcs[7]['status'] = false; + $ck_funcs[7]['help'] = L10n::t('Error: POSIX PHP module required but not installed.'); + } + + $checks = array_merge($checks, $ck_funcs); + + // check for XML DOM Documents being able to be generated + try { + $xml = new DOMDocument(); + } catch (Exception $e) { + $ck_funcs[5]['status'] = false; + $ck_funcs[5]['help'] = L10n::t('Error, XML PHP module required but not installed.'); + } + } + + /** + * ".htconfig.php" - Check + * + * Checks if it's possible to create the ".htconfig.php" + * + * @param array $checks The list of all checks (by-ref parameter!) + */ + public static function checkHtConfig(&$checks) + { + $status = true; + $help = ""; + if ((file_exists('.htconfig.php') && !is_writable('.htconfig.php')) || + (!file_exists('.htconfig.php') && !is_writable('.'))) { + + $status = false; + $help = L10n::t('The web installer needs to be able to create a file called ".htconfig.php" in the top folder of your web server and it is unable to do so.') . EOL; + $help .= L10n::t('This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can.') . EOL; + $help .= L10n::t('At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder.') . EOL; + $help .= L10n::t('You can alternatively skip this procedure and perform a manual installation. Please see the file "INSTALL.txt" for instructions.') . EOL; + } + + self::addCheck($checks, L10n::t('.htconfig.php is writable'), $status, false, $help); + + } + + /** + * Smarty3 Template Check + * + * Checks, if the directory of Smarty3 is writable + * + * @param array $checks The list of all checks (by-ref parameter!) + */ + public static function checkSmarty3(&$checks) + { + $status = true; + $help = ""; + if (!is_writable('view/smarty3')) { + + $status = false; + $help = L10n::t('Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering.') . EOL; + $help .= L10n::t('In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder.') . EOL; + $help .= L10n::t("Please ensure that the user that your web server runs as \x28e.g. www-data\x29 has write access to this folder.") . EOL; + $help .= L10n::t("Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files \x28.tpl\x29 that it contains.") . EOL; + } + + self::addCheck($checks, L10n::t('view/smarty3 is writable'), $status, true, $help); + } + + /** + * ".htaccess" - Check + * + * Checks, if "url_rewrite" is enabled in the ".htaccess" file + * + * @param array $checks The list of all checks (by-ref parameter!) + */ + public static function checkHtAccess(&$checks) + { + $status = true; + $help = ""; + $error_msg = ""; + if (function_exists('curl_init')) { + $test = Network::fetchUrlFull(System::baseUrl() . "/install/testrewrite"); + + $url = normalise_link(System::baseUrl() . "/install/testrewrite"); + if ($test['body'] != "ok") { + $test = Network::fetchUrlFull($url); + } + + if ($test['body'] != "ok") { + $status = false; + $help = L10n::t('Url rewrite in .htaccess is not working. Check your server configuration.'); + $error_msg = []; + $error_msg['head'] = L10n::t('Error message from Curl when fetching'); + $error_msg['url'] = $test['redirect_url']; + $error_msg['msg'] = $test['error']; + } + self::addCheck($checks, L10n::t('Url rewrite is working'), $status, true, $help, $error_msg); + } else { + // cannot check modrewrite if libcurl is not installed + /// @TODO Maybe issue warning here? + } + } + + /** + * Imagick Check + * + * Checks, if the imagick module is available + * + * @param array $checks The list of all checks (by-ref parameter!) + */ + public static function checkImagick(&$checks) + { + $imagick = false; + $gif = false; + + if (class_exists('Imagick')) { + $imagick = true; + $supported = Image::supportedTypes(); + if (array_key_exists('image/gif', $supported)) { + $gif = true; + } + } + if ($imagick == false) { + self::addCheck($checks, L10n::t('ImageMagick PHP extension is not installed'), $imagick, false, ""); + } else { + self::addCheck($checks, L10n::t('ImageMagick PHP extension is installed'), $imagick, false, ""); + if ($imagick) { + self::addCheck($checks, L10n::t('ImageMagick supports GIF'), $gif, false, ""); + } + } + } + + /** + * Installs the Database structure + * + * @return string A possible error + */ + public static function installDatabaseStructure() + { + $errors = DBStructure::update(false, true, true); + + return $errors; + } +} diff --git a/src/Core/Theme.php b/src/Core/Theme.php index 9133eae18..c64ed08d3 100644 --- a/src/Core/Theme.php +++ b/src/Core/Theme.php @@ -1,7 +1,9 @@ - * * Maintainer: Jane - * * - * \endcode - * @param string $theme the name of the theme - * @return array - */ + /** + * @brief Parse theme comment in search of theme infos. + * + * like + * \code + * ..* Name: My Theme + * * Description: My Cool Theme + * . * Version: 1.2.3 + * * Author: John + * * Maintainer: Jane + * * + * \endcode + * @param string $theme the name of the theme + * @return array + */ + public static function getInfo($theme) + { + $info = [ + 'name' => $theme, + 'description' => "", + 'author' => [], + 'maintainer' => [], + 'version' => "", + 'credits' => "", + 'experimental' => file_exists("view/theme/$theme/experimental"), + 'unsupported' => file_exists("view/theme/$theme/unsupported") + ]; - public static function getInfo($theme) - { - $info=[ - 'name' => $theme, - 'description' => "", - 'author' => [], - 'maintainer' => [], - 'version' => "", - 'credits' => "", - 'experimental' => false, - 'unsupported' => false - ]; + if (!is_file("view/theme/$theme/theme.php")) { + return $info; + } - if (file_exists("view/theme/$theme/experimental")) - $info['experimental'] = true; - if (file_exists("view/theme/$theme/unsupported")) - $info['unsupported'] = true; + $a = get_app(); + $stamp1 = microtime(true); + $theme_file = file_get_contents("view/theme/$theme/theme.php"); + $a->save_timestamp($stamp1, "file"); - if (!is_file("view/theme/$theme/theme.php")) return $info; + $result = preg_match("|/\*.*\*/|msU", $theme_file, $matches); - $a = get_app(); - $stamp1 = microtime(true); - $f = file_get_contents("view/theme/$theme/theme.php"); - $a->save_timestamp($stamp1, "file"); + if ($result) { + $comment_lines = explode("\n", $matches[0]); + foreach ($comment_lines as $comment_line) { + $comment_line = trim($comment_line, "\t\n\r */"); + if ($comment_line != "") { + list($key, $value) = array_map("trim", explode(":", $comment_line, 2)); + $key = strtolower($key); + if ($key == "author") { + $result = preg_match("|([^<]+)<([^>]+)>|", $value, $matches); + if ($result) { + $info['author'][] = ['name' => $matches[1], 'link' => $matches[2]]; + } else { + $info['author'][] = ['name' => $value]; + } + } elseif ($key == "maintainer") { + $result = preg_match("|([^<]+)<([^>]+)>|", $value, $matches); + if ($result) { + $info['maintainer'][] = ['name' => $matches[1], 'link' => $matches[2]]; + } else { + $info['maintainer'][] = ['name' => $value]; + } + } elseif (array_key_exists($key, $info)) { + $info[$key] = $value; + } + } + } + } + return $info; + } - $r = preg_match("|/\*.*\*/|msU", $f, $m); + /** + * @brief Returns the theme's screenshot. + * + * The screenshot is expected as view/theme/$theme/screenshot.[png|jpg]. + * + * @param sring $theme The name of the theme + * @return string + */ + public static function getScreenshot($theme) + { + $exts = ['.png', '.jpg']; + foreach ($exts as $ext) { + if (file_exists('view/theme/' . $theme . '/screenshot' . $ext)) { + return(System::baseUrl() . '/view/theme/' . $theme . '/screenshot' . $ext); + } + } + return(System::baseUrl() . '/images/blank.png'); + } - if ($r) { - $ll = explode("\n", $m[0]); - foreach ( $ll as $l ) { - $l = trim($l,"\t\n\r */"); - if ($l != "") { - list($k, $v) = array_map("trim", explode(":", $l, 2)); - $k= strtolower($k); - if ($k == "author") { + // install and uninstall theme + public static function uninstall($theme) + { + logger("Addons: uninstalling theme " . $theme); - $r=preg_match("|([^<]+)<([^>]+)>|", $v, $m); - if ($r) { - $info['author'][] = ['name'=>$m[1], 'link'=>$m[2]]; - } else { - $info['author'][] = ['name'=>$v]; - } - } elseif ($k == "maintainer") { - $r=preg_match("|([^<]+)<([^>]+)>|", $v, $m); - if ($r) { - $info['maintainer'][] = ['name'=>$m[1], 'link'=>$m[2]]; - } else { - $info['maintainer'][] = ['name'=>$v]; - } - } else { - if (array_key_exists($k, $info)) { - $info[$k] = $v; - } - } - } - } - } - return $info; - } + include_once "view/theme/$theme/theme.php"; + if (function_exists("{$theme}_uninstall")) { + $func = "{$theme}_uninstall"; + $func(); + } + } - /** - * @brief Returns the theme's screenshot. - * - * The screenshot is expected as view/theme/$theme/screenshot.[png|jpg]. - * - * @param sring $theme The name of the theme - * @return string - */ - public static function getScreenshot($theme) - { - $exts = ['.png','.jpg']; - foreach ($exts as $ext) { - if (file_exists('view/theme/' . $theme . '/screenshot' . $ext)) { - return(System::baseUrl() . '/view/theme/' . $theme . '/screenshot' . $ext); - } - } - return(System::baseUrl() . '/images/blank.png'); - } + public static function install($theme) + { + // silently fail if theme was removed - // install and uninstall theme - public static function uninstall($theme) - { - logger("Addons: uninstalling theme " . $theme); + if (!file_exists("view/theme/$theme/theme.php")) { + return false; + } - include_once("view/theme/$theme/theme.php"); - if (function_exists("{$theme}_uninstall")) { - $func = "{$theme}_uninstall"; - $func(); - } - } + logger("Addons: installing theme $theme"); - public static function install($theme) - { - // silently fail if theme was removed + include_once "view/theme/$theme/theme.php"; - if (! file_exists("view/theme/$theme/theme.php")) { - return false; - } + if (function_exists("{$theme}_install")) { + $func = "{$theme}_install"; + $func(); + return true; + } else { + logger("Addons: FAILED installing theme $theme"); + return false; + } + } - logger("Addons: installing theme $theme"); + /** + * @brief Get the full path to relevant theme files by filename + * + * This function search in the theme directory (and if not present in global theme directory) + * if there is a directory with the file extension and for a file with the given + * filename. + * + * @param string $file Filename + * @param string $root Full root path + * @return string Path to the file or empty string if the file isn't found + */ + public static function getPathForFile($file, $root = '') + { + $file = basename($file); - include_once("view/theme/$theme/theme.php"); + // Make sure $root ends with a slash / if it's not blank + if ($root !== '' && $root[strlen($root) - 1] !== '/') { + $root = $root . '/'; + } + $theme_info = get_app()->theme_info; + if (is_array($theme_info) && array_key_exists('extends', $theme_info)) { + $parent = $theme_info['extends']; + } else { + $parent = 'NOPATH'; + } + $theme = get_app()->getCurrentTheme(); + $thname = $theme; + $ext = substr($file, strrpos($file, '.') + 1); + $paths = [ + "{$root}view/theme/$thname/$ext/$file", + "{$root}view/theme/$parent/$ext/$file", + "{$root}view/$ext/$file", + ]; + foreach ($paths as $p) { + // strpos() is faster than strstr when checking if one string is in another (http://php.net/manual/en/function.strstr.php) + if (strpos($p, 'NOPATH') !== false) { + continue; + } elseif (file_exists($p)) { + return $p; + } + } + return ''; + } - if (function_exists("{$theme}_install")) { - $func = "{$theme}_install"; - $func(); - return true; - } else { - logger("Addons: FAILED installing theme $theme"); - return false; - } + /** + * @brief Return relative path to theme stylesheet file + * + * Provide a sane default if nothing is chosen or the specified theme does not exist. + * + * @param string $theme Theme name + * + * @return string + */ + public static function getStylesheetPath($theme) + { + $a = get_app(); - } + $opts = (($a->profile_uid) ? '?f=&puid=' . $a->profile_uid : ''); + if (file_exists('view/theme/' . $theme . '/style.php')) { + return 'view/theme/' . $theme . '/style.pcss' . $opts; + } - /** - * @brief Get the full path to relevant theme files by filename - * - * This function search in the theme directory (and if not present in global theme directory) - * if there is a directory with the file extension and for a file with the given - * filename. - * - * @param string $file Filename - * @param string $root Full root path - * @return string Path to the file or empty string if the file isn't found - */ - public static function getPathForFile($file, $root = '') - { - $file = basename($file); - - // Make sure $root ends with a slash / if it's not blank - if ($root !== '' && $root[strlen($root)-1] !== '/') { - $root = $root . '/'; - } - $theme_info = get_app()->theme_info; - if (is_array($theme_info) && array_key_exists('extends',$theme_info)) { - $parent = $theme_info['extends']; - } else { - $parent = 'NOPATH'; - } - $theme = current_theme(); - $thname = $theme; - $ext = substr($file,strrpos($file,'.')+1); - $paths = [ - "{$root}view/theme/$thname/$ext/$file", - "{$root}view/theme/$parent/$ext/$file", - "{$root}view/$ext/$file", - ]; - foreach ($paths as $p) { - // strpos() is faster than strstr when checking if one string is in another (http://php.net/manual/en/function.strstr.php) - if (strpos($p,'NOPATH') !== false) { - continue; - } elseif (file_exists($p)) { - return $p; - } - } - return ''; - } + return 'view/theme/' . $theme . '/style.css'; + } } diff --git a/src/Model/Item.php b/src/Model/Item.php index c16281ae3..54abc49d6 100644 --- a/src/Model/Item.php +++ b/src/Model/Item.php @@ -862,12 +862,32 @@ class Item extends BaseObject } unset($item['id']); + unset($item['parent']); + unset($item['mention']); + unset($item['wall']); + unset($item['origin']); + unset($item['starred']); + unset($item['rendered-hash']); + unset($item['rendered-html']); - $condition = ["`nurl` IN (SELECT `nurl` FROM `contact` WHERE `id` = ?) AND `uid` != 0 AND NOT `blocked` AND NOT `readonly` AND `rel` IN (?, ?)", + $users = []; + + $condition = ["`nurl` IN (SELECT `nurl` FROM `contact` WHERE `id` = ?) AND `uid` != 0 AND NOT `blocked` AND `rel` IN (?, ?)", $parent['owner-id'], CONTACT_IS_SHARING, CONTACT_IS_FRIEND]; $contacts = dba::select('contact', ['uid'], $condition); while ($contact = dba::fetch($contacts)) { - self::storeForUser($itemid, $item, $contact['uid']); + $users[$contact['uid']] = $contact['uid']; + } + + if ($item['uri'] != $item['parent-uri']) { + $parents = dba::select('item', ['uid'], ["`uri` = ? AND `uid` != 0", $item['parent-uri']]); + while ($parent = dba::fetch($parents)) { + $users[$parent['uid']] = $parent['uid']; + } + } + + foreach ($users as $uid) { + self::storeForUser($itemid, $item, $uid); } } @@ -955,10 +975,15 @@ class Item extends BaseObject if (!dba::exists('item', ['uri' => $item['uri'], 'uid' => 0])) { // Preparing public shadow (removing user specific data) - unset($item['id']); $item['uid'] = 0; - $item['origin'] = 0; - $item['wall'] = 0; + unset($item['id']); + unset($item['parent']); + unset($item['wall']); + unset($item['mention']); + unset($item['origin']); + unset($item['starred']); + unset($item['rendered-hash']); + unset($item['rendered-html']); if ($item['uri'] == $item['parent-uri']) { $item['contact-id'] = Contact::getIdForURL($item['owner-link']); } else { @@ -1012,11 +1037,20 @@ class Item extends BaseObject return; } + // Save "origin" and "parent" state + $origin = $item['origin']; + $parent = $item['parent']; + // Preparing public shadow (removing user specific data) - unset($item['id']); $item['uid'] = 0; - $item['origin'] = 0; - $item['wall'] = 0; + unset($item['id']); + unset($item['parent']); + unset($item['wall']); + unset($item['mention']); + unset($item['origin']); + unset($item['starred']); + unset($item['rendered-hash']); + unset($item['rendered-html']); $item['contact-id'] = Contact::getIdForURL($item['author-link']); if (in_array($item['type'], ["net-comment", "wall-comment"])) { @@ -1028,6 +1062,14 @@ class Item extends BaseObject $public_shadow = self::insert($item, false, false, true); logger("Stored public shadow for comment ".$item['uri']." under id ".$public_shadow, LOGGER_DEBUG); + + // If this was a comment to a Diaspora post we don't get our comment back. + // This means that we have to distribute the comment by ourselves. + if ($origin) { + if (dba::exists('item', ['id' => $parent, 'network' => NETWORK_DIASPORA])) { + self::distribute($public_shadow); + } + } } /** diff --git a/src/Model/Profile.php b/src/Model/Profile.php index f86fce9b2..8bb519448 100644 --- a/src/Model/Profile.php +++ b/src/Model/Profile.php @@ -152,7 +152,7 @@ class Profile $a->set_template_engine(); // reset the template engine to the default in case the user's theme doesn't specify one - $theme_info_file = 'view/theme/' . current_theme() . '/theme.php'; + $theme_info_file = 'view/theme/' . $a->getCurrentTheme() . '/theme.php'; if (file_exists($theme_info_file)) { require_once $theme_info_file; } @@ -950,7 +950,7 @@ class Profile ]; } - if ((!$is_owner) && ((count($a->profile)) || (!$a->profile['hide-friends']))) { + if (!$is_owner && empty($a->profile['hide-friends'])) { $tabs[] = [ 'label' => L10n::t('Contacts'), 'url' => System::baseUrl() . '/viewcontacts/' . $nickname, diff --git a/src/Protocol/DFRN.php b/src/Protocol/DFRN.php index 74975159e..ad7658a76 100644 --- a/src/Protocol/DFRN.php +++ b/src/Protocol/DFRN.php @@ -1405,25 +1405,27 @@ class DFRN { $a = get_app(); - if (empty($contact['addr'])) { - logger('Empty contact handle for ' . $contact['id'] . ' - ' . $contact['url'] . ' - trying to update it.'); - if (Contact::updateFromProbe($contact['id'])) { - $new_contact = dba::selectFirst('contact', ['addr'], ['id' => $contact['id']]); - $contact['addr'] = $new_contact['addr']; - } - + if (!$public_batch) { if (empty($contact['addr'])) { - logger('Unable to find contact handle for ' . $contact['id'] . ' - ' . $contact['url']); - Contact::markForArchival($contact); - return -21; - } - } + logger('Empty contact handle for ' . $contact['id'] . ' - ' . $contact['url'] . ' - trying to update it.'); + if (Contact::updateFromProbe($contact['id'])) { + $new_contact = dba::selectFirst('contact', ['addr'], ['id' => $contact['id']]); + $contact['addr'] = $new_contact['addr']; + } - $fcontact = Diaspora::personByHandle($contact['addr']); - if (empty($fcontact)) { - logger('Unable to find contact details for ' . $contact['id'] . ' - ' . $contact['addr']); - Contact::markForArchival($contact); - return -22; + if (empty($contact['addr'])) { + logger('Unable to find contact handle for ' . $contact['id'] . ' - ' . $contact['url']); + Contact::markForArchival($contact); + return -21; + } + } + + $fcontact = Diaspora::personByHandle($contact['addr']); + if (empty($fcontact)) { + logger('Unable to find contact details for ' . $contact['id'] . ' - ' . $contact['addr']); + Contact::markForArchival($contact); + return -22; + } } $envelope = Diaspora::buildMessage($atom, $owner, $contact, $owner['uprvkey'], $fcontact['pubkey'], $public_batch); @@ -2797,10 +2799,6 @@ class DFRN return true; } } else { // $entrytype == DFRN_TOP_LEVEL - if ($importer["readonly"]) { - logger('ignoring read-only contact '.$importer["id"]); - return; - } if (($importer["uid"] == 0) && ($importer["importer_uid"] != 0)) { logger("Contact ".$importer["id"]." isn't known to user ".$importer["importer_uid"].". The post will be ignored.", LOGGER_DEBUG); return; diff --git a/src/Protocol/Diaspora.php b/src/Protocol/Diaspora.php index 6f03c0df8..f4a649b51 100644 --- a/src/Protocol/Diaspora.php +++ b/src/Protocol/Diaspora.php @@ -596,9 +596,9 @@ class Diaspora } $importer = ["uid" => 0, "page-flags" => PAGE_FREELOVE]; - $message_id = self::dispatch($importer, $msg, $fields); + $success = self::dispatch($importer, $msg, $fields); - return $message_id; + return $success; } /** @@ -832,6 +832,10 @@ class Diaspora if (isset($parent_author_signature)) { $key = self::key($msg["author"]); + if (empty($key)) { + logger("No key found for parent author ".$msg["author"], LOGGER_DEBUG); + return false; + } if (!Crypto::rsaVerify($signed_data, $parent_author_signature, $key, "sha256")) { logger("No valid parent author signature for parent author ".$msg["author"]. " in type ".$type." - signed data: ".$signed_data." - Message: ".$msg["message"]." - Signature ".$parent_author_signature, LOGGER_DEBUG); @@ -840,6 +844,10 @@ class Diaspora } $key = self::key($fields->author); + if (empty($key)) { + logger("No key found for author ".$fields->author, LOGGER_DEBUG); + return false; + } if (!Crypto::rsaVerify($signed_data, $author_signature, $key, "sha256")) { logger("No valid author signature for author ".$fields->author. " in type ".$type." - signed data: ".$signed_data." - Message: ".$msg["message"]." - Signature ".$author_signature, LOGGER_DEBUG); @@ -1143,7 +1151,7 @@ class Diaspora //} // We don't seem to like that person - if ($contact["blocked"] || $contact["readonly"]) { + if ($contact["blocked"]) { // Maybe blocked, don't accept. return false; // We are following this person? @@ -2721,10 +2729,15 @@ class Diaspora */ public static function originalItem($guid, $orig_author) { + if (empty($guid)) { + logger('Empty guid. Quitting.'); + return false; + } + // Do we already have this item? $fields = ['body', 'tag', 'app', 'created', 'object-type', 'uri', 'guid', 'author-name', 'author-link', 'author-avatar']; - $condition = ['guid' => $guid, 'visible' => true, 'deleted' => false]; + $condition = ['guid' => $guid, 'visible' => true, 'deleted' => false, 'private' => false]; $item = dba::selectfirst('item', $fields, $condition); if (DBM::is_result($item)) { @@ -2734,7 +2747,7 @@ class Diaspora // Then refetch the content, if it is a reshare from a reshare. // If it is a reshared post from another network then reformat to avoid display problems with two share elements if (self::isReshare($item["body"], true)) { - $r = []; + $item = []; } elseif (self::isReshare($item["body"], false) || strstr($item["body"], "[share")) { $item["body"] = Markdown::toBBCode(BBCode::toMarkdown($item["body"])); @@ -2749,21 +2762,26 @@ class Diaspora } } - if (!DBM::is_result($r)) { - $server = "https://".substr($orig_author, strpos($orig_author, "@") + 1); - logger("1st try: reshared message ".$guid." will be fetched via SSL from the server ".$server); - $item_id = self::storeByGuid($guid, $server); - - if (!$item_id) { - $server = "http://".substr($orig_author, strpos($orig_author, "@") + 1); - logger("2nd try: reshared message ".$guid." will be fetched without SLL from the server ".$server); - $item_id = self::storeByGuid($guid, $server); + if (!DBM::is_result($item)) { + if (empty($orig_author)) { + logger('Empty author for guid ' . $guid . '. Quitting.'); + return false; } - if ($item_id) { + $server = "https://".substr($orig_author, strpos($orig_author, "@") + 1); + logger("1st try: reshared message ".$guid." will be fetched via SSL from the server ".$server); + $stored = self::storeByGuid($guid, $server); + + if (!$stored) { + $server = "http://".substr($orig_author, strpos($orig_author, "@") + 1); + logger("2nd try: reshared message ".$guid." will be fetched without SSL from the server ".$server); + $stored = self::storeByGuid($guid, $server); + } + + if ($stored) { $fields = ['body', 'tag', 'app', 'created', 'object-type', 'uri', 'guid', 'author-name', 'author-link', 'author-avatar']; - $condition = ['id' => $item_id, 'visible' => true, 'deleted' => false]; + $condition = ['guid' => $guid, 'visible' => true, 'deleted' => false, 'private' => false]; $item = dba::selectfirst('item', $fields, $condition); if (DBM::is_result($item)) { diff --git a/src/Render/FriendicaSmarty.php b/src/Render/FriendicaSmarty.php index ab1999308..8c8e63763 100644 --- a/src/Render/FriendicaSmarty.php +++ b/src/Render/FriendicaSmarty.php @@ -22,7 +22,7 @@ class FriendicaSmarty extends Smarty parent::__construct(); $a = get_app(); - $theme = current_theme(); + $theme = $a->getCurrentTheme(); // setTemplateDir can be set to an array, which Smarty will parse in order. // The order is thus very important here diff --git a/src/Render/FriendicaSmartyEngine.php b/src/Render/FriendicaSmartyEngine.php index 949ac58c8..c6e95ee06 100644 --- a/src/Render/FriendicaSmartyEngine.php +++ b/src/Render/FriendicaSmartyEngine.php @@ -62,7 +62,7 @@ class FriendicaSmartyEngine implements ITemplateEngine $root = $root . '/'; } - $theme = current_theme(); + $theme = $a->getCurrentTheme(); $filename = $template::SMARTY3_TEMPLATE_FOLDER . '/' . $file; if (file_exists("{$root}view/theme/$theme/$filename")) { diff --git a/src/Util/Network.php b/src/Util/Network.php index 4a11f9259..c1ea6e354 100644 --- a/src/Util/Network.php +++ b/src/Util/Network.php @@ -36,7 +36,30 @@ class Network */ public static function fetchUrl($url, $binary = false, &$redirects = 0, $timeout = 0, $accept_content = null, $cookiejar = 0) { - $ret = self::curl( + $ret = self::fetchUrlFull($url, $binary, $redirects, $timeout, $accept_content, $cookiejar); + + return $ret['body']; + } + + /** + * @brief Curl wrapper with array of return values. + * + * Inner workings and parameters are the same as @ref fetchUrl but returns an array with + * all the information collected during the fetch. + * + * @param string $url URL to fetch + * @param boolean $binary default false + * TRUE if asked to return binary results (file download) + * @param integer $redirects The recursion counter for internal use - default 0 + * @param integer $timeout Timeout in seconds, default system config value or 60 seconds + * @param string $accept_content supply Accept: header with 'accept_content' as the value + * @param string $cookiejar Path to cookie jar file + * + * @return array With all relevant information, 'body' contains the actual fetched content. + */ + public static function fetchUrlFull($url, $binary = false, &$redirects = 0, $timeout = 0, $accept_content = null, $cookiejar = 0) + { + return self::curl( $url, $binary, $redirects, @@ -45,8 +68,6 @@ class Network 'cookiejar'=>$cookiejar ] ); - - return($ret['body']); } /** diff --git a/src/Worker/Delivery.php b/src/Worker/Delivery.php index 0a71e6ce2..f874e5f23 100644 --- a/src/Worker/Delivery.php +++ b/src/Worker/Delivery.php @@ -4,6 +4,7 @@ */ namespace Friendica\Worker; +use Friendica\BaseObject; use Friendica\Core\Config; use Friendica\Core\L10n; use Friendica\Core\System; @@ -19,98 +20,67 @@ use dba; require_once 'include/items.php'; -/// @todo This is some ugly code that needs to be split into several methods +class Delivery extends BaseObject +{ + const MAIL = 'mail'; + const SUGGESTION = 'suggest'; + const RELOCATION = 'relocate'; + const DELETION = 'drop'; + const POST = 'wall-new'; + const COMMENT = 'comment-new'; -class Delivery { - public static function execute($cmd, $item_id, $contact_id) { - global $a; + public static function execute($cmd, $item_id, $contact_id) + { + logger('Invoked: ' . $cmd . ': ' . $item_id . ' to ' . $contact_id, LOGGER_DEBUG); - logger('delivery: invoked: '.$cmd.': '.$item_id.' to '.$contact_id, LOGGER_DEBUG); - - $mail = false; - $fsuggest = false; - $relocate = false; $top_level = false; - $recipients = []; $followup = false; + $public_message = false; - $normal_mode = true; - - $item = null; - - $recipients[] = $contact_id; - - if ($cmd === 'mail') { - $normal_mode = false; - $mail = true; - $message = q("SELECT * FROM `mail` WHERE `id` = %d LIMIT 1", - intval($item_id) - ); - if (!count($message)) { + if ($cmd == self::MAIL) { + $target_item = dba::selectFirst('mail', [], ['id' => $item_id]); + if (!DBM::is_result($message)) { return; } - $uid = $message[0]['uid']; - $recipients[] = $message[0]['contact-id']; - $item = $message[0]; - } elseif ($cmd === 'suggest') { - $normal_mode = false; - $fsuggest = true; - - $suggest = q("SELECT * FROM `fsuggest` WHERE `id` = %d LIMIT 1", - intval($item_id) - ); - if (!count($suggest)) { + $uid = $target_item['uid']; + } elseif ($cmd == self::SUGGESTION) { + $target_item = dba::selectFirst('fsuggest', [], ['id' => $item_id]); + if (!DBM::is_result($message)) { return; } - $uid = $suggest[0]['uid']; - $recipients[] = $suggest[0]['cid']; - $item = $suggest[0]; - } elseif ($cmd === 'relocate') { - $normal_mode = false; - $relocate = true; + $uid = $target_item['uid']; + } elseif ($cmd == self::RELOCATION) { $uid = $item_id; } else { - // find ancestors - $target_item = dba::fetch_first("SELECT `item`.*, `contact`.`uid` AS `cuid` FROM `item` - INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` - WHERE `item`.`id` = ? AND `visible` AND NOT `moderated`", $item_id); - - if (!DBM::is_result($target_item) || !intval($target_item['parent'])) { + $item = dba::selectFirst('item', ['parent'], ['id' => $item_id]); + if (!DBM::is_result($item) || empty($item['parent'])) { return; } + $parent_id = intval($item['parent']); - $parent_id = intval($target_item['parent']); - $uid = $target_item['cuid']; - $updated = $target_item['edited']; - - $items = q("SELECT `item`.*, `sign`.`signed_text`,`sign`.`signature`,`sign`.`signer` - FROM `item` LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id` WHERE `parent` = %d AND visible = 1 AND moderated = 0 ORDER BY `id` ASC", - intval($parent_id) - ); - - if (!count($items)) { - return; - } - - $icontacts = null; - $contacts_arr = []; - foreach ($items as $item) { - if (!in_array($item['contact-id'],$contacts_arr)) { - $contacts_arr[] = intval($item['contact-id']); + $itemdata = dba::p("SELECT `item`.*, `contact`.`uid` AS `cuid`, + `sign`.`signed_text`,`sign`.`signature`,`sign`.`signer` + FROM `item` + INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` + LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id` + WHERE `item`.`id` IN (?, ?) AND `visible` AND NOT `moderated` + ORDER BY `item`.`id`", + $item_id, $parent_id); + $items = []; + while ($item = dba::fetch($itemdata)) { + if ($item['id'] == $parent_id) { + $parent = $item; } + if ($item['id'] == $item_id) { + $target_item = $item; + } + $items[] = $item; } - if (count($contacts_arr)) { - $str_contacts = implode(',',$contacts_arr); - $icontacts = q("SELECT * FROM `contact` - WHERE `id` IN ( $str_contacts ) " - ); - } - if ( !($icontacts && count($icontacts))) { - return; - } + dba::close($itemdata); + + $uid = $target_item['cuid']; // avoid race condition with deleting entries - if ($items[0]['deleted']) { foreach ($items as $item) { $item['deleted'] = 1; @@ -120,24 +90,10 @@ class Delivery { // When commenting too fast after delivery, a post wasn't recognized as top level post. // The count then showed more than one entry. The additional check should help. // The check for the "count" should be superfluous, but I'm not totally sure by now, so we keep it. - if ((($items[0]['id'] == $item_id) || (count($items) == 1)) && ($items[0]['uri'] === $items[0]['parent-uri'])) { - logger('delivery: top level post'); + if ((($parent['id'] == $item_id) || (count($items) == 1)) && ($parent['uri'] === $parent['parent-uri'])) { + logger('Top level post'); $top_level = true; } - } - - $owner = User::getOwnerDataById($uid); - if (!$owner) { - return; - } - - // We don't treat Forum posts as "wall-to-wall" to be able to post them via Diaspora - $walltowall = $top_level && ($owner['id'] != $items[0]['contact-id']) & ($owner['account-type'] != ACCOUNT_TYPE_COMMUNITY); - - $public_message = true; - - if (!$mail && !$fsuggest && !$relocate) { - $parent = $items[0]; // This is IMPORTANT!!!! @@ -147,9 +103,9 @@ class Delivery { // if $parent['wall'] == 1 we will already have the parent message in our array // and we will relay the whole lot. - $localhost = $a->get_hostname(); - if (strpos($localhost,':')) { - $localhost = substr($localhost,0,strpos($localhost,':')); + $localhost = self::getApp()->get_hostname(); + if (strpos($localhost, ':')) { + $localhost = substr($localhost, 0, strpos($localhost, ':')); } /** * @@ -159,26 +115,24 @@ class Delivery { * */ - $relay_to_owner = false; - if (!$top_level && ($parent['wall'] == 0) && stristr($target_item['uri'], $localhost)) { - $relay_to_owner = true; - } - - if ($relay_to_owner) { - logger('followup '.$target_item["guid"], LOGGER_DEBUG); + logger('Followup ' . $target_item["guid"], LOGGER_DEBUG); // local followup to remote post $followup = true; } - if (strlen($parent['allow_cid']) - || strlen($parent['allow_gid']) - || strlen($parent['deny_cid']) - || strlen($parent['deny_gid']) - || $parent["private"]) { - $public_message = false; // private recipients, not public + if (empty($parent['allow_cid']) + && empty($parent['allow_gid']) + && empty($parent['deny_cid']) + && empty($parent['deny_gid']) + && !$parent["private"]) { + $public_message = true; } + } + $owner = User::getOwnerDataById($uid); + if (!DBM::is_result($owner)) { + return; } // We don't deliver our items to blocked or pending contacts, and not to ourselves either @@ -189,146 +143,22 @@ class Delivery { return; } - $deliver_status = 0; - - // Transmit via Diaspora if not possible via Friendica - if (($item['uid'] == 0) && ($contact['network'] == NETWORK_DFRN)) { + // Transmit via Diaspora if the thread had started as Diaspora post + // This is done since the uri wouldn't match (Diaspora doesn't transmit it) + if (isset($parent) && ($parent['network'] == NETWORK_DIASPORA) && ($contact['network'] == NETWORK_DFRN)) { $contact['network'] = NETWORK_DIASPORA; } - logger("main delivery by delivery: followup=$followup mail=$mail fsuggest=$fsuggest relocate=$relocate - network ".$contact['network']); + logger("Delivering " . $cmd . " followup=$followup - via network " . $contact['network']); switch ($contact['network']) { case NETWORK_DFRN: - logger('notifier: '.$target_item["guid"].' dfrndelivery: '.$contact['name']); - - if ($mail) { - $item['body'] = Item::fixPrivatePhotos($item['body'], $owner['uid'], null, $item['contact-id']); - $atom = DFRN::mail($item, $owner); - } elseif ($fsuggest) { - $atom = DFRN::fsuggest($item, $owner); - dba::delete('fsuggest', ['id' => $item['id']]); - } elseif ($relocate) { - $atom = DFRN::relocate($owner, $uid); - } elseif ($followup) { - $msgitems = []; - foreach ($items as $item) { // there is only one item - if (!$item['parent']) { - return; - } - if ($item['id'] == $item_id) { - logger('followup: item: '. print_r($item,true), LOGGER_DATA); - $msgitems[] = $item; - } - } - $atom = DFRN::entries($msgitems,$owner); - } else { - $msgitems = []; - foreach ($items as $item) { - if (!$item['parent']) { - return; - } - - // private emails may be in included in public conversations. Filter them. - if ($public_message && $item['private']) { - return; - } - - $item_contact = self::getItemContact($item,$icontacts); - if (!$item_contact) { - return; - } - - if ($normal_mode) { - // Only add the parent when we don't delete other items. - if ($item_id == $item['id'] || (($item['id'] == $item['parent']) && ($cmd != 'drop'))) { - $item["entry:comment-allow"] = true; - $item["entry:cid"] = (($top_level) ? $contact['id'] : 0); - $msgitems[] = $item; - } - } else { - $item["entry:comment-allow"] = true; - $msgitems[] = $item; - } - } - $atom = DFRN::entries($msgitems,$owner); - } - - logger('notifier entry: '.$contact["url"].' '.$target_item["guid"].' entry: '.$atom, LOGGER_DEBUG); - - logger('notifier: '.$atom, LOGGER_DATA); - $basepath = implode('/', array_slice(explode('/',$contact['url']),0,3)); - - // perform local delivery if we are on the same site - - if (link_compare($basepath,System::baseUrl())) { - $nickname = basename($contact['url']); - if ($contact['issued-id']) { - $sql_extra = sprintf(" AND `dfrn-id` = '%s' ", dbesc($contact['issued-id'])); - } else { - $sql_extra = sprintf(" AND `issued-id` = '%s' ", dbesc($contact['dfrn-id'])); - } - - $x = q("SELECT `contact`.*, `contact`.`uid` AS `importer_uid`, - `contact`.`pubkey` AS `cpubkey`, - `contact`.`prvkey` AS `cprvkey`, - `contact`.`thumb` AS `thumb`, - `contact`.`url` as `url`, - `contact`.`name` as `senderName`, - `user`.* - FROM `contact` - INNER JOIN `user` ON `contact`.`uid` = `user`.`uid` - WHERE `contact`.`blocked` = 0 AND `contact`.`pending` = 0 - AND `contact`.`network` = '%s' AND `user`.`nickname` = '%s' - $sql_extra - AND `user`.`account_expired` = 0 AND `user`.`account_removed` = 0 LIMIT 1", - dbesc(NETWORK_DFRN), - dbesc($nickname) - ); - - if ($x && count($x)) { - $write_flag = ((($x[0]['rel']) && ($x[0]['rel'] != CONTACT_IS_SHARING)) ? true : false); - if ((($owner['page-flags'] == PAGE_COMMUNITY) || $write_flag) && !$x[0]['writable']) { - dba::update('contact', ['writable' => true], ['id' => $x[0]['id']]); - $x[0]['writable'] = 1; - } - - $ssl_policy = Config::get('system','ssl_policy'); - $x[0] = Contact::updateSslPolicy($x[0], $ssl_policy); - - // If we are setup as a soapbox we aren't accepting top level posts from this person - - if (($x[0]['page-flags'] == PAGE_SOAPBOX) && $top_level) { - break; - } - logger('mod-delivery: local delivery'); - DFRN::import($atom, $x[0]); - break; - } - } - - if (!Queue::wasDelayed($contact['id'])) { - $deliver_status = DFRN::deliver($owner, $contact, $atom); - } else { - $deliver_status = -1; - } - - logger('notifier: dfrn_delivery to '.$contact["url"].' with guid '.$target_item["guid"].' returns '.$deliver_status); - - if ($deliver_status < 0) { - logger('notifier: delivery failed: queuing message'); - Queue::add($contact['id'], NETWORK_DFRN, $atom, false, $target_item['guid']); - } - - if (($deliver_status >= 200) && ($deliver_status <= 299)) { - // We successfully delivered a message, the contact is alive - Contact::unmarkForArchival($contact); - } else { - // The message could not be delivered. We mark the contact as "dead" - Contact::markForArchival($contact); - } + self::deliverDFRN($cmd, $contact, $owner, $items, $target_item, $public_message, $top_level, $followup); + break; + case NETWORK_DIASPORA: + self::deliverDiaspora($cmd, $contact, $owner, $items, $target_item, $public_message, $top_level, $followup); break; case NETWORK_OSTATUS: @@ -345,156 +175,7 @@ class Delivery { break; case NETWORK_MAIL: - - if (Config::get('system','dfrn_only')) { - break; - } - // WARNING: does not currently convert to RFC2047 header encodings, etc. - - $addr = $contact['addr']; - if (!strlen($addr)) { - break; - } - - if ($cmd === 'wall-new' || $cmd === 'comment-new') { - $it = null; - if ($cmd === 'wall-new') { - $it = $items[0]; - } else { - $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1", - intval($item_id) - ); - if (DBM::is_result($r)) { - $it = $r[0]; - } - } - if (!$it) { - break; - } - - $local_user = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", - intval($uid) - ); - if (!count($local_user)) { - break; - } - - $reply_to = ''; - $r1 = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1", - intval($uid) - ); - if ($r1 && $r1[0]['reply_to']) { - $reply_to = $r1[0]['reply_to']; - } - - $subject = (($it['title']) ? Email::encodeHeader($it['title'],'UTF-8') : L10n::t("\x28no subject\x29")) ; - - // only expose our real email address to true friends - - if (($contact['rel'] == CONTACT_IS_FRIEND) && !$contact['blocked']) { - if ($reply_to) { - $headers = 'From: '.Email::encodeHeader($local_user[0]['username'],'UTF-8').' <'.$reply_to.'>'."\n"; - $headers .= 'Sender: '.$local_user[0]['email']."\n"; - } else { - $headers = 'From: '.Email::encodeHeader($local_user[0]['username'],'UTF-8').' <'.$local_user[0]['email'].'>'."\n"; - } - } else { - $headers = 'From: '. Email::encodeHeader($local_user[0]['username'], 'UTF-8') . ' get_hostname() . '>' . "\n"; - } - - //if ($reply_to) - // $headers .= 'Reply-to: '.$reply_to . "\n"; - - $headers .= 'Message-Id: <'. Email::iri2msgid($it['uri']).'>'. "\n"; - - //logger("Mail: uri: ".$it['uri']." parent-uri ".$it['parent-uri'], LOGGER_DEBUG); - //logger("Mail: Data: ".print_r($it, true), LOGGER_DEBUG); - //logger("Mail: Data: ".print_r($it, true), LOGGER_DATA); - - if ($it['uri'] !== $it['parent-uri']) { - $headers .= "References: <".Email::iri2msgid($it["parent-uri"]).">"; - - // If Threading is enabled, write down the correct parent - if (($it["thr-parent"] != "") && ($it["thr-parent"] != $it["parent-uri"])) { - $headers .= " <".Email::iri2msgid($it["thr-parent"]).">"; - } - $headers .= "\n"; - - if (!$it['title']) { - $r = q("SELECT `title` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1", - dbesc($it['parent-uri']), - intval($uid)); - - if (DBM::is_result($r) && ($r[0]['title'] != '')) { - $subject = $r[0]['title']; - } else { - $r = q("SELECT `title` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d LIMIT 1", - dbesc($it['parent-uri']), - intval($uid)); - - if (DBM::is_result($r) && ($r[0]['title'] != '')) { - $subject = $r[0]['title']; - } - } - } - if (strncasecmp($subject,'RE:',3)) { - $subject = 'Re: '.$subject; - } - } - Email::send($addr, $subject, $headers, $it); - } - break; - - case NETWORK_DIASPORA: - if ($public_message) { - $loc = 'public batch '.$contact['batch']; - } else { - $loc = $contact['name']; - } - - logger('delivery: diaspora batch deliver: '.$loc); - - if (Config::get('system','dfrn_only') || !Config::get('system','diaspora_enabled')) { - break; - } - if ($mail) { - Diaspora::sendMail($item,$owner,$contact); - break; - } - - if (!$normal_mode) { - break; - } - if (!$contact['pubkey'] && !$public_message) { - break; - } - if (($target_item['deleted']) && (($target_item['uri'] === $target_item['parent-uri']) || $followup)) { - // top-level retraction - logger('diaspora retract: '.$loc); - Diaspora::sendRetraction($target_item,$owner,$contact,$public_message); - break; - } elseif ($relocate) { - Diaspora::sendAccountMigration($owner, $contact, $uid); - break; - } elseif ($followup) { - // send comments and likes to owner to relay - logger('diaspora followup: '.$loc); - Diaspora::sendFollowup($target_item,$owner,$contact,$public_message); - break; - } elseif ($target_item['uri'] !== $target_item['parent-uri']) { - // we are the relay - send comments, likes and relayable_retractions to our conversants - logger('diaspora relay: '.$loc); - Diaspora::sendRelay($target_item,$owner,$contact,$public_message); - break; - } elseif ($top_level && !$walltowall) { - // currently no workable solution for sending walltowall - logger('diaspora status: '.$loc); - Diaspora::sendStatus($target_item,$owner,$contact,$public_message); - break; - } - - logger('delivery: diaspora unknown mode: '.$contact['name']); - + self::deliverMail($cmd, $contact, $owner, $target_item); break; default: @@ -504,16 +185,268 @@ class Delivery { return; } - private static function getItemContact($item, $contacts) + /** + * @brief Deliver content via DFRN + * + * @param string $cmd Command + * @param array $contact Contact record of the receiver + * @param array $owner Owner record of the sender + * @param array $items Item record of the content and the parent + * @param array $target_item Item record of the content + * @param boolean $public_message Is the content public? + * @param boolean $top_level Is it a thread starter? + * @param boolean $followup Is it an answer to a remote post? + */ + private static function deliverDFRN($cmd, $contact, $owner, $items, $target_item, $public_message, $top_level, $followup) { - if (!count($contacts) || !is_array($item)) { - return false; + logger('Deliver ' . $target_item["guid"] . ' via DFRN to ' . $contact['addr']); + + if ($cmd == self::MAIL) { + $item = $target_item; + $item['body'] = Item::fixPrivatePhotos($item['body'], $owner['uid'], null, $item['contact-id']); + $atom = DFRN::mail($item, $owner); + } elseif ($cmd == self::SUGGESTION) { + $item = $target_item; + $atom = DFRN::fsuggest($item, $owner); + dba::delete('fsuggest', ['id' => $item['id']]); + } elseif ($cmd == self::RELOCATION) { + $atom = DFRN::relocate($owner, $owner['uid']); + } elseif ($followup) { + $msgitems = [$target_item]; + $atom = DFRN::entries($msgitems, $owner); + } else { + $msgitems = []; + foreach ($items as $item) { + // Only add the parent when we don't delete other items. + if (($target_item['id'] == $item['id']) || ($cmd != self::DELETION)) { + $item["entry:comment-allow"] = true; + $item["entry:cid"] = ($top_level ? $contact['id'] : 0); + $msgitems[] = $item; + } + } + $atom = DFRN::entries($msgitems, $owner); } - foreach ($contacts as $contact) { - if ($contact['id'] == $item['contact-id']) { - return $contact; + + logger('Notifier entry: ' . $contact["url"] . ' ' . $target_item["guid"] . ' entry: ' . $atom, LOGGER_DATA); + + $basepath = implode('/', array_slice(explode('/', $contact['url']), 0, 3)); + + // perform local delivery if we are on the same site + + if (link_compare($basepath, System::baseUrl())) { + $condition = ['nurl' => normalise_link($contact['url']), 'self' => true]; + $target_self = dba::selectFirst('contact', ['uid'], $condition); + if (!DBM::is_result($target_self)) { + return; + } + $target_uid = $target_self['uid']; + + // Check if the user has got this contact + $cid = Contact::getIdForURL($owner['url'], $target_uid); + if (!$cid) { + // Otherwise there should be a public contact + $cid = Contact::getIdForURL($owner['url']); + if (!$cid) { + return; + } + } + + // We now have some contact, so we fetch it + $target_importer = dba::fetch_first("SELECT *, `name` as `senderName` + FROM `contact` + WHERE NOT `blocked` AND `id` = ? LIMIT 1", + $cid); + + // This should never fail + if (!DBM::is_result($target_importer)) { + return; + } + + // Set the user id. This is important if this is a public contact + $target_importer['importer_uid'] = $target_uid; + DFRN::import($atom, $target_importer); + return; + } + + // We don't have a relationship with contacts on a public post. + // Se we transmit with the new method and via Diaspora as a fallback + if ($items[0]['uid'] == 0) { + // Transmit in public if it's a relay post + $public_dfrn = ($contact['contact-type'] == ACCOUNT_TYPE_RELAY); + + $deliver_status = DFRN::transmit($owner, $contact, $atom, $public_dfrn); + if (($deliver_status < 200) || ($deliver_status > 299)) { + // Transmit via Diaspora if not possible via Friendica + self::deliverDiaspora($cmd, $contact, $owner, $items, $target_item, $public_message, $top_level, $followup); + return; + } + } else { + $deliver_status = DFRN::deliver($owner, $contact, $atom); + } + + logger('Delivery to ' . $contact["url"] . ' with guid ' . $target_item["guid"] . ' returns ' . $deliver_status); + + if ($deliver_status < 0) { + logger('Delivery failed: queuing message ' . $target_item["guid"] ); + Queue::add($contact['id'], NETWORK_DFRN, $atom, false, $target_item['guid']); + } + + if (($deliver_status >= 200) && ($deliver_status <= 299)) { + // We successfully delivered a message, the contact is alive + Contact::unmarkForArchival($contact); + } else { + // The message could not be delivered. We mark the contact as "dead" + Contact::markForArchival($contact); + } + } + + /** + * @brief Deliver content via Diaspora + * + * @param string $cmd Command + * @param array $contact Contact record of the receiver + * @param array $owner Owner record of the sender + * @param array $items Item record of the content and the parent + * @param array $target_item Item record of the content + * @param boolean $public_message Is the content public? + * @param boolean $top_level Is it a thread starter? + * @param boolean $followup Is it an answer to a remote post? + */ + private static function deliverDiaspora($cmd, $contact, $owner, $items, $target_item, $public_message, $top_level, $followup) + { + // We don't treat Forum posts as "wall-to-wall" to be able to post them via Diaspora + $walltowall = $top_level && ($owner['id'] != $items[0]['contact-id']) & ($owner['account-type'] != ACCOUNT_TYPE_COMMUNITY); + + if ($public_message) { + $loc = 'public batch ' . $contact['batch']; + } else { + $loc = $contact['addr']; + } + + logger('Deliver ' . $target_item["guid"] . ' via Diaspora to ' . $loc); + + if (Config::get('system', 'dfrn_only') || !Config::get('system', 'diaspora_enabled')) { + return; + } + if ($cmd == self::MAIL) { + Diaspora::sendMail($target_item, $owner, $contact); + return; + } + + if ($cmd == self::SUGGESTION) { + return; + } + if (!$contact['pubkey'] && !$public_message) { + return; + } + if (($target_item['deleted']) && (($target_item['uri'] === $target_item['parent-uri']) || $followup)) { + // top-level retraction + logger('diaspora retract: ' . $loc); + Diaspora::sendRetraction($target_item, $owner, $contact, $public_message); + return; + } elseif ($cmd == self::RELOCATION) { + Diaspora::sendAccountMigration($owner, $contact, $owner['uid']); + return; + } elseif ($followup) { + // send comments and likes to owner to relay + logger('diaspora followup: ' . $loc); + Diaspora::sendFollowup($target_item, $owner, $contact, $public_message); + return; + } elseif ($target_item['uri'] !== $target_item['parent-uri']) { + // we are the relay - send comments, likes and relayable_retractions to our conversants + logger('diaspora relay: ' . $loc); + Diaspora::sendRelay($target_item, $owner, $contact, $public_message); + return; + } elseif ($top_level && !$walltowall) { + // currently no workable solution for sending walltowall + logger('diaspora status: ' . $loc); + Diaspora::sendStatus($target_item, $owner, $contact, $public_message); + return; + } + + logger('Unknown mode ' . $cmd . ' for ' . $loc); + } + + /** + * @brief Deliver content via mail + * + * @param string $cmd Command + * @param array $contact Contact record of the receiver + * @param array $owner Owner record of the sender + * @param array $target_item Item record of the content + */ + private static function deliverMail($cmd, $contact, $owner, $target_item) + { + if (Config::get('system','dfrn_only')) { + return; + } + // WARNING: does not currently convert to RFC2047 header encodings, etc. + + $addr = $contact['addr']; + if (!strlen($addr)) { + return; + } + + if (!in_array($cmd, [self::POST, self::COMMENT])) { + return; + } + + $local_user = dba::selectFirst('user', [], ['uid' => $owner['uid']]); + if (!DBM::is_result($local_user)) { + return; + } + + logger('Deliver ' . $target_item["guid"] . ' via mail to ' . $contact['addr']); + + $reply_to = ''; + $mailacct = dba::selectFirst('mailacct', ['reply_to'], ['uid' => $owner['uid']]); + if (DBM::is_result($mailacct) && !empty($mailacct['reply_to'])) { + $reply_to = $mailacct['reply_to']; + } + + $subject = ($target_item['title'] ? Email::encodeHeader($target_item['title'], 'UTF-8') : L10n::t("\x28no subject\x29")); + + // only expose our real email address to true friends + + if (($contact['rel'] == CONTACT_IS_FRIEND) && !$contact['blocked']) { + if ($reply_to) { + $headers = 'From: ' . Email::encodeHeader($local_user['username'],'UTF-8') . ' <' . $reply_to.'>' . "\n"; + $headers .= 'Sender: ' . $local_user['email'] . "\n"; + } else { + $headers = 'From: ' . Email::encodeHeader($local_user['username'],'UTF-8').' <' . $local_user['email'] . '>' . "\n"; + } + } else { + $headers = 'From: '. Email::encodeHeader($local_user['username'], 'UTF-8') . ' get_hostname() . '>' . "\n"; + } + + $headers .= 'Message-Id: <' . Email::iri2msgid($target_item['uri']) . '>' . "\n"; + + if ($target_item['uri'] !== $target_item['parent-uri']) { + $headers .= "References: <" . Email::iri2msgid($target_item["parent-uri"]) . ">"; + + // If Threading is enabled, write down the correct parent + if (($target_item["thr-parent"] != "") && ($target_item["thr-parent"] != $target_item["parent-uri"])) { + $headers .= " <".Email::iri2msgid($target_item["thr-parent"]).">"; + } + $headers .= "\n"; + + if (empty($target_item['title'])) { + $condition = ['uri' => $target_item['parent-uri'], 'uid' => $owner['uid']]; + $title = dba::selectFirst('item', ['title'], $condition); + if (DBM::is_result($title) && ($title['title'] != '')) { + $subject = $title['title']; + } else { + $condition = ['parent-uri' => $target_item['parent-uri'], 'uid' => $owner['uid']]; + $title = dba::selectFirst('item', ['title'], $condition); + if (DBM::is_result($title) && ($title['title'] != '')) { + $subject = $title['title']; + } + } + } + if (strncasecmp($subject, 'RE:', 3)) { + $subject = 'Re: ' . $subject; } } - return false; + Email::send($addr, $subject, $headers, $target_item); } } diff --git a/src/Worker/OnePoll.php b/src/Worker/OnePoll.php index c1c6fdd1a..aa3eabf57 100644 --- a/src/Worker/OnePoll.php +++ b/src/Worker/OnePoll.php @@ -309,7 +309,7 @@ class OnePoll // Are we allowed to import from this person? - if ($contact['rel'] == CONTACT_IS_FOLLOWER || $contact['blocked'] || $contact['readonly']) { + if ($contact['rel'] == CONTACT_IS_FOLLOWER || $contact['blocked']) { // set the last-update so we don't keep polling dba::update('contact', ['last-update' => DateTimeFormat::utcNow()], ['id' => $contact['id']]); return; @@ -590,7 +590,7 @@ class OnePoll } $hubmode = 'subscribe'; - if ($contact['network'] === NETWORK_DFRN || $contact['blocked'] || $contact['readonly']) { + if ($contact['network'] === NETWORK_DFRN || $contact['blocked']) { $hubmode = 'unsubscribe'; } diff --git a/src/Worker/PubSubPublish.php b/src/Worker/PubSubPublish.php index de26eab9c..bd4aa0390 100644 --- a/src/Worker/PubSubPublish.php +++ b/src/Worker/PubSubPublish.php @@ -68,7 +68,7 @@ class PubSubPublish { $rr['topic']), "X-Hub-Signature: sha1=".$hmac_sig]; - logger('POST '.print_r($headers, true)."\n".$params, LOGGER_DEBUG); + logger('POST '.print_r($headers, true)."\n".$params, LOGGER_DATA); Network::post($rr['callback_url'], $params, $headers); $ret = $a->get_curl_code(); diff --git a/util/htconfig.vagrant.php b/util/htconfig.vagrant.php index 9c96687e7..623b587ef 100644 --- a/util/htconfig.vagrant.php +++ b/util/htconfig.vagrant.php @@ -65,7 +65,7 @@ $a->config['system']['no_regfullname'] = true; //$a->config['system']['block_local_dir'] = false; // Location of the global directory -$a->config['system']['directory'] = 'http://dir.friendica.social'; +$a->config['system']['directory'] = 'https://dir.friendica.social'; // turn on friendica's log $a->config['system']['debugging'] = true; diff --git a/util/messages.po b/util/messages.po index 36c004bbb..47ab4a772 100644 --- a/util/messages.po +++ b/util/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-04-22 11:15+0200\n" +"POT-Creation-Date: 2018-04-29 07:13+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,9 +18,66 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" -#: boot.php:795 -#, php-format -msgid "Update %s failed. See error logs." +#: include/items.php:342 mod/notice.php:22 mod/viewsrc.php:21 +#: mod/display.php:72 mod/display.php:252 mod/display.php:354 mod/admin.php:276 +#: mod/admin.php:1870 mod/admin.php:2118 +msgid "Item not found." +msgstr "" + +#: include/items.php:382 +msgid "Do you really want to delete this item?" +msgstr "" + +#: include/items.php:384 mod/api.php:110 mod/suggest.php:38 +#: mod/dfrn_request.php:653 mod/message.php:138 mod/contacts.php:472 +#: mod/follow.php:150 mod/profiles.php:636 mod/profiles.php:639 +#: mod/profiles.php:661 mod/register.php:237 mod/settings.php:1107 +#: mod/settings.php:1113 mod/settings.php:1120 mod/settings.php:1124 +#: mod/settings.php:1128 mod/settings.php:1132 mod/settings.php:1136 +#: mod/settings.php:1140 mod/settings.php:1160 mod/settings.php:1161 +#: mod/settings.php:1162 mod/settings.php:1163 mod/settings.php:1164 +msgid "Yes" +msgstr "" + +#: include/items.php:387 include/conversation.php:1355 mod/fbrowser.php:103 +#: mod/fbrowser.php:134 mod/suggest.php:41 mod/dfrn_request.php:663 +#: mod/tagrm.php:19 mod/tagrm.php:99 mod/editpost.php:149 mod/message.php:141 +#: mod/photos.php:248 mod/photos.php:324 mod/videos.php:147 +#: mod/contacts.php:475 mod/unfollow.php:117 mod/follow.php:161 +#: mod/settings.php:678 mod/settings.php:704 +msgid "Cancel" +msgstr "" + +#: include/items.php:401 mod/allfriends.php:21 mod/api.php:35 mod/api.php:40 +#: mod/attach.php:38 mod/common.php:26 mod/crepair.php:98 mod/nogroup.php:28 +#: mod/repair_ostatus.php:13 mod/suggest.php:60 mod/uimport.php:28 +#: mod/notifications.php:73 mod/dfrn_confirm.php:68 mod/manage.php:131 +#: mod/wall_attach.php:74 mod/wall_attach.php:77 mod/poke.php:150 +#: mod/regmod.php:108 mod/viewcontacts.php:57 mod/wall_upload.php:103 +#: mod/wall_upload.php:106 mod/wallmessage.php:16 mod/wallmessage.php:40 +#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/editpost.php:18 +#: mod/fsuggest.php:80 mod/group.php:26 mod/message.php:59 mod/message.php:104 +#: mod/notes.php:30 mod/photos.php:174 mod/photos.php:1051 mod/cal.php:304 +#: mod/contacts.php:386 mod/delegate.php:25 mod/delegate.php:43 +#: mod/delegate.php:54 mod/events.php:194 mod/item.php:160 +#: mod/ostatus_subscribe.php:16 mod/profile_photo.php:30 +#: mod/profile_photo.php:176 mod/profile_photo.php:187 +#: mod/profile_photo.php:200 mod/unfollow.php:15 mod/unfollow.php:57 +#: mod/unfollow.php:90 mod/dirfind.php:25 mod/follow.php:17 mod/follow.php:54 +#: mod/follow.php:118 mod/profiles.php:182 mod/profiles.php:606 +#: mod/register.php:53 mod/invite.php:20 mod/invite.php:111 mod/network.php:32 +#: mod/settings.php:43 mod/settings.php:142 mod/settings.php:667 index.php:444 +msgid "Permission denied." +msgstr "" + +#: include/items.php:471 +msgid "Archives" +msgstr "" + +#: include/items.php:477 view/theme/vier/theme.php:258 +#: src/Content/ForumManager.php:130 src/Content/Widget.php:317 +#: src/Object/Post.php:430 src/App.php:512 +msgid "show more" msgstr "" #: include/api.php:1202 @@ -42,12 +99,12 @@ msgstr[1] "" msgid "Monthly posting limit of %d post reached. The post was rejected." msgstr "" -#: include/api.php:4523 src/Model/User.php:549 src/Model/User.php:557 -#: src/Model/User.php:565 mod/profile_photo.php:85 mod/profile_photo.php:93 -#: mod/profile_photo.php:101 mod/profile_photo.php:211 -#: mod/profile_photo.php:302 mod/profile_photo.php:312 mod/photos.php:88 -#: mod/photos.php:194 mod/photos.php:722 mod/photos.php:1149 -#: mod/photos.php:1166 mod/photos.php:1684 +#: include/api.php:4523 mod/photos.php:88 mod/photos.php:194 mod/photos.php:722 +#: mod/photos.php:1149 mod/photos.php:1166 mod/photos.php:1684 +#: mod/profile_photo.php:85 mod/profile_photo.php:93 mod/profile_photo.php:101 +#: mod/profile_photo.php:211 mod/profile_photo.php:302 +#: mod/profile_photo.php:312 src/Model/User.php:553 src/Model/User.php:561 +#: src/Model/User.php:569 msgid "Profile Photos" msgstr "" @@ -342,31 +399,49 @@ msgstr "" msgid "Please visit %s to approve or reject the request." msgstr "" +#: include/security.php:81 +msgid "Welcome " +msgstr "" + +#: include/security.php:82 +msgid "Please upload a profile photo." +msgstr "" + +#: include/security.php:84 +msgid "Welcome back " +msgstr "" + +#: include/security.php:440 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "" + #: include/conversation.php:144 include/conversation.php:282 -#: include/text.php:1753 src/Model/Item.php:1796 +#: include/text.php:1748 src/Model/Item.php:1895 msgid "event" msgstr "" #: include/conversation.php:147 include/conversation.php:157 #: include/conversation.php:285 include/conversation.php:294 -#: src/Model/Item.php:1794 src/Protocol/Diaspora.php:2039 mod/subthread.php:97 -#: mod/tagger.php:72 +#: mod/subthread.php:97 mod/tagger.php:72 src/Model/Item.php:1893 +#: src/Protocol/Diaspora.php:2026 msgid "status" msgstr "" #: include/conversation.php:152 include/conversation.php:290 -#: include/text.php:1755 src/Model/Item.php:1794 mod/subthread.php:97 -#: mod/tagger.php:72 +#: include/text.php:1750 mod/subthread.php:97 mod/tagger.php:72 +#: src/Model/Item.php:1893 msgid "photo" msgstr "" -#: include/conversation.php:164 src/Model/Item.php:1667 -#: src/Protocol/Diaspora.php:2035 +#: include/conversation.php:164 src/Model/Item.php:1766 +#: src/Protocol/Diaspora.php:2022 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "" -#: include/conversation.php:167 src/Model/Item.php:1672 +#: include/conversation.php:167 src/Model/Item.php:1771 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "" @@ -386,8 +461,8 @@ msgstr "" msgid "%1$s attends maybe %2$s's %3$s" msgstr "" -#: include/conversation.php:209 src/Protocol/Diaspora.php:2510 -#: mod/dfrn_confirm.php:431 +#: include/conversation.php:209 mod/dfrn_confirm.php:431 +#: src/Protocol/Diaspora.php:2500 #, php-format msgid "%1$s is now friends with %2$s" msgstr "" @@ -411,379 +486,370 @@ msgstr "" msgid "%1$s marked %2$s's %3$s as favorite" msgstr "" -#: include/conversation.php:605 mod/profiles.php:355 mod/photos.php:1501 +#: include/conversation.php:608 mod/photos.php:1501 mod/profiles.php:355 msgid "Likes" msgstr "" -#: include/conversation.php:605 mod/profiles.php:359 mod/photos.php:1501 +#: include/conversation.php:608 mod/photos.php:1501 mod/profiles.php:359 msgid "Dislikes" msgstr "" -#: include/conversation.php:606 include/conversation.php:1661 +#: include/conversation.php:609 include/conversation.php:1664 #: mod/photos.php:1502 msgid "Attending" msgid_plural "Attending" msgstr[0] "" msgstr[1] "" -#: include/conversation.php:606 mod/photos.php:1502 +#: include/conversation.php:609 mod/photos.php:1502 msgid "Not attending" msgstr "" -#: include/conversation.php:606 mod/photos.php:1502 +#: include/conversation.php:609 mod/photos.php:1502 msgid "Might attend" msgstr "" -#: include/conversation.php:718 src/Object/Post.php:178 mod/photos.php:1569 +#: include/conversation.php:721 mod/photos.php:1569 src/Object/Post.php:178 msgid "Select" msgstr "" -#: include/conversation.php:719 src/Object/Post.php:179 mod/settings.php:738 -#: mod/admin.php:1812 mod/photos.php:1570 mod/contacts.php:830 -#: mod/contacts.php:1035 +#: include/conversation.php:722 mod/photos.php:1570 mod/contacts.php:830 +#: mod/contacts.php:1035 mod/admin.php:1814 mod/settings.php:740 +#: src/Object/Post.php:179 msgid "Delete" msgstr "" -#: include/conversation.php:757 src/Object/Post.php:363 src/Object/Post.php:364 +#: include/conversation.php:760 src/Object/Post.php:363 src/Object/Post.php:364 #, php-format msgid "View %s's profile @ %s" msgstr "" -#: include/conversation.php:769 src/Object/Post.php:351 +#: include/conversation.php:772 src/Object/Post.php:351 msgid "Categories:" msgstr "" -#: include/conversation.php:770 src/Object/Post.php:352 +#: include/conversation.php:773 src/Object/Post.php:352 msgid "Filed under:" msgstr "" -#: include/conversation.php:777 src/Object/Post.php:377 +#: include/conversation.php:780 src/Object/Post.php:377 #, php-format msgid "%s from %s" msgstr "" -#: include/conversation.php:792 +#: include/conversation.php:795 msgid "View in context" msgstr "" -#: include/conversation.php:794 include/conversation.php:1334 -#: src/Object/Post.php:402 mod/photos.php:1473 mod/message.php:264 -#: mod/message.php:433 mod/wallmessage.php:145 mod/editpost.php:125 +#: include/conversation.php:797 include/conversation.php:1337 +#: mod/wallmessage.php:145 mod/editpost.php:125 mod/message.php:264 +#: mod/message.php:433 mod/photos.php:1473 src/Object/Post.php:402 msgid "Please wait" msgstr "" -#: include/conversation.php:865 +#: include/conversation.php:868 msgid "remove" msgstr "" -#: include/conversation.php:869 +#: include/conversation.php:872 msgid "Delete Selected Items" msgstr "" -#: include/conversation.php:1039 view/theme/frio/theme.php:352 +#: include/conversation.php:1042 view/theme/frio/theme.php:352 msgid "Follow Thread" msgstr "" -#: include/conversation.php:1040 src/Model/Contact.php:652 +#: include/conversation.php:1043 src/Model/Contact.php:652 msgid "View Status" msgstr "" -#: include/conversation.php:1041 include/conversation.php:1057 -#: src/Model/Contact.php:592 src/Model/Contact.php:605 -#: src/Model/Contact.php:653 mod/directory.php:159 mod/dirfind.php:217 -#: mod/suggest.php:82 mod/allfriends.php:73 mod/match.php:89 +#: include/conversation.php:1044 include/conversation.php:1060 +#: mod/allfriends.php:73 mod/suggest.php:82 mod/match.php:89 +#: mod/directory.php:159 mod/dirfind.php:217 src/Model/Contact.php:592 +#: src/Model/Contact.php:605 src/Model/Contact.php:653 msgid "View Profile" msgstr "" -#: include/conversation.php:1042 src/Model/Contact.php:654 +#: include/conversation.php:1045 src/Model/Contact.php:654 msgid "View Photos" msgstr "" -#: include/conversation.php:1043 src/Model/Contact.php:655 +#: include/conversation.php:1046 src/Model/Contact.php:655 msgid "Network Posts" msgstr "" -#: include/conversation.php:1044 src/Model/Contact.php:656 +#: include/conversation.php:1047 src/Model/Contact.php:656 msgid "View Contact" msgstr "" -#: include/conversation.php:1045 src/Model/Contact.php:658 +#: include/conversation.php:1048 src/Model/Contact.php:658 msgid "Send PM" msgstr "" -#: include/conversation.php:1049 src/Model/Contact.php:659 +#: include/conversation.php:1052 src/Model/Contact.php:659 msgid "Poke" msgstr "" -#: include/conversation.php:1054 src/Model/Contact.php:606 -#: src/Content/Widget.php:61 mod/dirfind.php:218 mod/suggest.php:83 -#: mod/allfriends.php:74 mod/follow.php:143 mod/contacts.php:596 -#: mod/match.php:90 +#: include/conversation.php:1057 mod/allfriends.php:74 mod/suggest.php:83 +#: mod/match.php:90 mod/contacts.php:596 mod/dirfind.php:218 mod/follow.php:143 +#: view/theme/vier/theme.php:201 src/Content/Widget.php:61 +#: src/Model/Contact.php:606 msgid "Connect/Follow" msgstr "" -#: include/conversation.php:1173 -#, php-format -msgid "%s likes this." -msgstr "" - #: include/conversation.php:1176 #, php-format -msgid "%s doesn't like this." +msgid "%s likes this." msgstr "" #: include/conversation.php:1179 #, php-format -msgid "%s attends." +msgid "%s doesn't like this." msgstr "" #: include/conversation.php:1182 #, php-format -msgid "%s doesn't attend." +msgid "%s attends." msgstr "" #: include/conversation.php:1185 #, php-format +msgid "%s doesn't attend." +msgstr "" + +#: include/conversation.php:1188 +#, php-format msgid "%s attends maybe." msgstr "" -#: include/conversation.php:1196 +#: include/conversation.php:1199 msgid "and" msgstr "" -#: include/conversation.php:1202 +#: include/conversation.php:1205 #, php-format msgid "and %d other people" msgstr "" -#: include/conversation.php:1211 +#: include/conversation.php:1214 #, php-format msgid "%2$d people like this" msgstr "" -#: include/conversation.php:1212 +#: include/conversation.php:1215 #, php-format msgid "%s like this." msgstr "" -#: include/conversation.php:1215 +#: include/conversation.php:1218 #, php-format msgid "%2$d people don't like this" msgstr "" -#: include/conversation.php:1216 +#: include/conversation.php:1219 #, php-format msgid "%s don't like this." msgstr "" -#: include/conversation.php:1219 +#: include/conversation.php:1222 #, php-format msgid "%2$d people attend" msgstr "" -#: include/conversation.php:1220 +#: include/conversation.php:1223 #, php-format msgid "%s attend." msgstr "" -#: include/conversation.php:1223 +#: include/conversation.php:1226 #, php-format msgid "%2$d people don't attend" msgstr "" -#: include/conversation.php:1224 +#: include/conversation.php:1227 #, php-format msgid "%s don't attend." msgstr "" -#: include/conversation.php:1227 +#: include/conversation.php:1230 #, php-format msgid "%2$d people attend maybe" msgstr "" -#: include/conversation.php:1228 +#: include/conversation.php:1231 #, php-format msgid "%s attend maybe." msgstr "" -#: include/conversation.php:1258 include/conversation.php:1274 +#: include/conversation.php:1261 include/conversation.php:1277 msgid "Visible to everybody" msgstr "" -#: include/conversation.php:1259 include/conversation.php:1275 -#: mod/message.php:200 mod/message.php:207 mod/message.php:343 -#: mod/message.php:350 mod/wallmessage.php:120 mod/wallmessage.php:127 +#: include/conversation.php:1262 include/conversation.php:1278 +#: mod/wallmessage.php:120 mod/wallmessage.php:127 mod/message.php:200 +#: mod/message.php:207 mod/message.php:343 mod/message.php:350 msgid "Please enter a link URL:" msgstr "" -#: include/conversation.php:1260 include/conversation.php:1276 +#: include/conversation.php:1263 include/conversation.php:1279 msgid "Please enter a video link/URL:" msgstr "" -#: include/conversation.php:1261 include/conversation.php:1277 +#: include/conversation.php:1264 include/conversation.php:1280 msgid "Please enter an audio link/URL:" msgstr "" -#: include/conversation.php:1262 include/conversation.php:1278 +#: include/conversation.php:1265 include/conversation.php:1281 msgid "Tag term:" msgstr "" -#: include/conversation.php:1263 include/conversation.php:1279 mod/filer.php:34 +#: include/conversation.php:1266 include/conversation.php:1282 mod/filer.php:34 msgid "Save to Folder:" msgstr "" -#: include/conversation.php:1264 include/conversation.php:1280 +#: include/conversation.php:1267 include/conversation.php:1283 msgid "Where are you right now?" msgstr "" -#: include/conversation.php:1265 +#: include/conversation.php:1268 msgid "Delete item(s)?" msgstr "" -#: include/conversation.php:1312 +#: include/conversation.php:1315 msgid "New Post" msgstr "" -#: include/conversation.php:1315 +#: include/conversation.php:1318 msgid "Share" msgstr "" -#: include/conversation.php:1316 mod/message.php:262 mod/message.php:430 -#: mod/wallmessage.php:143 mod/editpost.php:111 +#: include/conversation.php:1319 mod/wallmessage.php:143 mod/editpost.php:111 +#: mod/message.php:262 mod/message.php:430 msgid "Upload photo" msgstr "" -#: include/conversation.php:1317 mod/editpost.php:112 +#: include/conversation.php:1320 mod/editpost.php:112 msgid "upload photo" msgstr "" -#: include/conversation.php:1318 mod/editpost.php:113 +#: include/conversation.php:1321 mod/editpost.php:113 msgid "Attach file" msgstr "" -#: include/conversation.php:1319 mod/editpost.php:114 +#: include/conversation.php:1322 mod/editpost.php:114 msgid "attach file" msgstr "" -#: include/conversation.php:1320 mod/message.php:263 mod/message.php:431 -#: mod/wallmessage.php:144 mod/editpost.php:115 +#: include/conversation.php:1323 mod/wallmessage.php:144 mod/editpost.php:115 +#: mod/message.php:263 mod/message.php:431 msgid "Insert web link" msgstr "" -#: include/conversation.php:1321 mod/editpost.php:116 +#: include/conversation.php:1324 mod/editpost.php:116 msgid "web link" msgstr "" -#: include/conversation.php:1322 mod/editpost.php:117 +#: include/conversation.php:1325 mod/editpost.php:117 msgid "Insert video link" msgstr "" -#: include/conversation.php:1323 mod/editpost.php:118 +#: include/conversation.php:1326 mod/editpost.php:118 msgid "video link" msgstr "" -#: include/conversation.php:1324 mod/editpost.php:119 +#: include/conversation.php:1327 mod/editpost.php:119 msgid "Insert audio link" msgstr "" -#: include/conversation.php:1325 mod/editpost.php:120 +#: include/conversation.php:1328 mod/editpost.php:120 msgid "audio link" msgstr "" -#: include/conversation.php:1326 mod/editpost.php:121 +#: include/conversation.php:1329 mod/editpost.php:121 msgid "Set your location" msgstr "" -#: include/conversation.php:1327 mod/editpost.php:122 +#: include/conversation.php:1330 mod/editpost.php:122 msgid "set location" msgstr "" -#: include/conversation.php:1328 mod/editpost.php:123 +#: include/conversation.php:1331 mod/editpost.php:123 msgid "Clear browser location" msgstr "" -#: include/conversation.php:1329 mod/editpost.php:124 +#: include/conversation.php:1332 mod/editpost.php:124 msgid "clear location" msgstr "" -#: include/conversation.php:1331 mod/editpost.php:138 +#: include/conversation.php:1334 mod/editpost.php:138 msgid "Set title" msgstr "" -#: include/conversation.php:1333 mod/editpost.php:140 +#: include/conversation.php:1336 mod/editpost.php:140 msgid "Categories (comma-separated list)" msgstr "" -#: include/conversation.php:1335 mod/editpost.php:126 +#: include/conversation.php:1338 mod/editpost.php:126 msgid "Permission settings" msgstr "" -#: include/conversation.php:1336 mod/editpost.php:155 +#: include/conversation.php:1339 mod/editpost.php:155 msgid "permissions" msgstr "" -#: include/conversation.php:1344 mod/editpost.php:135 +#: include/conversation.php:1347 mod/editpost.php:135 msgid "Public post" msgstr "" -#: include/conversation.php:1348 src/Object/Post.php:805 mod/events.php:528 -#: mod/photos.php:1492 mod/photos.php:1531 mod/photos.php:1604 -#: mod/editpost.php:146 +#: include/conversation.php:1351 mod/editpost.php:146 mod/photos.php:1492 +#: mod/photos.php:1531 mod/photos.php:1604 mod/events.php:528 +#: src/Object/Post.php:805 msgid "Preview" msgstr "" -#: include/conversation.php:1352 include/items.php:387 mod/suggest.php:41 -#: mod/settings.php:676 mod/settings.php:702 mod/fbrowser.php:103 -#: mod/fbrowser.php:134 mod/photos.php:248 mod/photos.php:324 -#: mod/message.php:141 mod/videos.php:147 mod/unfollow.php:117 -#: mod/dfrn_request.php:663 mod/follow.php:161 mod/contacts.php:475 -#: mod/tagrm.php:19 mod/tagrm.php:99 mod/editpost.php:149 -msgid "Cancel" -msgstr "" - -#: include/conversation.php:1357 +#: include/conversation.php:1360 msgid "Post to Groups" msgstr "" -#: include/conversation.php:1358 +#: include/conversation.php:1361 msgid "Post to Contacts" msgstr "" -#: include/conversation.php:1359 +#: include/conversation.php:1362 msgid "Private post" msgstr "" -#: include/conversation.php:1364 src/Model/Profile.php:342 mod/editpost.php:153 +#: include/conversation.php:1367 mod/editpost.php:153 src/Model/Profile.php:338 msgid "Message" msgstr "" -#: include/conversation.php:1365 mod/editpost.php:154 +#: include/conversation.php:1368 mod/editpost.php:154 msgid "Browser" msgstr "" -#: include/conversation.php:1632 +#: include/conversation.php:1635 msgid "View all" msgstr "" -#: include/conversation.php:1655 +#: include/conversation.php:1658 msgid "Like" msgid_plural "Likes" msgstr[0] "" msgstr[1] "" -#: include/conversation.php:1658 +#: include/conversation.php:1661 msgid "Dislike" msgid_plural "Dislikes" msgstr[0] "" msgstr[1] "" -#: include/conversation.php:1664 +#: include/conversation.php:1667 msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "" msgstr[1] "" -#: include/conversation.php:1667 src/Content/ContactSelector.php:125 +#: include/conversation.php:1670 src/Content/ContactSelector.php:125 msgid "Undecided" msgid_plural "Undecided" msgstr[0] "" @@ -794,24 +860,6 @@ msgstr[1] "" msgid "Cannot locate DNS info for database server '%s'" msgstr "" -#: include/security.php:81 -msgid "Welcome " -msgstr "" - -#: include/security.php:82 -msgid "Please upload a profile photo." -msgstr "" - -#: include/security.php:84 -msgid "Welcome back " -msgstr "" - -#: include/security.php:440 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "" - #: include/text.php:302 msgid "newer" msgstr "" @@ -859,7 +907,7 @@ msgstr[1] "" msgid "View Contacts" msgstr "" -#: include/text.php:1010 mod/notes.php:67 mod/filer.php:35 mod/editpost.php:110 +#: include/text.php:1010 mod/filer.php:35 mod/editpost.php:110 mod/notes.php:67 msgid "Save" msgstr "" @@ -867,7 +915,7 @@ msgstr "" msgid "Follow" msgstr "" -#: include/text.php:1016 src/Content/Nav.php:142 mod/search.php:155 +#: include/text.php:1016 mod/search.php:155 src/Content/Nav.php:142 msgid "Search" msgstr "" @@ -884,14 +932,14 @@ msgstr "" msgid "Tags" msgstr "" -#: include/text.php:1027 src/Model/Profile.php:961 src/Model/Profile.php:964 -#: src/Content/Nav.php:147 src/Content/Nav.php:208 mod/viewcontacts.php:131 -#: mod/contacts.php:814 mod/contacts.php:875 view/theme/frio/theme.php:270 +#: include/text.php:1027 mod/viewcontacts.php:131 mod/contacts.php:814 +#: mod/contacts.php:875 view/theme/frio/theme.php:270 src/Content/Nav.php:147 +#: src/Content/Nav.php:209 src/Model/Profile.php:955 src/Model/Profile.php:958 msgid "Contacts" msgstr "" -#: include/text.php:1030 src/Content/ForumManager.php:125 -#: src/Content/Nav.php:151 view/theme/vier/theme.php:254 +#: include/text.php:1030 view/theme/vier/theme.php:253 +#: src/Content/ForumManager.php:125 src/Content/Nav.php:151 msgid "Forums" msgstr "" @@ -943,7 +991,7 @@ msgstr "" msgid "rebuffed" msgstr "" -#: include/text.php:1093 src/Model/Event.php:379 mod/settings.php:943 +#: include/text.php:1093 mod/settings.php:945 src/Model/Event.php:379 msgid "Monday" msgstr "" @@ -967,7 +1015,7 @@ msgstr "" msgid "Saturday" msgstr "" -#: include/text.php:1093 src/Model/Event.php:378 mod/settings.php:943 +#: include/text.php:1093 mod/settings.php:945 src/Model/Event.php:378 msgid "Sunday" msgstr "" @@ -1101,754 +1149,4565 @@ msgstr "" msgid "bytes" msgstr "" -#: include/text.php:1374 include/text.php:1385 include/text.php:1421 +#: include/text.php:1374 include/text.php:1385 include/text.php:1418 msgid "Click to open/close" msgstr "" -#: include/text.php:1538 +#: include/text.php:1533 msgid "View on separate page" msgstr "" -#: include/text.php:1539 +#: include/text.php:1534 msgid "view on separate page" msgstr "" -#: include/text.php:1544 include/text.php:1551 src/Model/Event.php:594 +#: include/text.php:1539 include/text.php:1546 src/Model/Event.php:594 msgid "link to source" msgstr "" -#: include/text.php:1757 +#: include/text.php:1752 msgid "activity" msgstr "" -#: include/text.php:1759 src/Object/Post.php:429 src/Object/Post.php:441 +#: include/text.php:1754 src/Object/Post.php:429 src/Object/Post.php:441 msgid "comment" msgid_plural "comments" msgstr[0] "" msgstr[1] "" -#: include/text.php:1762 +#: include/text.php:1757 msgid "post" msgstr "" -#: include/text.php:1919 +#: include/text.php:1914 msgid "Item filed" msgstr "" -#: include/items.php:342 mod/display.php:72 mod/display.php:252 -#: mod/display.php:354 mod/admin.php:276 mod/admin.php:1868 mod/admin.php:2116 -#: mod/viewsrc.php:21 mod/notice.php:22 -msgid "Item not found." +#: mod/allfriends.php:51 +msgid "No friends to display." msgstr "" -#: include/items.php:382 -msgid "Do you really want to delete this item?" -msgstr "" - -#: include/items.php:384 mod/suggest.php:38 mod/profiles.php:636 -#: mod/profiles.php:639 mod/profiles.php:661 mod/api.php:110 -#: mod/settings.php:1105 mod/settings.php:1111 mod/settings.php:1118 -#: mod/settings.php:1122 mod/settings.php:1126 mod/settings.php:1130 -#: mod/settings.php:1134 mod/settings.php:1138 mod/settings.php:1158 -#: mod/settings.php:1159 mod/settings.php:1160 mod/settings.php:1161 -#: mod/settings.php:1162 mod/message.php:138 mod/dfrn_request.php:653 -#: mod/follow.php:150 mod/contacts.php:472 mod/register.php:237 -msgid "Yes" -msgstr "" - -#: include/items.php:401 mod/dirfind.php:25 mod/repair_ostatus.php:13 -#: mod/suggest.php:60 mod/profile_photo.php:30 mod/profile_photo.php:176 -#: mod/profile_photo.php:187 mod/profile_photo.php:200 mod/manage.php:131 -#: mod/uimport.php:28 mod/invite.php:20 mod/invite.php:111 mod/network.php:32 -#: mod/profiles.php:182 mod/profiles.php:606 mod/events.php:194 -#: mod/fsuggest.php:80 mod/attach.php:38 mod/allfriends.php:21 -#: mod/viewcontacts.php:57 mod/ostatus_subscribe.php:16 mod/api.php:35 -#: mod/api.php:40 mod/settings.php:42 mod/settings.php:141 mod/settings.php:665 -#: mod/regmod.php:108 mod/group.php:26 mod/delegate.php:25 mod/delegate.php:43 -#: mod/delegate.php:54 mod/photos.php:174 mod/photos.php:1051 -#: mod/nogroup.php:28 mod/message.php:59 mod/message.php:104 -#: mod/unfollow.php:15 mod/unfollow.php:57 mod/unfollow.php:90 -#: mod/wall_attach.php:74 mod/wall_attach.php:77 mod/notes.php:30 -#: mod/crepair.php:98 mod/poke.php:150 mod/notifications.php:73 -#: mod/follow.php:17 mod/follow.php:54 mod/follow.php:118 mod/cal.php:304 -#: mod/contacts.php:386 mod/wallmessage.php:16 mod/wallmessage.php:40 -#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/dfrn_confirm.php:68 -#: mod/wall_upload.php:103 mod/wall_upload.php:106 mod/register.php:53 -#: mod/common.php:26 mod/item.php:160 mod/editpost.php:18 index.php:444 -msgid "Permission denied." -msgstr "" - -#: include/items.php:471 -msgid "Archives" -msgstr "" - -#: include/items.php:477 src/Content/Widget.php:312 -#: src/Content/ForumManager.php:130 src/App.php:512 src/Object/Post.php:430 -#: view/theme/vier/theme.php:259 -msgid "show more" -msgstr "" - -#: src/Model/Item.php:1677 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "" - -#: src/Model/Item.php:1682 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "" - -#: src/Model/Item.php:1687 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "" - -#: src/Model/Contact.php:657 -msgid "Drop Contact" -msgstr "" - -#: src/Model/Contact.php:1060 -msgid "Organisation" -msgstr "" - -#: src/Model/Contact.php:1063 -msgid "News" -msgstr "" - -#: src/Model/Contact.php:1066 -msgid "Forum" -msgstr "" - -#: src/Model/Contact.php:1235 mod/dfrn_request.php:345 -msgid "Disallowed profile URL." -msgstr "" - -#: src/Model/Contact.php:1240 mod/friendica.php:128 mod/admin.php:353 -#: mod/admin.php:371 mod/dfrn_request.php:351 -msgid "Blocked domain" -msgstr "" - -#: src/Model/Contact.php:1245 -msgid "Connect URL missing." -msgstr "" - -#: src/Model/Contact.php:1254 -msgid "" -"The contact could not be added. Please check the relevant network " -"credentials in your Settings -> Social Networks page." -msgstr "" - -#: src/Model/Contact.php:1301 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "" - -#: src/Model/Contact.php:1302 src/Model/Contact.php:1316 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "" - -#: src/Model/Contact.php:1314 -msgid "The profile address specified does not provide adequate information." -msgstr "" - -#: src/Model/Contact.php:1319 -msgid "An author or name was not found." -msgstr "" - -#: src/Model/Contact.php:1322 -msgid "No browser URL could be matched to this address." -msgstr "" - -#: src/Model/Contact.php:1325 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "" - -#: src/Model/Contact.php:1326 -msgid "Use mailto: in front of address to force email check." -msgstr "" - -#: src/Model/Contact.php:1332 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "" - -#: src/Model/Contact.php:1337 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "" - -#: src/Model/Contact.php:1388 -msgid "Unable to retrieve contact information." -msgstr "" - -#: src/Model/Contact.php:1537 mod/dfrn_request.php:568 mod/dfrn_confirm.php:661 -msgid "[Name Withheld]" -msgstr "" - -#: src/Model/Contact.php:1605 src/Protocol/DFRN.php:1482 -#, php-format -msgid "%s's birthday" -msgstr "" - -#: src/Model/Contact.php:1606 src/Protocol/DFRN.php:1483 -#, php-format -msgid "Happy Birthday %s" -msgstr "" - -#: src/Model/Mail.php:40 src/Model/Mail.php:174 -msgid "[no subject]" -msgstr "" - -#: src/Model/Profile.php:97 -msgid "Requested account is not available." -msgstr "" - -#: src/Model/Profile.php:118 mod/profile.php:37 -msgid "Requested profile is not available." -msgstr "" - -#: src/Model/Profile.php:168 src/Model/Profile.php:399 -#: src/Model/Profile.php:863 -msgid "Edit profile" -msgstr "" - -#: src/Model/Profile.php:297 src/Content/Widget.php:37 mod/dirfind.php:215 -#: mod/suggest.php:101 mod/allfriends.php:90 mod/match.php:105 +#: mod/allfriends.php:90 mod/suggest.php:101 mod/match.php:105 +#: mod/dirfind.php:215 src/Content/Widget.php:37 src/Model/Profile.php:293 msgid "Connect" msgstr "" -#: src/Model/Profile.php:336 -msgid "Atom feed" +#: mod/api.php:85 mod/api.php:107 +msgid "Authorize application connection" msgstr "" -#: src/Model/Profile.php:372 src/Content/Nav.php:205 -msgid "Profiles" +#: mod/api.php:86 +msgid "Return to your app and insert this Securty Code:" msgstr "" -#: src/Model/Profile.php:372 -msgid "Manage/edit profiles" +#: mod/api.php:95 +msgid "Please login to continue." msgstr "" -#: src/Model/Profile.php:379 src/Model/Profile.php:401 mod/profiles.php:777 -msgid "Change profile photo" +#: mod/api.php:109 +msgid "" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" msgstr "" -#: src/Model/Profile.php:380 mod/profiles.php:778 -msgid "Create New Profile" +#: mod/api.php:111 mod/dfrn_request.php:653 mod/follow.php:150 +#: mod/profiles.php:636 mod/profiles.php:640 mod/profiles.php:661 +#: mod/register.php:238 mod/settings.php:1107 mod/settings.php:1113 +#: mod/settings.php:1120 mod/settings.php:1124 mod/settings.php:1128 +#: mod/settings.php:1132 mod/settings.php:1136 mod/settings.php:1140 +#: mod/settings.php:1160 mod/settings.php:1161 mod/settings.php:1162 +#: mod/settings.php:1163 mod/settings.php:1164 +msgid "No" msgstr "" -#: src/Model/Profile.php:389 mod/profiles.php:767 -msgid "Profile Image" +#: mod/apps.php:14 index.php:273 +msgid "You must be logged in to use addons. " msgstr "" -#: src/Model/Profile.php:392 mod/profiles.php:769 -msgid "visible to everybody" +#: mod/apps.php:19 +msgid "Applications" msgstr "" -#: src/Model/Profile.php:393 mod/profiles.php:675 mod/profiles.php:770 -msgid "Edit visibility" +#: mod/apps.php:22 +msgid "No installed applications." msgstr "" -#: src/Model/Profile.php:417 src/Model/Event.php:60 src/Model/Event.php:85 -#: src/Model/Event.php:421 src/Model/Event.php:900 mod/directory.php:148 -#: mod/events.php:518 mod/notifications.php:247 mod/contacts.php:660 -msgid "Location:" +#: mod/attach.php:15 +msgid "Item not available." msgstr "" -#: src/Model/Profile.php:420 src/Model/Profile.php:749 mod/directory.php:151 -#: mod/notifications.php:253 -msgid "Gender:" +#: mod/attach.php:25 +msgid "Item was not found." msgstr "" -#: src/Model/Profile.php:421 src/Model/Profile.php:773 mod/directory.php:152 -msgid "Status:" +#: mod/common.php:91 +msgid "No contacts in common." msgstr "" -#: src/Model/Profile.php:422 src/Model/Profile.php:790 mod/directory.php:153 -msgid "Homepage:" +#: mod/common.php:140 mod/contacts.php:886 +msgid "Common Friends" msgstr "" -#: src/Model/Profile.php:423 src/Model/Profile.php:810 mod/directory.php:154 -#: mod/notifications.php:249 mod/contacts.php:664 -msgid "About:" +#: mod/credits.php:18 +msgid "Credits" msgstr "" -#: src/Model/Profile.php:424 mod/contacts.php:662 -msgid "XMPP:" +#: mod/credits.php:19 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" msgstr "" -#: src/Model/Profile.php:520 mod/notifications.php:261 mod/contacts.php:71 -msgid "Network:" +#: mod/crepair.php:87 +msgid "Contact settings applied." msgstr "" -#: src/Model/Profile.php:550 src/Model/Profile.php:643 -msgid "g A l F d" +#: mod/crepair.php:89 +msgid "Contact update failed." msgstr "" -#: src/Model/Profile.php:551 -msgid "F d" +#: mod/crepair.php:110 mod/dfrn_confirm.php:131 mod/fsuggest.php:30 +#: mod/fsuggest.php:96 +msgid "Contact not found." msgstr "" -#: src/Model/Profile.php:608 src/Model/Profile.php:707 -msgid "[today]" +#: mod/crepair.php:114 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect " +"information your communications with this contact may stop working." msgstr "" -#: src/Model/Profile.php:619 -msgid "Birthday Reminders" +#: mod/crepair.php:115 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." msgstr "" -#: src/Model/Profile.php:620 -msgid "Birthdays this week:" +#: mod/crepair.php:129 mod/crepair.php:131 +msgid "No mirroring" msgstr "" -#: src/Model/Profile.php:694 -msgid "[No description]" +#: mod/crepair.php:129 +msgid "Mirror as forwarded posting" msgstr "" -#: src/Model/Profile.php:721 -msgid "Event Reminders" +#: mod/crepair.php:129 mod/crepair.php:131 +msgid "Mirror as my own posting" msgstr "" -#: src/Model/Profile.php:722 -msgid "Events this week:" +#: mod/crepair.php:144 +msgid "Return to contact editor" msgstr "" -#: src/Model/Profile.php:734 src/Model/Profile.php:867 -#: src/Model/Profile.php:900 src/Content/Nav.php:101 mod/contacts.php:671 -#: mod/contacts.php:863 mod/newmember.php:24 mod/profperm.php:113 -#: view/theme/frio/theme.php:260 -msgid "Profile" +#: mod/crepair.php:146 +msgid "Refetch contact data" msgstr "" -#: src/Model/Profile.php:742 mod/settings.php:1209 -msgid "Full Name:" +#: mod/crepair.php:148 mod/manage.php:184 mod/localtime.php:56 mod/poke.php:199 +#: mod/fsuggest.php:114 mod/message.php:265 mod/message.php:432 +#: mod/photos.php:1080 mod/photos.php:1160 mod/photos.php:1445 +#: mod/photos.php:1491 mod/photos.php:1530 mod/photos.php:1603 +#: mod/contacts.php:610 mod/events.php:530 mod/profiles.php:672 +#: mod/install.php:251 mod/install.php:290 mod/invite.php:154 +#: view/theme/duepuntozero/config.php:71 view/theme/frio/config.php:118 +#: view/theme/quattro/config.php:73 view/theme/vier/config.php:119 +#: src/Object/Post.php:796 +msgid "Submit" msgstr "" -#: src/Model/Profile.php:745 -msgid "Member since:" +#: mod/crepair.php:149 +msgid "Remote Self" msgstr "" -#: src/Model/Profile.php:753 -msgid "j F, Y" +#: mod/crepair.php:152 +msgid "Mirror postings from this contact" msgstr "" -#: src/Model/Profile.php:754 -msgid "j F" +#: mod/crepair.php:154 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." msgstr "" -#: src/Model/Profile.php:762 src/Util/Temporal.php:147 -msgid "Birthday:" +#: mod/crepair.php:158 mod/admin.php:490 mod/admin.php:1798 mod/admin.php:1809 +#: mod/admin.php:1822 mod/admin.php:1838 mod/settings.php:679 +#: mod/settings.php:705 +msgid "Name" msgstr "" -#: src/Model/Profile.php:769 -msgid "Age:" +#: mod/crepair.php:159 +msgid "Account Nickname" msgstr "" -#: src/Model/Profile.php:782 -#, php-format -msgid "for %1$d %2$s" +#: mod/crepair.php:160 +msgid "@Tagname - overrides Name/Nickname" msgstr "" -#: src/Model/Profile.php:786 mod/profiles.php:694 -msgid "Sexual Preference:" +#: mod/crepair.php:161 +msgid "Account URL" msgstr "" -#: src/Model/Profile.php:794 mod/profiles.php:721 -msgid "Hometown:" +#: mod/crepair.php:162 +msgid "Friend Request URL" msgstr "" -#: src/Model/Profile.php:798 mod/notifications.php:251 mod/follow.php:174 -#: mod/contacts.php:666 -msgid "Tags:" +#: mod/crepair.php:163 +msgid "Friend Confirm URL" msgstr "" -#: src/Model/Profile.php:802 mod/profiles.php:722 -msgid "Political Views:" +#: mod/crepair.php:164 +msgid "Notification Endpoint URL" msgstr "" -#: src/Model/Profile.php:806 -msgid "Religion:" +#: mod/crepair.php:165 +msgid "Poll/Feed URL" msgstr "" -#: src/Model/Profile.php:814 -msgid "Hobbies/Interests:" +#: mod/crepair.php:166 +msgid "New photo from this URL" msgstr "" -#: src/Model/Profile.php:818 mod/profiles.php:726 -msgid "Likes:" -msgstr "" - -#: src/Model/Profile.php:822 mod/profiles.php:727 -msgid "Dislikes:" -msgstr "" - -#: src/Model/Profile.php:826 -msgid "Contact information and Social Networks:" -msgstr "" - -#: src/Model/Profile.php:830 -msgid "Musical interests:" -msgstr "" - -#: src/Model/Profile.php:834 -msgid "Books, literature:" -msgstr "" - -#: src/Model/Profile.php:838 -msgid "Television:" -msgstr "" - -#: src/Model/Profile.php:842 -msgid "Film/dance/culture/entertainment:" -msgstr "" - -#: src/Model/Profile.php:846 -msgid "Love/Romance:" -msgstr "" - -#: src/Model/Profile.php:850 -msgid "Work/employment:" -msgstr "" - -#: src/Model/Profile.php:854 -msgid "School/education:" -msgstr "" - -#: src/Model/Profile.php:859 -msgid "Forums:" -msgstr "" - -#: src/Model/Profile.php:868 mod/events.php:531 -msgid "Basic" -msgstr "" - -#: src/Model/Profile.php:869 mod/events.php:532 mod/admin.php:1351 -#: mod/contacts.php:895 -msgid "Advanced" -msgstr "" - -#: src/Model/Profile.php:892 src/Content/Nav.php:100 mod/contacts.php:669 -#: mod/contacts.php:855 view/theme/frio/theme.php:259 -msgid "Status" -msgstr "" - -#: src/Model/Profile.php:895 mod/unfollow.php:132 mod/follow.php:186 -#: mod/contacts.php:858 -msgid "Status Messages and Posts" -msgstr "" - -#: src/Model/Profile.php:903 mod/contacts.php:866 -msgid "Profile Details" -msgstr "" - -#: src/Model/Profile.php:908 src/Content/Nav.php:102 mod/fbrowser.php:34 -#: view/theme/frio/theme.php:261 +#: mod/fbrowser.php:34 view/theme/frio/theme.php:261 src/Content/Nav.php:102 +#: src/Model/Profile.php:902 msgid "Photos" msgstr "" -#: src/Model/Profile.php:911 mod/photos.php:108 -msgid "Photo Albums" -msgstr "" - -#: src/Model/Profile.php:916 src/Model/Profile.php:919 src/Content/Nav.php:103 -#: view/theme/frio/theme.php:262 -msgid "Videos" -msgstr "" - -#: src/Model/Profile.php:928 src/Model/Profile.php:939 src/Content/Nav.php:104 -#: src/Content/Nav.php:169 mod/events.php:391 mod/cal.php:274 -#: view/theme/frio/theme.php:263 view/theme/frio/theme.php:267 -msgid "Events" -msgstr "" - -#: src/Model/Profile.php:931 src/Model/Profile.php:942 src/Content/Nav.php:169 -#: view/theme/frio/theme.php:267 -msgid "Events and Calendar" -msgstr "" - -#: src/Model/Profile.php:950 mod/notes.php:52 -msgid "Personal Notes" -msgstr "" - -#: src/Model/Profile.php:953 -msgid "Only You Can See This" -msgstr "" - -#: src/Model/Event.php:36 src/Model/Event.php:814 mod/localtime.php:19 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419 -#: src/Model/Event.php:882 -msgid "Starts:" -msgstr "" - -#: src/Model/Event.php:56 src/Model/Event.php:76 src/Model/Event.php:420 -#: src/Model/Event.php:886 -msgid "Finishes:" -msgstr "" - -#: src/Model/Event.php:368 -msgid "all-day" -msgstr "" - -#: src/Model/Event.php:391 -msgid "Jun" -msgstr "" - -#: src/Model/Event.php:394 -msgid "Sept" -msgstr "" - -#: src/Model/Event.php:412 mod/events.php:400 mod/cal.php:280 -msgid "today" -msgstr "" - -#: src/Model/Event.php:413 src/Util/Temporal.php:304 mod/events.php:401 -#: mod/cal.php:281 -msgid "month" -msgstr "" - -#: src/Model/Event.php:414 src/Util/Temporal.php:305 mod/events.php:402 -#: mod/cal.php:282 -msgid "week" -msgstr "" - -#: src/Model/Event.php:415 src/Util/Temporal.php:306 mod/events.php:403 -#: mod/cal.php:283 -msgid "day" -msgstr "" - -#: src/Model/Event.php:417 -msgid "No events to display" -msgstr "" - -#: src/Model/Event.php:543 -msgid "l, F j" -msgstr "" - -#: src/Model/Event.php:566 -msgid "Edit event" -msgstr "" - -#: src/Model/Event.php:567 -msgid "Duplicate event" -msgstr "" - -#: src/Model/Event.php:568 -msgid "Delete event" -msgstr "" - -#: src/Model/Event.php:815 -msgid "D g:i A" -msgstr "" - -#: src/Model/Event.php:816 -msgid "g:i A" -msgstr "" - -#: src/Model/Event.php:901 src/Model/Event.php:903 -msgid "Show map" -msgstr "" - -#: src/Model/Event.php:902 -msgid "Hide map" -msgstr "" - -#: src/Model/Group.php:44 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "" - -#: src/Model/Group.php:341 -msgid "Default privacy group for new contacts" -msgstr "" - -#: src/Model/Group.php:374 -msgid "Everybody" -msgstr "" - -#: src/Model/Group.php:394 -msgid "edit" -msgstr "" - -#: src/Model/Group.php:413 mod/network.php:202 -msgid "add" -msgstr "" - -#: src/Model/Group.php:414 mod/newmember.php:43 -msgid "Groups" -msgstr "" - -#: src/Model/Group.php:418 -msgid "Edit group" -msgstr "" - -#: src/Model/Group.php:419 -msgid "Contacts not in any group" -msgstr "" - -#: src/Model/Group.php:420 -msgid "Create a new group" -msgstr "" - -#: src/Model/Group.php:421 mod/group.php:103 mod/group.php:199 -msgid "Group Name: " -msgstr "" - -#: src/Model/Group.php:422 -msgid "Edit groups" -msgstr "" - -#: src/Model/Photo.php:244 src/Model/Photo.php:253 mod/fbrowser.php:43 -#: mod/fbrowser.php:68 mod/photos.php:194 mod/photos.php:1062 -#: mod/photos.php:1149 mod/photos.php:1166 mod/photos.php:1659 -#: mod/photos.php:1673 +#: mod/fbrowser.php:43 mod/fbrowser.php:68 mod/photos.php:194 +#: mod/photos.php:1062 mod/photos.php:1149 mod/photos.php:1166 +#: mod/photos.php:1659 mod/photos.php:1673 src/Model/Photo.php:244 +#: src/Model/Photo.php:253 msgid "Contact Photos" msgstr "" -#: src/Model/User.php:154 -msgid "Login failed" +#: mod/fbrowser.php:105 mod/fbrowser.php:136 mod/profile_photo.php:250 +msgid "Upload" msgstr "" -#: src/Model/User.php:185 -msgid "Not enough information to authenticate" +#: mod/fbrowser.php:131 +msgid "Files" msgstr "" -#: src/Model/User.php:214 src/Core/Console/NewPassword.php:74 mod/cal.php:297 +#: mod/fetch.php:16 mod/fetch.php:52 mod/fetch.php:65 mod/help.php:60 +#: mod/p.php:21 mod/p.php:48 mod/p.php:57 index.php:320 +msgid "Not Found" +msgstr "" + +#: mod/hcard.php:18 +msgid "No profile" +msgstr "" + +#: mod/help.php:48 +msgid "Help:" +msgstr "" + +#: mod/help.php:54 view/theme/vier/theme.php:297 src/Content/Nav.php:134 +msgid "Help" +msgstr "" + +#: mod/help.php:63 index.php:325 +msgid "Page not found." +msgstr "" + +#: mod/home.php:39 +#, php-format +msgid "Welcome to %s" +msgstr "" + +#: mod/lockview.php:38 mod/lockview.php:46 +msgid "Remote privacy information not available." +msgstr "" + +#: mod/lockview.php:55 +msgid "Visible to:" +msgstr "" + +#: mod/maintenance.php:24 +msgid "System down for maintenance" +msgstr "" + +#: mod/newmember.php:11 +msgid "Welcome to Friendica" +msgstr "" + +#: mod/newmember.php:12 +msgid "New Member Checklist" +msgstr "" + +#: mod/newmember.php:14 +msgid "" +"We would like to offer some tips and links to help make your experience " +"enjoyable. Click any item to visit the relevant page. A link to this page " +"will be visible from your home page for two weeks after your initial " +"registration and then will quietly disappear." +msgstr "" + +#: mod/newmember.php:15 +msgid "Getting Started" +msgstr "" + +#: mod/newmember.php:17 +msgid "Friendica Walk-Through" +msgstr "" + +#: mod/newmember.php:17 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to " +"join." +msgstr "" + +#: mod/newmember.php:19 mod/admin.php:1922 mod/admin.php:2191 +#: mod/settings.php:124 view/theme/frio/theme.php:269 src/Content/Nav.php:203 +msgid "Settings" +msgstr "" + +#: mod/newmember.php:21 +msgid "Go to Your Settings" +msgstr "" + +#: mod/newmember.php:21 +msgid "" +"On your Settings page - change your initial password. Also make a " +"note of your Identity Address. This looks just like an email address - and " +"will be useful in making friends on the free social web." +msgstr "" + +#: mod/newmember.php:22 +msgid "" +"Review the other settings, particularly the privacy settings. An unpublished " +"directory listing is like having an unlisted phone number. In general, you " +"should probably publish your listing - unless all of your friends and " +"potential friends know exactly how to find you." +msgstr "" + +#: mod/newmember.php:24 mod/profperm.php:113 mod/contacts.php:671 +#: mod/contacts.php:863 view/theme/frio/theme.php:260 src/Content/Nav.php:101 +#: src/Model/Profile.php:728 src/Model/Profile.php:861 +#: src/Model/Profile.php:894 +msgid "Profile" +msgstr "" + +#: mod/newmember.php:26 mod/profile_photo.php:249 mod/profiles.php:691 +msgid "Upload Profile Photo" +msgstr "" + +#: mod/newmember.php:26 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make " +"friends than people who do not." +msgstr "" + +#: mod/newmember.php:27 +msgid "Edit Your Profile" +msgstr "" + +#: mod/newmember.php:27 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown " +"visitors." +msgstr "" + +#: mod/newmember.php:28 +msgid "Profile Keywords" +msgstr "" + +#: mod/newmember.php:28 +msgid "" +"Set some public keywords for your default profile which describe your " +"interests. We may be able to find other people with similar interests and " +"suggest friendships." +msgstr "" + +#: mod/newmember.php:30 +msgid "Connecting" +msgstr "" + +#: mod/newmember.php:36 +msgid "Importing Emails" +msgstr "" + +#: mod/newmember.php:36 +msgid "" +"Enter your email access information on your Connector Settings page if you " +"wish to import and interact with friends or mailing lists from your email " +"INBOX" +msgstr "" + +#: mod/newmember.php:39 +msgid "Go to Your Contacts Page" +msgstr "" + +#: mod/newmember.php:39 +msgid "" +"Your Contacts page is your gateway to managing friendships and connecting " +"with friends on other networks. Typically you enter their address or site " +"URL in the Add New Contact dialog." +msgstr "" + +#: mod/newmember.php:40 +msgid "Go to Your Site's Directory" +msgstr "" + +#: mod/newmember.php:40 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "" + +#: mod/newmember.php:41 +msgid "Finding New People" +msgstr "" + +#: mod/newmember.php:41 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand " +"new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "" + +#: mod/newmember.php:43 src/Model/Group.php:414 +msgid "Groups" +msgstr "" + +#: mod/newmember.php:45 +msgid "Group Your Contacts" +msgstr "" + +#: mod/newmember.php:45 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with " +"each group privately on your Network page." +msgstr "" + +#: mod/newmember.php:48 +msgid "Why Aren't My Posts Public?" +msgstr "" + +#: mod/newmember.php:48 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to " +"people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "" + +#: mod/newmember.php:52 +msgid "Getting Help" +msgstr "" + +#: mod/newmember.php:54 +msgid "Go to the Help Section" +msgstr "" + +#: mod/newmember.php:54 +msgid "" +"Our help pages may be consulted for detail on other program " +"features and resources." +msgstr "" + +#: mod/nogroup.php:42 mod/viewcontacts.php:112 mod/contacts.php:619 +#: mod/contacts.php:959 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "" + +#: mod/nogroup.php:43 mod/contacts.php:960 +msgid "Edit contact" +msgstr "" + +#: mod/nogroup.php:63 +msgid "Contacts who are not members of a group" +msgstr "" + +#: mod/p.php:14 +msgid "Not Extended" +msgstr "" + +#: mod/repair_ostatus.php:18 +msgid "Resubscribing to OStatus contacts" +msgstr "" + +#: mod/repair_ostatus.php:34 +msgid "Error" +msgstr "" + +#: mod/repair_ostatus.php:48 mod/ostatus_subscribe.php:64 +msgid "Done" +msgstr "" + +#: mod/repair_ostatus.php:54 mod/ostatus_subscribe.php:88 +msgid "Keep this window open until done." +msgstr "" + +#: mod/suggest.php:36 +msgid "Do you really want to delete this suggestion?" +msgstr "" + +#: mod/suggest.php:73 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "" + +#: mod/suggest.php:84 mod/suggest.php:104 +msgid "Ignore/Hide" +msgstr "" + +#: mod/suggest.php:114 view/theme/vier/theme.php:204 src/Content/Widget.php:64 +msgid "Friend Suggestions" +msgstr "" + +#: mod/update_community.php:27 mod/update_display.php:27 +#: mod/update_notes.php:40 mod/update_profile.php:39 mod/update_network.php:33 +msgid "[Embedded content - reload page to view]" +msgstr "" + +#: mod/uimport.php:55 mod/register.php:191 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "" + +#: mod/uimport.php:70 mod/register.php:285 +msgid "Import" +msgstr "" + +#: mod/uimport.php:72 +msgid "Move account" +msgstr "" + +#: mod/uimport.php:73 +msgid "You can import an account from another Friendica server." +msgstr "" + +#: mod/uimport.php:74 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also " +"to inform your friends that you moved here." +msgstr "" + +#: mod/uimport.php:75 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "" + +#: mod/uimport.php:76 +msgid "Account file" +msgstr "" + +#: mod/uimport.php:76 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "" + +#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "" + +#: mod/match.php:48 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "" + +#: mod/match.php:104 +msgid "is interested in:" +msgstr "" + +#: mod/match.php:120 +msgid "Profile Match" +msgstr "" + +#: mod/match.php:125 mod/dirfind.php:253 +msgid "No matches" +msgstr "" + +#: mod/notifications.php:37 +msgid "Invalid request identifier." +msgstr "" + +#: mod/notifications.php:46 mod/notifications.php:183 mod/notifications.php:230 +msgid "Discard" +msgstr "" + +#: mod/notifications.php:62 mod/notifications.php:182 mod/notifications.php:266 +#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019 +msgid "Ignore" +msgstr "" + +#: mod/notifications.php:98 src/Content/Nav.php:187 +msgid "Notifications" +msgstr "" + +#: mod/notifications.php:107 +msgid "Network Notifications" +msgstr "" + +#: mod/notifications.php:113 mod/notify.php:81 +msgid "System Notifications" +msgstr "" + +#: mod/notifications.php:119 +msgid "Personal Notifications" +msgstr "" + +#: mod/notifications.php:125 +msgid "Home Notifications" +msgstr "" + +#: mod/notifications.php:155 +msgid "Show Ignored Requests" +msgstr "" + +#: mod/notifications.php:155 +msgid "Hide Ignored Requests" +msgstr "" + +#: mod/notifications.php:167 mod/notifications.php:237 +msgid "Notification type: " +msgstr "" + +#: mod/notifications.php:170 +#, php-format +msgid "suggested by %s" +msgstr "" + +#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646 +msgid "Hide this contact from others" +msgstr "" + +#: mod/notifications.php:176 mod/notifications.php:255 +msgid "Post a new friend activity" +msgstr "" + +#: mod/notifications.php:176 mod/notifications.php:255 +msgid "if applicable" +msgstr "" + +#: mod/notifications.php:179 mod/notifications.php:264 mod/admin.php:1812 +msgid "Approve" +msgstr "" + +#: mod/notifications.php:198 +msgid "Claims to be known to you: " +msgstr "" + +#: mod/notifications.php:199 +msgid "yes" +msgstr "" + +#: mod/notifications.php:199 +msgid "no" +msgstr "" + +#: mod/notifications.php:200 mod/notifications.php:205 +msgid "Shall your connection be bidirectional or not?" +msgstr "" + +#: mod/notifications.php:201 mod/notifications.php:206 +#, php-format +msgid "" +"Accepting %s as a friend allows %s to subscribe to your posts, and you will " +"also receive updates from them in your news feed." +msgstr "" + +#: mod/notifications.php:202 +#, php-format +msgid "" +"Accepting %s as a subscriber allows them to subscribe to your posts, but you " +"will not receive updates from them in your news feed." +msgstr "" + +#: mod/notifications.php:207 +#, php-format +msgid "" +"Accepting %s as a sharer allows them to subscribe to your posts, but you " +"will not receive updates from them in your news feed." +msgstr "" + +#: mod/notifications.php:218 +msgid "Friend" +msgstr "" + +#: mod/notifications.php:219 +msgid "Sharer" +msgstr "" + +#: mod/notifications.php:219 +msgid "Subscriber" +msgstr "" + +#: mod/notifications.php:247 mod/contacts.php:660 mod/events.php:518 +#: mod/directory.php:148 src/Model/Event.php:60 src/Model/Event.php:85 +#: src/Model/Event.php:421 src/Model/Event.php:900 src/Model/Profile.php:413 +msgid "Location:" +msgstr "" + +#: mod/notifications.php:249 mod/contacts.php:664 mod/directory.php:154 +#: src/Model/Profile.php:419 src/Model/Profile.php:804 +msgid "About:" +msgstr "" + +#: mod/notifications.php:251 mod/contacts.php:666 mod/follow.php:174 +#: src/Model/Profile.php:792 +msgid "Tags:" +msgstr "" + +#: mod/notifications.php:253 mod/directory.php:151 src/Model/Profile.php:416 +#: src/Model/Profile.php:743 +msgid "Gender:" +msgstr "" + +#: mod/notifications.php:258 mod/contacts.php:656 mod/unfollow.php:122 +#: mod/follow.php:166 mod/admin.php:490 mod/admin.php:500 +msgid "Profile URL" +msgstr "" + +#: mod/notifications.php:261 mod/contacts.php:71 src/Model/Profile.php:516 +msgid "Network:" +msgstr "" + +#: mod/notifications.php:275 +msgid "No introductions." +msgstr "" + +#: mod/notifications.php:316 +msgid "Show unread" +msgstr "" + +#: mod/notifications.php:316 +msgid "Show all" +msgstr "" + +#: mod/notifications.php:322 +#, php-format +msgid "No more %s notifications." +msgstr "" + +#: mod/openid.php:29 +msgid "OpenID protocol error. No ID returned." +msgstr "" + +#: mod/openid.php:66 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "" + +#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:134 +msgid "Login failed." +msgstr "" + +#: mod/dfrn_confirm.php:74 mod/profiles.php:39 mod/profiles.php:149 +#: mod/profiles.php:196 mod/profiles.php:618 +msgid "Profile not found." +msgstr "" + +#: mod/dfrn_confirm.php:132 +msgid "" +"This may occasionally happen if contact was requested by both persons and it " +"has already been approved." +msgstr "" + +#: mod/dfrn_confirm.php:242 +msgid "Response from remote site was not understood." +msgstr "" + +#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "" + +#: mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "" + +#: mod/dfrn_confirm.php:275 +msgid "Temporary failure. Please wait and try again." +msgstr "" + +#: mod/dfrn_confirm.php:278 +msgid "Introduction failed or was revoked." +msgstr "" + +#: mod/dfrn_confirm.php:283 +msgid "Remote site reported: " +msgstr "" + +#: mod/dfrn_confirm.php:396 +msgid "Unable to set contact photo." +msgstr "" + +#: mod/dfrn_confirm.php:498 +#, php-format +msgid "No user record found for '%s' " +msgstr "" + +#: mod/dfrn_confirm.php:508 +msgid "Our site encryption key is apparently messed up." +msgstr "" + +#: mod/dfrn_confirm.php:519 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "" + +#: mod/dfrn_confirm.php:535 +msgid "Contact record was not found for you on our site." +msgstr "" + +#: mod/dfrn_confirm.php:549 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "" + +#: mod/dfrn_confirm.php:565 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "" + +#: mod/dfrn_confirm.php:576 +msgid "Unable to set your contact credentials on our system." +msgstr "" + +#: mod/dfrn_confirm.php:631 +msgid "Unable to update your contact profile details on our system" +msgstr "" + +#: mod/dfrn_confirm.php:661 mod/dfrn_request.php:568 src/Model/Contact.php:1537 +msgid "[Name Withheld]" +msgstr "" + +#: mod/dfrn_confirm.php:694 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "" + +#: mod/manage.php:180 +msgid "Manage Identities and/or Pages" +msgstr "" + +#: mod/manage.php:181 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "" + +#: mod/manage.php:182 +msgid "Select an identity to manage: " +msgstr "" + +#: mod/wall_attach.php:24 mod/wall_attach.php:32 mod/wall_attach.php:83 +#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112 +#: mod/wall_upload.php:155 mod/wall_upload.php:158 +msgid "Invalid request." +msgstr "" + +#: mod/wall_attach.php:101 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: mod/wall_attach.php:101 +msgid "Or - did you try to upload an empty file?" +msgstr "" + +#: mod/wall_attach.php:112 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "" + +#: mod/wall_attach.php:136 mod/wall_attach.php:152 +msgid "File upload failed." +msgstr "" + +#: mod/dfrn_request.php:94 +msgid "This introduction has already been accepted." +msgstr "" + +#: mod/dfrn_request.php:112 mod/dfrn_request.php:359 +msgid "Profile location is not valid or does not contain profile information." +msgstr "" + +#: mod/dfrn_request.php:116 mod/dfrn_request.php:363 +msgid "Warning: profile location has no identifiable owner name." +msgstr "" + +#: mod/dfrn_request.php:119 mod/dfrn_request.php:366 +msgid "Warning: profile location has no profile photo." +msgstr "" + +#: mod/dfrn_request.php:123 mod/dfrn_request.php:370 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "" +msgstr[1] "" + +#: mod/dfrn_request.php:162 +msgid "Introduction complete." +msgstr "" + +#: mod/dfrn_request.php:199 +msgid "Unrecoverable protocol error." +msgstr "" + +#: mod/dfrn_request.php:226 +msgid "Profile unavailable." +msgstr "" + +#: mod/dfrn_request.php:248 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "" + +#: mod/dfrn_request.php:249 +msgid "Spam protection measures have been invoked." +msgstr "" + +#: mod/dfrn_request.php:250 +msgid "Friends are advised to please try again in 24 hours." +msgstr "" + +#: mod/dfrn_request.php:280 +msgid "Invalid locator" +msgstr "" + +#: mod/dfrn_request.php:316 +msgid "You have already introduced yourself here." +msgstr "" + +#: mod/dfrn_request.php:319 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "" + +#: mod/dfrn_request.php:339 +msgid "Invalid profile URL." +msgstr "" + +#: mod/dfrn_request.php:345 src/Model/Contact.php:1235 +msgid "Disallowed profile URL." +msgstr "" + +#: mod/dfrn_request.php:351 mod/admin.php:353 mod/admin.php:371 +#: mod/friendica.php:128 src/Model/Contact.php:1240 +msgid "Blocked domain" +msgstr "" + +#: mod/dfrn_request.php:419 mod/contacts.php:230 +msgid "Failed to update contact record." +msgstr "" + +#: mod/dfrn_request.php:439 +msgid "Your introduction has been sent." +msgstr "" + +#: mod/dfrn_request.php:477 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "" + +#: mod/dfrn_request.php:493 +msgid "Please login to confirm introduction." +msgstr "" + +#: mod/dfrn_request.php:501 +msgid "" +"Incorrect identity currently logged in. Please login to this profile." +msgstr "" + +#: mod/dfrn_request.php:515 mod/dfrn_request.php:532 +msgid "Confirm" +msgstr "" + +#: mod/dfrn_request.php:527 +msgid "Hide this contact" +msgstr "" + +#: mod/dfrn_request.php:530 +#, php-format +msgid "Welcome home %s." +msgstr "" + +#: mod/dfrn_request.php:531 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "" + +#: mod/dfrn_request.php:607 mod/probe.php:13 mod/search.php:98 +#: mod/search.php:104 mod/viewcontacts.php:45 mod/webfinger.php:16 +#: mod/photos.php:932 mod/videos.php:199 mod/display.php:203 +#: mod/directory.php:42 mod/community.php:27 +msgid "Public access denied." +msgstr "" + +#: mod/dfrn_request.php:642 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "" + +#: mod/dfrn_request.php:645 +#, php-format +msgid "" +"If you are not yet a member of the free social web, follow " +"this link to find a public Friendica site and join us today." +msgstr "" + +#: mod/dfrn_request.php:650 +msgid "Friend/Connection Request" +msgstr "" + +#: mod/dfrn_request.php:651 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@gnusocial.de" +msgstr "" + +#: mod/dfrn_request.php:652 mod/follow.php:149 +msgid "Please answer the following:" +msgstr "" + +#: mod/dfrn_request.php:653 mod/follow.php:150 +#, php-format +msgid "Does %s know you?" +msgstr "" + +#: mod/dfrn_request.php:654 mod/follow.php:151 +msgid "Add a personal note:" +msgstr "" + +#: mod/dfrn_request.php:656 src/Content/ContactSelector.php:79 +msgid "Friendica" +msgstr "" + +#: mod/dfrn_request.php:657 +msgid "GNU Social (Pleroma, Mastodon)" +msgstr "" + +#: mod/dfrn_request.php:658 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "" + +#: mod/dfrn_request.php:659 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search " +"bar." +msgstr "" + +#: mod/dfrn_request.php:660 mod/unfollow.php:113 mod/follow.php:157 +msgid "Your Identity Address:" +msgstr "" + +#: mod/dfrn_request.php:662 mod/unfollow.php:65 mod/follow.php:62 +msgid "Submit Request" +msgstr "" + +#: mod/filer.php:34 +msgid "- select -" +msgstr "" + +#: mod/localtime.php:19 src/Model/Event.php:36 src/Model/Event.php:814 +msgid "l F d, Y \\@ g:i A" +msgstr "" + +#: mod/localtime.php:33 +msgid "Time Conversion" +msgstr "" + +#: mod/localtime.php:35 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "" + +#: mod/localtime.php:39 +#, php-format +msgid "UTC time: %s" +msgstr "" + +#: mod/localtime.php:42 +#, php-format +msgid "Current timezone: %s" +msgstr "" + +#: mod/localtime.php:46 +#, php-format +msgid "Converted localtime: %s" +msgstr "" + +#: mod/localtime.php:52 +msgid "Please select your timezone:" +msgstr "" + +#: mod/notify.php:77 +msgid "No more system notifications." +msgstr "" + +#: mod/ping.php:292 +msgid "{0} wants to be your friend" +msgstr "" + +#: mod/ping.php:307 +msgid "{0} sent you a message" +msgstr "" + +#: mod/ping.php:322 +msgid "{0} requested registration" +msgstr "" + +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "" + +#: mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: mod/poke.php:194 +msgid "Recipient" +msgstr "" + +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: mod/poke.php:198 +msgid "Make this post private" +msgstr "" + +#: mod/probe.php:14 mod/webfinger.php:17 +msgid "Only logged in users are permitted to perform a probing." +msgstr "" + +#: mod/profperm.php:28 mod/group.php:83 index.php:443 +msgid "Permission denied" +msgstr "" + +#: mod/profperm.php:34 mod/profperm.php:65 +msgid "Invalid profile identifier." +msgstr "" + +#: mod/profperm.php:111 +msgid "Profile Visibility Editor" +msgstr "" + +#: mod/profperm.php:115 mod/group.php:265 +msgid "Click on a contact to add or remove." +msgstr "" + +#: mod/profperm.php:124 +msgid "Visible To" +msgstr "" + +#: mod/profperm.php:140 +msgid "All Contacts (with secure profile access)" +msgstr "" + +#: mod/regmod.php:68 +msgid "Account approved." +msgstr "" + +#: mod/regmod.php:93 +#, php-format +msgid "Registration revoked for %s" +msgstr "" + +#: mod/regmod.php:102 +msgid "Please login." +msgstr "" + +#: mod/search.php:37 mod/network.php:194 +msgid "Remove term" +msgstr "" + +#: mod/search.php:46 mod/network.php:201 src/Content/Feature.php:100 +msgid "Saved Searches" +msgstr "" + +#: mod/search.php:105 +msgid "Only logged in users are permitted to perform a search." +msgstr "" + +#: mod/search.php:129 +msgid "Too Many Requests" +msgstr "" + +#: mod/search.php:130 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "" + +#: mod/search.php:228 mod/community.php:141 +msgid "No results." +msgstr "" + +#: mod/search.php:234 +#, php-format +msgid "Items tagged with: %s" +msgstr "" + +#: mod/search.php:236 mod/contacts.php:819 +#, php-format +msgid "Results for: %s" +msgstr "" + +#: mod/subthread.php:113 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: mod/tagrm.php:47 +msgid "Tag removed" +msgstr "" + +#: mod/tagrm.php:85 +msgid "Remove Item Tag" +msgstr "" + +#: mod/tagrm.php:87 +msgid "Select a tag to remove: " +msgstr "" + +#: mod/tagrm.php:98 mod/delegate.php:177 +msgid "Remove" +msgstr "" + +#: mod/uexport.php:44 +msgid "Export account" +msgstr "" + +#: mod/uexport.php:44 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "" + +#: mod/uexport.php:45 +msgid "Export all" +msgstr "" + +#: mod/uexport.php:45 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "" + +#: mod/uexport.php:52 mod/settings.php:108 +msgid "Export personal data" +msgstr "" + +#: mod/viewcontacts.php:87 +msgid "No contacts." +msgstr "" + +#: mod/viewsrc.php:12 mod/community.php:34 +msgid "Access denied." +msgstr "" + +#: mod/wall_upload.php:186 mod/photos.php:763 mod/photos.php:766 +#: mod/photos.php:795 mod/profile_photo.php:153 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "" + +#: mod/wall_upload.php:200 mod/photos.php:818 mod/profile_photo.php:162 +msgid "Unable to process image." +msgstr "" + +#: mod/wall_upload.php:231 mod/item.php:471 src/Object/Image.php:953 +#: src/Object/Image.php:969 src/Object/Image.php:977 src/Object/Image.php:1002 +msgid "Wall Photos" +msgstr "" + +#: mod/wall_upload.php:239 mod/photos.php:847 mod/profile_photo.php:307 +msgid "Image upload failed." +msgstr "" + +#: mod/wallmessage.php:49 mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "" + +#: mod/wallmessage.php:57 mod/message.php:73 +msgid "No recipient selected." +msgstr "" + +#: mod/wallmessage.php:60 +msgid "Unable to check your home location." +msgstr "" + +#: mod/wallmessage.php:63 mod/message.php:80 +msgid "Message could not be sent." +msgstr "" + +#: mod/wallmessage.php:66 mod/message.php:83 +msgid "Message collection failure." +msgstr "" + +#: mod/wallmessage.php:69 mod/message.php:86 +msgid "Message sent." +msgstr "" + +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." +msgstr "" + +#: mod/wallmessage.php:132 mod/message.php:250 +msgid "Send Private Message" +msgstr "" + +#: mod/wallmessage.php:133 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "" + +#: mod/wallmessage.php:134 mod/message.php:251 mod/message.php:421 +msgid "To:" +msgstr "" + +#: mod/wallmessage.php:135 mod/message.php:255 mod/message.php:423 +msgid "Subject:" +msgstr "" + +#: mod/wallmessage.php:141 mod/message.php:259 mod/message.php:426 +#: mod/invite.php:149 +msgid "Your message:" +msgstr "" + +#: mod/bookmarklet.php:23 src/Content/Nav.php:114 src/Module/Login.php:312 +msgid "Login" +msgstr "" + +#: mod/bookmarklet.php:51 +msgid "The post was created" +msgstr "" + +#: mod/editpost.php:25 mod/editpost.php:35 +msgid "Item not found" +msgstr "" + +#: mod/editpost.php:42 +msgid "Edit post" +msgstr "" + +#: mod/editpost.php:134 src/Core/ACL.php:315 +msgid "CC: email addresses" +msgstr "" + +#: mod/editpost.php:141 src/Core/ACL.php:316 +msgid "Example: bob@example.com, mary@example.com" +msgstr "" + +#: mod/fsuggest.php:72 +msgid "Friend suggestion sent." +msgstr "" + +#: mod/fsuggest.php:101 +msgid "Suggest Friends" +msgstr "" + +#: mod/fsuggest.php:103 +#, php-format +msgid "Suggest a friend for %s" +msgstr "" + +#: mod/group.php:36 +msgid "Group created." +msgstr "" + +#: mod/group.php:42 +msgid "Could not create group." +msgstr "" + +#: mod/group.php:56 mod/group.php:157 +msgid "Group not found." +msgstr "" + +#: mod/group.php:70 +msgid "Group name changed." +msgstr "" + +#: mod/group.php:97 +msgid "Save Group" +msgstr "" + +#: mod/group.php:102 +msgid "Create a group of contacts/friends." +msgstr "" + +#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421 +msgid "Group Name: " +msgstr "" + +#: mod/group.php:127 +msgid "Group removed." +msgstr "" + +#: mod/group.php:129 +msgid "Unable to remove group." +msgstr "" + +#: mod/group.php:192 +msgid "Delete Group" +msgstr "" + +#: mod/group.php:198 +msgid "Group Editor" +msgstr "" + +#: mod/group.php:203 +msgid "Edit Group Name" +msgstr "" + +#: mod/group.php:213 +msgid "Members" +msgstr "" + +#: mod/group.php:215 mod/contacts.php:719 +msgid "All Contacts" +msgstr "" + +#: mod/group.php:216 mod/network.php:639 +msgid "Group is empty" +msgstr "" + +#: mod/group.php:229 +msgid "Remove Contact" +msgstr "" + +#: mod/group.php:253 +msgid "Add Contact" +msgstr "" + +#: mod/message.php:30 src/Content/Nav.php:195 +msgid "New Message" +msgstr "" + +#: mod/message.php:77 +msgid "Unable to locate contact information." +msgstr "" + +#: mod/message.php:112 view/theme/frio/theme.php:268 src/Content/Nav.php:192 +msgid "Messages" +msgstr "" + +#: mod/message.php:136 +msgid "Do you really want to delete this message?" +msgstr "" + +#: mod/message.php:156 +msgid "Message deleted." +msgstr "" + +#: mod/message.php:185 +msgid "Conversation removed." +msgstr "" + +#: mod/message.php:291 +msgid "No messages." +msgstr "" + +#: mod/message.php:330 +msgid "Message not available." +msgstr "" + +#: mod/message.php:397 +msgid "Delete message" +msgstr "" + +#: mod/message.php:399 mod/message.php:500 +msgid "D, d M Y - g:i A" +msgstr "" + +#: mod/message.php:414 mod/message.php:497 +msgid "Delete conversation" +msgstr "" + +#: mod/message.php:416 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: mod/message.php:420 +msgid "Send Reply" +msgstr "" + +#: mod/message.php:471 +#, php-format +msgid "Unknown sender - %s" +msgstr "" + +#: mod/message.php:473 +#, php-format +msgid "You and %s" +msgstr "" + +#: mod/message.php:475 +#, php-format +msgid "%s and You" +msgstr "" + +#: mod/message.php:503 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "" +msgstr[1] "" + +#: mod/notes.php:52 src/Model/Profile.php:944 +msgid "Personal Notes" +msgstr "" + +#: mod/photos.php:108 src/Model/Profile.php:905 +msgid "Photo Albums" +msgstr "" + +#: mod/photos.php:109 mod/photos.php:1713 +msgid "Recent Photos" +msgstr "" + +#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715 +msgid "Upload New Photos" +msgstr "" + +#: mod/photos.php:126 mod/settings.php:51 +msgid "everybody" +msgstr "" + +#: mod/photos.php:184 +msgid "Contact information unavailable" +msgstr "" + +#: mod/photos.php:204 +msgid "Album not found." +msgstr "" + +#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161 +msgid "Delete Album" +msgstr "" + +#: mod/photos.php:243 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "" + +#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446 +msgid "Delete Photo" +msgstr "" + +#: mod/photos.php:319 +msgid "Do you really want to delete this photo?" +msgstr "" + +#: mod/photos.php:667 +msgid "a photo" +msgstr "" + +#: mod/photos.php:667 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "" + +#: mod/photos.php:769 +msgid "Image upload didn't complete, please try again" +msgstr "" + +#: mod/photos.php:772 +msgid "Image file is missing" +msgstr "" + +#: mod/photos.php:777 +msgid "" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "" + +#: mod/photos.php:803 +msgid "Image file is empty." +msgstr "" + +#: mod/photos.php:940 +msgid "No photos selected" +msgstr "" + +#: mod/photos.php:1036 mod/videos.php:309 +msgid "Access to this item is restricted." +msgstr "" + +#: mod/photos.php:1090 +msgid "Upload Photos" +msgstr "" + +#: mod/photos.php:1094 mod/photos.php:1156 +msgid "New album name: " +msgstr "" + +#: mod/photos.php:1095 +msgid "or existing album name: " +msgstr "" + +#: mod/photos.php:1096 +msgid "Do not show a status post for this upload" +msgstr "" + +#: mod/photos.php:1098 mod/photos.php:1441 mod/events.php:533 +#: src/Core/ACL.php:318 +msgid "Permissions" +msgstr "" + +#: mod/photos.php:1106 mod/photos.php:1449 mod/settings.php:1231 +msgid "Show to Groups" +msgstr "" + +#: mod/photos.php:1107 mod/photos.php:1450 mod/settings.php:1232 +msgid "Show to Contacts" +msgstr "" + +#: mod/photos.php:1167 +msgid "Edit Album" +msgstr "" + +#: mod/photos.php:1172 +msgid "Show Newest First" +msgstr "" + +#: mod/photos.php:1174 +msgid "Show Oldest First" +msgstr "" + +#: mod/photos.php:1195 mod/photos.php:1698 +msgid "View Photo" +msgstr "" + +#: mod/photos.php:1236 +msgid "Permission denied. Access to this item may be restricted." +msgstr "" + +#: mod/photos.php:1238 +msgid "Photo not available" +msgstr "" + +#: mod/photos.php:1301 +msgid "View photo" +msgstr "" + +#: mod/photos.php:1301 +msgid "Edit photo" +msgstr "" + +#: mod/photos.php:1302 +msgid "Use as profile photo" +msgstr "" + +#: mod/photos.php:1308 src/Object/Post.php:149 +msgid "Private Message" +msgstr "" + +#: mod/photos.php:1327 +msgid "View Full Size" +msgstr "" + +#: mod/photos.php:1414 +msgid "Tags: " +msgstr "" + +#: mod/photos.php:1417 +msgid "[Remove any tag]" +msgstr "" + +#: mod/photos.php:1432 +msgid "New album name" +msgstr "" + +#: mod/photos.php:1433 +msgid "Caption" +msgstr "" + +#: mod/photos.php:1434 +msgid "Add a Tag" +msgstr "" + +#: mod/photos.php:1434 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "" + +#: mod/photos.php:1435 +msgid "Do not rotate" +msgstr "" + +#: mod/photos.php:1436 +msgid "Rotate CW (right)" +msgstr "" + +#: mod/photos.php:1437 +msgid "Rotate CCW (left)" +msgstr "" + +#: mod/photos.php:1471 src/Object/Post.php:296 +msgid "I like this (toggle)" +msgstr "" + +#: mod/photos.php:1472 src/Object/Post.php:297 +msgid "I don't like this (toggle)" +msgstr "" + +#: mod/photos.php:1488 mod/photos.php:1527 mod/photos.php:1600 +#: mod/contacts.php:953 src/Object/Post.php:793 +msgid "This is you" +msgstr "" + +#: mod/photos.php:1490 mod/photos.php:1529 mod/photos.php:1602 +#: src/Object/Post.php:399 src/Object/Post.php:795 +msgid "Comment" +msgstr "" + +#: mod/photos.php:1634 +msgid "Map" +msgstr "" + +#: mod/photos.php:1704 mod/videos.php:387 +msgid "View Album" +msgstr "" + +#: mod/videos.php:139 +msgid "Do you really want to delete this video?" +msgstr "" + +#: mod/videos.php:144 +msgid "Delete Video" +msgstr "" + +#: mod/videos.php:207 +msgid "No videos selected" +msgstr "" + +#: mod/videos.php:396 +msgid "Recent Videos" +msgstr "" + +#: mod/videos.php:398 +msgid "Upload New Videos" +msgstr "" + +#: mod/cal.php:142 mod/display.php:313 mod/profile.php:173 +msgid "Access to this profile has been restricted." +msgstr "" + +#: mod/cal.php:274 mod/events.php:391 view/theme/frio/theme.php:263 +#: view/theme/frio/theme.php:267 src/Content/Nav.php:104 +#: src/Content/Nav.php:170 src/Model/Profile.php:922 src/Model/Profile.php:933 +msgid "Events" +msgstr "" + +#: mod/cal.php:275 mod/events.php:392 +msgid "View" +msgstr "" + +#: mod/cal.php:276 mod/events.php:394 +msgid "Previous" +msgstr "" + +#: mod/cal.php:277 mod/events.php:395 mod/install.php:209 +msgid "Next" +msgstr "" + +#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412 +msgid "today" +msgstr "" + +#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304 +#: src/Model/Event.php:413 +msgid "month" +msgstr "" + +#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305 +#: src/Model/Event.php:414 +msgid "week" +msgstr "" + +#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306 +#: src/Model/Event.php:415 +msgid "day" +msgstr "" + +#: mod/cal.php:284 mod/events.php:404 +msgid "list" +msgstr "" + +#: mod/cal.php:297 src/Core/Console/NewPassword.php:73 src/Model/User.php:214 msgid "User not found" msgstr "" -#: src/Model/User.php:335 mod/settings.php:384 -msgid "Passwords do not match. Password unchanged." +#: mod/cal.php:313 +msgid "This calendar format is not supported" msgstr "" -#: src/Model/User.php:342 -msgid "An invitation is required." +#: mod/cal.php:315 +msgid "No exportable data found" msgstr "" -#: src/Model/User.php:346 -msgid "Invitation could not be verified." +#: mod/cal.php:332 +msgid "calendar" msgstr "" -#: src/Model/User.php:353 -msgid "Invalid OpenID url" +#: mod/contacts.php:157 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "" +msgstr[1] "" + +#: mod/contacts.php:184 mod/contacts.php:400 +msgid "Could not access contact record." msgstr "" -#: src/Model/User.php:366 src/Module/Login.php:100 +#: mod/contacts.php:194 +msgid "Could not locate selected profile." +msgstr "" + +#: mod/contacts.php:228 +msgid "Contact updated." +msgstr "" + +#: mod/contacts.php:421 +msgid "Contact has been blocked" +msgstr "" + +#: mod/contacts.php:421 +msgid "Contact has been unblocked" +msgstr "" + +#: mod/contacts.php:432 +msgid "Contact has been ignored" +msgstr "" + +#: mod/contacts.php:432 +msgid "Contact has been unignored" +msgstr "" + +#: mod/contacts.php:443 +msgid "Contact has been archived" +msgstr "" + +#: mod/contacts.php:443 +msgid "Contact has been unarchived" +msgstr "" + +#: mod/contacts.php:467 +msgid "Drop contact" +msgstr "" + +#: mod/contacts.php:470 mod/contacts.php:823 +msgid "Do you really want to delete this contact?" +msgstr "" + +#: mod/contacts.php:488 +msgid "Contact has been removed." +msgstr "" + +#: mod/contacts.php:519 +#, php-format +msgid "You are mutual friends with %s" +msgstr "" + +#: mod/contacts.php:523 +#, php-format +msgid "You are sharing with %s" +msgstr "" + +#: mod/contacts.php:527 +#, php-format +msgid "%s is sharing with you" +msgstr "" + +#: mod/contacts.php:547 +msgid "Private communications are not available for this contact." +msgstr "" + +#: mod/contacts.php:549 +msgid "Never" +msgstr "" + +#: mod/contacts.php:552 +msgid "(Update was successful)" +msgstr "" + +#: mod/contacts.php:552 +msgid "(Update was not successful)" +msgstr "" + +#: mod/contacts.php:554 mod/contacts.php:992 +msgid "Suggest friends" +msgstr "" + +#: mod/contacts.php:558 +#, php-format +msgid "Network type: %s" +msgstr "" + +#: mod/contacts.php:563 +msgid "Communications lost with this contact!" +msgstr "" + +#: mod/contacts.php:569 +msgid "Fetch further information for feeds" +msgstr "" + +#: mod/contacts.php:571 msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." +"Fetch information like preview pictures, title and teaser from the feed " +"item. You can activate this if the feed doesn't contain much text. Keywords " +"are taken from the meta header in the feed item and are posted as hash tags." msgstr "" -#: src/Model/User.php:366 src/Module/Login.php:100 -msgid "The error message was:" +#: mod/contacts.php:572 mod/admin.php:1274 mod/admin.php:1437 +#: mod/admin.php:1447 +msgid "Disabled" msgstr "" -#: src/Model/User.php:372 -msgid "Please enter the required information." +#: mod/contacts.php:573 +msgid "Fetch information" msgstr "" -#: src/Model/User.php:385 -msgid "Please use a shorter name." +#: mod/contacts.php:574 +msgid "Fetch keywords" msgstr "" -#: src/Model/User.php:388 -msgid "Name too short." +#: mod/contacts.php:575 +msgid "Fetch information and keywords" msgstr "" -#: src/Model/User.php:396 -msgid "That doesn't appear to be your full (First Last) name." +#: mod/contacts.php:599 mod/unfollow.php:100 +msgid "Disconnect/Unfollow" msgstr "" -#: src/Model/User.php:401 -msgid "Your email domain is not among those allowed on this site." +#: mod/contacts.php:608 +msgid "Contact" msgstr "" -#: src/Model/User.php:405 -msgid "Not a valid email address." +#: mod/contacts.php:611 +msgid "Profile Visibility" msgstr "" -#: src/Model/User.php:409 src/Model/User.php:417 -msgid "Cannot use that email." -msgstr "" - -#: src/Model/User.php:424 -msgid "Your nickname can only contain a-z, 0-9 and _." -msgstr "" - -#: src/Model/User.php:431 src/Model/User.php:487 -msgid "Nickname is already registered. Please choose another." -msgstr "" - -#: src/Model/User.php:441 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "" - -#: src/Model/User.php:474 src/Model/User.php:478 -msgid "An error occurred during registration. Please try again." -msgstr "" - -#: src/Model/User.php:498 view/theme/duepuntozero/config.php:54 -msgid "default" -msgstr "" - -#: src/Model/User.php:503 -msgid "An error occurred creating your default profile. Please try again." -msgstr "" - -#: src/Model/User.php:510 -msgid "An error occurred creating your self contact. Please try again." -msgstr "" - -#: src/Model/User.php:515 src/Content/ContactSelector.php:169 -msgid "Friends" -msgstr "" - -#: src/Model/User.php:519 +#: mod/contacts.php:612 +#, php-format msgid "" -"An error occurred creating your default contact group. Please try again." +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." msgstr "" -#: src/Model/User.php:593 +#: mod/contacts.php:613 +msgid "Contact Information / Notes" +msgstr "" + +#: mod/contacts.php:614 +msgid "Their personal note" +msgstr "" + +#: mod/contacts.php:616 +msgid "Edit contact notes" +msgstr "" + +#: mod/contacts.php:620 +msgid "Block/Unblock contact" +msgstr "" + +#: mod/contacts.php:621 +msgid "Ignore contact" +msgstr "" + +#: mod/contacts.php:622 +msgid "Repair URL settings" +msgstr "" + +#: mod/contacts.php:623 +msgid "View conversations" +msgstr "" + +#: mod/contacts.php:628 +msgid "Last update:" +msgstr "" + +#: mod/contacts.php:630 +msgid "Update public posts" +msgstr "" + +#: mod/contacts.php:632 mod/contacts.php:1002 +msgid "Update now" +msgstr "" + +#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011 +#: mod/admin.php:485 mod/admin.php:1816 +msgid "Unblock" +msgstr "" + +#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011 +#: mod/admin.php:484 mod/admin.php:1815 +msgid "Block" +msgstr "" + +#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019 +msgid "Unignore" +msgstr "" + +#: mod/contacts.php:642 +msgid "Currently blocked" +msgstr "" + +#: mod/contacts.php:643 +msgid "Currently ignored" +msgstr "" + +#: mod/contacts.php:644 +msgid "Currently archived" +msgstr "" + +#: mod/contacts.php:645 +msgid "Awaiting connection acknowledge" +msgstr "" + +#: mod/contacts.php:646 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "" + +#: mod/contacts.php:647 +msgid "Notification for new posts" +msgstr "" + +#: mod/contacts.php:647 +msgid "Send a notification of every new post of this contact" +msgstr "" + +#: mod/contacts.php:650 +msgid "Blacklisted keywords" +msgstr "" + +#: mod/contacts.php:650 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "" + +#: mod/contacts.php:662 src/Model/Profile.php:420 +msgid "XMPP:" +msgstr "" + +#: mod/contacts.php:667 +msgid "Actions" +msgstr "" + +#: mod/contacts.php:669 mod/contacts.php:855 view/theme/frio/theme.php:259 +#: src/Content/Nav.php:100 src/Model/Profile.php:886 +msgid "Status" +msgstr "" + +#: mod/contacts.php:670 +msgid "Contact Settings" +msgstr "" + +#: mod/contacts.php:711 +msgid "Suggestions" +msgstr "" + +#: mod/contacts.php:714 +msgid "Suggest potential friends" +msgstr "" + +#: mod/contacts.php:722 +msgid "Show all contacts" +msgstr "" + +#: mod/contacts.php:727 +msgid "Unblocked" +msgstr "" + +#: mod/contacts.php:730 +msgid "Only show unblocked contacts" +msgstr "" + +#: mod/contacts.php:735 +msgid "Blocked" +msgstr "" + +#: mod/contacts.php:738 +msgid "Only show blocked contacts" +msgstr "" + +#: mod/contacts.php:743 +msgid "Ignored" +msgstr "" + +#: mod/contacts.php:746 +msgid "Only show ignored contacts" +msgstr "" + +#: mod/contacts.php:751 +msgid "Archived" +msgstr "" + +#: mod/contacts.php:754 +msgid "Only show archived contacts" +msgstr "" + +#: mod/contacts.php:759 +msgid "Hidden" +msgstr "" + +#: mod/contacts.php:762 +msgid "Only show hidden contacts" +msgstr "" + +#: mod/contacts.php:818 +msgid "Search your contacts" +msgstr "" + +#: mod/contacts.php:820 mod/directory.php:209 view/theme/vier/theme.php:203 +#: src/Content/Widget.php:63 +msgid "Find" +msgstr "" + +#: mod/contacts.php:826 mod/settings.php:171 mod/settings.php:703 +msgid "Update" +msgstr "" + +#: mod/contacts.php:829 mod/contacts.php:1027 +msgid "Archive" +msgstr "" + +#: mod/contacts.php:829 mod/contacts.php:1027 +msgid "Unarchive" +msgstr "" + +#: mod/contacts.php:832 +msgid "Batch Actions" +msgstr "" + +#: mod/contacts.php:858 mod/unfollow.php:132 mod/follow.php:186 +#: src/Model/Profile.php:889 +msgid "Status Messages and Posts" +msgstr "" + +#: mod/contacts.php:866 src/Model/Profile.php:897 +msgid "Profile Details" +msgstr "" + +#: mod/contacts.php:878 +msgid "View all contacts" +msgstr "" + +#: mod/contacts.php:889 +msgid "View all common friends" +msgstr "" + +#: mod/contacts.php:895 mod/events.php:532 mod/admin.php:1353 +#: src/Model/Profile.php:863 +msgid "Advanced" +msgstr "" + +#: mod/contacts.php:898 +msgid "Advanced Contact Settings" +msgstr "" + +#: mod/contacts.php:930 +msgid "Mutual Friendship" +msgstr "" + +#: mod/contacts.php:934 +msgid "is a fan of yours" +msgstr "" + +#: mod/contacts.php:938 +msgid "you are a fan of" +msgstr "" + +#: mod/contacts.php:1013 +msgid "Toggle Blocked status" +msgstr "" + +#: mod/contacts.php:1021 +msgid "Toggle Ignored status" +msgstr "" + +#: mod/contacts.php:1029 +msgid "Toggle Archive status" +msgstr "" + +#: mod/contacts.php:1037 +msgid "Delete contact" +msgstr "" + +#: mod/delegate.php:37 +msgid "Parent user not found." +msgstr "" + +#: mod/delegate.php:144 +msgid "No parent user" +msgstr "" + +#: mod/delegate.php:159 +msgid "Parent Password:" +msgstr "" + +#: mod/delegate.php:159 +msgid "" +"Please enter the password of the parent account to legitimize your request." +msgstr "" + +#: mod/delegate.php:164 +msgid "Parent User" +msgstr "" + +#: mod/delegate.php:167 +msgid "" +"Parent users have total control about this account, including the account " +"settings. Please double check whom you give this access." +msgstr "" + +#: mod/delegate.php:168 mod/admin.php:307 mod/admin.php:1348 mod/admin.php:1981 +#: mod/admin.php:2234 mod/admin.php:2308 mod/admin.php:2455 +#: mod/settings.php:677 mod/settings.php:786 mod/settings.php:874 +#: mod/settings.php:963 mod/settings.php:1196 +msgid "Save Settings" +msgstr "" + +#: mod/delegate.php:169 src/Content/Nav.php:201 +msgid "Delegate Page Management" +msgstr "" + +#: mod/delegate.php:170 +msgid "Delegates" +msgstr "" + +#: mod/delegate.php:172 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "" + +#: mod/delegate.php:173 +msgid "Existing Page Delegates" +msgstr "" + +#: mod/delegate.php:175 +msgid "Potential Delegates" +msgstr "" + +#: mod/delegate.php:178 +msgid "Add" +msgstr "" + +#: mod/delegate.php:179 +msgid "No entries." +msgstr "" + +#: mod/events.php:105 mod/events.php:107 +msgid "Event can not end before it has started." +msgstr "" + +#: mod/events.php:114 mod/events.php:116 +msgid "Event title and start time are required." +msgstr "" + +#: mod/events.php:393 +msgid "Create New Event" +msgstr "" + +#: mod/events.php:506 +msgid "Event details" +msgstr "" + +#: mod/events.php:507 +msgid "Starting date and Title are required." +msgstr "" + +#: mod/events.php:508 mod/events.php:509 +msgid "Event Starts:" +msgstr "" + +#: mod/events.php:508 mod/events.php:520 mod/profiles.php:700 +msgid "Required" +msgstr "" + +#: mod/events.php:510 mod/events.php:526 +msgid "Finish date/time is not known or not relevant" +msgstr "" + +#: mod/events.php:512 mod/events.php:513 +msgid "Event Finishes:" +msgstr "" + +#: mod/events.php:514 mod/events.php:527 +msgid "Adjust for viewer timezone" +msgstr "" + +#: mod/events.php:516 +msgid "Description:" +msgstr "" + +#: mod/events.php:520 mod/events.php:522 +msgid "Title:" +msgstr "" + +#: mod/events.php:523 mod/events.php:524 +msgid "Share this event" +msgstr "" + +#: mod/events.php:531 src/Model/Profile.php:862 +msgid "Basic" +msgstr "" + +#: mod/events.php:552 +msgid "Failed to remove event" +msgstr "" + +#: mod/events.php:554 +msgid "Event removed" +msgstr "" + +#: mod/feedtest.php:20 +msgid "You must be logged in to use this module" +msgstr "" + +#: mod/feedtest.php:48 +msgid "Source URL" +msgstr "" + +#: mod/item.php:114 +msgid "Unable to locate original post." +msgstr "" + +#: mod/item.php:274 +msgid "Empty post discarded." +msgstr "" + +#: mod/item.php:799 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social network." +msgstr "" + +#: mod/item.php:801 +#, php-format +msgid "You may visit them online at %s" +msgstr "" + +#: mod/item.php:802 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "" + +#: mod/item.php:806 +#, php-format +msgid "%s posted an update." +msgstr "" + +#: mod/oexchange.php:30 +msgid "Post successful." +msgstr "" + +#: mod/ostatus_subscribe.php:21 +msgid "Subscribing to OStatus contacts" +msgstr "" + +#: mod/ostatus_subscribe.php:33 +msgid "No contact provided." +msgstr "" + +#: mod/ostatus_subscribe.php:40 +msgid "Couldn't fetch information for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:50 +msgid "Couldn't fetch friends for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:78 +msgid "success" +msgstr "" + +#: mod/ostatus_subscribe.php:80 +msgid "failed" +msgstr "" + +#: mod/ostatus_subscribe.php:83 src/Object/Post.php:279 +msgid "ignored" +msgstr "" + +#: mod/profile_photo.php:55 +msgid "Image uploaded but image cropping failed." +msgstr "" + +#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104 +#: mod/profile_photo.php:315 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "" + +#: mod/profile_photo.php:125 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "" + +#: mod/profile_photo.php:134 +msgid "Unable to process image" +msgstr "" + +#: mod/profile_photo.php:247 +msgid "Upload File:" +msgstr "" + +#: mod/profile_photo.php:248 +msgid "Select a profile:" +msgstr "" + +#: mod/profile_photo.php:253 +msgid "or" +msgstr "" + +#: mod/profile_photo.php:253 +msgid "skip this step" +msgstr "" + +#: mod/profile_photo.php:253 +msgid "select a photo from your photo albums" +msgstr "" + +#: mod/profile_photo.php:266 +msgid "Crop Image" +msgstr "" + +#: mod/profile_photo.php:267 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "" + +#: mod/profile_photo.php:269 +msgid "Done Editing" +msgstr "" + +#: mod/profile_photo.php:305 +msgid "Image uploaded successfully." +msgstr "" + +#: mod/unfollow.php:34 +msgid "Contact wasn't found or can't be unfollowed." +msgstr "" + +#: mod/unfollow.php:47 +msgid "Contact unfollowed" +msgstr "" + +#: mod/unfollow.php:73 +msgid "You aren't a friend of this contact." +msgstr "" + +#: mod/unfollow.php:79 +msgid "Unfollowing is currently not supported by your network." +msgstr "" + +#: mod/directory.php:152 src/Model/Profile.php:417 src/Model/Profile.php:767 +msgid "Status:" +msgstr "" + +#: mod/directory.php:153 src/Model/Profile.php:418 src/Model/Profile.php:784 +msgid "Homepage:" +msgstr "" + +#: mod/directory.php:202 view/theme/vier/theme.php:208 +#: src/Content/Widget.php:68 +msgid "Global Directory" +msgstr "" + +#: mod/directory.php:204 +msgid "Find on this site" +msgstr "" + +#: mod/directory.php:206 +msgid "Results for:" +msgstr "" + +#: mod/directory.php:208 +msgid "Site Directory" +msgstr "" + +#: mod/directory.php:213 +msgid "No entries (some entries may be hidden)." +msgstr "" + +#: mod/dirfind.php:49 +#, php-format +msgid "People Search - %s" +msgstr "" + +#: mod/dirfind.php:60 +#, php-format +msgid "Forum Search - %s" +msgstr "" + +#: mod/follow.php:45 +msgid "The contact could not be added." +msgstr "" + +#: mod/follow.php:73 +msgid "You already added this contact." +msgstr "" + +#: mod/follow.php:83 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:90 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:97 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "" + +#: mod/lostpass.php:27 +msgid "No valid account found." +msgstr "" + +#: mod/lostpass.php:39 +msgid "Password reset request issued. Check your email." +msgstr "" + +#: mod/lostpass.php:45 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" +"\t\tpassword. In order to confirm this request, please select the " +"verification link\n" +"\t\tbelow or paste it into your web browser address bar.\n" +"\n" +"\t\tIf you did NOT request this change, please DO NOT follow the link\n" +"\t\tprovided and ignore and/or delete this email, the request will expire " +"shortly.\n" +"\n" +"\t\tYour password will not be changed unless we can verify that you\n" +"\t\tissued this request." +msgstr "" + +#: mod/lostpass.php:56 +#, php-format +msgid "" +"\n" +"\t\tFollow this link soon to verify your identity:\n" +"\n" +"\t\t%1$s\n" +"\n" +"\t\tYou will then receive a follow-up message containing the new password.\n" +"\t\tYou may change that password from your account settings page after " +"logging in.\n" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%2$s\n" +"\t\tLogin Name:\t%3$s" +msgstr "" + +#: mod/lostpass.php:73 +#, php-format +msgid "Password reset requested at %s" +msgstr "" + +#: mod/lostpass.php:89 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "" + +#: mod/lostpass.php:102 +msgid "Request has expired, please make a new one." +msgstr "" + +#: mod/lostpass.php:117 +msgid "Forgot your Password?" +msgstr "" + +#: mod/lostpass.php:118 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "" + +#: mod/lostpass.php:119 src/Module/Login.php:314 +msgid "Nickname or Email: " +msgstr "" + +#: mod/lostpass.php:120 +msgid "Reset" +msgstr "" + +#: mod/lostpass.php:136 src/Module/Login.php:326 +msgid "Password Reset" +msgstr "" + +#: mod/lostpass.php:137 +msgid "Your password has been reset as requested." +msgstr "" + +#: mod/lostpass.php:138 +msgid "Your new password is" +msgstr "" + +#: mod/lostpass.php:139 +msgid "Save or copy your new password - and then" +msgstr "" + +#: mod/lostpass.php:140 +msgid "click here to login" +msgstr "" + +#: mod/lostpass.php:141 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "" + +#: mod/lostpass.php:149 #, php-format msgid "" "\n" "\t\t\tDear %1$s,\n" -"\t\t\t\tThank you for registering at %2$s. Your account is pending for " -"approval by the administrator.\n" +"\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\tinformation for your records (or change your password immediately to\n" +"\t\t\tsomething that you will remember).\n" "\t\t" msgstr "" -#: src/Model/User.php:603 +#: mod/lostpass.php:155 #, php-format -msgid "Registration at %s" +msgid "" +"\n" +"\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%1$s\n" +"\t\t\tLogin Name:\t%2$s\n" +"\t\t\tPassword:\t%3$s\n" +"\n" +"\t\t\tYou may change that password from your account settings page after " +"logging in.\n" +"\t\t" msgstr "" -#: src/Model/User.php:621 +#: mod/lostpass.php:169 +#, php-format +msgid "Your password has been changed at %s" +msgstr "" + +#: mod/profiles.php:58 +msgid "Profile deleted." +msgstr "" + +#: mod/profiles.php:74 mod/profiles.php:110 +msgid "Profile-" +msgstr "" + +#: mod/profiles.php:93 mod/profiles.php:132 +msgid "New profile created." +msgstr "" + +#: mod/profiles.php:116 +msgid "Profile unavailable to clone." +msgstr "" + +#: mod/profiles.php:206 +msgid "Profile Name is required." +msgstr "" + +#: mod/profiles.php:347 +msgid "Marital Status" +msgstr "" + +#: mod/profiles.php:351 +msgid "Romantic Partner" +msgstr "" + +#: mod/profiles.php:363 +msgid "Work/Employment" +msgstr "" + +#: mod/profiles.php:366 +msgid "Religion" +msgstr "" + +#: mod/profiles.php:370 +msgid "Political Views" +msgstr "" + +#: mod/profiles.php:374 +msgid "Gender" +msgstr "" + +#: mod/profiles.php:378 +msgid "Sexual Preference" +msgstr "" + +#: mod/profiles.php:382 +msgid "XMPP" +msgstr "" + +#: mod/profiles.php:386 +msgid "Homepage" +msgstr "" + +#: mod/profiles.php:390 mod/profiles.php:686 +msgid "Interests" +msgstr "" + +#: mod/profiles.php:394 mod/admin.php:490 +msgid "Address" +msgstr "" + +#: mod/profiles.php:401 mod/profiles.php:682 +msgid "Location" +msgstr "" + +#: mod/profiles.php:486 +msgid "Profile updated." +msgstr "" + +#: mod/profiles.php:564 +msgid " and " +msgstr "" + +#: mod/profiles.php:573 +msgid "public profile" +msgstr "" + +#: mod/profiles.php:576 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "" + +#: mod/profiles.php:577 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr "" + +#: mod/profiles.php:579 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "" + +#: mod/profiles.php:633 +msgid "Hide contacts and friends:" +msgstr "" + +#: mod/profiles.php:638 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "" + +#: mod/profiles.php:658 +msgid "Show more profile fields:" +msgstr "" + +#: mod/profiles.php:670 +msgid "Profile Actions" +msgstr "" + +#: mod/profiles.php:671 +msgid "Edit Profile Details" +msgstr "" + +#: mod/profiles.php:673 +msgid "Change Profile Photo" +msgstr "" + +#: mod/profiles.php:674 +msgid "View this profile" +msgstr "" + +#: mod/profiles.php:675 mod/profiles.php:770 src/Model/Profile.php:389 +msgid "Edit visibility" +msgstr "" + +#: mod/profiles.php:676 +msgid "Create a new profile using these settings" +msgstr "" + +#: mod/profiles.php:677 +msgid "Clone this profile" +msgstr "" + +#: mod/profiles.php:678 +msgid "Delete this profile" +msgstr "" + +#: mod/profiles.php:680 +msgid "Basic information" +msgstr "" + +#: mod/profiles.php:681 +msgid "Profile picture" +msgstr "" + +#: mod/profiles.php:683 +msgid "Preferences" +msgstr "" + +#: mod/profiles.php:684 +msgid "Status information" +msgstr "" + +#: mod/profiles.php:685 +msgid "Additional information" +msgstr "" + +#: mod/profiles.php:687 mod/network.php:956 +#: src/Core/NotificationsManager.php:185 +msgid "Personal" +msgstr "" + +#: mod/profiles.php:688 +msgid "Relation" +msgstr "" + +#: mod/profiles.php:689 src/Util/Temporal.php:81 src/Util/Temporal.php:83 +msgid "Miscellaneous" +msgstr "" + +#: mod/profiles.php:692 +msgid "Your Gender:" +msgstr "" + +#: mod/profiles.php:693 +msgid " Marital Status:" +msgstr "" + +#: mod/profiles.php:694 src/Model/Profile.php:780 +msgid "Sexual Preference:" +msgstr "" + +#: mod/profiles.php:695 +msgid "Example: fishing photography software" +msgstr "" + +#: mod/profiles.php:700 +msgid "Profile Name:" +msgstr "" + +#: mod/profiles.php:702 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "" + +#: mod/profiles.php:703 +msgid "Your Full Name:" +msgstr "" + +#: mod/profiles.php:704 +msgid "Title/Description:" +msgstr "" + +#: mod/profiles.php:707 +msgid "Street Address:" +msgstr "" + +#: mod/profiles.php:708 +msgid "Locality/City:" +msgstr "" + +#: mod/profiles.php:709 +msgid "Region/State:" +msgstr "" + +#: mod/profiles.php:710 +msgid "Postal/Zip Code:" +msgstr "" + +#: mod/profiles.php:711 +msgid "Country:" +msgstr "" + +#: mod/profiles.php:712 src/Util/Temporal.php:149 +msgid "Age: " +msgstr "" + +#: mod/profiles.php:715 +msgid "Who: (if applicable)" +msgstr "" + +#: mod/profiles.php:715 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "" + +#: mod/profiles.php:716 +msgid "Since [date]:" +msgstr "" + +#: mod/profiles.php:718 +msgid "Tell us about yourself..." +msgstr "" + +#: mod/profiles.php:719 +msgid "XMPP (Jabber) address:" +msgstr "" + +#: mod/profiles.php:719 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow " +"you." +msgstr "" + +#: mod/profiles.php:720 +msgid "Homepage URL:" +msgstr "" + +#: mod/profiles.php:721 src/Model/Profile.php:788 +msgid "Hometown:" +msgstr "" + +#: mod/profiles.php:722 src/Model/Profile.php:796 +msgid "Political Views:" +msgstr "" + +#: mod/profiles.php:723 +msgid "Religious Views:" +msgstr "" + +#: mod/profiles.php:724 +msgid "Public Keywords:" +msgstr "" + +#: mod/profiles.php:724 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "" + +#: mod/profiles.php:725 +msgid "Private Keywords:" +msgstr "" + +#: mod/profiles.php:725 +msgid "(Used for searching profiles, never shown to others)" +msgstr "" + +#: mod/profiles.php:726 src/Model/Profile.php:812 +msgid "Likes:" +msgstr "" + +#: mod/profiles.php:727 src/Model/Profile.php:816 +msgid "Dislikes:" +msgstr "" + +#: mod/profiles.php:728 +msgid "Musical interests" +msgstr "" + +#: mod/profiles.php:729 +msgid "Books, literature" +msgstr "" + +#: mod/profiles.php:730 +msgid "Television" +msgstr "" + +#: mod/profiles.php:731 +msgid "Film/dance/culture/entertainment" +msgstr "" + +#: mod/profiles.php:732 +msgid "Hobbies/Interests" +msgstr "" + +#: mod/profiles.php:733 +msgid "Love/romance" +msgstr "" + +#: mod/profiles.php:734 +msgid "Work/employment" +msgstr "" + +#: mod/profiles.php:735 +msgid "School/education" +msgstr "" + +#: mod/profiles.php:736 +msgid "Contact information and Social Networks" +msgstr "" + +#: mod/profiles.php:767 src/Model/Profile.php:385 +msgid "Profile Image" +msgstr "" + +#: mod/profiles.php:769 src/Model/Profile.php:388 +msgid "visible to everybody" +msgstr "" + +#: mod/profiles.php:776 +msgid "Edit/Manage Profiles" +msgstr "" + +#: mod/profiles.php:777 src/Model/Profile.php:375 src/Model/Profile.php:397 +msgid "Change profile photo" +msgstr "" + +#: mod/profiles.php:778 src/Model/Profile.php:376 +msgid "Create New Profile" +msgstr "" + +#: mod/register.php:99 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "" + +#: mod/register.php:103 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "" + +#: mod/register.php:110 +msgid "Registration successful." +msgstr "" + +#: mod/register.php:115 +msgid "Your registration can not be processed." +msgstr "" + +#: mod/register.php:162 +msgid "Your registration is pending approval by the site owner." +msgstr "" + +#: mod/register.php:220 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "" + +#: mod/register.php:221 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "" + +#: mod/register.php:222 +msgid "Your OpenID (optional): " +msgstr "" + +#: mod/register.php:234 +msgid "Include your profile in member directory?" +msgstr "" + +#: mod/register.php:259 +msgid "Note for the admin" +msgstr "" + +#: mod/register.php:259 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "" + +#: mod/register.php:260 +msgid "Membership on this site is by invitation only." +msgstr "" + +#: mod/register.php:261 +msgid "Your invitation code: " +msgstr "" + +#: mod/register.php:264 mod/admin.php:1350 +msgid "Registration" +msgstr "" + +#: mod/register.php:270 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "" + +#: mod/register.php:271 +msgid "" +"Your Email Address: (Initial information will be send there, so this has to " +"be an existing address.)" +msgstr "" + +#: mod/register.php:273 mod/settings.php:1203 +msgid "New Password:" +msgstr "" + +#: mod/register.php:273 +msgid "Leave empty for an auto generated password." +msgstr "" + +#: mod/register.php:274 mod/settings.php:1204 +msgid "Confirm:" +msgstr "" + +#: mod/register.php:275 +#, php-format +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be 'nickname@%s'." +msgstr "" + +#: mod/register.php:276 +msgid "Choose a nickname: " +msgstr "" + +#: mod/register.php:279 src/Content/Nav.php:128 src/Module/Login.php:283 +msgid "Register" +msgstr "" + +#: mod/register.php:286 +msgid "Import your profile to this friendica instance" +msgstr "" + +#: mod/register.php:288 mod/admin.php:188 mod/admin.php:302 +#: src/Module/Tos.php:48 +msgid "Terms of Service" +msgstr "" + +#: mod/removeme.php:43 +msgid "User deleted their account" +msgstr "" + +#: mod/removeme.php:44 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "" + +#: mod/removeme.php:45 +#, php-format +msgid "The user id is %d" +msgstr "" + +#: mod/removeme.php:76 mod/removeme.php:79 +msgid "Remove My Account" +msgstr "" + +#: mod/removeme.php:77 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "" + +#: mod/removeme.php:78 +msgid "Please enter your password for verification:" +msgstr "" + +#: mod/admin.php:106 +msgid "Theme settings updated." +msgstr "" + +#: mod/admin.php:179 src/Content/Nav.php:175 +msgid "Information" +msgstr "" + +#: mod/admin.php:180 +msgid "Overview" +msgstr "" + +#: mod/admin.php:181 mod/admin.php:718 +msgid "Federation Statistics" +msgstr "" + +#: mod/admin.php:182 +msgid "Configuration" +msgstr "" + +#: mod/admin.php:183 mod/admin.php:1347 +msgid "Site" +msgstr "" + +#: mod/admin.php:184 mod/admin.php:1275 mod/admin.php:1804 mod/admin.php:1820 +msgid "Users" +msgstr "" + +#: mod/admin.php:185 mod/admin.php:1920 mod/admin.php:1980 mod/settings.php:87 +msgid "Addons" +msgstr "" + +#: mod/admin.php:186 mod/admin.php:2189 mod/admin.php:2233 +msgid "Themes" +msgstr "" + +#: mod/admin.php:187 mod/settings.php:65 +msgid "Additional features" +msgstr "" + +#: mod/admin.php:189 +msgid "Database" +msgstr "" + +#: mod/admin.php:190 +msgid "DB updates" +msgstr "" + +#: mod/admin.php:191 mod/admin.php:753 +msgid "Inspect Queue" +msgstr "" + +#: mod/admin.php:192 +msgid "Tools" +msgstr "" + +#: mod/admin.php:193 +msgid "Contact Blocklist" +msgstr "" + +#: mod/admin.php:194 mod/admin.php:362 +msgid "Server Blocklist" +msgstr "" + +#: mod/admin.php:195 mod/admin.php:521 +msgid "Delete Item" +msgstr "" + +#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2307 +msgid "Logs" +msgstr "" + +#: mod/admin.php:198 mod/admin.php:2374 +msgid "View Logs" +msgstr "" + +#: mod/admin.php:200 +msgid "Diagnostics" +msgstr "" + +#: mod/admin.php:201 +msgid "PHP Info" +msgstr "" + +#: mod/admin.php:202 +msgid "probe address" +msgstr "" + +#: mod/admin.php:203 +msgid "check webfinger" +msgstr "" + +#: mod/admin.php:222 src/Content/Nav.php:214 +msgid "Admin" +msgstr "" + +#: mod/admin.php:223 +msgid "Addon Features" +msgstr "" + +#: mod/admin.php:224 +msgid "User registrations waiting for confirmation" +msgstr "" + +#: mod/admin.php:301 mod/admin.php:361 mod/admin.php:478 mod/admin.php:520 +#: mod/admin.php:717 mod/admin.php:752 mod/admin.php:848 mod/admin.php:1346 +#: mod/admin.php:1803 mod/admin.php:1919 mod/admin.php:1979 mod/admin.php:2188 +#: mod/admin.php:2232 mod/admin.php:2306 mod/admin.php:2373 +msgid "Administration" +msgstr "" + +#: mod/admin.php:303 +msgid "Display Terms of Service" +msgstr "" + +#: mod/admin.php:303 +msgid "" +"Enable the Terms of Service page. If this is enabled a link to the terms " +"will be added to the registration form and the general information page." +msgstr "" + +#: mod/admin.php:304 +msgid "Display Privacy Statement" +msgstr "" + +#: mod/admin.php:304 +#, php-format +msgid "" +"Show some informations regarding the needed information to operate the node " +"according e.g. to EU-GDPR." +msgstr "" + +#: mod/admin.php:305 +msgid "The Terms of Service" +msgstr "" + +#: mod/admin.php:305 +msgid "" +"Enter the Terms of Service for your node here. You can use BBCode. Headers " +"of sections should be [h2] and below." +msgstr "" + +#: mod/admin.php:353 +msgid "The blocked domain" +msgstr "" + +#: mod/admin.php:354 mod/admin.php:372 mod/friendica.php:128 +msgid "Reason for the block" +msgstr "" + +#: mod/admin.php:354 mod/admin.php:367 +msgid "The reason why you blocked this domain." +msgstr "" + +#: mod/admin.php:355 +msgid "Delete domain" +msgstr "" + +#: mod/admin.php:355 +msgid "Check to delete this entry from the blocklist" +msgstr "" + +#: mod/admin.php:363 +msgid "" +"This page can be used to define a black list of servers from the federated " +"network that are not allowed to interact with your node. For all entered " +"domains you should also give a reason why you have blocked the remote server." +msgstr "" + +#: mod/admin.php:364 +msgid "" +"The list of blocked servers will be made publically available on the /" +"friendica page so that your users and people investigating communication " +"problems can find the reason easily." +msgstr "" + +#: mod/admin.php:365 +msgid "Add new entry to block list" +msgstr "" + +#: mod/admin.php:366 +msgid "Server Domain" +msgstr "" + +#: mod/admin.php:366 +msgid "" +"The domain of the new server to add to the block list. Do not include the " +"protocol." +msgstr "" + +#: mod/admin.php:367 +msgid "Block reason" +msgstr "" + +#: mod/admin.php:368 +msgid "Add Entry" +msgstr "" + +#: mod/admin.php:369 +msgid "Save changes to the blocklist" +msgstr "" + +#: mod/admin.php:370 +msgid "Current Entries in the Blocklist" +msgstr "" + +#: mod/admin.php:373 +msgid "Delete entry from blocklist" +msgstr "" + +#: mod/admin.php:376 +msgid "Delete entry from blocklist?" +msgstr "" + +#: mod/admin.php:402 +msgid "Server added to blocklist." +msgstr "" + +#: mod/admin.php:418 +msgid "Site blocklist updated." +msgstr "" + +#: mod/admin.php:441 src/Core/Console/GlobalCommunityBlock.php:72 +msgid "The contact has been blocked from the node" +msgstr "" + +#: mod/admin.php:443 src/Core/Console/GlobalCommunityBlock.php:69 +#, php-format +msgid "Could not find any contact entry for this URL (%s)" +msgstr "" + +#: mod/admin.php:450 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "" +msgstr[1] "" + +#: mod/admin.php:479 +msgid "Remote Contact Blocklist" +msgstr "" + +#: mod/admin.php:480 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "" + +#: mod/admin.php:481 +msgid "Block Remote Contact" +msgstr "" + +#: mod/admin.php:482 mod/admin.php:1806 +msgid "select all" +msgstr "" + +#: mod/admin.php:483 +msgid "select none" +msgstr "" + +#: mod/admin.php:486 +msgid "No remote contact is blocked from this node." +msgstr "" + +#: mod/admin.php:488 +msgid "Blocked Remote Contacts" +msgstr "" + +#: mod/admin.php:489 +msgid "Block New Remote Contact" +msgstr "" + +#: mod/admin.php:490 +msgid "Photo" +msgstr "" + +#: mod/admin.php:498 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "" +msgstr[1] "" + +#: mod/admin.php:500 +msgid "URL of the remote contact to block." +msgstr "" + +#: mod/admin.php:522 +msgid "Delete this Item" +msgstr "" + +#: mod/admin.php:523 +msgid "" +"On this page you can delete an item from your node. If the item is a top " +"level posting, the entire thread will be deleted." +msgstr "" + +#: mod/admin.php:524 +msgid "" +"You need to know the GUID of the item. You can find it e.g. by looking at " +"the display URL. The last part of http://example.com/display/123456 is the " +"GUID, here 123456." +msgstr "" + +#: mod/admin.php:525 +msgid "GUID" +msgstr "" + +#: mod/admin.php:525 +msgid "The GUID of the item you want to delete." +msgstr "" + +#: mod/admin.php:564 +msgid "Item marked for deletion." +msgstr "" + +#: mod/admin.php:635 +msgid "unknown" +msgstr "" + +#: mod/admin.php:711 +msgid "" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." +msgstr "" + +#: mod/admin.php:712 +msgid "" +"The Auto Discovered Contact Directory feature is not enabled, it " +"will improve the data displayed here." +msgstr "" + +#: mod/admin.php:724 +#, php-format +msgid "" +"Currently this node is aware of %d nodes with %d registered users from the " +"following platforms:" +msgstr "" + +#: mod/admin.php:755 +msgid "ID" +msgstr "" + +#: mod/admin.php:756 +msgid "Recipient Name" +msgstr "" + +#: mod/admin.php:757 +msgid "Recipient Profile" +msgstr "" + +#: mod/admin.php:758 view/theme/frio/theme.php:266 +#: src/Core/NotificationsManager.php:178 src/Content/Nav.php:179 +msgid "Network" +msgstr "" + +#: mod/admin.php:759 +msgid "Created" +msgstr "" + +#: mod/admin.php:760 +msgid "Last Tried" +msgstr "" + +#: mod/admin.php:761 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "" + +#: mod/admin.php:785 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should " +"change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the command php bin/" +"console.php dbstructure toinnodb of your Friendica installation for an " +"automatic conversion.
" +msgstr "" + +#: mod/admin.php:792 +#, php-format +msgid "" +"There is a new version of Friendica available for download. Your current " +"version is %1$s, upstream version is %2$s" +msgstr "" + +#: mod/admin.php:802 +msgid "" +"The database update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear." +msgstr "" + +#: mod/admin.php:808 +msgid "The worker was never executed. Please check your database structure!" +msgstr "" + +#: mod/admin.php:811 +#, php-format +msgid "" +"The last worker execution was on %s UTC. This is older than one hour. Please " +"check your crontab settings." +msgstr "" + +#: mod/admin.php:816 +msgid "Normal Account" +msgstr "" + +#: mod/admin.php:817 +msgid "Automatic Follower Account" +msgstr "" + +#: mod/admin.php:818 +msgid "Public Forum Account" +msgstr "" + +#: mod/admin.php:819 +msgid "Automatic Friend Account" +msgstr "" + +#: mod/admin.php:820 +msgid "Blog Account" +msgstr "" + +#: mod/admin.php:821 +msgid "Private Forum Account" +msgstr "" + +#: mod/admin.php:843 +msgid "Message queues" +msgstr "" + +#: mod/admin.php:849 +msgid "Summary" +msgstr "" + +#: mod/admin.php:851 +msgid "Registered users" +msgstr "" + +#: mod/admin.php:853 +msgid "Pending registrations" +msgstr "" + +#: mod/admin.php:854 +msgid "Version" +msgstr "" + +#: mod/admin.php:859 +msgid "Active addons" +msgstr "" + +#: mod/admin.php:890 +msgid "Can not parse base url. Must have at least ://" +msgstr "" + +#: mod/admin.php:1210 +msgid "Site settings updated." +msgstr "" + +#: mod/admin.php:1237 mod/settings.php:907 +msgid "No special theme for mobile devices" +msgstr "" + +#: mod/admin.php:1266 +msgid "No community page for local users" +msgstr "" + +#: mod/admin.php:1267 +msgid "No community page" +msgstr "" + +#: mod/admin.php:1268 +msgid "Public postings from users of this site" +msgstr "" + +#: mod/admin.php:1269 +msgid "Public postings from the federated network" +msgstr "" + +#: mod/admin.php:1270 +msgid "Public postings from local users and the federated network" +msgstr "" + +#: mod/admin.php:1276 +msgid "Users, Global Contacts" +msgstr "" + +#: mod/admin.php:1277 +msgid "Users, Global Contacts/fallback" +msgstr "" + +#: mod/admin.php:1281 +msgid "One month" +msgstr "" + +#: mod/admin.php:1282 +msgid "Three months" +msgstr "" + +#: mod/admin.php:1283 +msgid "Half a year" +msgstr "" + +#: mod/admin.php:1284 +msgid "One year" +msgstr "" + +#: mod/admin.php:1289 +msgid "Multi user instance" +msgstr "" + +#: mod/admin.php:1312 +msgid "Closed" +msgstr "" + +#: mod/admin.php:1313 +msgid "Requires approval" +msgstr "" + +#: mod/admin.php:1314 +msgid "Open" +msgstr "" + +#: mod/admin.php:1318 +msgid "No SSL policy, links will track page SSL state" +msgstr "" + +#: mod/admin.php:1319 +msgid "Force all links to use SSL" +msgstr "" + +#: mod/admin.php:1320 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "" + +#: mod/admin.php:1324 +msgid "Don't check" +msgstr "" + +#: mod/admin.php:1325 +msgid "check the stable version" +msgstr "" + +#: mod/admin.php:1326 +msgid "check the development version" +msgstr "" + +#: mod/admin.php:1349 +msgid "Republish users to directory" +msgstr "" + +#: mod/admin.php:1351 +msgid "File upload" +msgstr "" + +#: mod/admin.php:1352 +msgid "Policies" +msgstr "" + +#: mod/admin.php:1354 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: mod/admin.php:1355 +msgid "Performance" +msgstr "" + +#: mod/admin.php:1356 +msgid "Worker" +msgstr "" + +#: mod/admin.php:1357 +msgid "Message Relay" +msgstr "" + +#: mod/admin.php:1358 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "" + +#: mod/admin.php:1361 +msgid "Site name" +msgstr "" + +#: mod/admin.php:1362 +msgid "Host name" +msgstr "" + +#: mod/admin.php:1363 +msgid "Sender Email" +msgstr "" + +#: mod/admin.php:1363 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "" + +#: mod/admin.php:1364 +msgid "Banner/Logo" +msgstr "" + +#: mod/admin.php:1365 +msgid "Shortcut icon" +msgstr "" + +#: mod/admin.php:1365 +msgid "Link to an icon that will be used for browsers." +msgstr "" + +#: mod/admin.php:1366 +msgid "Touch icon" +msgstr "" + +#: mod/admin.php:1366 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "" + +#: mod/admin.php:1367 +msgid "Additional Info" +msgstr "" + +#: mod/admin.php:1367 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/servers." +msgstr "" + +#: mod/admin.php:1368 +msgid "System language" +msgstr "" + +#: mod/admin.php:1369 +msgid "System theme" +msgstr "" + +#: mod/admin.php:1369 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" + +#: mod/admin.php:1370 +msgid "Mobile system theme" +msgstr "" + +#: mod/admin.php:1370 +msgid "Theme for mobile devices" +msgstr "" + +#: mod/admin.php:1371 +msgid "SSL link policy" +msgstr "" + +#: mod/admin.php:1371 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "" + +#: mod/admin.php:1372 +msgid "Force SSL" +msgstr "" + +#: mod/admin.php:1372 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead " +"to endless loops." +msgstr "" + +#: mod/admin.php:1373 +msgid "Hide help entry from navigation menu" +msgstr "" + +#: mod/admin.php:1373 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "" + +#: mod/admin.php:1374 +msgid "Single user instance" +msgstr "" + +#: mod/admin.php:1374 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "" + +#: mod/admin.php:1375 +msgid "Maximum image size" +msgstr "" + +#: mod/admin.php:1375 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "" + +#: mod/admin.php:1376 +msgid "Maximum image length" +msgstr "" + +#: mod/admin.php:1376 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "" + +#: mod/admin.php:1377 +msgid "JPEG image quality" +msgstr "" + +#: mod/admin.php:1377 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "" + +#: mod/admin.php:1379 +msgid "Register policy" +msgstr "" + +#: mod/admin.php:1380 +msgid "Maximum Daily Registrations" +msgstr "" + +#: mod/admin.php:1380 +msgid "" +"If registration is permitted above, this sets the maximum number of new user " +"registrations to accept per day. If register is set to closed, this setting " +"has no effect." +msgstr "" + +#: mod/admin.php:1381 +msgid "Register text" +msgstr "" + +#: mod/admin.php:1381 +msgid "" +"Will be displayed prominently on the registration page. You can use BBCode " +"here." +msgstr "" + +#: mod/admin.php:1382 +msgid "Accounts abandoned after x days" +msgstr "" + +#: mod/admin.php:1382 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "" + +#: mod/admin.php:1383 +msgid "Allowed friend domains" +msgstr "" + +#: mod/admin.php:1383 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "" + +#: mod/admin.php:1384 +msgid "Allowed email domains" +msgstr "" + +#: mod/admin.php:1384 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "" + +#: mod/admin.php:1385 +msgid "No OEmbed rich content" +msgstr "" + +#: mod/admin.php:1385 +msgid "" +"Don't show the rich content (e.g. embedded PDF), except from the domains " +"listed below." +msgstr "" + +#: mod/admin.php:1386 +msgid "Allowed OEmbed domains" +msgstr "" + +#: mod/admin.php:1386 +msgid "" +"Comma separated list of domains which oembed content is allowed to be " +"displayed. Wildcards are accepted." +msgstr "" + +#: mod/admin.php:1387 +msgid "Block public" +msgstr "" + +#: mod/admin.php:1387 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "" + +#: mod/admin.php:1388 +msgid "Force publish" +msgstr "" + +#: mod/admin.php:1388 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: mod/admin.php:1389 +msgid "Global directory URL" +msgstr "" + +#: mod/admin.php:1389 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "" + +#: mod/admin.php:1390 +msgid "Private posts by default for new users" +msgstr "" + +#: mod/admin.php:1390 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "" + +#: mod/admin.php:1391 +msgid "Don't include post content in email notifications" +msgstr "" + +#: mod/admin.php:1391 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "" + +#: mod/admin.php:1392 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "" + +#: mod/admin.php:1392 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "" + +#: mod/admin.php:1393 +msgid "Don't embed private images in posts" +msgstr "" + +#: mod/admin.php:1393 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a while." +msgstr "" + +#: mod/admin.php:1394 +msgid "Allow Users to set remote_self" +msgstr "" + +#: mod/admin.php:1394 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "" + +#: mod/admin.php:1395 +msgid "Block multiple registrations" +msgstr "" + +#: mod/admin.php:1395 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "" + +#: mod/admin.php:1396 +msgid "OpenID support" +msgstr "" + +#: mod/admin.php:1396 +msgid "OpenID support for registration and logins." +msgstr "" + +#: mod/admin.php:1397 +msgid "Fullname check" +msgstr "" + +#: mod/admin.php:1397 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "" + +#: mod/admin.php:1398 +msgid "Community pages for visitors" +msgstr "" + +#: mod/admin.php:1398 +msgid "" +"Which community pages should be available for visitors. Local users always " +"see both pages." +msgstr "" + +#: mod/admin.php:1399 +msgid "Posts per user on community page" +msgstr "" + +#: mod/admin.php:1399 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "" + +#: mod/admin.php:1400 +msgid "Enable OStatus support" +msgstr "" + +#: mod/admin.php:1400 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "" + +#: mod/admin.php:1401 +msgid "Only import OStatus threads from our contacts" +msgstr "" + +#: mod/admin.php:1401 +msgid "" +"Normally we import every content from our OStatus contacts. With this option " +"we only store threads that are started by a contact that is known on our " +"system." +msgstr "" + +#: mod/admin.php:1402 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "" + +#: mod/admin.php:1404 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub " +"directory." +msgstr "" + +#: mod/admin.php:1405 +msgid "Enable Diaspora support" +msgstr "" + +#: mod/admin.php:1405 +msgid "Provide built-in Diaspora network compatibility." +msgstr "" + +#: mod/admin.php:1406 +msgid "Only allow Friendica contacts" +msgstr "" + +#: mod/admin.php:1406 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "" + +#: mod/admin.php:1407 +msgid "Verify SSL" +msgstr "" + +#: mod/admin.php:1407 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you " +"cannot connect (at all) to self-signed SSL sites." +msgstr "" + +#: mod/admin.php:1408 +msgid "Proxy user" +msgstr "" + +#: mod/admin.php:1409 +msgid "Proxy URL" +msgstr "" + +#: mod/admin.php:1410 +msgid "Network timeout" +msgstr "" + +#: mod/admin.php:1410 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: mod/admin.php:1411 +msgid "Maximum Load Average" +msgstr "" + +#: mod/admin.php:1411 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: mod/admin.php:1412 +msgid "Maximum Load Average (Frontend)" +msgstr "" + +#: mod/admin.php:1412 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "" + +#: mod/admin.php:1413 +msgid "Minimal Memory" +msgstr "" + +#: mod/admin.php:1413 +msgid "" +"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " +"default 0 (deactivated)." +msgstr "" + +#: mod/admin.php:1414 +msgid "Maximum table size for optimization" +msgstr "" + +#: mod/admin.php:1414 +msgid "" +"Maximum table size (in MB) for the automatic optimization - default 100 MB. " +"Enter -1 to disable it." +msgstr "" + +#: mod/admin.php:1415 +msgid "Minimum level of fragmentation" +msgstr "" + +#: mod/admin.php:1415 +msgid "" +"Minimum fragmenation level to start the automatic optimization - default " +"value is 30%." +msgstr "" + +#: mod/admin.php:1417 +msgid "Periodical check of global contacts" +msgstr "" + +#: mod/admin.php:1417 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "" + +#: mod/admin.php:1418 +msgid "Days between requery" +msgstr "" + +#: mod/admin.php:1418 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: mod/admin.php:1419 +msgid "Discover contacts from other servers" +msgstr "" + +#: mod/admin.php:1419 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "" + +#: mod/admin.php:1420 +msgid "Timeframe for fetching global contacts" +msgstr "" + +#: mod/admin.php:1420 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "" + +#: mod/admin.php:1421 +msgid "Search the local directory" +msgstr "" + +#: mod/admin.php:1421 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "" + +#: mod/admin.php:1423 +msgid "Publish server information" +msgstr "" + +#: mod/admin.php:1423 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "" + +#: mod/admin.php:1425 +msgid "Check upstream version" +msgstr "" + +#: mod/admin.php:1425 +msgid "" +"Enables checking for new Friendica versions at github. If there is a new " +"version, you will be informed in the admin panel overview." +msgstr "" + +#: mod/admin.php:1426 +msgid "Suppress Tags" +msgstr "" + +#: mod/admin.php:1426 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "" + +#: mod/admin.php:1427 +msgid "Path to item cache" +msgstr "" + +#: mod/admin.php:1427 +msgid "The item caches buffers generated bbcode and external images." +msgstr "" + +#: mod/admin.php:1428 +msgid "Cache duration in seconds" +msgstr "" + +#: mod/admin.php:1428 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One " +"day). To disable the item cache, set the value to -1." +msgstr "" + +#: mod/admin.php:1429 +msgid "Maximum numbers of comments per post" +msgstr "" + +#: mod/admin.php:1429 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "" + +#: mod/admin.php:1430 +msgid "Temp path" +msgstr "" + +#: mod/admin.php:1430 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "" + +#: mod/admin.php:1431 +msgid "Base path to installation" +msgstr "" + +#: mod/admin.php:1431 +msgid "" +"If the system cannot detect the correct path to your installation, enter the " +"correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "" + +#: mod/admin.php:1432 +msgid "Disable picture proxy" +msgstr "" + +#: mod/admin.php:1432 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on " +"systems with very low bandwith." +msgstr "" + +#: mod/admin.php:1433 +msgid "Only search in tags" +msgstr "" + +#: mod/admin.php:1433 +msgid "On large systems the text search can slow down the system extremely." +msgstr "" + +#: mod/admin.php:1435 +msgid "New base url" +msgstr "" + +#: mod/admin.php:1435 +msgid "" +"Change base url for this server. Sends relocate message to all Friendica and " +"Diaspora* contacts of all users." +msgstr "" + +#: mod/admin.php:1437 +msgid "RINO Encryption" +msgstr "" + +#: mod/admin.php:1437 +msgid "Encryption layer between nodes." +msgstr "" + +#: mod/admin.php:1437 +msgid "Enabled" +msgstr "" + +#: mod/admin.php:1439 +msgid "Maximum number of parallel workers" +msgstr "" + +#: mod/admin.php:1439 +msgid "" +"On shared hosters set this to 2. On larger systems, values of 10 are great. " +"Default value is 4." +msgstr "" + +#: mod/admin.php:1440 +msgid "Don't use 'proc_open' with the worker" +msgstr "" + +#: mod/admin.php:1440 +msgid "" +"Enable this if your system doesn't allow the use of 'proc_open'. This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of worker calls in your crontab." +msgstr "" + +#: mod/admin.php:1441 +msgid "Enable fastlane" +msgstr "" + +#: mod/admin.php:1441 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes " +"with higher priority are blocked by processes of lower priority." +msgstr "" + +#: mod/admin.php:1442 +msgid "Enable frontend worker" +msgstr "" + +#: mod/admin.php:1442 +#, php-format +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed \\x28e.g. messages being delivered\\x29. On smaller sites you " +"might want to call %s/worker on a regular basis via an external cron job. " +"You should only enable this option if you cannot utilize cron/scheduled jobs " +"on your server." +msgstr "" + +#: mod/admin.php:1444 +msgid "Subscribe to relay" +msgstr "" + +#: mod/admin.php:1444 +msgid "" +"Enables the receiving of public posts from the relay. They will be included " +"in the search, subscribed tags and on the global community page." +msgstr "" + +#: mod/admin.php:1445 +msgid "Relay server" +msgstr "" + +#: mod/admin.php:1445 +msgid "" +"Address of the relay server where public posts should be send to. For " +"example https://relay.diasp.org" +msgstr "" + +#: mod/admin.php:1446 +msgid "Direct relay transfer" +msgstr "" + +#: mod/admin.php:1446 +msgid "" +"Enables the direct transfer to other servers without using the relay servers" +msgstr "" + +#: mod/admin.php:1447 +msgid "Relay scope" +msgstr "" + +#: mod/admin.php:1447 +msgid "" +"Can be 'all' or 'tags'. 'all' means that every public post should be " +"received. 'tags' means that only posts with selected tags should be received." +msgstr "" + +#: mod/admin.php:1447 +msgid "all" +msgstr "" + +#: mod/admin.php:1447 +msgid "tags" +msgstr "" + +#: mod/admin.php:1448 +msgid "Server tags" +msgstr "" + +#: mod/admin.php:1448 +msgid "Comma separated list of tags for the 'tags' subscription." +msgstr "" + +#: mod/admin.php:1449 +msgid "Allow user tags" +msgstr "" + +#: mod/admin.php:1449 +msgid "" +"If enabled, the tags from the saved searches will used for the 'tags' " +"subscription in addition to the 'relay_server_tags'." +msgstr "" + +#: mod/admin.php:1477 +msgid "Update has been marked successful" +msgstr "" + +#: mod/admin.php:1484 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "" + +#: mod/admin.php:1487 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "" + +#: mod/admin.php:1500 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "" + +#: mod/admin.php:1502 +#, php-format +msgid "Update %s was successfully applied." +msgstr "" + +#: mod/admin.php:1505 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "" + +#: mod/admin.php:1508 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "" + +#: mod/admin.php:1528 +msgid "No failed updates." +msgstr "" + +#: mod/admin.php:1529 +msgid "Check database structure" +msgstr "" + +#: mod/admin.php:1534 +msgid "Failed Updates" +msgstr "" + +#: mod/admin.php:1535 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "" + +#: mod/admin.php:1536 +msgid "Mark success (if update was manually applied)" +msgstr "" + +#: mod/admin.php:1537 +msgid "Attempt to execute this update step automatically" +msgstr "" + +#: mod/admin.php:1576 #, php-format msgid "" "\n" "\t\t\tDear %1$s,\n" -"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t\t" +"\t\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: src/Model/User.php:625 +#: mod/admin.php:1579 #, php-format msgid "" "\n" "\t\t\tThe login details are as follows:\n" "\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t\t%1$s\n" -"\t\t\tPassword:\t\t%5$s\n" +"\t\t\tSite Location:\t%1$s\n" +"\t\t\tLogin Name:\t\t%2$s\n" +"\t\t\tPassword:\t\t%3$s\n" "\n" "\t\t\tYou may change your password from your account \"Settings\" page after " "logging\n" @@ -1873,17 +5732,2345 @@ msgid "" "\t\t\tIf you are new and do not know anybody here, they may help\n" "\t\t\tyou to make some new and interesting friends.\n" "\n" -"\t\t\tIf you ever want to delete your account, you can do so at %3$s/" +"\t\t\tIf you ever want to delete your account, you can do so at %1$s/" "removeme\n" "\n" -"\t\t\tThank you and welcome to %2$s." +"\t\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:659 mod/admin.php:1611 +#: mod/admin.php:1613 src/Model/User.php:663 #, php-format msgid "Registration details for %s" msgstr "" +#: mod/admin.php:1623 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: mod/admin.php:1629 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "" +msgstr[1] "" + +#: mod/admin.php:1676 +#, php-format +msgid "User '%s' deleted" +msgstr "" + +#: mod/admin.php:1684 +#, php-format +msgid "User '%s' unblocked" +msgstr "" + +#: mod/admin.php:1684 +#, php-format +msgid "User '%s' blocked" +msgstr "" + +#: mod/admin.php:1741 mod/settings.php:1071 +msgid "Normal Account Page" +msgstr "" + +#: mod/admin.php:1742 mod/settings.php:1075 +msgid "Soapbox Page" +msgstr "" + +#: mod/admin.php:1743 mod/settings.php:1079 +msgid "Public Forum" +msgstr "" + +#: mod/admin.php:1744 mod/settings.php:1083 +msgid "Automatic Friend Page" +msgstr "" + +#: mod/admin.php:1745 +msgid "Private Forum" +msgstr "" + +#: mod/admin.php:1748 mod/settings.php:1055 +msgid "Personal Page" +msgstr "" + +#: mod/admin.php:1749 mod/settings.php:1059 +msgid "Organisation Page" +msgstr "" + +#: mod/admin.php:1750 mod/settings.php:1063 +msgid "News Page" +msgstr "" + +#: mod/admin.php:1751 mod/settings.php:1067 +msgid "Community Forum" +msgstr "" + +#: mod/admin.php:1798 mod/admin.php:1809 mod/admin.php:1822 mod/admin.php:1840 +#: src/Content/ContactSelector.php:82 +msgid "Email" +msgstr "" + +#: mod/admin.php:1798 mod/admin.php:1822 +msgid "Register date" +msgstr "" + +#: mod/admin.php:1798 mod/admin.php:1822 +msgid "Last login" +msgstr "" + +#: mod/admin.php:1798 mod/admin.php:1822 +msgid "Last item" +msgstr "" + +#: mod/admin.php:1798 +msgid "Type" +msgstr "" + +#: mod/admin.php:1805 +msgid "Add User" +msgstr "" + +#: mod/admin.php:1807 +msgid "User registrations waiting for confirm" +msgstr "" + +#: mod/admin.php:1808 +msgid "User waiting for permanent deletion" +msgstr "" + +#: mod/admin.php:1809 +msgid "Request date" +msgstr "" + +#: mod/admin.php:1810 +msgid "No registrations." +msgstr "" + +#: mod/admin.php:1811 +msgid "Note from the user" +msgstr "" + +#: mod/admin.php:1813 +msgid "Deny" +msgstr "" + +#: mod/admin.php:1817 +msgid "Site admin" +msgstr "" + +#: mod/admin.php:1818 +msgid "Account expired" +msgstr "" + +#: mod/admin.php:1821 +msgid "New User" +msgstr "" + +#: mod/admin.php:1822 +msgid "Deleted since" +msgstr "" + +#: mod/admin.php:1827 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: mod/admin.php:1828 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: mod/admin.php:1838 +msgid "Name of the new user." +msgstr "" + +#: mod/admin.php:1839 +msgid "Nickname" +msgstr "" + +#: mod/admin.php:1839 +msgid "Nickname of the new user." +msgstr "" + +#: mod/admin.php:1840 +msgid "Email address of the new user." +msgstr "" + +#: mod/admin.php:1882 +#, php-format +msgid "Addon %s disabled." +msgstr "" + +#: mod/admin.php:1886 +#, php-format +msgid "Addon %s enabled." +msgstr "" + +#: mod/admin.php:1896 mod/admin.php:2145 +msgid "Disable" +msgstr "" + +#: mod/admin.php:1899 mod/admin.php:2148 +msgid "Enable" +msgstr "" + +#: mod/admin.php:1921 mod/admin.php:2190 +msgid "Toggle" +msgstr "" + +#: mod/admin.php:1929 mod/admin.php:2199 +msgid "Author: " +msgstr "" + +#: mod/admin.php:1930 mod/admin.php:2200 +msgid "Maintainer: " +msgstr "" + +#: mod/admin.php:1982 +msgid "Reload active addons" +msgstr "" + +#: mod/admin.php:1987 +#, php-format +msgid "" +"There are currently no addons available on your node. You can find the " +"official addon repository at %1$s and might find other interesting addons in " +"the open addon registry at %2$s" +msgstr "" + +#: mod/admin.php:2107 +msgid "No themes found." +msgstr "" + +#: mod/admin.php:2181 +msgid "Screenshot" +msgstr "" + +#: mod/admin.php:2235 +msgid "Reload active themes" +msgstr "" + +#: mod/admin.php:2240 +#, php-format +msgid "No themes found on the system. They should be placed in %1$s" +msgstr "" + +#: mod/admin.php:2241 +msgid "[Experimental]" +msgstr "" + +#: mod/admin.php:2242 +msgid "[Unsupported]" +msgstr "" + +#: mod/admin.php:2266 +msgid "Log settings updated." +msgstr "" + +#: mod/admin.php:2298 +msgid "PHP log currently enabled." +msgstr "" + +#: mod/admin.php:2300 +msgid "PHP log currently disabled." +msgstr "" + +#: mod/admin.php:2309 +msgid "Clear" +msgstr "" + +#: mod/admin.php:2313 +msgid "Enable Debugging" +msgstr "" + +#: mod/admin.php:2314 +msgid "Log file" +msgstr "" + +#: mod/admin.php:2314 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "" + +#: mod/admin.php:2315 +msgid "Log level" +msgstr "" + +#: mod/admin.php:2317 +msgid "PHP logging" +msgstr "" + +#: mod/admin.php:2318 +msgid "" +"To enable logging of PHP errors and warnings you can add the following to " +"the .htconfig.php file of your installation. The filename set in the " +"'error_log' line is relative to the friendica top-level directory and must " +"be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "" + +#: mod/admin.php:2349 +#, php-format +msgid "" +"Error trying to open %1$s log file.\\r\\n
Check to see " +"if file %1$s exist and is readable." +msgstr "" + +#: mod/admin.php:2353 +#, php-format +msgid "" +"Couldn't open %1$s log file.\\r\\n
Check to see if file " +"%1$s is readable." +msgstr "" + +#: mod/admin.php:2444 mod/admin.php:2445 mod/settings.php:777 +msgid "Off" +msgstr "" + +#: mod/admin.php:2444 mod/admin.php:2445 mod/settings.php:777 +msgid "On" +msgstr "" + +#: mod/admin.php:2445 +#, php-format +msgid "Lock feature %s" +msgstr "" + +#: mod/admin.php:2453 +msgid "Manage Additional Features" +msgstr "" + +#: mod/babel.php:22 +msgid "Source input" +msgstr "" + +#: mod/babel.php:28 +msgid "BBCode::toPlaintext" +msgstr "" + +#: mod/babel.php:34 +msgid "BBCode::convert (raw HTML)" +msgstr "" + +#: mod/babel.php:39 +msgid "BBCode::convert" +msgstr "" + +#: mod/babel.php:45 +msgid "BBCode::convert => HTML::toBBCode" +msgstr "" + +#: mod/babel.php:51 +msgid "BBCode::toMarkdown" +msgstr "" + +#: mod/babel.php:57 +msgid "BBCode::toMarkdown => Markdown::convert" +msgstr "" + +#: mod/babel.php:63 +msgid "BBCode::toMarkdown => Markdown::toBBCode" +msgstr "" + +#: mod/babel.php:69 +msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" +msgstr "" + +#: mod/babel.php:76 +msgid "Source input \\x28Diaspora format\\x29" +msgstr "" + +#: mod/babel.php:82 +msgid "Markdown::toBBCode" +msgstr "" + +#: mod/babel.php:89 +msgid "Raw HTML input" +msgstr "" + +#: mod/babel.php:94 +msgid "HTML Input" +msgstr "" + +#: mod/babel.php:100 +msgid "HTML::toBBCode" +msgstr "" + +#: mod/babel.php:106 +msgid "HTML::toPlaintext" +msgstr "" + +#: mod/babel.php:114 +msgid "Source text" +msgstr "" + +#: mod/babel.php:115 +msgid "BBCode" +msgstr "" + +#: mod/babel.php:116 +msgid "Markdown" +msgstr "" + +#: mod/babel.php:117 +msgid "HTML" +msgstr "" + +#: mod/community.php:51 +msgid "Community option not available." +msgstr "" + +#: mod/community.php:68 +msgid "Not available." +msgstr "" + +#: mod/community.php:81 +msgid "Local Community" +msgstr "" + +#: mod/community.php:84 +msgid "Posts from local users on this server" +msgstr "" + +#: mod/community.php:92 +msgid "Global Community" +msgstr "" + +#: mod/community.php:95 +msgid "Posts from users of the whole federated network" +msgstr "" + +#: mod/community.php:185 +msgid "" +"This community stream shows all public posts received by this node. They may " +"not reflect the opinions of this node’s users." +msgstr "" + +#: mod/friendica.php:77 +msgid "This is Friendica, version" +msgstr "" + +#: mod/friendica.php:78 +msgid "running at web location" +msgstr "" + +#: mod/friendica.php:82 +msgid "" +"Please visit Friendi.ca to learn more " +"about the Friendica project." +msgstr "" + +#: mod/friendica.php:86 +msgid "Bug reports and issues: please visit" +msgstr "" + +#: mod/friendica.php:86 +msgid "the bugtracker at github" +msgstr "" + +#: mod/friendica.php:89 +msgid "" +"Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" +msgstr "" + +#: mod/friendica.php:103 +msgid "Installed addons/apps:" +msgstr "" + +#: mod/friendica.php:117 +msgid "No installed addons/apps" +msgstr "" + +#: mod/friendica.php:122 +#, php-format +msgid "Read about the Terms of Service of this node." +msgstr "" + +#: mod/friendica.php:127 +msgid "On this server the following remote servers are blocked." +msgstr "" + +#: mod/install.php:114 +msgid "Friendica Communications Server - Setup" +msgstr "" + +#: mod/install.php:120 +msgid "Could not connect to database." +msgstr "" + +#: mod/install.php:124 +msgid "Could not create table." +msgstr "" + +#: mod/install.php:130 +msgid "Your Friendica site database has been installed." +msgstr "" + +#: mod/install.php:135 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "" + +#: mod/install.php:136 mod/install.php:208 mod/install.php:565 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "" + +#: mod/install.php:148 +msgid "Database already in use." +msgstr "" + +#: mod/install.php:205 +msgid "System check" +msgstr "" + +#: mod/install.php:210 +msgid "Check again" +msgstr "" + +#: mod/install.php:230 +msgid "Database connection" +msgstr "" + +#: mod/install.php:231 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "" + +#: mod/install.php:232 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "" + +#: mod/install.php:233 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "" + +#: mod/install.php:237 +msgid "Database Server Name" +msgstr "" + +#: mod/install.php:238 +msgid "Database Login Name" +msgstr "" + +#: mod/install.php:239 +msgid "Database Login Password" +msgstr "" + +#: mod/install.php:239 +msgid "For security reasons the password must not be empty" +msgstr "" + +#: mod/install.php:240 +msgid "Database Name" +msgstr "" + +#: mod/install.php:241 mod/install.php:281 +msgid "Site administrator email address" +msgstr "" + +#: mod/install.php:241 mod/install.php:281 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "" + +#: mod/install.php:245 mod/install.php:284 +msgid "Please select a default timezone for your website" +msgstr "" + +#: mod/install.php:271 +msgid "Site settings" +msgstr "" + +#: mod/install.php:285 +msgid "System Language:" +msgstr "" + +#: mod/install.php:285 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "" + +#: mod/install.php:326 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "" + +#: mod/install.php:327 +msgid "" +"If you don't have a command line version of PHP installed on your server, " +"you will not be able to run the background processing. See 'Setup the worker'" +msgstr "" + +#: mod/install.php:331 +msgid "PHP executable path" +msgstr "" + +#: mod/install.php:331 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "" + +#: mod/install.php:336 +msgid "Command line PHP" +msgstr "" + +#: mod/install.php:345 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "" + +#: mod/install.php:346 +msgid "Found PHP version: " +msgstr "" + +#: mod/install.php:348 +msgid "PHP cli binary" +msgstr "" + +#: mod/install.php:359 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "" + +#: mod/install.php:360 +msgid "This is required for message delivery to work." +msgstr "" + +#: mod/install.php:362 +msgid "PHP register_argc_argv" +msgstr "" + +#: mod/install.php:385 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "" + +#: mod/install.php:386 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." +msgstr "" + +#: mod/install.php:388 +msgid "Generate encryption keys" +msgstr "" + +#: mod/install.php:395 +msgid "libCurl PHP module" +msgstr "" + +#: mod/install.php:396 +msgid "GD graphics PHP module" +msgstr "" + +#: mod/install.php:397 +msgid "OpenSSL PHP module" +msgstr "" + +#: mod/install.php:398 +msgid "PDO or MySQLi PHP module" +msgstr "" + +#: mod/install.php:399 +msgid "mb_string PHP module" +msgstr "" + +#: mod/install.php:400 +msgid "XML PHP module" +msgstr "" + +#: mod/install.php:401 +msgid "iconv PHP module" +msgstr "" + +#: mod/install.php:402 +msgid "POSIX PHP module" +msgstr "" + +#: mod/install.php:406 mod/install.php:408 +msgid "Apache mod_rewrite module" +msgstr "" + +#: mod/install.php:406 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "" + +#: mod/install.php:414 +msgid "Error: libCURL PHP module required but not installed." +msgstr "" + +#: mod/install.php:418 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "" + +#: mod/install.php:422 +msgid "Error: openssl PHP module required but not installed." +msgstr "" + +#: mod/install.php:426 +msgid "Error: PDO or MySQLi PHP module required but not installed." +msgstr "" + +#: mod/install.php:430 +msgid "Error: The MySQL driver for PDO is not installed." +msgstr "" + +#: mod/install.php:434 +msgid "Error: mb_string PHP module required but not installed." +msgstr "" + +#: mod/install.php:438 +msgid "Error: iconv PHP module required but not installed." +msgstr "" + +#: mod/install.php:442 +msgid "Error: POSIX PHP module required but not installed." +msgstr "" + +#: mod/install.php:452 +msgid "Error, XML PHP module required but not installed." +msgstr "" + +#: mod/install.php:464 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\" " +"in the top folder of your web server and it is unable to do so." +msgstr "" + +#: mod/install.php:465 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "" + +#: mod/install.php:466 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "" + +#: mod/install.php:467 +msgid "" +"You can alternatively skip this procedure and perform a manual installation. " +"Please see the file \"INSTALL.txt\" for instructions." +msgstr "" + +#: mod/install.php:470 +msgid ".htconfig.php is writable" +msgstr "" + +#: mod/install.php:480 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "" + +#: mod/install.php:481 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "" + +#: mod/install.php:482 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." +msgstr "" + +#: mod/install.php:483 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "" + +#: mod/install.php:486 +msgid "view/smarty3 is writable" +msgstr "" + +#: mod/install.php:504 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "" + +#: mod/install.php:506 +msgid "Error message from Curl when fetching" +msgstr "" + +#: mod/install.php:510 +msgid "Url rewrite is working" +msgstr "" + +#: mod/install.php:529 +msgid "ImageMagick PHP extension is not installed" +msgstr "" + +#: mod/install.php:531 +msgid "ImageMagick PHP extension is installed" +msgstr "" + +#: mod/install.php:533 +msgid "ImageMagick supports GIF" +msgstr "" + +#: mod/install.php:540 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "" + +#: mod/install.php:563 +msgid "

What next

" +msgstr "" + +#: mod/install.php:564 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the worker." +msgstr "" + +#: mod/install.php:567 +#, php-format +msgid "" +"Go to your new Friendica node registration page " +"and register as new user. Remember to use the same email you have entered as " +"administrator email. This will allow you to enter the site admin panel." +msgstr "" + +#: mod/invite.php:33 +msgid "Total invitation limit exceeded." +msgstr "" + +#: mod/invite.php:55 +#, php-format +msgid "%s : Not a valid email address." +msgstr "" + +#: mod/invite.php:87 +msgid "Please join us on Friendica" +msgstr "" + +#: mod/invite.php:96 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "" + +#: mod/invite.php:100 +#, php-format +msgid "%s : Message delivery failed." +msgstr "" + +#: mod/invite.php:104 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "" +msgstr[1] "" + +#: mod/invite.php:122 +msgid "You have no more invitations available" +msgstr "" + +#: mod/invite.php:130 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many " +"other social networks." +msgstr "" + +#: mod/invite.php:132 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "" + +#: mod/invite.php:133 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "" + +#: mod/invite.php:137 +msgid "" +"Our apologies. This system is not currently configured to connect with other " +"public sites or invite members." +msgstr "" + +#: mod/invite.php:141 +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks." +msgstr "" + +#: mod/invite.php:140 +#, php-format +msgid "To accept this invitation, please visit and register at %s." +msgstr "" + +#: mod/invite.php:147 +msgid "Send invitations" +msgstr "" + +#: mod/invite.php:148 +msgid "Enter email addresses, one per line:" +msgstr "" + +#: mod/invite.php:149 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "" + +#: mod/invite.php:151 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "" + +#: mod/invite.php:151 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "" + +#: mod/invite.php:153 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendi.ca" +msgstr "" + +#: mod/network.php:202 src/Model/Group.php:413 +msgid "add" +msgstr "" + +#: mod/network.php:547 +#, php-format +msgid "" +"Warning: This group contains %s member from a network that doesn't allow non " +"public messages." +msgid_plural "" +"Warning: This group contains %s members from a network that doesn't allow " +"non public messages." +msgstr[0] "" +msgstr[1] "" + +#: mod/network.php:550 +msgid "Messages in this group won't be send to these receivers." +msgstr "" + +#: mod/network.php:618 +msgid "No such group" +msgstr "" + +#: mod/network.php:643 +#, php-format +msgid "Group: %s" +msgstr "" + +#: mod/network.php:669 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "" + +#: mod/network.php:672 +msgid "Invalid contact." +msgstr "" + +#: mod/network.php:937 +msgid "Commented Order" +msgstr "" + +#: mod/network.php:940 +msgid "Sort by Comment Date" +msgstr "" + +#: mod/network.php:945 +msgid "Posted Order" +msgstr "" + +#: mod/network.php:948 +msgid "Sort by Post Date" +msgstr "" + +#: mod/network.php:959 +msgid "Posts that mention or involve you" +msgstr "" + +#: mod/network.php:967 +msgid "New" +msgstr "" + +#: mod/network.php:970 +msgid "Activity Stream - by date" +msgstr "" + +#: mod/network.php:978 +msgid "Shared Links" +msgstr "" + +#: mod/network.php:981 +msgid "Interesting Links" +msgstr "" + +#: mod/network.php:989 +msgid "Starred" +msgstr "" + +#: mod/network.php:992 +msgid "Favourite Posts" +msgstr "" + +#: mod/profile.php:37 src/Model/Profile.php:118 +msgid "Requested profile is not available." +msgstr "" + +#: mod/profile.php:78 src/Protocol/OStatus.php:1252 +#, php-format +msgid "%s's posts" +msgstr "" + +#: mod/profile.php:79 src/Protocol/OStatus.php:1253 +#, php-format +msgid "%s's comments" +msgstr "" + +#: mod/profile.php:80 src/Protocol/OStatus.php:1251 +#, php-format +msgid "%s's timeline" +msgstr "" + +#: mod/profile.php:194 +msgid "Tips for New Members" +msgstr "" + +#: mod/settings.php:56 +msgid "Account" +msgstr "" + +#: mod/settings.php:73 +msgid "Display" +msgstr "" + +#: mod/settings.php:80 mod/settings.php:844 +msgid "Social Networks" +msgstr "" + +#: mod/settings.php:94 src/Content/Nav.php:201 +msgid "Delegations" +msgstr "" + +#: mod/settings.php:101 +msgid "Connected apps" +msgstr "" + +#: mod/settings.php:115 +msgid "Remove account" +msgstr "" + +#: mod/settings.php:169 +msgid "Missing some important data!" +msgstr "" + +#: mod/settings.php:280 +msgid "Failed to connect with email account using the settings provided." +msgstr "" + +#: mod/settings.php:285 +msgid "Email settings updated." +msgstr "" + +#: mod/settings.php:301 +msgid "Features updated" +msgstr "" + +#: mod/settings.php:374 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: mod/settings.php:386 src/Model/User.php:339 +msgid "Passwords do not match. Password unchanged." +msgstr "" + +#: mod/settings.php:391 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "" + +#: mod/settings.php:396 src/Core/Console/NewPassword.php:87 +msgid "" +"The new password has been exposed in a public data dump, please choose " +"another." +msgstr "" + +#: mod/settings.php:402 +msgid "Wrong password." +msgstr "" + +#: mod/settings.php:409 src/Core/Console/NewPassword.php:94 +msgid "Password changed." +msgstr "" + +#: mod/settings.php:411 src/Core/Console/NewPassword.php:91 +msgid "Password update failed. Please try again." +msgstr "" + +#: mod/settings.php:498 +msgid " Please use a shorter name." +msgstr "" + +#: mod/settings.php:501 +msgid " Name too short." +msgstr "" + +#: mod/settings.php:509 +msgid "Wrong Password" +msgstr "" + +#: mod/settings.php:514 +msgid "Invalid email." +msgstr "" + +#: mod/settings.php:521 +msgid "Cannot change to that email." +msgstr "" + +#: mod/settings.php:574 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "" + +#: mod/settings.php:577 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "" + +#: mod/settings.php:617 +msgid "Settings updated." +msgstr "" + +#: mod/settings.php:676 mod/settings.php:702 mod/settings.php:738 +msgid "Add application" +msgstr "" + +#: mod/settings.php:680 mod/settings.php:706 +msgid "Consumer Key" +msgstr "" + +#: mod/settings.php:681 mod/settings.php:707 +msgid "Consumer Secret" +msgstr "" + +#: mod/settings.php:682 mod/settings.php:708 +msgid "Redirect" +msgstr "" + +#: mod/settings.php:683 mod/settings.php:709 +msgid "Icon url" +msgstr "" + +#: mod/settings.php:694 +msgid "You can't edit this application." +msgstr "" + +#: mod/settings.php:737 +msgid "Connected Apps" +msgstr "" + +#: mod/settings.php:739 src/Object/Post.php:155 src/Object/Post.php:157 +msgid "Edit" +msgstr "" + +#: mod/settings.php:741 +msgid "Client key starts with" +msgstr "" + +#: mod/settings.php:742 +msgid "No name" +msgstr "" + +#: mod/settings.php:743 +msgid "Remove authorization" +msgstr "" + +#: mod/settings.php:754 +msgid "No Addon settings configured" +msgstr "" + +#: mod/settings.php:763 +msgid "Addon Settings" +msgstr "" + +#: mod/settings.php:784 +msgid "Additional Features" +msgstr "" + +#: mod/settings.php:807 src/Content/ContactSelector.php:83 +msgid "Diaspora" +msgstr "" + +#: mod/settings.php:807 mod/settings.php:808 +msgid "enabled" +msgstr "" + +#: mod/settings.php:807 mod/settings.php:808 +msgid "disabled" +msgstr "" + +#: mod/settings.php:807 mod/settings.php:808 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "" + +#: mod/settings.php:808 +msgid "GNU Social (OStatus)" +msgstr "" + +#: mod/settings.php:839 +msgid "Email access is disabled on this site." +msgstr "" + +#: mod/settings.php:849 +msgid "General Social Media Settings" +msgstr "" + +#: mod/settings.php:850 +msgid "Disable Content Warning" +msgstr "" + +#: mod/settings.php:850 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning " +"field which collapse their post by default. This disables the automatic " +"collapsing and sets the content warning as the post title. Doesn't affect " +"any other content filtering you eventually set up." +msgstr "" + +#: mod/settings.php:851 +msgid "Disable intelligent shortening" +msgstr "" + +#: mod/settings.php:851 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the " +"original friendica post." +msgstr "" + +#: mod/settings.php:852 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "" + +#: mod/settings.php:852 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "" + +#: mod/settings.php:853 +msgid "Default group for OStatus contacts" +msgstr "" + +#: mod/settings.php:854 +msgid "Your legacy GNU Social account" +msgstr "" + +#: mod/settings.php:854 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "" + +#: mod/settings.php:857 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: mod/settings.php:861 +msgid "Email/Mailbox Setup" +msgstr "" + +#: mod/settings.php:862 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "" + +#: mod/settings.php:863 +msgid "Last successful email check:" +msgstr "" + +#: mod/settings.php:865 +msgid "IMAP server name:" +msgstr "" + +#: mod/settings.php:866 +msgid "IMAP port:" +msgstr "" + +#: mod/settings.php:867 +msgid "Security:" +msgstr "" + +#: mod/settings.php:867 mod/settings.php:872 +msgid "None" +msgstr "" + +#: mod/settings.php:868 +msgid "Email login name:" +msgstr "" + +#: mod/settings.php:869 +msgid "Email password:" +msgstr "" + +#: mod/settings.php:870 +msgid "Reply-to address:" +msgstr "" + +#: mod/settings.php:871 +msgid "Send public posts to all email contacts:" +msgstr "" + +#: mod/settings.php:872 +msgid "Action after import:" +msgstr "" + +#: mod/settings.php:872 src/Content/Nav.php:189 +msgid "Mark as seen" +msgstr "" + +#: mod/settings.php:872 +msgid "Move to folder" +msgstr "" + +#: mod/settings.php:873 +msgid "Move to folder:" +msgstr "" + +#: mod/settings.php:916 +#, php-format +msgid "%s - (Unsupported)" +msgstr "" + +#: mod/settings.php:918 +#, php-format +msgid "%s - (Experimental)" +msgstr "" + +#: mod/settings.php:961 +msgid "Display Settings" +msgstr "" + +#: mod/settings.php:967 mod/settings.php:991 +msgid "Display Theme:" +msgstr "" + +#: mod/settings.php:968 +msgid "Mobile Theme:" +msgstr "" + +#: mod/settings.php:969 +msgid "Suppress warning of insecure networks" +msgstr "" + +#: mod/settings.php:969 +msgid "" +"Should the system suppress the warning that the current group contains " +"members of networks that can't receive non public postings." +msgstr "" + +#: mod/settings.php:970 +msgid "Update browser every xx seconds" +msgstr "" + +#: mod/settings.php:970 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "" + +#: mod/settings.php:971 +msgid "Number of items to display per page:" +msgstr "" + +#: mod/settings.php:971 mod/settings.php:972 +msgid "Maximum of 100 items" +msgstr "" + +#: mod/settings.php:972 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "" + +#: mod/settings.php:973 +msgid "Don't show emoticons" +msgstr "" + +#: mod/settings.php:974 +msgid "Calendar" +msgstr "" + +#: mod/settings.php:975 +msgid "Beginning of week:" +msgstr "" + +#: mod/settings.php:976 +msgid "Don't show notices" +msgstr "" + +#: mod/settings.php:977 +msgid "Infinite scroll" +msgstr "" + +#: mod/settings.php:978 +msgid "Automatic updates only at the top of the network page" +msgstr "" + +#: mod/settings.php:978 +msgid "" +"When disabled, the network page is updated all the time, which could be " +"confusing while reading." +msgstr "" + +#: mod/settings.php:979 +msgid "Bandwith Saver Mode" +msgstr "" + +#: mod/settings.php:979 +msgid "" +"When enabled, embedded content is not displayed on automatic updates, they " +"only show on page reload." +msgstr "" + +#: mod/settings.php:980 +msgid "Smart Threading" +msgstr "" + +#: mod/settings.php:980 +msgid "" +"When enabled, suppress extraneous thread indentation while keeping it where " +"it matters. Only works if threading is available and enabled." +msgstr "" + +#: mod/settings.php:982 +msgid "General Theme Settings" +msgstr "" + +#: mod/settings.php:983 +msgid "Custom Theme Settings" +msgstr "" + +#: mod/settings.php:984 +msgid "Content Settings" +msgstr "" + +#: mod/settings.php:985 view/theme/duepuntozero/config.php:73 +#: view/theme/frio/config.php:120 view/theme/quattro/config.php:75 +#: view/theme/vier/config.php:121 +msgid "Theme settings" +msgstr "" + +#: mod/settings.php:1004 +msgid "Unable to find your profile. Please contact your admin." +msgstr "" + +#: mod/settings.php:1046 +msgid "Account Types" +msgstr "" + +#: mod/settings.php:1047 +msgid "Personal Page Subtypes" +msgstr "" + +#: mod/settings.php:1048 +msgid "Community Forum Subtypes" +msgstr "" + +#: mod/settings.php:1056 +msgid "Account for a personal profile." +msgstr "" + +#: mod/settings.php:1060 +msgid "" +"Account for an organisation that automatically approves contact requests as " +"\"Followers\"." +msgstr "" + +#: mod/settings.php:1064 +msgid "" +"Account for a news reflector that automatically approves contact requests as " +"\"Followers\"." +msgstr "" + +#: mod/settings.php:1068 +msgid "Account for community discussions." +msgstr "" + +#: mod/settings.php:1072 +msgid "" +"Account for a regular personal profile that requires manual approval of " +"\"Friends\" and \"Followers\"." +msgstr "" + +#: mod/settings.php:1076 +msgid "" +"Account for a public profile that automatically approves contact requests as " +"\"Followers\"." +msgstr "" + +#: mod/settings.php:1080 +msgid "Automatically approves all contact requests." +msgstr "" + +#: mod/settings.php:1084 +msgid "" +"Account for a popular profile that automatically approves contact requests " +"as \"Friends\"." +msgstr "" + +#: mod/settings.php:1087 +msgid "Private Forum [Experimental]" +msgstr "" + +#: mod/settings.php:1088 +msgid "Requires manual approval of contact requests." +msgstr "" + +#: mod/settings.php:1099 +msgid "OpenID:" +msgstr "" + +#: mod/settings.php:1099 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "" + +#: mod/settings.php:1107 +msgid "Publish your default profile in your local site directory?" +msgstr "" + +#: mod/settings.php:1107 +#, php-format +msgid "" +"Your profile will be published in the global friendica directories (e.g. %s). Your profile will be visible in public." +msgstr "" + +#: mod/settings.php:1113 +msgid "Publish your default profile in the global social directory?" +msgstr "" + +#: mod/settings.php:1113 +#, php-format +msgid "" +"Your profile will be published in this node's local " +"directory. Your profile details may be publicly visible depending on the " +"system settings." +msgstr "" + +#: mod/settings.php:1120 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "" + +#: mod/settings.php:1120 +msgid "" +"Your contact list won't be shown in your default profile page. You can " +"decide to show your contact list separately for each additional profile you " +"create" +msgstr "" + +#: mod/settings.php:1124 +msgid "Hide your profile details from anonymous viewers?" +msgstr "" + +#: mod/settings.php:1124 +msgid "" +"Anonymous visitors will only see your profile picture, your display name and " +"the nickname you are using on your profile page. Disables posting public " +"messages to Diaspora and other networks." +msgstr "" + +#: mod/settings.php:1128 +msgid "Allow friends to post to your profile page?" +msgstr "" + +#: mod/settings.php:1128 +msgid "" +"Your contacts may write posts on your profile wall. These posts will be " +"distributed to your contacts" +msgstr "" + +#: mod/settings.php:1132 +msgid "Allow friends to tag your posts?" +msgstr "" + +#: mod/settings.php:1132 +msgid "Your contacts can add additional tags to your posts." +msgstr "" + +#: mod/settings.php:1136 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "" + +#: mod/settings.php:1136 +msgid "If you like, Friendica may suggest new members to add you as a contact." +msgstr "" + +#: mod/settings.php:1140 +msgid "Permit unknown people to send you private mail?" +msgstr "" + +#: mod/settings.php:1140 +msgid "" +"Friendica network users may send you private messages even if they are not " +"in your contact list." +msgstr "" + +#: mod/settings.php:1144 +msgid "Profile is not published." +msgstr "" + +#: mod/settings.php:1150 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "" + +#: mod/settings.php:1157 +msgid "Automatically expire posts after this many days:" +msgstr "" + +#: mod/settings.php:1157 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "" + +#: mod/settings.php:1158 +msgid "Advanced expiration settings" +msgstr "" + +#: mod/settings.php:1159 +msgid "Advanced Expiration" +msgstr "" + +#: mod/settings.php:1160 +msgid "Expire posts:" +msgstr "" + +#: mod/settings.php:1161 +msgid "Expire personal notes:" +msgstr "" + +#: mod/settings.php:1162 +msgid "Expire starred posts:" +msgstr "" + +#: mod/settings.php:1163 +msgid "Expire photos:" +msgstr "" + +#: mod/settings.php:1164 +msgid "Only expire posts by others:" +msgstr "" + +#: mod/settings.php:1194 +msgid "Account Settings" +msgstr "" + +#: mod/settings.php:1202 +msgid "Password Settings" +msgstr "" + +#: mod/settings.php:1204 +msgid "Leave password fields blank unless changing" +msgstr "" + +#: mod/settings.php:1205 +msgid "Current Password:" +msgstr "" + +#: mod/settings.php:1205 mod/settings.php:1206 +msgid "Your current password to confirm the changes" +msgstr "" + +#: mod/settings.php:1206 +msgid "Password:" +msgstr "" + +#: mod/settings.php:1210 +msgid "Basic Settings" +msgstr "" + +#: mod/settings.php:1211 src/Model/Profile.php:736 +msgid "Full Name:" +msgstr "" + +#: mod/settings.php:1212 +msgid "Email Address:" +msgstr "" + +#: mod/settings.php:1213 +msgid "Your Timezone:" +msgstr "" + +#: mod/settings.php:1214 +msgid "Your Language:" +msgstr "" + +#: mod/settings.php:1214 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "" + +#: mod/settings.php:1215 +msgid "Default Post Location:" +msgstr "" + +#: mod/settings.php:1216 +msgid "Use Browser Location:" +msgstr "" + +#: mod/settings.php:1219 +msgid "Security and Privacy Settings" +msgstr "" + +#: mod/settings.php:1221 +msgid "Maximum Friend Requests/Day:" +msgstr "" + +#: mod/settings.php:1221 mod/settings.php:1250 +msgid "(to prevent spam abuse)" +msgstr "" + +#: mod/settings.php:1222 +msgid "Default Post Permissions" +msgstr "" + +#: mod/settings.php:1223 +msgid "(click to open/close)" +msgstr "" + +#: mod/settings.php:1233 +msgid "Default Private Post" +msgstr "" + +#: mod/settings.php:1234 +msgid "Default Public Post" +msgstr "" + +#: mod/settings.php:1238 +msgid "Default Permissions for New Posts" +msgstr "" + +#: mod/settings.php:1250 +msgid "Maximum private messages per day from unknown people:" +msgstr "" + +#: mod/settings.php:1253 +msgid "Notification Settings" +msgstr "" + +#: mod/settings.php:1254 +msgid "By default post a status message when:" +msgstr "" + +#: mod/settings.php:1255 +msgid "accepting a friend request" +msgstr "" + +#: mod/settings.php:1256 +msgid "joining a forum/community" +msgstr "" + +#: mod/settings.php:1257 +msgid "making an interesting profile change" +msgstr "" + +#: mod/settings.php:1258 +msgid "Send a notification email when:" +msgstr "" + +#: mod/settings.php:1259 +msgid "You receive an introduction" +msgstr "" + +#: mod/settings.php:1260 +msgid "Your introductions are confirmed" +msgstr "" + +#: mod/settings.php:1261 +msgid "Someone writes on your profile wall" +msgstr "" + +#: mod/settings.php:1262 +msgid "Someone writes a followup comment" +msgstr "" + +#: mod/settings.php:1263 +msgid "You receive a private message" +msgstr "" + +#: mod/settings.php:1264 +msgid "You receive a friend suggestion" +msgstr "" + +#: mod/settings.php:1265 +msgid "You are tagged in a post" +msgstr "" + +#: mod/settings.php:1266 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: mod/settings.php:1268 +msgid "Activate desktop notifications" +msgstr "" + +#: mod/settings.php:1268 +msgid "Show desktop popup on new notifications" +msgstr "" + +#: mod/settings.php:1270 +msgid "Text-only notification emails" +msgstr "" + +#: mod/settings.php:1272 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: mod/settings.php:1274 +msgid "Show detailled notifications" +msgstr "" + +#: mod/settings.php:1276 +msgid "" +"Per default, notifications are condensed to a single notification per item. " +"When enabled every notification is displayed." +msgstr "" + +#: mod/settings.php:1278 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: mod/settings.php:1279 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: mod/settings.php:1282 +msgid "Relocate" +msgstr "" + +#: mod/settings.php:1283 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "" + +#: mod/settings.php:1284 +msgid "Resend relocate message to contacts" +msgstr "" + +#: view/theme/duepuntozero/config.php:54 src/Model/User.php:502 +msgid "default" +msgstr "" + +#: view/theme/duepuntozero/config.php:55 +msgid "greenzero" +msgstr "" + +#: view/theme/duepuntozero/config.php:56 +msgid "purplezero" +msgstr "" + +#: view/theme/duepuntozero/config.php:57 +msgid "easterbunny" +msgstr "" + +#: view/theme/duepuntozero/config.php:58 +msgid "darkzero" +msgstr "" + +#: view/theme/duepuntozero/config.php:59 +msgid "comix" +msgstr "" + +#: view/theme/duepuntozero/config.php:60 +msgid "slackr" +msgstr "" + +#: view/theme/duepuntozero/config.php:74 +msgid "Variations" +msgstr "" + +#: view/theme/frio/php/Image.php:24 +msgid "Top Banner" +msgstr "" + +#: view/theme/frio/php/Image.php:24 +msgid "" +"Resize image to the width of the screen and show background color below on " +"long pages." +msgstr "" + +#: view/theme/frio/php/Image.php:25 +msgid "Full screen" +msgstr "" + +#: view/theme/frio/php/Image.php:25 +msgid "" +"Resize image to fill entire screen, clipping either the right or the bottom." +msgstr "" + +#: view/theme/frio/php/Image.php:26 +msgid "Single row mosaic" +msgstr "" + +#: view/theme/frio/php/Image.php:26 +msgid "" +"Resize image to repeat it on a single row, either vertical or horizontal." +msgstr "" + +#: view/theme/frio/php/Image.php:27 +msgid "Mosaic" +msgstr "" + +#: view/theme/frio/php/Image.php:27 +msgid "Repeat image to fill the screen." +msgstr "" + +#: view/theme/frio/config.php:102 +msgid "Custom" +msgstr "" + +#: view/theme/frio/config.php:114 +msgid "Note" +msgstr "" + +#: view/theme/frio/config.php:114 +msgid "Check image permissions if all users are allowed to see the image" +msgstr "" + +#: view/theme/frio/config.php:121 +msgid "Select color scheme" +msgstr "" + +#: view/theme/frio/config.php:122 +msgid "Navigation bar background color" +msgstr "" + +#: view/theme/frio/config.php:123 +msgid "Navigation bar icon color " +msgstr "" + +#: view/theme/frio/config.php:124 +msgid "Link color" +msgstr "" + +#: view/theme/frio/config.php:125 +msgid "Set the background color" +msgstr "" + +#: view/theme/frio/config.php:126 +msgid "Content background opacity" +msgstr "" + +#: view/theme/frio/config.php:127 +msgid "Set the background image" +msgstr "" + +#: view/theme/frio/config.php:128 +msgid "Background image style" +msgstr "" + +#: view/theme/frio/config.php:133 +msgid "Login page background image" +msgstr "" + +#: view/theme/frio/config.php:137 +msgid "Login page background color" +msgstr "" + +#: view/theme/frio/config.php:137 +msgid "Leave background image and color empty for theme defaults" +msgstr "" + +#: view/theme/frio/theme.php:238 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:243 +msgid "Visitor" +msgstr "" + +#: view/theme/frio/theme.php:256 src/Content/Nav.php:97 +#: src/Module/Login.php:311 +msgid "Logout" +msgstr "" + +#: view/theme/frio/theme.php:256 src/Content/Nav.php:97 +msgid "End this session" +msgstr "" + +#: view/theme/frio/theme.php:259 src/Content/Nav.php:100 +#: src/Content/Nav.php:182 +msgid "Your posts and conversations" +msgstr "" + +#: view/theme/frio/theme.php:260 src/Content/Nav.php:101 +msgid "Your profile page" +msgstr "" + +#: view/theme/frio/theme.php:261 src/Content/Nav.php:102 +msgid "Your photos" +msgstr "" + +#: view/theme/frio/theme.php:262 src/Content/Nav.php:103 +#: src/Model/Profile.php:910 src/Model/Profile.php:913 +msgid "Videos" +msgstr "" + +#: view/theme/frio/theme.php:262 src/Content/Nav.php:103 +msgid "Your videos" +msgstr "" + +#: view/theme/frio/theme.php:263 src/Content/Nav.php:104 +msgid "Your events" +msgstr "" + +#: view/theme/frio/theme.php:266 src/Content/Nav.php:179 +msgid "Conversations from your friends" +msgstr "" + +#: view/theme/frio/theme.php:267 src/Content/Nav.php:170 +#: src/Model/Profile.php:925 src/Model/Profile.php:936 +msgid "Events and Calendar" +msgstr "" + +#: view/theme/frio/theme.php:268 src/Content/Nav.php:192 +msgid "Private mail" +msgstr "" + +#: view/theme/frio/theme.php:269 src/Content/Nav.php:203 +msgid "Account settings" +msgstr "" + +#: view/theme/frio/theme.php:270 src/Content/Nav.php:209 +msgid "Manage/edit friends and contacts" +msgstr "" + +#: view/theme/quattro/config.php:76 +msgid "Alignment" +msgstr "" + +#: view/theme/quattro/config.php:76 +msgid "Left" +msgstr "" + +#: view/theme/quattro/config.php:76 +msgid "Center" +msgstr "" + +#: view/theme/quattro/config.php:77 +msgid "Color scheme" +msgstr "" + +#: view/theme/quattro/config.php:78 +msgid "Posts font size" +msgstr "" + +#: view/theme/quattro/config.php:79 +msgid "Textareas font size" +msgstr "" + +#: view/theme/vier/config.php:75 +msgid "Comma separated list of helper forums" +msgstr "" + +#: view/theme/vier/config.php:115 src/Core/ACL.php:309 +msgid "don't show" +msgstr "" + +#: view/theme/vier/config.php:115 src/Core/ACL.php:308 +msgid "show" +msgstr "" + +#: view/theme/vier/config.php:122 +msgid "Set style" +msgstr "" + +#: view/theme/vier/config.php:123 +msgid "Community Pages" +msgstr "" + +#: view/theme/vier/config.php:124 view/theme/vier/theme.php:150 +msgid "Community Profiles" +msgstr "" + +#: view/theme/vier/config.php:125 +msgid "Help or @NewHere ?" +msgstr "" + +#: view/theme/vier/config.php:126 view/theme/vier/theme.php:388 +msgid "Connect Services" +msgstr "" + +#: view/theme/vier/config.php:127 +msgid "Find Friends" +msgstr "" + +#: view/theme/vier/config.php:128 view/theme/vier/theme.php:181 +msgid "Last users" +msgstr "" + +#: view/theme/vier/theme.php:199 src/Content/Widget.php:59 +msgid "Find People" +msgstr "" + +#: view/theme/vier/theme.php:200 src/Content/Widget.php:60 +msgid "Enter name or interest" +msgstr "" + +#: view/theme/vier/theme.php:202 src/Content/Widget.php:62 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "" + +#: view/theme/vier/theme.php:205 src/Content/Widget.php:65 +msgid "Similar Interests" +msgstr "" + +#: view/theme/vier/theme.php:206 src/Content/Widget.php:66 +msgid "Random Profile" +msgstr "" + +#: view/theme/vier/theme.php:207 src/Content/Widget.php:67 +msgid "Invite Friends" +msgstr "" + +#: view/theme/vier/theme.php:210 src/Content/Widget.php:70 +msgid "Local Directory" +msgstr "" + +#: view/theme/vier/theme.php:255 src/Content/ForumManager.php:127 +msgid "External link to forum" +msgstr "" + +#: view/theme/vier/theme.php:291 +msgid "Quick Start" +msgstr "" + +#: src/Core/UserImport.php:104 +msgid "Error decoding account file" +msgstr "" + +#: src/Core/UserImport.php:110 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "" + +#: src/Core/UserImport.php:118 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "" + +#: src/Core/UserImport.php:151 +msgid "User creation error" +msgstr "" + +#: src/Core/UserImport.php:169 +msgid "User profile creation error" +msgstr "" + +#: src/Core/UserImport.php:213 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "" +msgstr[1] "" + +#: src/Core/UserImport.php:278 +msgid "Done. You can now login with your username and password" +msgstr "" + +#: src/Core/ACL.php:295 +msgid "Post to Email" +msgstr "" + +#: src/Core/ACL.php:301 +msgid "Hide your profile details from unknown viewers?" +msgstr "" + +#: src/Core/ACL.php:300 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "" + +#: src/Core/ACL.php:307 +msgid "Visible to everybody" +msgstr "" + +#: src/Core/ACL.php:319 +msgid "Close" +msgstr "" + +#: src/Core/Console/NewPassword.php:78 +msgid "Enter new password: " +msgstr "" + +#: src/Core/Console/NewPassword.php:83 src/Model/User.php:262 +msgid "Password can't be empty" +msgstr "" + +#: src/Core/Console/ArchiveContact.php:67 +#, php-format +msgid "Could not find any unarchived contact entry for this URL (%s)" +msgstr "" + +#: src/Core/Console/ArchiveContact.php:72 +msgid "The contact entries have been archived" +msgstr "" + +#: src/Core/NotificationsManager.php:171 +msgid "System" +msgstr "" + +#: src/Core/NotificationsManager.php:192 src/Content/Nav.php:124 +#: src/Content/Nav.php:182 +msgid "Home" +msgstr "" + +#: src/Core/NotificationsManager.php:199 src/Content/Nav.php:186 +msgid "Introductions" +msgstr "" + +#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268 +#, php-format +msgid "%s commented on %s's post" +msgstr "" + +#: src/Core/NotificationsManager.php:267 +#, php-format +msgid "%s created a new post" +msgstr "" + +#: src/Core/NotificationsManager.php:281 +#, php-format +msgid "%s liked %s's post" +msgstr "" + +#: src/Core/NotificationsManager.php:294 +#, php-format +msgid "%s disliked %s's post" +msgstr "" + +#: src/Core/NotificationsManager.php:307 +#, php-format +msgid "%s is attending %s's event" +msgstr "" + +#: src/Core/NotificationsManager.php:320 +#, php-format +msgid "%s is not attending %s's event" +msgstr "" + +#: src/Core/NotificationsManager.php:333 +#, php-format +msgid "%s may attend %s's event" +msgstr "" + +#: src/Core/NotificationsManager.php:350 +#, php-format +msgid "%s is now friends with %s" +msgstr "" + +#: src/Core/NotificationsManager.php:825 +msgid "Friend Suggestion" +msgstr "" + +#: src/Core/NotificationsManager.php:851 +msgid "Friend/Connect Request" +msgstr "" + +#: src/Core/NotificationsManager.php:851 +msgid "New Follower" +msgstr "" + +#: src/Util/Temporal.php:147 src/Model/Profile.php:756 +msgid "Birthday:" +msgstr "" + +#: src/Util/Temporal.php:151 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: src/Util/Temporal.php:294 +msgid "never" +msgstr "" + +#: src/Util/Temporal.php:300 +msgid "less than a second ago" +msgstr "" + +#: src/Util/Temporal.php:303 +msgid "year" +msgstr "" + +#: src/Util/Temporal.php:303 +msgid "years" +msgstr "" + +#: src/Util/Temporal.php:304 +msgid "months" +msgstr "" + +#: src/Util/Temporal.php:305 +msgid "weeks" +msgstr "" + +#: src/Util/Temporal.php:306 +msgid "days" +msgstr "" + +#: src/Util/Temporal.php:307 +msgid "hour" +msgstr "" + +#: src/Util/Temporal.php:307 +msgid "hours" +msgstr "" + +#: src/Util/Temporal.php:308 +msgid "minute" +msgstr "" + +#: src/Util/Temporal.php:308 +msgid "minutes" +msgstr "" + +#: src/Util/Temporal.php:309 +msgid "second" +msgstr "" + +#: src/Util/Temporal.php:309 +msgid "seconds" +msgstr "" + +#: src/Util/Temporal.php:318 +#, php-format +msgid "%1$d %2$s ago" +msgstr "" + #: src/Content/Text/BBCode.php:416 msgid "view full size" msgstr "" @@ -2001,10 +8188,6 @@ msgstr "" msgid "Enable widget to display Network posts only from selected network" msgstr "" -#: src/Content/Feature.php:100 mod/network.php:201 mod/search.php:46 -msgid "Saved Searches" -msgstr "" - #: src/Content/Feature.php:100 msgid "Save search terms for re-use" msgstr "" @@ -2073,7 +8256,7 @@ msgstr "" msgid "Add categories to your posts" msgstr "" -#: src/Content/Feature.php:118 src/Content/Widget.php:200 +#: src/Content/Feature.php:118 src/Content/Widget.php:205 msgid "Saved Folders" msgstr "" @@ -2129,6 +8312,14 @@ msgstr "" msgid "Display membership date in profile" msgstr "" +#: src/Content/OEmbed.php:253 +msgid "Embedding disabled" +msgstr "" + +#: src/Content/OEmbed.php:373 +msgid "Embedded content" +msgstr "" + #: src/Content/Widget/CalendarExport.php:61 msgid "Export" msgstr "" @@ -2141,84 +8332,6 @@ msgstr "" msgid "Export calendar as csv" msgstr "" -#: src/Content/Widget.php:33 -msgid "Add New Contact" -msgstr "" - -#: src/Content/Widget.php:34 -msgid "Enter address or web location" -msgstr "" - -#: src/Content/Widget.php:35 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "" - -#: src/Content/Widget.php:53 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" - -#: src/Content/Widget.php:59 -msgid "Find People" -msgstr "" - -#: src/Content/Widget.php:60 -msgid "Enter name or interest" -msgstr "" - -#: src/Content/Widget.php:62 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "" - -#: src/Content/Widget.php:63 mod/directory.php:209 mod/contacts.php:820 -msgid "Find" -msgstr "" - -#: src/Content/Widget.php:64 mod/suggest.php:114 view/theme/vier/theme.php:203 -msgid "Friend Suggestions" -msgstr "" - -#: src/Content/Widget.php:65 view/theme/vier/theme.php:202 -msgid "Similar Interests" -msgstr "" - -#: src/Content/Widget.php:66 -msgid "Random Profile" -msgstr "" - -#: src/Content/Widget.php:67 view/theme/vier/theme.php:204 -msgid "Invite Friends" -msgstr "" - -#: src/Content/Widget.php:68 -msgid "View Global Directory" -msgstr "" - -#: src/Content/Widget.php:159 -msgid "Networks" -msgstr "" - -#: src/Content/Widget.php:162 -msgid "All Networks" -msgstr "" - -#: src/Content/Widget.php:203 src/Content/Widget.php:243 -msgid "Everything" -msgstr "" - -#: src/Content/Widget.php:240 -msgid "Categories" -msgstr "" - -#: src/Content/Widget.php:307 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "" -msgstr[1] "" - #: src/Content/ContactSelector.php:55 msgid "Frequently" msgstr "" @@ -2243,10 +8356,6 @@ msgstr "" msgid "Monthly" msgstr "" -#: src/Content/ContactSelector.php:79 mod/dfrn_request.php:656 -msgid "Friendica" -msgstr "" - #: src/Content/ContactSelector.php:80 msgid "OStatus" msgstr "" @@ -2255,15 +8364,6 @@ msgstr "" msgid "RSS/Atom" msgstr "" -#: src/Content/ContactSelector.php:82 mod/admin.php:1796 mod/admin.php:1807 -#: mod/admin.php:1820 mod/admin.php:1838 -msgid "Email" -msgstr "" - -#: src/Content/ContactSelector.php:83 mod/settings.php:805 -msgid "Diaspora" -msgstr "" - #: src/Content/ContactSelector.php:84 msgid "Facebook" msgstr "" @@ -2452,6 +8552,10 @@ msgstr "" msgid "Sex Addict" msgstr "" +#: src/Content/ContactSelector.php:169 src/Model/User.php:519 +msgid "Friends" +msgstr "" + #: src/Content/ContactSelector.php:169 msgid "Friends/Benefits" msgstr "" @@ -2536,18 +8640,6 @@ msgstr "" msgid "Ask me" msgstr "" -#: src/Content/OEmbed.php:253 -msgid "Embedding disabled" -msgstr "" - -#: src/Content/OEmbed.php:373 -msgid "Embedded content" -msgstr "" - -#: src/Content/ForumManager.php:127 view/theme/vier/theme.php:256 -msgid "External link to forum" -msgstr "" - #: src/Content/Nav.php:53 msgid "Nothing new here" msgstr "" @@ -2556,36 +8648,6 @@ msgstr "" msgid "Clear notifications" msgstr "" -#: src/Content/Nav.php:97 src/Module/Login.php:311 -#: view/theme/frio/theme.php:256 -msgid "Logout" -msgstr "" - -#: src/Content/Nav.php:97 view/theme/frio/theme.php:256 -msgid "End this session" -msgstr "" - -#: src/Content/Nav.php:100 src/Content/Nav.php:181 -#: view/theme/frio/theme.php:259 -msgid "Your posts and conversations" -msgstr "" - -#: src/Content/Nav.php:101 view/theme/frio/theme.php:260 -msgid "Your profile page" -msgstr "" - -#: src/Content/Nav.php:102 view/theme/frio/theme.php:261 -msgid "Your photos" -msgstr "" - -#: src/Content/Nav.php:103 view/theme/frio/theme.php:262 -msgid "Your videos" -msgstr "" - -#: src/Content/Nav.php:104 view/theme/frio/theme.php:263 -msgid "Your events" -msgstr "" - #: src/Content/Nav.php:105 msgid "Personal notes" msgstr "" @@ -2594,35 +8656,18 @@ msgstr "" msgid "Your personal notes" msgstr "" -#: src/Content/Nav.php:114 src/Module/Login.php:312 mod/bookmarklet.php:23 -msgid "Login" -msgstr "" - #: src/Content/Nav.php:114 msgid "Sign in" msgstr "" -#: src/Content/Nav.php:124 src/Content/Nav.php:181 -#: src/Core/NotificationsManager.php:192 -msgid "Home" -msgstr "" - #: src/Content/Nav.php:124 msgid "Home Page" msgstr "" -#: src/Content/Nav.php:128 src/Module/Login.php:283 mod/register.php:279 -msgid "Register" -msgstr "" - #: src/Content/Nav.php:128 msgid "Create an account" msgstr "" -#: src/Content/Nav.php:134 mod/help.php:54 view/theme/vier/theme.php:298 -msgid "Help" -msgstr "" - #: src/Content/Nav.php:134 msgid "Help and documentation" msgstr "" @@ -2639,164 +8684,665 @@ msgstr "" msgid "Search site content" msgstr "" -#: src/Content/Nav.php:165 +#: src/Content/Nav.php:166 msgid "Community" msgstr "" -#: src/Content/Nav.php:165 +#: src/Content/Nav.php:166 msgid "Conversations on this and other servers" msgstr "" -#: src/Content/Nav.php:172 +#: src/Content/Nav.php:173 msgid "Directory" msgstr "" -#: src/Content/Nav.php:172 +#: src/Content/Nav.php:173 msgid "People directory" msgstr "" -#: src/Content/Nav.php:174 mod/admin.php:179 -msgid "Information" -msgstr "" - -#: src/Content/Nav.php:174 +#: src/Content/Nav.php:175 msgid "Information about this friendica instance" msgstr "" -#: src/Content/Nav.php:178 src/Core/NotificationsManager.php:178 -#: mod/admin.php:758 view/theme/frio/theme.php:266 -msgid "Network" -msgstr "" - -#: src/Content/Nav.php:178 view/theme/frio/theme.php:266 -msgid "Conversations from your friends" -msgstr "" - -#: src/Content/Nav.php:179 +#: src/Content/Nav.php:180 msgid "Network Reset" msgstr "" -#: src/Content/Nav.php:179 +#: src/Content/Nav.php:180 msgid "Load Network page with no filters" msgstr "" -#: src/Content/Nav.php:185 src/Core/NotificationsManager.php:199 -msgid "Introductions" -msgstr "" - -#: src/Content/Nav.php:185 +#: src/Content/Nav.php:186 msgid "Friend Requests" msgstr "" -#: src/Content/Nav.php:186 mod/notifications.php:98 -msgid "Notifications" -msgstr "" - -#: src/Content/Nav.php:187 +#: src/Content/Nav.php:188 msgid "See all notifications" msgstr "" -#: src/Content/Nav.php:188 mod/settings.php:870 -msgid "Mark as seen" -msgstr "" - -#: src/Content/Nav.php:188 +#: src/Content/Nav.php:189 msgid "Mark all system notifications seen" msgstr "" -#: src/Content/Nav.php:191 mod/message.php:112 view/theme/frio/theme.php:268 -msgid "Messages" -msgstr "" - -#: src/Content/Nav.php:191 view/theme/frio/theme.php:268 -msgid "Private mail" -msgstr "" - -#: src/Content/Nav.php:192 +#: src/Content/Nav.php:193 msgid "Inbox" msgstr "" -#: src/Content/Nav.php:193 +#: src/Content/Nav.php:194 msgid "Outbox" msgstr "" -#: src/Content/Nav.php:194 mod/message.php:30 -msgid "New Message" -msgstr "" - -#: src/Content/Nav.php:197 +#: src/Content/Nav.php:198 msgid "Manage" msgstr "" -#: src/Content/Nav.php:197 +#: src/Content/Nav.php:198 msgid "Manage other pages" msgstr "" -#: src/Content/Nav.php:200 mod/settings.php:93 -msgid "Delegations" +#: src/Content/Nav.php:206 src/Model/Profile.php:368 +msgid "Profiles" msgstr "" -#: src/Content/Nav.php:200 mod/delegate.php:169 -msgid "Delegate Page Management" -msgstr "" - -#: src/Content/Nav.php:202 mod/settings.php:123 mod/admin.php:1920 -#: mod/admin.php:2189 mod/newmember.php:19 view/theme/frio/theme.php:269 -msgid "Settings" -msgstr "" - -#: src/Content/Nav.php:202 view/theme/frio/theme.php:269 -msgid "Account settings" -msgstr "" - -#: src/Content/Nav.php:205 +#: src/Content/Nav.php:206 msgid "Manage/Edit Profiles" msgstr "" -#: src/Content/Nav.php:208 view/theme/frio/theme.php:270 -msgid "Manage/edit friends and contacts" -msgstr "" - -#: src/Content/Nav.php:213 mod/admin.php:222 -msgid "Admin" -msgstr "" - -#: src/Content/Nav.php:213 +#: src/Content/Nav.php:214 msgid "Site setup and configuration" msgstr "" -#: src/Content/Nav.php:216 +#: src/Content/Nav.php:217 msgid "Navigation" msgstr "" -#: src/Content/Nav.php:216 +#: src/Content/Nav.php:217 msgid "Site map" msgstr "" -#: src/Worker/Delivery.php:390 +#: src/Content/Widget.php:33 +msgid "Add New Contact" +msgstr "" + +#: src/Content/Widget.php:34 +msgid "Enter address or web location" +msgstr "" + +#: src/Content/Widget.php:35 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "" + +#: src/Content/Widget.php:53 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: src/Content/Widget.php:164 +msgid "Networks" +msgstr "" + +#: src/Content/Widget.php:167 +msgid "All Networks" +msgstr "" + +#: src/Content/Widget.php:208 src/Content/Widget.php:248 +msgid "Everything" +msgstr "" + +#: src/Content/Widget.php:245 +msgid "Categories" +msgstr "" + +#: src/Content/Widget.php:312 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "" +msgstr[1] "" + +#: src/Database/DBStructure.php:32 +msgid "There are no tables on MyISAM." +msgstr "" + +#: src/Database/DBStructure.php:75 +#, php-format +msgid "" +"\n" +"\t\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact " +"a\n" +"\t\t\t\tfriendica developer if you can not help me on your own. My database " +"might be invalid." +msgstr "" + +#: src/Database/DBStructure.php:80 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "" + +#: src/Database/DBStructure.php:191 +#, php-format +msgid "" +"\n" +"Error %d occurred during database update:\n" +"%s\n" +msgstr "" + +#: src/Database/DBStructure.php:194 +msgid "Errors encountered performing database changes: " +msgstr "" + +#: src/Database/DBStructure.php:210 +msgid ": Database update" +msgstr "" + +#: src/Database/DBStructure.php:460 +#, php-format +msgid "%s: updating %s table." +msgstr "" + +#: src/Model/Mail.php:40 src/Model/Mail.php:174 +msgid "[no subject]" +msgstr "" + +#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419 +#: src/Model/Event.php:882 +msgid "Starts:" +msgstr "" + +#: src/Model/Event.php:56 src/Model/Event.php:76 src/Model/Event.php:420 +#: src/Model/Event.php:886 +msgid "Finishes:" +msgstr "" + +#: src/Model/Event.php:368 +msgid "all-day" +msgstr "" + +#: src/Model/Event.php:391 +msgid "Jun" +msgstr "" + +#: src/Model/Event.php:394 +msgid "Sept" +msgstr "" + +#: src/Model/Event.php:417 +msgid "No events to display" +msgstr "" + +#: src/Model/Event.php:543 +msgid "l, F j" +msgstr "" + +#: src/Model/Event.php:566 +msgid "Edit event" +msgstr "" + +#: src/Model/Event.php:567 +msgid "Duplicate event" +msgstr "" + +#: src/Model/Event.php:568 +msgid "Delete event" +msgstr "" + +#: src/Model/Event.php:815 +msgid "D g:i A" +msgstr "" + +#: src/Model/Event.php:816 +msgid "g:i A" +msgstr "" + +#: src/Model/Event.php:901 src/Model/Event.php:903 +msgid "Show map" +msgstr "" + +#: src/Model/Event.php:902 +msgid "Hide map" +msgstr "" + +#: src/Model/Group.php:44 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "" + +#: src/Model/Group.php:341 +msgid "Default privacy group for new contacts" +msgstr "" + +#: src/Model/Group.php:374 +msgid "Everybody" +msgstr "" + +#: src/Model/Group.php:394 +msgid "edit" +msgstr "" + +#: src/Model/Group.php:418 +msgid "Edit group" +msgstr "" + +#: src/Model/Group.php:419 +msgid "Contacts not in any group" +msgstr "" + +#: src/Model/Group.php:420 +msgid "Create a new group" +msgstr "" + +#: src/Model/Group.php:422 +msgid "Edit groups" +msgstr "" + +#: src/Model/User.php:154 +msgid "Login failed" +msgstr "" + +#: src/Model/User.php:185 +msgid "Not enough information to authenticate" +msgstr "" + +#: src/Model/User.php:346 +msgid "An invitation is required." +msgstr "" + +#: src/Model/User.php:350 +msgid "Invitation could not be verified." +msgstr "" + +#: src/Model/User.php:357 +msgid "Invalid OpenID url" +msgstr "" + +#: src/Model/User.php:370 src/Module/Login.php:100 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "" + +#: src/Model/User.php:370 src/Module/Login.php:100 +msgid "The error message was:" +msgstr "" + +#: src/Model/User.php:376 +msgid "Please enter the required information." +msgstr "" + +#: src/Model/User.php:389 +msgid "Please use a shorter name." +msgstr "" + +#: src/Model/User.php:392 +msgid "Name too short." +msgstr "" + +#: src/Model/User.php:400 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "" + +#: src/Model/User.php:405 +msgid "Your email domain is not among those allowed on this site." +msgstr "" + +#: src/Model/User.php:409 +msgid "Not a valid email address." +msgstr "" + +#: src/Model/User.php:413 src/Model/User.php:421 +msgid "Cannot use that email." +msgstr "" + +#: src/Model/User.php:428 +msgid "Your nickname can only contain a-z, 0-9 and _." +msgstr "" + +#: src/Model/User.php:435 src/Model/User.php:491 +msgid "Nickname is already registered. Please choose another." +msgstr "" + +#: src/Model/User.php:445 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "" + +#: src/Model/User.php:478 src/Model/User.php:482 +msgid "An error occurred during registration. Please try again." +msgstr "" + +#: src/Model/User.php:507 +msgid "An error occurred creating your default profile. Please try again." +msgstr "" + +#: src/Model/User.php:514 +msgid "An error occurred creating your self contact. Please try again." +msgstr "" + +#: src/Model/User.php:523 +msgid "" +"An error occurred creating your default contact group. Please try again." +msgstr "" + +#: src/Model/User.php:597 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tThank you for registering at %2$s. Your account is pending for " +"approval by the administrator.\n" +"\t\t" +msgstr "" + +#: src/Model/User.php:607 +#, php-format +msgid "Registration at %s" +msgstr "" + +#: src/Model/User.php:625 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t\t" +msgstr "" + +#: src/Model/User.php:629 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t\t%1$s\n" +"\t\t\tPassword:\t\t%5$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after " +"logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that " +"page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default " +"profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - " +"and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more " +"specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are " +"necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/" +"removeme\n" +"\n" +"\t\t\tThank you and welcome to %2$s." +msgstr "" + +#: src/Model/Contact.php:657 +msgid "Drop Contact" +msgstr "" + +#: src/Model/Contact.php:1060 +msgid "Organisation" +msgstr "" + +#: src/Model/Contact.php:1063 +msgid "News" +msgstr "" + +#: src/Model/Contact.php:1066 +msgid "Forum" +msgstr "" + +#: src/Model/Contact.php:1245 +msgid "Connect URL missing." +msgstr "" + +#: src/Model/Contact.php:1254 +msgid "" +"The contact could not be added. Please check the relevant network " +"credentials in your Settings -> Social Networks page." +msgstr "" + +#: src/Model/Contact.php:1301 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "" + +#: src/Model/Contact.php:1302 src/Model/Contact.php:1316 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "" + +#: src/Model/Contact.php:1314 +msgid "The profile address specified does not provide adequate information." +msgstr "" + +#: src/Model/Contact.php:1319 +msgid "An author or name was not found." +msgstr "" + +#: src/Model/Contact.php:1322 +msgid "No browser URL could be matched to this address." +msgstr "" + +#: src/Model/Contact.php:1325 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "" + +#: src/Model/Contact.php:1326 +msgid "Use mailto: in front of address to force email check." +msgstr "" + +#: src/Model/Contact.php:1332 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "" + +#: src/Model/Contact.php:1337 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "" + +#: src/Model/Contact.php:1388 +msgid "Unable to retrieve contact information." +msgstr "" + +#: src/Model/Contact.php:1605 src/Protocol/DFRN.php:1510 +#, php-format +msgid "%s's birthday" +msgstr "" + +#: src/Model/Contact.php:1606 src/Protocol/DFRN.php:1511 +#, php-format +msgid "Happy Birthday %s" +msgstr "" + +#: src/Model/Item.php:1776 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "" + +#: src/Model/Item.php:1781 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "" + +#: src/Model/Item.php:1786 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "" + +#: src/Model/Profile.php:97 +msgid "Requested account is not available." +msgstr "" + +#: src/Model/Profile.php:164 src/Model/Profile.php:395 +#: src/Model/Profile.php:857 +msgid "Edit profile" +msgstr "" + +#: src/Model/Profile.php:332 +msgid "Atom feed" +msgstr "" + +#: src/Model/Profile.php:368 +msgid "Manage/edit profiles" +msgstr "" + +#: src/Model/Profile.php:546 src/Model/Profile.php:639 +msgid "g A l F d" +msgstr "" + +#: src/Model/Profile.php:547 +msgid "F d" +msgstr "" + +#: src/Model/Profile.php:604 src/Model/Profile.php:701 +msgid "[today]" +msgstr "" + +#: src/Model/Profile.php:615 +msgid "Birthday Reminders" +msgstr "" + +#: src/Model/Profile.php:616 +msgid "Birthdays this week:" +msgstr "" + +#: src/Model/Profile.php:688 +msgid "[No description]" +msgstr "" + +#: src/Model/Profile.php:715 +msgid "Event Reminders" +msgstr "" + +#: src/Model/Profile.php:716 +msgid "Events this week:" +msgstr "" + +#: src/Model/Profile.php:739 +msgid "Member since:" +msgstr "" + +#: src/Model/Profile.php:747 +msgid "j F, Y" +msgstr "" + +#: src/Model/Profile.php:748 +msgid "j F" +msgstr "" + +#: src/Model/Profile.php:763 +msgid "Age:" +msgstr "" + +#: src/Model/Profile.php:776 +#, php-format +msgid "for %1$d %2$s" +msgstr "" + +#: src/Model/Profile.php:800 +msgid "Religion:" +msgstr "" + +#: src/Model/Profile.php:808 +msgid "Hobbies/Interests:" +msgstr "" + +#: src/Model/Profile.php:820 +msgid "Contact information and Social Networks:" +msgstr "" + +#: src/Model/Profile.php:824 +msgid "Musical interests:" +msgstr "" + +#: src/Model/Profile.php:828 +msgid "Books, literature:" +msgstr "" + +#: src/Model/Profile.php:832 +msgid "Television:" +msgstr "" + +#: src/Model/Profile.php:836 +msgid "Film/dance/culture/entertainment:" +msgstr "" + +#: src/Model/Profile.php:840 +msgid "Love/Romance:" +msgstr "" + +#: src/Model/Profile.php:844 +msgid "Work/employment:" +msgstr "" + +#: src/Model/Profile.php:848 +msgid "School/education:" +msgstr "" + +#: src/Model/Profile.php:853 +msgid "Forums:" +msgstr "" + +#: src/Model/Profile.php:947 +msgid "Only You Can See This" +msgstr "" + +#: src/Protocol/OStatus.php:1799 +#, php-format +msgid "%s is now following %s." +msgstr "" + +#: src/Protocol/OStatus.php:1800 +msgid "following" +msgstr "" + +#: src/Protocol/OStatus.php:1803 +#, php-format +msgid "%s stopped following %s." +msgstr "" + +#: src/Protocol/OStatus.php:1804 +msgid "stopped following" +msgstr "" + +#: src/Protocol/Diaspora.php:2670 +msgid "Sharing notification from Diaspora network" +msgstr "" + +#: src/Protocol/Diaspora.php:3762 +msgid "Attachments:" +msgstr "" + +#: src/Worker/Delivery.php:407 msgid "(no subject)" msgstr "" -#: src/App.php:511 -msgid "Delete this item?" -msgstr "" - -#: src/App.php:513 -msgid "show fewer" -msgstr "" - -#: src/Module/Login.php:86 src/Module/Login.php:134 mod/openid.php:116 -msgid "Login failed." -msgstr "" - #: src/Module/Login.php:282 msgid "Create a New Account" msgstr "" -#: src/Module/Login.php:314 mod/lostpass.php:119 -msgid "Nickname or Email: " -msgstr "" - #: src/Module/Login.php:315 msgid "Password: " msgstr "" @@ -2813,10 +9359,6 @@ msgstr "" msgid "Forgot your password?" msgstr "" -#: src/Module/Login.php:326 mod/lostpass.php:136 -msgid "Password Reset" -msgstr "" - #: src/Module/Login.php:328 msgid "Website Terms of Service" msgstr "" @@ -2833,9 +9375,8 @@ msgstr "" msgid "privacy policy" msgstr "" -#: src/Module/Tos.php:48 mod/admin.php:188 mod/admin.php:302 -#: mod/register.php:288 -msgid "Terms of Service" +#: src/Module/Logout.php:28 +msgid "Logged out." msgstr "" #: src/Module/Tos.php:51 @@ -2871,27 +9412,10 @@ msgid "" "removeme. The deletion of the account will be permanent." msgstr "" -#: src/Module/Logout.php:28 -msgid "Logged out." -msgstr "" - -#: src/Object/Image.php:953 src/Object/Image.php:969 src/Object/Image.php:977 -#: src/Object/Image.php:1002 mod/wall_upload.php:231 mod/item.php:471 -msgid "Wall Photos" -msgstr "" - #: src/Object/Post.php:128 msgid "This entry was edited" msgstr "" -#: src/Object/Post.php:149 mod/photos.php:1308 -msgid "Private Message" -msgstr "" - -#: src/Object/Post.php:155 src/Object/Post.php:157 mod/settings.php:737 -msgid "Edit" -msgstr "" - #: src/Object/Post.php:182 msgid "save to folder" msgstr "" @@ -2936,26 +9460,14 @@ msgstr "" msgid "toggle ignore status" msgstr "" -#: src/Object/Post.php:279 mod/ostatus_subscribe.php:83 -msgid "ignored" -msgstr "" - #: src/Object/Post.php:285 msgid "add tag" msgstr "" -#: src/Object/Post.php:296 mod/photos.php:1471 -msgid "I like this (toggle)" -msgstr "" - #: src/Object/Post.php:296 msgid "like" msgstr "" -#: src/Object/Post.php:297 mod/photos.php:1472 -msgid "I don't like this (toggle)" -msgstr "" - #: src/Object/Post.php:297 msgid "dislike" msgstr "" @@ -2984,11 +9496,6 @@ msgstr "" msgid "via Wall-To-Wall:" msgstr "" -#: src/Object/Post.php:399 src/Object/Post.php:795 mod/photos.php:1490 -#: mod/photos.php:1529 mod/photos.php:1602 -msgid "Comment" -msgstr "" - #: src/Object/Post.php:427 #, php-format msgid "%d comment" @@ -2996,23 +9503,6 @@ msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: src/Object/Post.php:793 mod/photos.php:1488 mod/photos.php:1527 -#: mod/photos.php:1600 mod/contacts.php:953 -msgid "This is you" -msgstr "" - -#: src/Object/Post.php:796 mod/manage.php:184 mod/invite.php:155 -#: mod/profiles.php:672 mod/events.php:530 mod/fsuggest.php:114 -#: mod/photos.php:1080 mod/photos.php:1160 mod/photos.php:1445 -#: mod/photos.php:1491 mod/photos.php:1530 mod/photos.php:1603 -#: mod/message.php:265 mod/message.php:432 mod/localtime.php:56 -#: mod/crepair.php:148 mod/poke.php:199 mod/contacts.php:610 -#: mod/install.php:251 mod/install.php:290 view/theme/quattro/config.php:73 -#: view/theme/frio/config.php:113 view/theme/vier/config.php:119 -#: view/theme/duepuntozero/config.php:71 -msgid "Submit" -msgstr "" - #: src/Object/Post.php:797 msgid "Bold" msgstr "" @@ -3045,6479 +9535,19 @@ msgstr "" msgid "Video" msgstr "" -#: src/Database/DBStructure.php:32 -msgid "There are no tables on MyISAM." +#: src/App.php:511 +msgid "Delete this item?" msgstr "" -#: src/Database/DBStructure.php:75 -#, php-format -msgid "" -"\n" -"\t\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact " -"a\n" -"\t\t\t\tfriendica developer if you can not help me on your own. My database " -"might be invalid." -msgstr "" - -#: src/Database/DBStructure.php:80 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "" - -#: src/Database/DBStructure.php:191 -#, php-format -msgid "" -"\n" -"Error %d occurred during database update:\n" -"%s\n" -msgstr "" - -#: src/Database/DBStructure.php:194 -msgid "Errors encountered performing database changes: " -msgstr "" - -#: src/Database/DBStructure.php:210 -msgid ": Database update" -msgstr "" - -#: src/Database/DBStructure.php:460 -#, php-format -msgid "%s: updating %s table." -msgstr "" - -#: src/Core/UserImport.php:104 -msgid "Error decoding account file" -msgstr "" - -#: src/Core/UserImport.php:110 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "" - -#: src/Core/UserImport.php:118 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "" - -#: src/Core/UserImport.php:151 -msgid "User creation error" -msgstr "" - -#: src/Core/UserImport.php:169 -msgid "User profile creation error" -msgstr "" - -#: src/Core/UserImport.php:213 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "" -msgstr[1] "" - -#: src/Core/UserImport.php:278 -msgid "Done. You can now login with your username and password" -msgstr "" - -#: src/Core/Console/NewPassword.php:78 mod/settings.php:394 -msgid "" -"The new password has been exposed in a public data dump, please choose " -"another." -msgstr "" - -#: src/Core/Console/NewPassword.php:82 mod/settings.php:409 -msgid "Password update failed. Please try again." -msgstr "" - -#: src/Core/Console/NewPassword.php:85 mod/settings.php:407 -msgid "Password changed." -msgstr "" - -#: src/Core/Console/GlobalCommunityBlock.php:69 mod/admin.php:443 -#, php-format -msgid "Could not find any contact entry for this URL (%s)" -msgstr "" - -#: src/Core/Console/GlobalCommunityBlock.php:72 mod/admin.php:441 -msgid "The contact has been blocked from the node" -msgstr "" - -#: src/Core/ACL.php:295 -msgid "Post to Email" -msgstr "" - -#: src/Core/ACL.php:301 -msgid "Hide your profile details from unknown viewers?" -msgstr "" - -#: src/Core/ACL.php:300 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" - -#: src/Core/ACL.php:307 -msgid "Visible to everybody" -msgstr "" - -#: src/Core/ACL.php:308 view/theme/vier/config.php:115 -msgid "show" -msgstr "" - -#: src/Core/ACL.php:309 view/theme/vier/config.php:115 -msgid "don't show" -msgstr "" - -#: src/Core/ACL.php:315 mod/editpost.php:134 -msgid "CC: email addresses" -msgstr "" - -#: src/Core/ACL.php:316 mod/editpost.php:141 -msgid "Example: bob@example.com, mary@example.com" -msgstr "" - -#: src/Core/ACL.php:318 mod/events.php:533 mod/photos.php:1098 -#: mod/photos.php:1441 -msgid "Permissions" -msgstr "" - -#: src/Core/ACL.php:319 -msgid "Close" -msgstr "" - -#: src/Core/NotificationsManager.php:171 -msgid "System" -msgstr "" - -#: src/Core/NotificationsManager.php:185 mod/network.php:955 -#: mod/profiles.php:687 -msgid "Personal" -msgstr "" - -#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268 -#, php-format -msgid "%s commented on %s's post" -msgstr "" - -#: src/Core/NotificationsManager.php:267 -#, php-format -msgid "%s created a new post" -msgstr "" - -#: src/Core/NotificationsManager.php:281 -#, php-format -msgid "%s liked %s's post" -msgstr "" - -#: src/Core/NotificationsManager.php:294 -#, php-format -msgid "%s disliked %s's post" -msgstr "" - -#: src/Core/NotificationsManager.php:307 -#, php-format -msgid "%s is attending %s's event" -msgstr "" - -#: src/Core/NotificationsManager.php:320 -#, php-format -msgid "%s is not attending %s's event" -msgstr "" - -#: src/Core/NotificationsManager.php:333 -#, php-format -msgid "%s may attend %s's event" -msgstr "" - -#: src/Core/NotificationsManager.php:350 -#, php-format -msgid "%s is now friends with %s" -msgstr "" - -#: src/Core/NotificationsManager.php:825 -msgid "Friend Suggestion" -msgstr "" - -#: src/Core/NotificationsManager.php:851 -msgid "Friend/Connect Request" -msgstr "" - -#: src/Core/NotificationsManager.php:851 -msgid "New Follower" -msgstr "" - -#: src/Util/Temporal.php:81 src/Util/Temporal.php:83 mod/profiles.php:689 -msgid "Miscellaneous" -msgstr "" - -#: src/Util/Temporal.php:149 mod/profiles.php:712 -msgid "Age: " -msgstr "" - -#: src/Util/Temporal.php:151 -msgid "YYYY-MM-DD or MM-DD" -msgstr "" - -#: src/Util/Temporal.php:294 -msgid "never" -msgstr "" - -#: src/Util/Temporal.php:300 -msgid "less than a second ago" -msgstr "" - -#: src/Util/Temporal.php:303 -msgid "year" -msgstr "" - -#: src/Util/Temporal.php:303 -msgid "years" -msgstr "" - -#: src/Util/Temporal.php:304 -msgid "months" -msgstr "" - -#: src/Util/Temporal.php:305 -msgid "weeks" -msgstr "" - -#: src/Util/Temporal.php:306 -msgid "days" -msgstr "" - -#: src/Util/Temporal.php:307 -msgid "hour" -msgstr "" - -#: src/Util/Temporal.php:307 -msgid "hours" -msgstr "" - -#: src/Util/Temporal.php:308 -msgid "minute" -msgstr "" - -#: src/Util/Temporal.php:308 -msgid "minutes" -msgstr "" - -#: src/Util/Temporal.php:309 -msgid "second" -msgstr "" - -#: src/Util/Temporal.php:309 -msgid "seconds" -msgstr "" - -#: src/Util/Temporal.php:318 -#, php-format -msgid "%1$d %2$s ago" -msgstr "" - -#: src/Protocol/OStatus.php:1251 mod/profile.php:80 -#, php-format -msgid "%s's timeline" -msgstr "" - -#: src/Protocol/OStatus.php:1252 mod/profile.php:78 -#, php-format -msgid "%s's posts" -msgstr "" - -#: src/Protocol/OStatus.php:1253 mod/profile.php:79 -#, php-format -msgid "%s's comments" -msgstr "" - -#: src/Protocol/OStatus.php:1799 -#, php-format -msgid "%s is now following %s." -msgstr "" - -#: src/Protocol/OStatus.php:1800 -msgid "following" -msgstr "" - -#: src/Protocol/OStatus.php:1803 -#, php-format -msgid "%s stopped following %s." -msgstr "" - -#: src/Protocol/OStatus.php:1804 -msgid "stopped following" -msgstr "" - -#: src/Protocol/Diaspora.php:2680 -msgid "Sharing notification from Diaspora network" -msgstr "" - -#: src/Protocol/Diaspora.php:3756 -msgid "Attachments:" -msgstr "" - -#: mod/directory.php:42 mod/display.php:203 mod/viewcontacts.php:45 -#: mod/photos.php:932 mod/community.php:27 mod/videos.php:199 -#: mod/dfrn_request.php:607 mod/search.php:98 mod/search.php:104 -#: mod/probe.php:13 mod/webfinger.php:16 -msgid "Public access denied." -msgstr "" - -#: mod/directory.php:202 view/theme/vier/theme.php:201 -msgid "Global Directory" -msgstr "" - -#: mod/directory.php:204 -msgid "Find on this site" -msgstr "" - -#: mod/directory.php:206 -msgid "Results for:" -msgstr "" - -#: mod/directory.php:208 -msgid "Site Directory" -msgstr "" - -#: mod/directory.php:213 -msgid "No entries (some entries may be hidden)." -msgstr "" - -#: mod/dirfind.php:49 -#, php-format -msgid "People Search - %s" -msgstr "" - -#: mod/dirfind.php:60 -#, php-format -msgid "Forum Search - %s" -msgstr "" - -#: mod/dirfind.php:253 mod/match.php:125 -msgid "No matches" -msgstr "" - -#: mod/repair_ostatus.php:18 -msgid "Resubscribing to OStatus contacts" -msgstr "" - -#: mod/repair_ostatus.php:34 -msgid "Error" -msgstr "" - -#: mod/repair_ostatus.php:48 mod/ostatus_subscribe.php:64 -msgid "Done" -msgstr "" - -#: mod/repair_ostatus.php:54 mod/ostatus_subscribe.php:88 -msgid "Keep this window open until done." -msgstr "" - -#: mod/ping.php:292 -msgid "{0} wants to be your friend" -msgstr "" - -#: mod/ping.php:307 -msgid "{0} sent you a message" -msgstr "" - -#: mod/ping.php:322 -msgid "{0} requested registration" -msgstr "" - -#: mod/suggest.php:36 -msgid "Do you really want to delete this suggestion?" -msgstr "" - -#: mod/suggest.php:73 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "" - -#: mod/suggest.php:84 mod/suggest.php:104 -msgid "Ignore/Hide" -msgstr "" - -#: mod/display.php:313 mod/profile.php:173 mod/cal.php:142 -msgid "Access to this profile has been restricted." -msgstr "" - -#: mod/profile_photo.php:55 -msgid "Image uploaded but image cropping failed." -msgstr "" - -#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104 -#: mod/profile_photo.php:315 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "" - -#: mod/profile_photo.php:125 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "" - -#: mod/profile_photo.php:134 -msgid "Unable to process image" -msgstr "" - -#: mod/profile_photo.php:153 mod/photos.php:763 mod/photos.php:766 -#: mod/photos.php:795 mod/wall_upload.php:186 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "" - -#: mod/profile_photo.php:162 mod/photos.php:818 mod/wall_upload.php:200 -msgid "Unable to process image." -msgstr "" - -#: mod/profile_photo.php:247 -msgid "Upload File:" -msgstr "" - -#: mod/profile_photo.php:248 -msgid "Select a profile:" -msgstr "" - -#: mod/profile_photo.php:249 mod/profiles.php:691 mod/newmember.php:26 -msgid "Upload Profile Photo" -msgstr "" - -#: mod/profile_photo.php:250 mod/fbrowser.php:105 mod/fbrowser.php:136 -msgid "Upload" -msgstr "" - -#: mod/profile_photo.php:253 -msgid "or" -msgstr "" - -#: mod/profile_photo.php:253 -msgid "skip this step" -msgstr "" - -#: mod/profile_photo.php:253 -msgid "select a photo from your photo albums" -msgstr "" - -#: mod/profile_photo.php:266 -msgid "Crop Image" -msgstr "" - -#: mod/profile_photo.php:267 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "" - -#: mod/profile_photo.php:269 -msgid "Done Editing" -msgstr "" - -#: mod/profile_photo.php:305 -msgid "Image uploaded successfully." -msgstr "" - -#: mod/profile_photo.php:307 mod/photos.php:847 mod/wall_upload.php:239 -msgid "Image upload failed." -msgstr "" - -#: mod/removeme.php:43 -msgid "User deleted their account" -msgstr "" - -#: mod/removeme.php:44 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "" - -#: mod/removeme.php:45 -#, php-format -msgid "The user id is %d" -msgstr "" - -#: mod/removeme.php:76 mod/removeme.php:79 -msgid "Remove My Account" -msgstr "" - -#: mod/removeme.php:77 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "" - -#: mod/removeme.php:78 -msgid "Please enter your password for verification:" -msgstr "" - -#: mod/manage.php:180 -msgid "Manage Identities and/or Pages" -msgstr "" - -#: mod/manage.php:181 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "" - -#: mod/manage.php:182 -msgid "Select an identity to manage: " -msgstr "" - -#: mod/update_notes.php:40 mod/update_display.php:27 -#: mod/update_community.php:27 mod/update_network.php:33 -#: mod/update_profile.php:39 -msgid "[Embedded content - reload page to view]" -msgstr "" - -#: mod/uimport.php:55 mod/register.php:191 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "" - -#: mod/uimport.php:70 mod/register.php:285 -msgid "Import" -msgstr "" - -#: mod/uimport.php:72 -msgid "Move account" -msgstr "" - -#: mod/uimport.php:73 -msgid "You can import an account from another Friendica server." -msgstr "" - -#: mod/uimport.php:74 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also " -"to inform your friends that you moved here." -msgstr "" - -#: mod/uimport.php:75 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "" - -#: mod/uimport.php:76 -msgid "Account file" -msgstr "" - -#: mod/uimport.php:76 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "" - -#: mod/invite.php:33 -msgid "Total invitation limit exceeded." -msgstr "" - -#: mod/invite.php:55 -#, php-format -msgid "%s : Not a valid email address." -msgstr "" - -#: mod/invite.php:87 -msgid "Please join us on Friendica" -msgstr "" - -#: mod/invite.php:96 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" - -#: mod/invite.php:100 -#, php-format -msgid "%s : Message delivery failed." -msgstr "" - -#: mod/invite.php:104 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "" -msgstr[1] "" - -#: mod/invite.php:122 -msgid "You have no more invitations available" -msgstr "" - -#: mod/invite.php:130 -#, php-format -msgid "" -"Visit %s for a list of public sites that you can join. Friendica members on " -"other sites can all connect with each other, as well as with members of many " -"other social networks." -msgstr "" - -#: mod/invite.php:132 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "" - -#: mod/invite.php:133 -#, php-format -msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." -msgstr "" - -#: mod/invite.php:137 -msgid "" -"Our apologies. This system is not currently configured to connect with other " -"public sites or invite members." -msgstr "" - -#: mod/invite.php:141 -msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks." -msgstr "" - -#: mod/invite.php:140 -#, php-format -msgid "To accept this invitation, please visit and register at %s." -msgstr "" - -#: mod/invite.php:147 -msgid "Send invitations" -msgstr "" - -#: mod/invite.php:148 -msgid "Enter email addresses, one per line:" -msgstr "" - -#: mod/invite.php:149 mod/message.php:259 mod/message.php:426 -#: mod/wallmessage.php:141 -msgid "Your message:" -msgstr "" - -#: mod/invite.php:150 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "" - -#: mod/invite.php:152 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "" - -#: mod/invite.php:152 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "" - -#: mod/invite.php:154 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendi.ca" -msgstr "" - -#: mod/openid.php:29 -msgid "OpenID protocol error. No ID returned." -msgstr "" - -#: mod/openid.php:66 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "" - -#: mod/hcard.php:18 -msgid "No profile" -msgstr "" - -#: mod/apps.php:14 index.php:273 -msgid "You must be logged in to use addons. " -msgstr "" - -#: mod/apps.php:19 -msgid "Applications" -msgstr "" - -#: mod/apps.php:22 -msgid "No installed applications." -msgstr "" - -#: mod/network.php:194 mod/search.php:37 -msgid "Remove term" -msgstr "" - -#: mod/network.php:547 -#, php-format -msgid "" -"Warning: This group contains %s member from a network that doesn't allow non " -"public messages." -msgid_plural "" -"Warning: This group contains %s members from a network that doesn't allow " -"non public messages." -msgstr[0] "" -msgstr[1] "" - -#: mod/network.php:550 -msgid "Messages in this group won't be send to these receivers." -msgstr "" - -#: mod/network.php:618 -msgid "No such group" -msgstr "" - -#: mod/network.php:639 mod/group.php:216 -msgid "Group is empty" -msgstr "" - -#: mod/network.php:643 -#, php-format -msgid "Group: %s" -msgstr "" - -#: mod/network.php:669 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "" - -#: mod/network.php:672 -msgid "Invalid contact." -msgstr "" - -#: mod/network.php:936 -msgid "Commented Order" -msgstr "" - -#: mod/network.php:939 -msgid "Sort by Comment Date" -msgstr "" - -#: mod/network.php:944 -msgid "Posted Order" -msgstr "" - -#: mod/network.php:947 -msgid "Sort by Post Date" -msgstr "" - -#: mod/network.php:958 -msgid "Posts that mention or involve you" -msgstr "" - -#: mod/network.php:966 -msgid "New" -msgstr "" - -#: mod/network.php:969 -msgid "Activity Stream - by date" -msgstr "" - -#: mod/network.php:977 -msgid "Shared Links" -msgstr "" - -#: mod/network.php:980 -msgid "Interesting Links" -msgstr "" - -#: mod/network.php:988 -msgid "Starred" -msgstr "" - -#: mod/network.php:991 -msgid "Favourite Posts" -msgstr "" - -#: mod/friendica.php:77 -msgid "This is Friendica, version" -msgstr "" - -#: mod/friendica.php:78 -msgid "running at web location" -msgstr "" - -#: mod/friendica.php:82 -msgid "" -"Please visit Friendi.ca to learn more " -"about the Friendica project." -msgstr "" - -#: mod/friendica.php:86 -msgid "Bug reports and issues: please visit" -msgstr "" - -#: mod/friendica.php:86 -msgid "the bugtracker at github" -msgstr "" - -#: mod/friendica.php:89 -msgid "" -"Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" -msgstr "" - -#: mod/friendica.php:103 -msgid "Installed addons/apps:" -msgstr "" - -#: mod/friendica.php:117 -msgid "No installed addons/apps" -msgstr "" - -#: mod/friendica.php:122 -#, php-format -msgid "Read about the Terms of Service of this node." -msgstr "" - -#: mod/friendica.php:127 -msgid "On this server the following remote servers are blocked." -msgstr "" - -#: mod/friendica.php:128 mod/admin.php:354 mod/admin.php:372 -msgid "Reason for the block" -msgstr "" - -#: mod/subthread.php:113 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: mod/profiles.php:39 mod/profiles.php:149 mod/profiles.php:196 -#: mod/profiles.php:618 mod/dfrn_confirm.php:74 -msgid "Profile not found." -msgstr "" - -#: mod/profiles.php:58 -msgid "Profile deleted." -msgstr "" - -#: mod/profiles.php:74 mod/profiles.php:110 -msgid "Profile-" -msgstr "" - -#: mod/profiles.php:93 mod/profiles.php:132 -msgid "New profile created." -msgstr "" - -#: mod/profiles.php:116 -msgid "Profile unavailable to clone." -msgstr "" - -#: mod/profiles.php:206 -msgid "Profile Name is required." -msgstr "" - -#: mod/profiles.php:347 -msgid "Marital Status" -msgstr "" - -#: mod/profiles.php:351 -msgid "Romantic Partner" -msgstr "" - -#: mod/profiles.php:363 -msgid "Work/Employment" -msgstr "" - -#: mod/profiles.php:366 -msgid "Religion" -msgstr "" - -#: mod/profiles.php:370 -msgid "Political Views" -msgstr "" - -#: mod/profiles.php:374 -msgid "Gender" -msgstr "" - -#: mod/profiles.php:378 -msgid "Sexual Preference" -msgstr "" - -#: mod/profiles.php:382 -msgid "XMPP" -msgstr "" - -#: mod/profiles.php:386 -msgid "Homepage" -msgstr "" - -#: mod/profiles.php:390 mod/profiles.php:686 -msgid "Interests" -msgstr "" - -#: mod/profiles.php:394 mod/admin.php:490 -msgid "Address" -msgstr "" - -#: mod/profiles.php:401 mod/profiles.php:682 -msgid "Location" -msgstr "" - -#: mod/profiles.php:486 -msgid "Profile updated." -msgstr "" - -#: mod/profiles.php:564 -msgid " and " -msgstr "" - -#: mod/profiles.php:573 -msgid "public profile" -msgstr "" - -#: mod/profiles.php:576 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "" - -#: mod/profiles.php:577 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr "" - -#: mod/profiles.php:579 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "" - -#: mod/profiles.php:633 -msgid "Hide contacts and friends:" -msgstr "" - -#: mod/profiles.php:636 mod/profiles.php:640 mod/profiles.php:661 -#: mod/api.php:111 mod/settings.php:1105 mod/settings.php:1111 -#: mod/settings.php:1118 mod/settings.php:1122 mod/settings.php:1126 -#: mod/settings.php:1130 mod/settings.php:1134 mod/settings.php:1138 -#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160 -#: mod/settings.php:1161 mod/settings.php:1162 mod/dfrn_request.php:653 -#: mod/follow.php:150 mod/register.php:238 -msgid "No" -msgstr "" - -#: mod/profiles.php:638 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "" - -#: mod/profiles.php:658 -msgid "Show more profile fields:" -msgstr "" - -#: mod/profiles.php:670 -msgid "Profile Actions" -msgstr "" - -#: mod/profiles.php:671 -msgid "Edit Profile Details" -msgstr "" - -#: mod/profiles.php:673 -msgid "Change Profile Photo" -msgstr "" - -#: mod/profiles.php:674 -msgid "View this profile" -msgstr "" - -#: mod/profiles.php:676 -msgid "Create a new profile using these settings" -msgstr "" - -#: mod/profiles.php:677 -msgid "Clone this profile" -msgstr "" - -#: mod/profiles.php:678 -msgid "Delete this profile" -msgstr "" - -#: mod/profiles.php:680 -msgid "Basic information" -msgstr "" - -#: mod/profiles.php:681 -msgid "Profile picture" -msgstr "" - -#: mod/profiles.php:683 -msgid "Preferences" -msgstr "" - -#: mod/profiles.php:684 -msgid "Status information" -msgstr "" - -#: mod/profiles.php:685 -msgid "Additional information" -msgstr "" - -#: mod/profiles.php:688 -msgid "Relation" -msgstr "" - -#: mod/profiles.php:692 -msgid "Your Gender:" -msgstr "" - -#: mod/profiles.php:693 -msgid " Marital Status:" -msgstr "" - -#: mod/profiles.php:695 -msgid "Example: fishing photography software" -msgstr "" - -#: mod/profiles.php:700 -msgid "Profile Name:" -msgstr "" - -#: mod/profiles.php:700 mod/events.php:508 mod/events.php:520 -msgid "Required" -msgstr "" - -#: mod/profiles.php:702 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "" - -#: mod/profiles.php:703 -msgid "Your Full Name:" -msgstr "" - -#: mod/profiles.php:704 -msgid "Title/Description:" -msgstr "" - -#: mod/profiles.php:707 -msgid "Street Address:" -msgstr "" - -#: mod/profiles.php:708 -msgid "Locality/City:" -msgstr "" - -#: mod/profiles.php:709 -msgid "Region/State:" -msgstr "" - -#: mod/profiles.php:710 -msgid "Postal/Zip Code:" -msgstr "" - -#: mod/profiles.php:711 -msgid "Country:" -msgstr "" - -#: mod/profiles.php:715 -msgid "Who: (if applicable)" -msgstr "" - -#: mod/profiles.php:715 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "" - -#: mod/profiles.php:716 -msgid "Since [date]:" -msgstr "" - -#: mod/profiles.php:718 -msgid "Tell us about yourself..." -msgstr "" - -#: mod/profiles.php:719 -msgid "XMPP (Jabber) address:" -msgstr "" - -#: mod/profiles.php:719 -msgid "" -"The XMPP address will be propagated to your contacts so that they can follow " -"you." -msgstr "" - -#: mod/profiles.php:720 -msgid "Homepage URL:" -msgstr "" - -#: mod/profiles.php:723 -msgid "Religious Views:" -msgstr "" - -#: mod/profiles.php:724 -msgid "Public Keywords:" -msgstr "" - -#: mod/profiles.php:724 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "" - -#: mod/profiles.php:725 -msgid "Private Keywords:" -msgstr "" - -#: mod/profiles.php:725 -msgid "(Used for searching profiles, never shown to others)" -msgstr "" - -#: mod/profiles.php:728 -msgid "Musical interests" -msgstr "" - -#: mod/profiles.php:729 -msgid "Books, literature" -msgstr "" - -#: mod/profiles.php:730 -msgid "Television" -msgstr "" - -#: mod/profiles.php:731 -msgid "Film/dance/culture/entertainment" -msgstr "" - -#: mod/profiles.php:732 -msgid "Hobbies/Interests" -msgstr "" - -#: mod/profiles.php:733 -msgid "Love/romance" -msgstr "" - -#: mod/profiles.php:734 -msgid "Work/employment" -msgstr "" - -#: mod/profiles.php:735 -msgid "School/education" -msgstr "" - -#: mod/profiles.php:736 -msgid "Contact information and Social Networks" -msgstr "" - -#: mod/profiles.php:776 -msgid "Edit/Manage Profiles" -msgstr "" - -#: mod/events.php:105 mod/events.php:107 -msgid "Event can not end before it has started." -msgstr "" - -#: mod/events.php:114 mod/events.php:116 -msgid "Event title and start time are required." -msgstr "" - -#: mod/events.php:392 mod/cal.php:275 -msgid "View" -msgstr "" - -#: mod/events.php:393 -msgid "Create New Event" -msgstr "" - -#: mod/events.php:394 mod/cal.php:276 -msgid "Previous" -msgstr "" - -#: mod/events.php:395 mod/cal.php:277 mod/install.php:209 -msgid "Next" -msgstr "" - -#: mod/events.php:404 mod/cal.php:284 -msgid "list" -msgstr "" - -#: mod/events.php:506 -msgid "Event details" -msgstr "" - -#: mod/events.php:507 -msgid "Starting date and Title are required." -msgstr "" - -#: mod/events.php:508 mod/events.php:509 -msgid "Event Starts:" -msgstr "" - -#: mod/events.php:510 mod/events.php:526 -msgid "Finish date/time is not known or not relevant" -msgstr "" - -#: mod/events.php:512 mod/events.php:513 -msgid "Event Finishes:" -msgstr "" - -#: mod/events.php:514 mod/events.php:527 -msgid "Adjust for viewer timezone" -msgstr "" - -#: mod/events.php:516 -msgid "Description:" -msgstr "" - -#: mod/events.php:520 mod/events.php:522 -msgid "Title:" -msgstr "" - -#: mod/events.php:523 mod/events.php:524 -msgid "Share this event" -msgstr "" - -#: mod/events.php:552 -msgid "Failed to remove event" -msgstr "" - -#: mod/events.php:554 -msgid "Event removed" -msgstr "" - -#: mod/notify.php:77 -msgid "No more system notifications." -msgstr "" - -#: mod/notify.php:81 mod/notifications.php:113 -msgid "System Notifications" -msgstr "" - -#: mod/fsuggest.php:30 mod/fsuggest.php:96 mod/crepair.php:110 -#: mod/dfrn_confirm.php:131 -msgid "Contact not found." -msgstr "" - -#: mod/fsuggest.php:72 -msgid "Friend suggestion sent." -msgstr "" - -#: mod/fsuggest.php:101 -msgid "Suggest Friends" -msgstr "" - -#: mod/fsuggest.php:103 -#, php-format -msgid "Suggest a friend for %s" -msgstr "" - -#: mod/attach.php:15 -msgid "Item not available." -msgstr "" - -#: mod/attach.php:25 -msgid "Item was not found." -msgstr "" - -#: mod/allfriends.php:51 -msgid "No friends to display." -msgstr "" - -#: mod/viewcontacts.php:87 -msgid "No contacts." -msgstr "" - -#: mod/viewcontacts.php:112 mod/nogroup.php:42 mod/contacts.php:619 -#: mod/contacts.php:959 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "" - -#: mod/ostatus_subscribe.php:21 -msgid "Subscribing to OStatus contacts" -msgstr "" - -#: mod/ostatus_subscribe.php:33 -msgid "No contact provided." -msgstr "" - -#: mod/ostatus_subscribe.php:40 -msgid "Couldn't fetch information for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:50 -msgid "Couldn't fetch friends for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:78 -msgid "success" -msgstr "" - -#: mod/ostatus_subscribe.php:80 -msgid "failed" -msgstr "" - -#: mod/api.php:85 mod/api.php:107 -msgid "Authorize application connection" -msgstr "" - -#: mod/api.php:86 -msgid "Return to your app and insert this Securty Code:" -msgstr "" - -#: mod/api.php:95 -msgid "Please login to continue." -msgstr "" - -#: mod/api.php:109 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" -msgstr "" - -#: mod/settings.php:50 mod/photos.php:126 -msgid "everybody" -msgstr "" - -#: mod/settings.php:55 -msgid "Account" -msgstr "" - -#: mod/settings.php:64 mod/admin.php:187 -msgid "Additional features" -msgstr "" - -#: mod/settings.php:72 -msgid "Display" -msgstr "" - -#: mod/settings.php:79 mod/settings.php:842 -msgid "Social Networks" -msgstr "" - -#: mod/settings.php:86 mod/admin.php:185 mod/admin.php:1918 mod/admin.php:1978 -msgid "Addons" -msgstr "" - -#: mod/settings.php:100 -msgid "Connected apps" -msgstr "" - -#: mod/settings.php:107 mod/uexport.php:52 -msgid "Export personal data" -msgstr "" - -#: mod/settings.php:114 -msgid "Remove account" -msgstr "" - -#: mod/settings.php:168 -msgid "Missing some important data!" -msgstr "" - -#: mod/settings.php:170 mod/settings.php:701 mod/contacts.php:826 -msgid "Update" -msgstr "" - -#: mod/settings.php:279 -msgid "Failed to connect with email account using the settings provided." -msgstr "" - -#: mod/settings.php:284 -msgid "Email settings updated." -msgstr "" - -#: mod/settings.php:300 -msgid "Features updated" -msgstr "" - -#: mod/settings.php:372 -msgid "Relocate message has been send to your contacts" -msgstr "" - -#: mod/settings.php:389 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "" - -#: mod/settings.php:400 -msgid "Wrong password." -msgstr "" - -#: mod/settings.php:496 -msgid " Please use a shorter name." -msgstr "" - -#: mod/settings.php:499 -msgid " Name too short." -msgstr "" - -#: mod/settings.php:507 -msgid "Wrong Password" -msgstr "" - -#: mod/settings.php:512 -msgid "Invalid email." -msgstr "" - -#: mod/settings.php:519 -msgid "Cannot change to that email." -msgstr "" - -#: mod/settings.php:572 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "" - -#: mod/settings.php:575 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "" - -#: mod/settings.php:615 -msgid "Settings updated." -msgstr "" - -#: mod/settings.php:674 mod/settings.php:700 mod/settings.php:736 -msgid "Add application" -msgstr "" - -#: mod/settings.php:675 mod/settings.php:784 mod/settings.php:872 -#: mod/settings.php:961 mod/settings.php:1194 mod/admin.php:307 -#: mod/admin.php:1346 mod/admin.php:1979 mod/admin.php:2232 mod/admin.php:2306 -#: mod/admin.php:2453 mod/delegate.php:168 -msgid "Save Settings" -msgstr "" - -#: mod/settings.php:677 mod/settings.php:703 mod/admin.php:490 -#: mod/admin.php:1796 mod/admin.php:1807 mod/admin.php:1820 mod/admin.php:1836 -#: mod/crepair.php:158 -msgid "Name" -msgstr "" - -#: mod/settings.php:678 mod/settings.php:704 -msgid "Consumer Key" -msgstr "" - -#: mod/settings.php:679 mod/settings.php:705 -msgid "Consumer Secret" -msgstr "" - -#: mod/settings.php:680 mod/settings.php:706 -msgid "Redirect" -msgstr "" - -#: mod/settings.php:681 mod/settings.php:707 -msgid "Icon url" -msgstr "" - -#: mod/settings.php:692 -msgid "You can't edit this application." -msgstr "" - -#: mod/settings.php:735 -msgid "Connected Apps" -msgstr "" - -#: mod/settings.php:739 -msgid "Client key starts with" -msgstr "" - -#: mod/settings.php:740 -msgid "No name" -msgstr "" - -#: mod/settings.php:741 -msgid "Remove authorization" -msgstr "" - -#: mod/settings.php:752 -msgid "No Addon settings configured" -msgstr "" - -#: mod/settings.php:761 -msgid "Addon Settings" -msgstr "" - -#: mod/settings.php:775 mod/admin.php:2442 mod/admin.php:2443 -msgid "Off" -msgstr "" - -#: mod/settings.php:775 mod/admin.php:2442 mod/admin.php:2443 -msgid "On" -msgstr "" - -#: mod/settings.php:782 -msgid "Additional Features" -msgstr "" - -#: mod/settings.php:805 mod/settings.php:806 -msgid "enabled" -msgstr "" - -#: mod/settings.php:805 mod/settings.php:806 -msgid "disabled" -msgstr "" - -#: mod/settings.php:805 mod/settings.php:806 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "" - -#: mod/settings.php:806 -msgid "GNU Social (OStatus)" -msgstr "" - -#: mod/settings.php:837 -msgid "Email access is disabled on this site." -msgstr "" - -#: mod/settings.php:847 -msgid "General Social Media Settings" -msgstr "" - -#: mod/settings.php:848 -msgid "Disable Content Warning" -msgstr "" - -#: mod/settings.php:848 -msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning " -"field which collapse their post by default. This disables the automatic " -"collapsing and sets the content warning as the post title. Doesn't affect " -"any other content filtering you eventually set up." -msgstr "" - -#: mod/settings.php:849 -msgid "Disable intelligent shortening" -msgstr "" - -#: mod/settings.php:849 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If this option is enabled then every shortened post will always point to the " -"original friendica post." -msgstr "" - -#: mod/settings.php:850 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "" - -#: mod/settings.php:850 -msgid "" -"If you receive a message from an unknown OStatus user, this option decides " -"what to do. If it is checked, a new contact will be created for every " -"unknown user." -msgstr "" - -#: mod/settings.php:851 -msgid "Default group for OStatus contacts" -msgstr "" - -#: mod/settings.php:852 -msgid "Your legacy GNU Social account" -msgstr "" - -#: mod/settings.php:852 -msgid "" -"If you enter your old GNU Social/Statusnet account name here (in the format " -"user@domain.tld), your contacts will be added automatically. The field will " -"be emptied when done." -msgstr "" - -#: mod/settings.php:855 -msgid "Repair OStatus subscriptions" -msgstr "" - -#: mod/settings.php:859 -msgid "Email/Mailbox Setup" -msgstr "" - -#: mod/settings.php:860 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "" - -#: mod/settings.php:861 -msgid "Last successful email check:" -msgstr "" - -#: mod/settings.php:863 -msgid "IMAP server name:" -msgstr "" - -#: mod/settings.php:864 -msgid "IMAP port:" -msgstr "" - -#: mod/settings.php:865 -msgid "Security:" -msgstr "" - -#: mod/settings.php:865 mod/settings.php:870 -msgid "None" -msgstr "" - -#: mod/settings.php:866 -msgid "Email login name:" -msgstr "" - -#: mod/settings.php:867 -msgid "Email password:" -msgstr "" - -#: mod/settings.php:868 -msgid "Reply-to address:" -msgstr "" - -#: mod/settings.php:869 -msgid "Send public posts to all email contacts:" -msgstr "" - -#: mod/settings.php:870 -msgid "Action after import:" -msgstr "" - -#: mod/settings.php:870 -msgid "Move to folder" -msgstr "" - -#: mod/settings.php:871 -msgid "Move to folder:" -msgstr "" - -#: mod/settings.php:905 mod/admin.php:1236 -msgid "No special theme for mobile devices" -msgstr "" - -#: mod/settings.php:914 -#, php-format -msgid "%s - (Unsupported)" -msgstr "" - -#: mod/settings.php:916 -#, php-format -msgid "%s - (Experimental)" -msgstr "" - -#: mod/settings.php:959 -msgid "Display Settings" -msgstr "" - -#: mod/settings.php:965 mod/settings.php:989 -msgid "Display Theme:" -msgstr "" - -#: mod/settings.php:966 -msgid "Mobile Theme:" -msgstr "" - -#: mod/settings.php:967 -msgid "Suppress warning of insecure networks" -msgstr "" - -#: mod/settings.php:967 -msgid "" -"Should the system suppress the warning that the current group contains " -"members of networks that can't receive non public postings." -msgstr "" - -#: mod/settings.php:968 -msgid "Update browser every xx seconds" -msgstr "" - -#: mod/settings.php:968 -msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "" - -#: mod/settings.php:969 -msgid "Number of items to display per page:" -msgstr "" - -#: mod/settings.php:969 mod/settings.php:970 -msgid "Maximum of 100 items" -msgstr "" - -#: mod/settings.php:970 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "" - -#: mod/settings.php:971 -msgid "Don't show emoticons" -msgstr "" - -#: mod/settings.php:972 -msgid "Calendar" -msgstr "" - -#: mod/settings.php:973 -msgid "Beginning of week:" -msgstr "" - -#: mod/settings.php:974 -msgid "Don't show notices" -msgstr "" - -#: mod/settings.php:975 -msgid "Infinite scroll" -msgstr "" - -#: mod/settings.php:976 -msgid "Automatic updates only at the top of the network page" -msgstr "" - -#: mod/settings.php:976 -msgid "" -"When disabled, the network page is updated all the time, which could be " -"confusing while reading." -msgstr "" - -#: mod/settings.php:977 -msgid "Bandwith Saver Mode" -msgstr "" - -#: mod/settings.php:977 -msgid "" -"When enabled, embedded content is not displayed on automatic updates, they " -"only show on page reload." -msgstr "" - -#: mod/settings.php:978 -msgid "Smart Threading" -msgstr "" - -#: mod/settings.php:978 -msgid "" -"When enabled, suppress extraneous thread indentation while keeping it where " -"it matters. Only works if threading is available and enabled." -msgstr "" - -#: mod/settings.php:980 -msgid "General Theme Settings" -msgstr "" - -#: mod/settings.php:981 -msgid "Custom Theme Settings" -msgstr "" - -#: mod/settings.php:982 -msgid "Content Settings" -msgstr "" - -#: mod/settings.php:983 view/theme/quattro/config.php:75 -#: view/theme/frio/config.php:115 view/theme/vier/config.php:121 -#: view/theme/duepuntozero/config.php:73 -msgid "Theme settings" -msgstr "" - -#: mod/settings.php:1002 -msgid "Unable to find your profile. Please contact your admin." -msgstr "" - -#: mod/settings.php:1044 -msgid "Account Types" -msgstr "" - -#: mod/settings.php:1045 -msgid "Personal Page Subtypes" -msgstr "" - -#: mod/settings.php:1046 -msgid "Community Forum Subtypes" -msgstr "" - -#: mod/settings.php:1053 mod/admin.php:1746 -msgid "Personal Page" -msgstr "" - -#: mod/settings.php:1054 -msgid "Account for a personal profile." -msgstr "" - -#: mod/settings.php:1057 mod/admin.php:1747 -msgid "Organisation Page" -msgstr "" - -#: mod/settings.php:1058 -msgid "" -"Account for an organisation that automatically approves contact requests as " -"\"Followers\"." -msgstr "" - -#: mod/settings.php:1061 mod/admin.php:1748 -msgid "News Page" -msgstr "" - -#: mod/settings.php:1062 -msgid "" -"Account for a news reflector that automatically approves contact requests as " -"\"Followers\"." -msgstr "" - -#: mod/settings.php:1065 mod/admin.php:1749 -msgid "Community Forum" -msgstr "" - -#: mod/settings.php:1066 -msgid "Account for community discussions." -msgstr "" - -#: mod/settings.php:1069 mod/admin.php:1739 -msgid "Normal Account Page" -msgstr "" - -#: mod/settings.php:1070 -msgid "" -"Account for a regular personal profile that requires manual approval of " -"\"Friends\" and \"Followers\"." -msgstr "" - -#: mod/settings.php:1073 mod/admin.php:1740 -msgid "Soapbox Page" -msgstr "" - -#: mod/settings.php:1074 -msgid "" -"Account for a public profile that automatically approves contact requests as " -"\"Followers\"." -msgstr "" - -#: mod/settings.php:1077 mod/admin.php:1741 -msgid "Public Forum" -msgstr "" - -#: mod/settings.php:1078 -msgid "Automatically approves all contact requests." -msgstr "" - -#: mod/settings.php:1081 mod/admin.php:1742 -msgid "Automatic Friend Page" -msgstr "" - -#: mod/settings.php:1082 -msgid "" -"Account for a popular profile that automatically approves contact requests " -"as \"Friends\"." -msgstr "" - -#: mod/settings.php:1085 -msgid "Private Forum [Experimental]" -msgstr "" - -#: mod/settings.php:1086 -msgid "Requires manual approval of contact requests." -msgstr "" - -#: mod/settings.php:1097 -msgid "OpenID:" -msgstr "" - -#: mod/settings.php:1097 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "" - -#: mod/settings.php:1105 -msgid "Publish your default profile in your local site directory?" -msgstr "" - -#: mod/settings.php:1105 -#, php-format -msgid "" -"Your profile will be published in the global friendica directories (e.g. %s). Your profile will be visible in public." -msgstr "" - -#: mod/settings.php:1111 -msgid "Publish your default profile in the global social directory?" -msgstr "" - -#: mod/settings.php:1111 -#, php-format -msgid "" -"Your profile will be published in this node's local " -"directory. Your profile details may be publicly visible depending on the " -"system settings." -msgstr "" - -#: mod/settings.php:1118 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "" - -#: mod/settings.php:1118 -msgid "" -"Your contact list won't be shown in your default profile page. You can " -"decide to show your contact list separately for each additional profile you " -"create" -msgstr "" - -#: mod/settings.php:1122 -msgid "Hide your profile details from anonymous viewers?" -msgstr "" - -#: mod/settings.php:1122 -msgid "" -"Anonymous visitors will only see your profile picture, your display name and " -"the nickname you are using on your profile page. Disables posting public " -"messages to Diaspora and other networks." -msgstr "" - -#: mod/settings.php:1126 -msgid "Allow friends to post to your profile page?" -msgstr "" - -#: mod/settings.php:1126 -msgid "" -"Your contacts may write posts on your profile wall. These posts will be " -"distributed to your contacts" -msgstr "" - -#: mod/settings.php:1130 -msgid "Allow friends to tag your posts?" -msgstr "" - -#: mod/settings.php:1130 -msgid "Your contacts can add additional tags to your posts." -msgstr "" - -#: mod/settings.php:1134 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" - -#: mod/settings.php:1134 -msgid "If you like, Friendica may suggest new members to add you as a contact." -msgstr "" - -#: mod/settings.php:1138 -msgid "Permit unknown people to send you private mail?" -msgstr "" - -#: mod/settings.php:1138 -msgid "" -"Friendica network users may send you private messages even if they are not " -"in your contact list." -msgstr "" - -#: mod/settings.php:1142 -msgid "Profile is not published." -msgstr "" - -#: mod/settings.php:1148 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "" - -#: mod/settings.php:1155 -msgid "Automatically expire posts after this many days:" -msgstr "" - -#: mod/settings.php:1155 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "" - -#: mod/settings.php:1156 -msgid "Advanced expiration settings" -msgstr "" - -#: mod/settings.php:1157 -msgid "Advanced Expiration" -msgstr "" - -#: mod/settings.php:1158 -msgid "Expire posts:" -msgstr "" - -#: mod/settings.php:1159 -msgid "Expire personal notes:" -msgstr "" - -#: mod/settings.php:1160 -msgid "Expire starred posts:" -msgstr "" - -#: mod/settings.php:1161 -msgid "Expire photos:" -msgstr "" - -#: mod/settings.php:1162 -msgid "Only expire posts by others:" -msgstr "" - -#: mod/settings.php:1192 -msgid "Account Settings" -msgstr "" - -#: mod/settings.php:1200 -msgid "Password Settings" -msgstr "" - -#: mod/settings.php:1201 mod/register.php:273 -msgid "New Password:" -msgstr "" - -#: mod/settings.php:1202 mod/register.php:274 -msgid "Confirm:" -msgstr "" - -#: mod/settings.php:1202 -msgid "Leave password fields blank unless changing" -msgstr "" - -#: mod/settings.php:1203 -msgid "Current Password:" -msgstr "" - -#: mod/settings.php:1203 mod/settings.php:1204 -msgid "Your current password to confirm the changes" -msgstr "" - -#: mod/settings.php:1204 -msgid "Password:" -msgstr "" - -#: mod/settings.php:1208 -msgid "Basic Settings" -msgstr "" - -#: mod/settings.php:1210 -msgid "Email Address:" -msgstr "" - -#: mod/settings.php:1211 -msgid "Your Timezone:" -msgstr "" - -#: mod/settings.php:1212 -msgid "Your Language:" -msgstr "" - -#: mod/settings.php:1212 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "" - -#: mod/settings.php:1213 -msgid "Default Post Location:" -msgstr "" - -#: mod/settings.php:1214 -msgid "Use Browser Location:" -msgstr "" - -#: mod/settings.php:1217 -msgid "Security and Privacy Settings" -msgstr "" - -#: mod/settings.php:1219 -msgid "Maximum Friend Requests/Day:" -msgstr "" - -#: mod/settings.php:1219 mod/settings.php:1248 -msgid "(to prevent spam abuse)" -msgstr "" - -#: mod/settings.php:1220 -msgid "Default Post Permissions" -msgstr "" - -#: mod/settings.php:1221 -msgid "(click to open/close)" -msgstr "" - -#: mod/settings.php:1229 mod/photos.php:1106 mod/photos.php:1449 -msgid "Show to Groups" -msgstr "" - -#: mod/settings.php:1230 mod/photos.php:1107 mod/photos.php:1450 -msgid "Show to Contacts" -msgstr "" - -#: mod/settings.php:1231 -msgid "Default Private Post" -msgstr "" - -#: mod/settings.php:1232 -msgid "Default Public Post" -msgstr "" - -#: mod/settings.php:1236 -msgid "Default Permissions for New Posts" -msgstr "" - -#: mod/settings.php:1248 -msgid "Maximum private messages per day from unknown people:" -msgstr "" - -#: mod/settings.php:1251 -msgid "Notification Settings" -msgstr "" - -#: mod/settings.php:1252 -msgid "By default post a status message when:" -msgstr "" - -#: mod/settings.php:1253 -msgid "accepting a friend request" -msgstr "" - -#: mod/settings.php:1254 -msgid "joining a forum/community" -msgstr "" - -#: mod/settings.php:1255 -msgid "making an interesting profile change" -msgstr "" - -#: mod/settings.php:1256 -msgid "Send a notification email when:" -msgstr "" - -#: mod/settings.php:1257 -msgid "You receive an introduction" -msgstr "" - -#: mod/settings.php:1258 -msgid "Your introductions are confirmed" -msgstr "" - -#: mod/settings.php:1259 -msgid "Someone writes on your profile wall" -msgstr "" - -#: mod/settings.php:1260 -msgid "Someone writes a followup comment" -msgstr "" - -#: mod/settings.php:1261 -msgid "You receive a private message" -msgstr "" - -#: mod/settings.php:1262 -msgid "You receive a friend suggestion" -msgstr "" - -#: mod/settings.php:1263 -msgid "You are tagged in a post" -msgstr "" - -#: mod/settings.php:1264 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: mod/settings.php:1266 -msgid "Activate desktop notifications" -msgstr "" - -#: mod/settings.php:1266 -msgid "Show desktop popup on new notifications" -msgstr "" - -#: mod/settings.php:1268 -msgid "Text-only notification emails" -msgstr "" - -#: mod/settings.php:1270 -msgid "Send text only notification emails, without the html part" -msgstr "" - -#: mod/settings.php:1272 -msgid "Show detailled notifications" -msgstr "" - -#: mod/settings.php:1274 -msgid "" -"Per default, notifications are condensed to a single notification per item. " -"When enabled every notification is displayed." -msgstr "" - -#: mod/settings.php:1276 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: mod/settings.php:1277 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: mod/settings.php:1280 -msgid "Relocate" -msgstr "" - -#: mod/settings.php:1281 -msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." -msgstr "" - -#: mod/settings.php:1282 -msgid "Resend relocate message to contacts" -msgstr "" - -#: mod/regmod.php:68 -msgid "Account approved." -msgstr "" - -#: mod/regmod.php:93 -#, php-format -msgid "Registration revoked for %s" -msgstr "" - -#: mod/regmod.php:102 -msgid "Please login." -msgstr "" - -#: mod/group.php:36 -msgid "Group created." -msgstr "" - -#: mod/group.php:42 -msgid "Could not create group." -msgstr "" - -#: mod/group.php:56 mod/group.php:157 -msgid "Group not found." -msgstr "" - -#: mod/group.php:70 -msgid "Group name changed." -msgstr "" - -#: mod/group.php:83 mod/profperm.php:28 index.php:443 -msgid "Permission denied" -msgstr "" - -#: mod/group.php:97 -msgid "Save Group" -msgstr "" - -#: mod/group.php:102 -msgid "Create a group of contacts/friends." -msgstr "" - -#: mod/group.php:127 -msgid "Group removed." -msgstr "" - -#: mod/group.php:129 -msgid "Unable to remove group." -msgstr "" - -#: mod/group.php:192 -msgid "Delete Group" -msgstr "" - -#: mod/group.php:198 -msgid "Group Editor" -msgstr "" - -#: mod/group.php:203 -msgid "Edit Group Name" -msgstr "" - -#: mod/group.php:213 -msgid "Members" -msgstr "" - -#: mod/group.php:215 mod/contacts.php:719 -msgid "All Contacts" -msgstr "" - -#: mod/group.php:229 -msgid "Remove Contact" -msgstr "" - -#: mod/group.php:253 -msgid "Add Contact" -msgstr "" - -#: mod/group.php:265 mod/profperm.php:115 -msgid "Click on a contact to add or remove." -msgstr "" - -#: mod/fbrowser.php:131 -msgid "Files" -msgstr "" - -#: mod/admin.php:106 -msgid "Theme settings updated." -msgstr "" - -#: mod/admin.php:180 -msgid "Overview" -msgstr "" - -#: mod/admin.php:181 mod/admin.php:718 -msgid "Federation Statistics" -msgstr "" - -#: mod/admin.php:182 -msgid "Configuration" -msgstr "" - -#: mod/admin.php:183 mod/admin.php:1345 -msgid "Site" -msgstr "" - -#: mod/admin.php:184 mod/admin.php:1273 mod/admin.php:1802 mod/admin.php:1818 -msgid "Users" -msgstr "" - -#: mod/admin.php:186 mod/admin.php:2187 mod/admin.php:2231 -msgid "Themes" -msgstr "" - -#: mod/admin.php:189 -msgid "Database" -msgstr "" - -#: mod/admin.php:190 -msgid "DB updates" -msgstr "" - -#: mod/admin.php:191 mod/admin.php:753 -msgid "Inspect Queue" -msgstr "" - -#: mod/admin.php:192 -msgid "Tools" -msgstr "" - -#: mod/admin.php:193 -msgid "Contact Blocklist" -msgstr "" - -#: mod/admin.php:194 mod/admin.php:362 -msgid "Server Blocklist" -msgstr "" - -#: mod/admin.php:195 mod/admin.php:521 -msgid "Delete Item" -msgstr "" - -#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2305 -msgid "Logs" -msgstr "" - -#: mod/admin.php:198 mod/admin.php:2372 -msgid "View Logs" -msgstr "" - -#: mod/admin.php:200 -msgid "Diagnostics" -msgstr "" - -#: mod/admin.php:201 -msgid "PHP Info" -msgstr "" - -#: mod/admin.php:202 -msgid "probe address" -msgstr "" - -#: mod/admin.php:203 -msgid "check webfinger" -msgstr "" - -#: mod/admin.php:223 -msgid "Addon Features" -msgstr "" - -#: mod/admin.php:224 -msgid "User registrations waiting for confirmation" -msgstr "" - -#: mod/admin.php:301 mod/admin.php:361 mod/admin.php:478 mod/admin.php:520 -#: mod/admin.php:717 mod/admin.php:752 mod/admin.php:848 mod/admin.php:1344 -#: mod/admin.php:1801 mod/admin.php:1917 mod/admin.php:1977 mod/admin.php:2186 -#: mod/admin.php:2230 mod/admin.php:2304 mod/admin.php:2371 -msgid "Administration" -msgstr "" - -#: mod/admin.php:303 -msgid "Display Terms of Service" -msgstr "" - -#: mod/admin.php:303 -msgid "" -"Enable the Terms of Service page. If this is enabled a link to the terms " -"will be added to the registration form and the general information page." -msgstr "" - -#: mod/admin.php:304 -msgid "Display Privacy Statement" -msgstr "" - -#: mod/admin.php:304 -#, php-format -msgid "" -"Show some informations regarding the needed information to operate the node " -"according e.g. to EU-GDPR." -msgstr "" - -#: mod/admin.php:305 -msgid "The Terms of Service" -msgstr "" - -#: mod/admin.php:305 -msgid "" -"Enter the Terms of Service for your node here. You can use BBCode. Headers " -"of sections should be [h2] and below." -msgstr "" - -#: mod/admin.php:353 -msgid "The blocked domain" -msgstr "" - -#: mod/admin.php:354 mod/admin.php:367 -msgid "The reason why you blocked this domain." -msgstr "" - -#: mod/admin.php:355 -msgid "Delete domain" -msgstr "" - -#: mod/admin.php:355 -msgid "Check to delete this entry from the blocklist" -msgstr "" - -#: mod/admin.php:363 -msgid "" -"This page can be used to define a black list of servers from the federated " -"network that are not allowed to interact with your node. For all entered " -"domains you should also give a reason why you have blocked the remote server." -msgstr "" - -#: mod/admin.php:364 -msgid "" -"The list of blocked servers will be made publically available on the /" -"friendica page so that your users and people investigating communication " -"problems can find the reason easily." -msgstr "" - -#: mod/admin.php:365 -msgid "Add new entry to block list" -msgstr "" - -#: mod/admin.php:366 -msgid "Server Domain" -msgstr "" - -#: mod/admin.php:366 -msgid "" -"The domain of the new server to add to the block list. Do not include the " -"protocol." -msgstr "" - -#: mod/admin.php:367 -msgid "Block reason" -msgstr "" - -#: mod/admin.php:368 -msgid "Add Entry" -msgstr "" - -#: mod/admin.php:369 -msgid "Save changes to the blocklist" -msgstr "" - -#: mod/admin.php:370 -msgid "Current Entries in the Blocklist" -msgstr "" - -#: mod/admin.php:373 -msgid "Delete entry from blocklist" -msgstr "" - -#: mod/admin.php:376 -msgid "Delete entry from blocklist?" -msgstr "" - -#: mod/admin.php:402 -msgid "Server added to blocklist." -msgstr "" - -#: mod/admin.php:418 -msgid "Site blocklist updated." -msgstr "" - -#: mod/admin.php:450 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "" -msgstr[1] "" - -#: mod/admin.php:479 -msgid "Remote Contact Blocklist" -msgstr "" - -#: mod/admin.php:480 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "" - -#: mod/admin.php:481 -msgid "Block Remote Contact" -msgstr "" - -#: mod/admin.php:482 mod/admin.php:1804 -msgid "select all" -msgstr "" - -#: mod/admin.php:483 -msgid "select none" -msgstr "" - -#: mod/admin.php:484 mod/admin.php:1813 mod/contacts.php:637 -#: mod/contacts.php:827 mod/contacts.php:1011 -msgid "Block" -msgstr "" - -#: mod/admin.php:485 mod/admin.php:1814 mod/contacts.php:637 -#: mod/contacts.php:827 mod/contacts.php:1011 -msgid "Unblock" -msgstr "" - -#: mod/admin.php:486 -msgid "No remote contact is blocked from this node." -msgstr "" - -#: mod/admin.php:488 -msgid "Blocked Remote Contacts" -msgstr "" - -#: mod/admin.php:489 -msgid "Block New Remote Contact" -msgstr "" - -#: mod/admin.php:490 -msgid "Photo" -msgstr "" - -#: mod/admin.php:490 mod/admin.php:500 mod/unfollow.php:122 -#: mod/notifications.php:258 mod/follow.php:166 mod/contacts.php:656 -msgid "Profile URL" -msgstr "" - -#: mod/admin.php:498 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "" -msgstr[1] "" - -#: mod/admin.php:500 -msgid "URL of the remote contact to block." -msgstr "" - -#: mod/admin.php:522 -msgid "Delete this Item" -msgstr "" - -#: mod/admin.php:523 -msgid "" -"On this page you can delete an item from your node. If the item is a top " -"level posting, the entire thread will be deleted." -msgstr "" - -#: mod/admin.php:524 -msgid "" -"You need to know the GUID of the item. You can find it e.g. by looking at " -"the display URL. The last part of http://example.com/display/123456 is the " -"GUID, here 123456." -msgstr "" - -#: mod/admin.php:525 -msgid "GUID" -msgstr "" - -#: mod/admin.php:525 -msgid "The GUID of the item you want to delete." -msgstr "" - -#: mod/admin.php:564 -msgid "Item marked for deletion." -msgstr "" - -#: mod/admin.php:635 -msgid "unknown" -msgstr "" - -#: mod/admin.php:711 -msgid "" -"This page offers you some numbers to the known part of the federated social " -"network your Friendica node is part of. These numbers are not complete but " -"only reflect the part of the network your node is aware of." -msgstr "" - -#: mod/admin.php:712 -msgid "" -"The Auto Discovered Contact Directory feature is not enabled, it " -"will improve the data displayed here." -msgstr "" - -#: mod/admin.php:724 -#, php-format -msgid "" -"Currently this node is aware of %d nodes with %d registered users from the " -"following platforms:" -msgstr "" - -#: mod/admin.php:755 -msgid "ID" -msgstr "" - -#: mod/admin.php:756 -msgid "Recipient Name" -msgstr "" - -#: mod/admin.php:757 -msgid "Recipient Profile" -msgstr "" - -#: mod/admin.php:759 -msgid "Created" -msgstr "" - -#: mod/admin.php:760 -msgid "Last Tried" -msgstr "" - -#: mod/admin.php:761 -msgid "" -"This page lists the content of the queue for outgoing postings. These are " -"postings the initial delivery failed for. They will be resend later and " -"eventually deleted if the delivery fails permanently." -msgstr "" - -#: mod/admin.php:785 -#, php-format -msgid "" -"Your DB still runs with MyISAM tables. You should change the engine type to " -"InnoDB. As Friendica will use InnoDB only features in the future, you should " -"change this! See here for a guide that may be helpful " -"converting the table engines. You may also use the command php bin/" -"console.php dbstructure toinnodb of your Friendica installation for an " -"automatic conversion.
" -msgstr "" - -#: mod/admin.php:792 -#, php-format -msgid "" -"There is a new version of Friendica available for download. Your current " -"version is %1$s, upstream version is %2$s" -msgstr "" - -#: mod/admin.php:802 -msgid "" -"The database update failed. Please run \"php bin/console.php dbstructure " -"update\" from the command line and have a look at the errors that might " -"appear." -msgstr "" - -#: mod/admin.php:808 -msgid "The worker was never executed. Please check your database structure!" -msgstr "" - -#: mod/admin.php:811 -#, php-format -msgid "" -"The last worker execution was on %s UTC. This is older than one hour. Please " -"check your crontab settings." -msgstr "" - -#: mod/admin.php:816 -msgid "Normal Account" -msgstr "" - -#: mod/admin.php:817 -msgid "Automatic Follower Account" -msgstr "" - -#: mod/admin.php:818 -msgid "Public Forum Account" -msgstr "" - -#: mod/admin.php:819 -msgid "Automatic Friend Account" -msgstr "" - -#: mod/admin.php:820 -msgid "Blog Account" -msgstr "" - -#: mod/admin.php:821 -msgid "Private Forum Account" -msgstr "" - -#: mod/admin.php:843 -msgid "Message queues" -msgstr "" - -#: mod/admin.php:849 -msgid "Summary" -msgstr "" - -#: mod/admin.php:851 -msgid "Registered users" -msgstr "" - -#: mod/admin.php:853 -msgid "Pending registrations" -msgstr "" - -#: mod/admin.php:854 -msgid "Version" -msgstr "" - -#: mod/admin.php:859 -msgid "Active addons" -msgstr "" - -#: mod/admin.php:890 -msgid "Can not parse base url. Must have at least ://" -msgstr "" - -#: mod/admin.php:1209 -msgid "Site settings updated." -msgstr "" - -#: mod/admin.php:1265 -msgid "No community page" -msgstr "" - -#: mod/admin.php:1266 -msgid "Public postings from users of this site" -msgstr "" - -#: mod/admin.php:1267 -msgid "Public postings from the federated network" -msgstr "" - -#: mod/admin.php:1268 -msgid "Public postings from local users and the federated network" -msgstr "" - -#: mod/admin.php:1272 mod/admin.php:1435 mod/admin.php:1445 -#: mod/contacts.php:572 -msgid "Disabled" -msgstr "" - -#: mod/admin.php:1274 -msgid "Users, Global Contacts" -msgstr "" - -#: mod/admin.php:1275 -msgid "Users, Global Contacts/fallback" -msgstr "" - -#: mod/admin.php:1279 -msgid "One month" -msgstr "" - -#: mod/admin.php:1280 -msgid "Three months" -msgstr "" - -#: mod/admin.php:1281 -msgid "Half a year" -msgstr "" - -#: mod/admin.php:1282 -msgid "One year" -msgstr "" - -#: mod/admin.php:1287 -msgid "Multi user instance" -msgstr "" - -#: mod/admin.php:1310 -msgid "Closed" -msgstr "" - -#: mod/admin.php:1311 -msgid "Requires approval" -msgstr "" - -#: mod/admin.php:1312 -msgid "Open" -msgstr "" - -#: mod/admin.php:1316 -msgid "No SSL policy, links will track page SSL state" -msgstr "" - -#: mod/admin.php:1317 -msgid "Force all links to use SSL" -msgstr "" - -#: mod/admin.php:1318 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "" - -#: mod/admin.php:1322 -msgid "Don't check" -msgstr "" - -#: mod/admin.php:1323 -msgid "check the stable version" -msgstr "" - -#: mod/admin.php:1324 -msgid "check the development version" -msgstr "" - -#: mod/admin.php:1347 -msgid "Republish users to directory" -msgstr "" - -#: mod/admin.php:1348 mod/register.php:264 -msgid "Registration" -msgstr "" - -#: mod/admin.php:1349 -msgid "File upload" -msgstr "" - -#: mod/admin.php:1350 -msgid "Policies" -msgstr "" - -#: mod/admin.php:1352 -msgid "Auto Discovered Contact Directory" -msgstr "" - -#: mod/admin.php:1353 -msgid "Performance" -msgstr "" - -#: mod/admin.php:1354 -msgid "Worker" -msgstr "" - -#: mod/admin.php:1355 -msgid "Message Relay" -msgstr "" - -#: mod/admin.php:1356 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "" - -#: mod/admin.php:1359 -msgid "Site name" -msgstr "" - -#: mod/admin.php:1360 -msgid "Host name" -msgstr "" - -#: mod/admin.php:1361 -msgid "Sender Email" -msgstr "" - -#: mod/admin.php:1361 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "" - -#: mod/admin.php:1362 -msgid "Banner/Logo" -msgstr "" - -#: mod/admin.php:1363 -msgid "Shortcut icon" -msgstr "" - -#: mod/admin.php:1363 -msgid "Link to an icon that will be used for browsers." -msgstr "" - -#: mod/admin.php:1364 -msgid "Touch icon" -msgstr "" - -#: mod/admin.php:1364 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "" - -#: mod/admin.php:1365 -msgid "Additional Info" -msgstr "" - -#: mod/admin.php:1365 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/servers." -msgstr "" - -#: mod/admin.php:1366 -msgid "System language" -msgstr "" - -#: mod/admin.php:1367 -msgid "System theme" -msgstr "" - -#: mod/admin.php:1367 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" - -#: mod/admin.php:1368 -msgid "Mobile system theme" -msgstr "" - -#: mod/admin.php:1368 -msgid "Theme for mobile devices" -msgstr "" - -#: mod/admin.php:1369 -msgid "SSL link policy" -msgstr "" - -#: mod/admin.php:1369 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "" - -#: mod/admin.php:1370 -msgid "Force SSL" -msgstr "" - -#: mod/admin.php:1370 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead " -"to endless loops." -msgstr "" - -#: mod/admin.php:1371 -msgid "Hide help entry from navigation menu" -msgstr "" - -#: mod/admin.php:1371 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "" - -#: mod/admin.php:1372 -msgid "Single user instance" -msgstr "" - -#: mod/admin.php:1372 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "" - -#: mod/admin.php:1373 -msgid "Maximum image size" -msgstr "" - -#: mod/admin.php:1373 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "" - -#: mod/admin.php:1374 -msgid "Maximum image length" -msgstr "" - -#: mod/admin.php:1374 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "" - -#: mod/admin.php:1375 -msgid "JPEG image quality" -msgstr "" - -#: mod/admin.php:1375 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "" - -#: mod/admin.php:1377 -msgid "Register policy" -msgstr "" - -#: mod/admin.php:1378 -msgid "Maximum Daily Registrations" -msgstr "" - -#: mod/admin.php:1378 -msgid "" -"If registration is permitted above, this sets the maximum number of new user " -"registrations to accept per day. If register is set to closed, this setting " -"has no effect." -msgstr "" - -#: mod/admin.php:1379 -msgid "Register text" -msgstr "" - -#: mod/admin.php:1379 -msgid "" -"Will be displayed prominently on the registration page. You can use BBCode " -"here." -msgstr "" - -#: mod/admin.php:1380 -msgid "Accounts abandoned after x days" -msgstr "" - -#: mod/admin.php:1380 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "" - -#: mod/admin.php:1381 -msgid "Allowed friend domains" -msgstr "" - -#: mod/admin.php:1381 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "" - -#: mod/admin.php:1382 -msgid "Allowed email domains" -msgstr "" - -#: mod/admin.php:1382 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "" - -#: mod/admin.php:1383 -msgid "No OEmbed rich content" -msgstr "" - -#: mod/admin.php:1383 -msgid "" -"Don't show the rich content (e.g. embedded PDF), except from the domains " -"listed below." -msgstr "" - -#: mod/admin.php:1384 -msgid "Allowed OEmbed domains" -msgstr "" - -#: mod/admin.php:1384 -msgid "" -"Comma separated list of domains which oembed content is allowed to be " -"displayed. Wildcards are accepted." -msgstr "" - -#: mod/admin.php:1385 -msgid "Block public" -msgstr "" - -#: mod/admin.php:1385 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "" - -#: mod/admin.php:1386 -msgid "Force publish" -msgstr "" - -#: mod/admin.php:1386 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: mod/admin.php:1387 -msgid "Global directory URL" -msgstr "" - -#: mod/admin.php:1387 -msgid "" -"URL to the global directory. If this is not set, the global directory is " -"completely unavailable to the application." -msgstr "" - -#: mod/admin.php:1388 -msgid "Private posts by default for new users" -msgstr "" - -#: mod/admin.php:1388 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "" - -#: mod/admin.php:1389 -msgid "Don't include post content in email notifications" -msgstr "" - -#: mod/admin.php:1389 -msgid "" -"Don't include the content of a post/comment/private message/etc. in the " -"email notifications that are sent out from this site, as a privacy measure." -msgstr "" - -#: mod/admin.php:1390 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "" - -#: mod/admin.php:1390 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "" - -#: mod/admin.php:1391 -msgid "Don't embed private images in posts" -msgstr "" - -#: mod/admin.php:1391 -msgid "" -"Don't replace locally-hosted private photos in posts with an embedded copy " -"of the image. This means that contacts who receive posts containing private " -"photos will have to authenticate and load each image, which may take a while." -msgstr "" - -#: mod/admin.php:1392 -msgid "Allow Users to set remote_self" -msgstr "" - -#: mod/admin.php:1392 -msgid "" -"With checking this, every user is allowed to mark every contact as a " -"remote_self in the repair contact dialog. Setting this flag on a contact " -"causes mirroring every posting of that contact in the users stream." -msgstr "" - -#: mod/admin.php:1393 -msgid "Block multiple registrations" -msgstr "" - -#: mod/admin.php:1393 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "" - -#: mod/admin.php:1394 -msgid "OpenID support" -msgstr "" - -#: mod/admin.php:1394 -msgid "OpenID support for registration and logins." -msgstr "" - -#: mod/admin.php:1395 -msgid "Fullname check" -msgstr "" - -#: mod/admin.php:1395 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "" - -#: mod/admin.php:1396 -msgid "Community pages for visitors" -msgstr "" - -#: mod/admin.php:1396 -msgid "" -"Which community pages should be available for visitors. Local users always " -"see both pages." -msgstr "" - -#: mod/admin.php:1397 -msgid "Posts per user on community page" -msgstr "" - -#: mod/admin.php:1397 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "" - -#: mod/admin.php:1398 -msgid "Enable OStatus support" -msgstr "" - -#: mod/admin.php:1398 -msgid "" -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "" - -#: mod/admin.php:1399 -msgid "Only import OStatus threads from our contacts" -msgstr "" - -#: mod/admin.php:1399 -msgid "" -"Normally we import every content from our OStatus contacts. With this option " -"we only store threads that are started by a contact that is known on our " -"system." -msgstr "" - -#: mod/admin.php:1400 -msgid "OStatus support can only be enabled if threading is enabled." -msgstr "" - -#: mod/admin.php:1402 -msgid "" -"Diaspora support can't be enabled because Friendica was installed into a sub " -"directory." -msgstr "" - -#: mod/admin.php:1403 -msgid "Enable Diaspora support" -msgstr "" - -#: mod/admin.php:1403 -msgid "Provide built-in Diaspora network compatibility." -msgstr "" - -#: mod/admin.php:1404 -msgid "Only allow Friendica contacts" -msgstr "" - -#: mod/admin.php:1404 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "" - -#: mod/admin.php:1405 -msgid "Verify SSL" -msgstr "" - -#: mod/admin.php:1405 -msgid "" -"If you wish, you can turn on strict certificate checking. This will mean you " -"cannot connect (at all) to self-signed SSL sites." -msgstr "" - -#: mod/admin.php:1406 -msgid "Proxy user" -msgstr "" - -#: mod/admin.php:1407 -msgid "Proxy URL" -msgstr "" - -#: mod/admin.php:1408 -msgid "Network timeout" -msgstr "" - -#: mod/admin.php:1408 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: mod/admin.php:1409 -msgid "Maximum Load Average" -msgstr "" - -#: mod/admin.php:1409 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" - -#: mod/admin.php:1410 -msgid "Maximum Load Average (Frontend)" -msgstr "" - -#: mod/admin.php:1410 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "" - -#: mod/admin.php:1411 -msgid "Minimal Memory" -msgstr "" - -#: mod/admin.php:1411 -msgid "" -"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " -"default 0 (deactivated)." -msgstr "" - -#: mod/admin.php:1412 -msgid "Maximum table size for optimization" -msgstr "" - -#: mod/admin.php:1412 -msgid "" -"Maximum table size (in MB) for the automatic optimization - default 100 MB. " -"Enter -1 to disable it." -msgstr "" - -#: mod/admin.php:1413 -msgid "Minimum level of fragmentation" -msgstr "" - -#: mod/admin.php:1413 -msgid "" -"Minimum fragmenation level to start the automatic optimization - default " -"value is 30%." -msgstr "" - -#: mod/admin.php:1415 -msgid "Periodical check of global contacts" -msgstr "" - -#: mod/admin.php:1415 -msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." -msgstr "" - -#: mod/admin.php:1416 -msgid "Days between requery" -msgstr "" - -#: mod/admin.php:1416 -msgid "Number of days after which a server is requeried for his contacts." -msgstr "" - -#: mod/admin.php:1417 -msgid "Discover contacts from other servers" -msgstr "" - -#: mod/admin.php:1417 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"'users': the users on the remote system, 'Global Contacts': active contacts " -"that are known on the system. The fallback is meant for Redmatrix servers " -"and older friendica servers, where global contacts weren't available. The " -"fallback increases the server load, so the recommened setting is 'Users, " -"Global Contacts'." -msgstr "" - -#: mod/admin.php:1418 -msgid "Timeframe for fetching global contacts" -msgstr "" - -#: mod/admin.php:1418 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." -msgstr "" - -#: mod/admin.php:1419 -msgid "Search the local directory" -msgstr "" - -#: mod/admin.php:1419 -msgid "" -"Search the local directory instead of the global directory. When searching " -"locally, every search will be executed on the global directory in the " -"background. This improves the search results when the search is repeated." -msgstr "" - -#: mod/admin.php:1421 -msgid "Publish server information" -msgstr "" - -#: mod/admin.php:1421 -msgid "" -"If enabled, general server and usage data will be published. The data " -"contains the name and version of the server, number of users with public " -"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." -msgstr "" - -#: mod/admin.php:1423 -msgid "Check upstream version" -msgstr "" - -#: mod/admin.php:1423 -msgid "" -"Enables checking for new Friendica versions at github. If there is a new " -"version, you will be informed in the admin panel overview." -msgstr "" - -#: mod/admin.php:1424 -msgid "Suppress Tags" -msgstr "" - -#: mod/admin.php:1424 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "" - -#: mod/admin.php:1425 -msgid "Path to item cache" -msgstr "" - -#: mod/admin.php:1425 -msgid "The item caches buffers generated bbcode and external images." -msgstr "" - -#: mod/admin.php:1426 -msgid "Cache duration in seconds" -msgstr "" - -#: mod/admin.php:1426 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One " -"day). To disable the item cache, set the value to -1." -msgstr "" - -#: mod/admin.php:1427 -msgid "Maximum numbers of comments per post" -msgstr "" - -#: mod/admin.php:1427 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "" - -#: mod/admin.php:1428 -msgid "Temp path" -msgstr "" - -#: mod/admin.php:1428 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "" - -#: mod/admin.php:1429 -msgid "Base path to installation" -msgstr "" - -#: mod/admin.php:1429 -msgid "" -"If the system cannot detect the correct path to your installation, enter the " -"correct path here. This setting should only be set if you are using a " -"restricted system and symbolic links to your webroot." -msgstr "" - -#: mod/admin.php:1430 -msgid "Disable picture proxy" -msgstr "" - -#: mod/admin.php:1430 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on " -"systems with very low bandwith." -msgstr "" - -#: mod/admin.php:1431 -msgid "Only search in tags" -msgstr "" - -#: mod/admin.php:1431 -msgid "On large systems the text search can slow down the system extremely." -msgstr "" - -#: mod/admin.php:1433 -msgid "New base url" -msgstr "" - -#: mod/admin.php:1433 -msgid "" -"Change base url for this server. Sends relocate message to all Friendica and " -"Diaspora* contacts of all users." -msgstr "" - -#: mod/admin.php:1435 -msgid "RINO Encryption" -msgstr "" - -#: mod/admin.php:1435 -msgid "Encryption layer between nodes." -msgstr "" - -#: mod/admin.php:1435 -msgid "Enabled" -msgstr "" - -#: mod/admin.php:1437 -msgid "Maximum number of parallel workers" -msgstr "" - -#: mod/admin.php:1437 -msgid "" -"On shared hosters set this to 2. On larger systems, values of 10 are great. " -"Default value is 4." -msgstr "" - -#: mod/admin.php:1438 -msgid "Don't use 'proc_open' with the worker" -msgstr "" - -#: mod/admin.php:1438 -msgid "" -"Enable this if your system doesn't allow the use of 'proc_open'. This can " -"happen on shared hosters. If this is enabled you should increase the " -"frequency of worker calls in your crontab." -msgstr "" - -#: mod/admin.php:1439 -msgid "Enable fastlane" -msgstr "" - -#: mod/admin.php:1439 -msgid "" -"When enabed, the fastlane mechanism starts an additional worker if processes " -"with higher priority are blocked by processes of lower priority." -msgstr "" - -#: mod/admin.php:1440 -msgid "Enable frontend worker" -msgstr "" - -#: mod/admin.php:1440 -#, php-format -msgid "" -"When enabled the Worker process is triggered when backend access is " -"performed \\x28e.g. messages being delivered\\x29. On smaller sites you " -"might want to call %s/worker on a regular basis via an external cron job. " -"You should only enable this option if you cannot utilize cron/scheduled jobs " -"on your server." -msgstr "" - -#: mod/admin.php:1442 -msgid "Subscribe to relay" -msgstr "" - -#: mod/admin.php:1442 -msgid "" -"Enables the receiving of public posts from the relay. They will be included " -"in the search, subscribed tags and on the global community page." -msgstr "" - -#: mod/admin.php:1443 -msgid "Relay server" -msgstr "" - -#: mod/admin.php:1443 -msgid "" -"Address of the relay server where public posts should be send to. For " -"example https://relay.diasp.org" -msgstr "" - -#: mod/admin.php:1444 -msgid "Direct relay transfer" -msgstr "" - -#: mod/admin.php:1444 -msgid "" -"Enables the direct transfer to other servers without using the relay servers" -msgstr "" - -#: mod/admin.php:1445 -msgid "Relay scope" -msgstr "" - -#: mod/admin.php:1445 -msgid "" -"Can be 'all' or 'tags'. 'all' means that every public post should be " -"received. 'tags' means that only posts with selected tags should be received." -msgstr "" - -#: mod/admin.php:1445 -msgid "all" -msgstr "" - -#: mod/admin.php:1445 -msgid "tags" -msgstr "" - -#: mod/admin.php:1446 -msgid "Server tags" -msgstr "" - -#: mod/admin.php:1446 -msgid "Comma separated list of tags for the 'tags' subscription." -msgstr "" - -#: mod/admin.php:1447 -msgid "Allow user tags" -msgstr "" - -#: mod/admin.php:1447 -msgid "" -"If enabled, the tags from the saved searches will used for the 'tags' " -"subscription in addition to the 'relay_server_tags'." -msgstr "" - -#: mod/admin.php:1475 -msgid "Update has been marked successful" -msgstr "" - -#: mod/admin.php:1482 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "" - -#: mod/admin.php:1485 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "" - -#: mod/admin.php:1498 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "" - -#: mod/admin.php:1500 -#, php-format -msgid "Update %s was successfully applied." -msgstr "" - -#: mod/admin.php:1503 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" - -#: mod/admin.php:1506 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "" - -#: mod/admin.php:1526 -msgid "No failed updates." -msgstr "" - -#: mod/admin.php:1527 -msgid "Check database structure" -msgstr "" - -#: mod/admin.php:1532 -msgid "Failed Updates" -msgstr "" - -#: mod/admin.php:1533 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "" - -#: mod/admin.php:1534 -msgid "Mark success (if update was manually applied)" -msgstr "" - -#: mod/admin.php:1535 -msgid "Attempt to execute this update step automatically" -msgstr "" - -#: mod/admin.php:1574 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "" - -#: mod/admin.php:1577 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t\t%2$s\n" -"\t\t\tPassword:\t\t%3$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after " -"logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that " -"page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default " -"profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - " -"and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more " -"specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are " -"necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tIf you ever want to delete your account, you can do so at %1$s/" -"removeme\n" -"\n" -"\t\t\tThank you and welcome to %4$s." -msgstr "" - -#: mod/admin.php:1621 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: mod/admin.php:1627 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "" -msgstr[1] "" - -#: mod/admin.php:1674 -#, php-format -msgid "User '%s' deleted" -msgstr "" - -#: mod/admin.php:1682 -#, php-format -msgid "User '%s' unblocked" -msgstr "" - -#: mod/admin.php:1682 -#, php-format -msgid "User '%s' blocked" -msgstr "" - -#: mod/admin.php:1743 -msgid "Private Forum" -msgstr "" - -#: mod/admin.php:1796 mod/admin.php:1820 -msgid "Register date" -msgstr "" - -#: mod/admin.php:1796 mod/admin.php:1820 -msgid "Last login" -msgstr "" - -#: mod/admin.php:1796 mod/admin.php:1820 -msgid "Last item" -msgstr "" - -#: mod/admin.php:1796 -msgid "Type" -msgstr "" - -#: mod/admin.php:1803 -msgid "Add User" -msgstr "" - -#: mod/admin.php:1805 -msgid "User registrations waiting for confirm" -msgstr "" - -#: mod/admin.php:1806 -msgid "User waiting for permanent deletion" -msgstr "" - -#: mod/admin.php:1807 -msgid "Request date" -msgstr "" - -#: mod/admin.php:1808 -msgid "No registrations." -msgstr "" - -#: mod/admin.php:1809 -msgid "Note from the user" -msgstr "" - -#: mod/admin.php:1810 mod/notifications.php:179 mod/notifications.php:264 -msgid "Approve" -msgstr "" - -#: mod/admin.php:1811 -msgid "Deny" -msgstr "" - -#: mod/admin.php:1815 -msgid "Site admin" -msgstr "" - -#: mod/admin.php:1816 -msgid "Account expired" -msgstr "" - -#: mod/admin.php:1819 -msgid "New User" -msgstr "" - -#: mod/admin.php:1820 -msgid "Deleted since" -msgstr "" - -#: mod/admin.php:1825 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: mod/admin.php:1826 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: mod/admin.php:1836 -msgid "Name of the new user." -msgstr "" - -#: mod/admin.php:1837 -msgid "Nickname" -msgstr "" - -#: mod/admin.php:1837 -msgid "Nickname of the new user." -msgstr "" - -#: mod/admin.php:1838 -msgid "Email address of the new user." -msgstr "" - -#: mod/admin.php:1880 -#, php-format -msgid "Addon %s disabled." -msgstr "" - -#: mod/admin.php:1884 -#, php-format -msgid "Addon %s enabled." -msgstr "" - -#: mod/admin.php:1894 mod/admin.php:2143 -msgid "Disable" -msgstr "" - -#: mod/admin.php:1897 mod/admin.php:2146 -msgid "Enable" -msgstr "" - -#: mod/admin.php:1919 mod/admin.php:2188 -msgid "Toggle" -msgstr "" - -#: mod/admin.php:1927 mod/admin.php:2197 -msgid "Author: " -msgstr "" - -#: mod/admin.php:1928 mod/admin.php:2198 -msgid "Maintainer: " -msgstr "" - -#: mod/admin.php:1980 -msgid "Reload active addons" -msgstr "" - -#: mod/admin.php:1985 -#, php-format -msgid "" -"There are currently no addons available on your node. You can find the " -"official addon repository at %1$s and might find other interesting addons in " -"the open addon registry at %2$s" -msgstr "" - -#: mod/admin.php:2105 -msgid "No themes found." -msgstr "" - -#: mod/admin.php:2179 -msgid "Screenshot" -msgstr "" - -#: mod/admin.php:2233 -msgid "Reload active themes" -msgstr "" - -#: mod/admin.php:2238 -#, php-format -msgid "No themes found on the system. They should be placed in %1$s" -msgstr "" - -#: mod/admin.php:2239 -msgid "[Experimental]" -msgstr "" - -#: mod/admin.php:2240 -msgid "[Unsupported]" -msgstr "" - -#: mod/admin.php:2264 -msgid "Log settings updated." -msgstr "" - -#: mod/admin.php:2296 -msgid "PHP log currently enabled." -msgstr "" - -#: mod/admin.php:2298 -msgid "PHP log currently disabled." -msgstr "" - -#: mod/admin.php:2307 -msgid "Clear" -msgstr "" - -#: mod/admin.php:2311 -msgid "Enable Debugging" -msgstr "" - -#: mod/admin.php:2312 -msgid "Log file" -msgstr "" - -#: mod/admin.php:2312 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "" - -#: mod/admin.php:2313 -msgid "Log level" -msgstr "" - -#: mod/admin.php:2315 -msgid "PHP logging" -msgstr "" - -#: mod/admin.php:2316 -msgid "" -"To enable logging of PHP errors and warnings you can add the following to " -"the .htconfig.php file of your installation. The filename set in the " -"'error_log' line is relative to the friendica top-level directory and must " -"be writeable by the web server. The option '1' for 'log_errors' and " -"'display_errors' is to enable these options, set to '0' to disable them." -msgstr "" - -#: mod/admin.php:2347 -#, php-format -msgid "" -"Error trying to open %1$s log file.\\r\\n
Check to see " -"if file %1$s exist and is readable." -msgstr "" - -#: mod/admin.php:2351 -#, php-format -msgid "" -"Couldn't open %1$s log file.\\r\\n
Check to see if file " -"%1$s is readable." -msgstr "" - -#: mod/admin.php:2443 -#, php-format -msgid "Lock feature %s" -msgstr "" - -#: mod/admin.php:2451 -msgid "Manage Additional Features" -msgstr "" - -#: mod/delegate.php:37 -msgid "Parent user not found." -msgstr "" - -#: mod/delegate.php:144 -msgid "No parent user" -msgstr "" - -#: mod/delegate.php:159 -msgid "Parent Password:" -msgstr "" - -#: mod/delegate.php:159 -msgid "" -"Please enter the password of the parent account to legitimize your request." -msgstr "" - -#: mod/delegate.php:164 -msgid "Parent User" -msgstr "" - -#: mod/delegate.php:167 -msgid "" -"Parent users have total control about this account, including the account " -"settings. Please double check whom you give this access." -msgstr "" - -#: mod/delegate.php:170 -msgid "Delegates" -msgstr "" - -#: mod/delegate.php:172 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "" - -#: mod/delegate.php:173 -msgid "Existing Page Delegates" -msgstr "" - -#: mod/delegate.php:175 -msgid "Potential Delegates" -msgstr "" - -#: mod/delegate.php:177 mod/tagrm.php:98 -msgid "Remove" -msgstr "" - -#: mod/delegate.php:178 -msgid "Add" -msgstr "" - -#: mod/delegate.php:179 -msgid "No entries." -msgstr "" - -#: mod/photos.php:109 mod/photos.php:1713 -msgid "Recent Photos" -msgstr "" - -#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715 -msgid "Upload New Photos" -msgstr "" - -#: mod/photos.php:184 -msgid "Contact information unavailable" -msgstr "" - -#: mod/photos.php:204 -msgid "Album not found." -msgstr "" - -#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161 -msgid "Delete Album" -msgstr "" - -#: mod/photos.php:243 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "" - -#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446 -msgid "Delete Photo" -msgstr "" - -#: mod/photos.php:319 -msgid "Do you really want to delete this photo?" -msgstr "" - -#: mod/photos.php:667 -msgid "a photo" -msgstr "" - -#: mod/photos.php:667 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "" - -#: mod/photos.php:769 -msgid "Image upload didn't complete, please try again" -msgstr "" - -#: mod/photos.php:772 -msgid "Image file is missing" -msgstr "" - -#: mod/photos.php:777 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "" - -#: mod/photos.php:803 -msgid "Image file is empty." -msgstr "" - -#: mod/photos.php:940 -msgid "No photos selected" -msgstr "" - -#: mod/photos.php:1036 mod/videos.php:309 -msgid "Access to this item is restricted." -msgstr "" - -#: mod/photos.php:1090 -msgid "Upload Photos" -msgstr "" - -#: mod/photos.php:1094 mod/photos.php:1156 -msgid "New album name: " -msgstr "" - -#: mod/photos.php:1095 -msgid "or existing album name: " -msgstr "" - -#: mod/photos.php:1096 -msgid "Do not show a status post for this upload" -msgstr "" - -#: mod/photos.php:1167 -msgid "Edit Album" -msgstr "" - -#: mod/photos.php:1172 -msgid "Show Newest First" -msgstr "" - -#: mod/photos.php:1174 -msgid "Show Oldest First" -msgstr "" - -#: mod/photos.php:1195 mod/photos.php:1698 -msgid "View Photo" -msgstr "" - -#: mod/photos.php:1236 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: mod/photos.php:1238 -msgid "Photo not available" -msgstr "" - -#: mod/photos.php:1301 -msgid "View photo" -msgstr "" - -#: mod/photos.php:1301 -msgid "Edit photo" -msgstr "" - -#: mod/photos.php:1302 -msgid "Use as profile photo" -msgstr "" - -#: mod/photos.php:1327 -msgid "View Full Size" -msgstr "" - -#: mod/photos.php:1414 -msgid "Tags: " -msgstr "" - -#: mod/photos.php:1417 -msgid "[Remove any tag]" -msgstr "" - -#: mod/photos.php:1432 -msgid "New album name" -msgstr "" - -#: mod/photos.php:1433 -msgid "Caption" -msgstr "" - -#: mod/photos.php:1434 -msgid "Add a Tag" -msgstr "" - -#: mod/photos.php:1434 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "" - -#: mod/photos.php:1435 -msgid "Do not rotate" -msgstr "" - -#: mod/photos.php:1436 -msgid "Rotate CW (right)" -msgstr "" - -#: mod/photos.php:1437 -msgid "Rotate CCW (left)" -msgstr "" - -#: mod/photos.php:1634 -msgid "Map" -msgstr "" - -#: mod/photos.php:1704 mod/videos.php:387 -msgid "View Album" -msgstr "" - -#: mod/nogroup.php:43 mod/contacts.php:960 -msgid "Edit contact" -msgstr "" - -#: mod/nogroup.php:63 -msgid "Contacts who are not members of a group" -msgstr "" - -#: mod/community.php:46 -msgid "Community option not available." -msgstr "" - -#: mod/community.php:63 -msgid "Not available." -msgstr "" - -#: mod/community.php:76 -msgid "Local Community" -msgstr "" - -#: mod/community.php:79 -msgid "Posts from local users on this server" -msgstr "" - -#: mod/community.php:87 -msgid "Global Community" -msgstr "" - -#: mod/community.php:90 -msgid "Posts from users of the whole federated network" -msgstr "" - -#: mod/community.php:136 mod/search.php:228 -msgid "No results." -msgstr "" - -#: mod/community.php:180 -msgid "" -"This community stream shows all public posts received by this node. They may " -"not reflect the opinions of this node’s users." -msgstr "" - -#: mod/message.php:73 mod/wallmessage.php:57 -msgid "No recipient selected." -msgstr "" - -#: mod/message.php:77 -msgid "Unable to locate contact information." -msgstr "" - -#: mod/message.php:80 mod/wallmessage.php:63 -msgid "Message could not be sent." -msgstr "" - -#: mod/message.php:83 mod/wallmessage.php:66 -msgid "Message collection failure." -msgstr "" - -#: mod/message.php:86 mod/wallmessage.php:69 -msgid "Message sent." -msgstr "" - -#: mod/message.php:136 -msgid "Do you really want to delete this message?" -msgstr "" - -#: mod/message.php:156 -msgid "Message deleted." -msgstr "" - -#: mod/message.php:185 -msgid "Conversation removed." -msgstr "" - -#: mod/message.php:250 mod/wallmessage.php:132 -msgid "Send Private Message" -msgstr "" - -#: mod/message.php:251 mod/message.php:421 mod/wallmessage.php:134 -msgid "To:" -msgstr "" - -#: mod/message.php:255 mod/message.php:423 mod/wallmessage.php:135 -msgid "Subject:" -msgstr "" - -#: mod/message.php:291 -msgid "No messages." -msgstr "" - -#: mod/message.php:330 -msgid "Message not available." -msgstr "" - -#: mod/message.php:397 -msgid "Delete message" -msgstr "" - -#: mod/message.php:399 mod/message.php:500 -msgid "D, d M Y - g:i A" -msgstr "" - -#: mod/message.php:414 mod/message.php:497 -msgid "Delete conversation" -msgstr "" - -#: mod/message.php:416 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: mod/message.php:420 -msgid "Send Reply" -msgstr "" - -#: mod/message.php:471 -#, php-format -msgid "Unknown sender - %s" -msgstr "" - -#: mod/message.php:473 -#, php-format -msgid "You and %s" -msgstr "" - -#: mod/message.php:475 -#, php-format -msgid "%s and You" -msgstr "" - -#: mod/message.php:503 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "" -msgstr[1] "" - -#: mod/videos.php:139 -msgid "Do you really want to delete this video?" -msgstr "" - -#: mod/videos.php:144 -msgid "Delete Video" -msgstr "" - -#: mod/videos.php:207 -msgid "No videos selected" -msgstr "" - -#: mod/videos.php:396 -msgid "Recent Videos" -msgstr "" - -#: mod/videos.php:398 -msgid "Upload New Videos" -msgstr "" - -#: mod/credits.php:18 -msgid "Credits" -msgstr "" - -#: mod/credits.php:19 -msgid "" -"Friendica is a community project, that would not be possible without the " -"help of many people. Here is a list of those who have contributed to the " -"code or the translation of Friendica. Thank you all!" -msgstr "" - -#: mod/unfollow.php:34 -msgid "Contact wasn't found or can't be unfollowed." -msgstr "" - -#: mod/unfollow.php:47 -msgid "Contact unfollowed" -msgstr "" - -#: mod/unfollow.php:65 mod/dfrn_request.php:662 mod/follow.php:62 -msgid "Submit Request" -msgstr "" - -#: mod/unfollow.php:73 -msgid "You aren't a friend of this contact." -msgstr "" - -#: mod/unfollow.php:79 -msgid "Unfollowing is currently not supported by your network." -msgstr "" - -#: mod/unfollow.php:100 mod/contacts.php:599 -msgid "Disconnect/Unfollow" -msgstr "" - -#: mod/unfollow.php:113 mod/dfrn_request.php:660 mod/follow.php:157 -msgid "Your Identity Address:" -msgstr "" - -#: mod/wall_attach.php:24 mod/wall_attach.php:32 mod/wall_attach.php:83 -#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112 -#: mod/wall_upload.php:155 mod/wall_upload.php:158 -msgid "Invalid request." -msgstr "" - -#: mod/wall_attach.php:101 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "" - -#: mod/wall_attach.php:101 -msgid "Or - did you try to upload an empty file?" -msgstr "" - -#: mod/wall_attach.php:112 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "" - -#: mod/wall_attach.php:136 mod/wall_attach.php:152 -msgid "File upload failed." -msgstr "" - -#: mod/profile.php:194 -msgid "Tips for New Members" -msgstr "" - -#: mod/localtime.php:33 -msgid "Time Conversion" -msgstr "" - -#: mod/localtime.php:35 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "" - -#: mod/localtime.php:39 -#, php-format -msgid "UTC time: %s" -msgstr "" - -#: mod/localtime.php:42 -#, php-format -msgid "Current timezone: %s" -msgstr "" - -#: mod/localtime.php:46 -#, php-format -msgid "Converted localtime: %s" -msgstr "" - -#: mod/localtime.php:52 -msgid "Please select your timezone:" -msgstr "" - -#: mod/dfrn_request.php:94 -msgid "This introduction has already been accepted." -msgstr "" - -#: mod/dfrn_request.php:112 mod/dfrn_request.php:359 -msgid "Profile location is not valid or does not contain profile information." -msgstr "" - -#: mod/dfrn_request.php:116 mod/dfrn_request.php:363 -msgid "Warning: profile location has no identifiable owner name." -msgstr "" - -#: mod/dfrn_request.php:119 mod/dfrn_request.php:366 -msgid "Warning: profile location has no profile photo." -msgstr "" - -#: mod/dfrn_request.php:123 mod/dfrn_request.php:370 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "" -msgstr[1] "" - -#: mod/dfrn_request.php:162 -msgid "Introduction complete." -msgstr "" - -#: mod/dfrn_request.php:199 -msgid "Unrecoverable protocol error." -msgstr "" - -#: mod/dfrn_request.php:226 -msgid "Profile unavailable." -msgstr "" - -#: mod/dfrn_request.php:248 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "" - -#: mod/dfrn_request.php:249 -msgid "Spam protection measures have been invoked." -msgstr "" - -#: mod/dfrn_request.php:250 -msgid "Friends are advised to please try again in 24 hours." -msgstr "" - -#: mod/dfrn_request.php:280 -msgid "Invalid locator" -msgstr "" - -#: mod/dfrn_request.php:316 -msgid "You have already introduced yourself here." -msgstr "" - -#: mod/dfrn_request.php:319 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "" - -#: mod/dfrn_request.php:339 -msgid "Invalid profile URL." -msgstr "" - -#: mod/dfrn_request.php:419 mod/contacts.php:230 -msgid "Failed to update contact record." -msgstr "" - -#: mod/dfrn_request.php:439 -msgid "Your introduction has been sent." -msgstr "" - -#: mod/dfrn_request.php:477 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "" - -#: mod/dfrn_request.php:493 -msgid "Please login to confirm introduction." -msgstr "" - -#: mod/dfrn_request.php:501 -msgid "" -"Incorrect identity currently logged in. Please login to this profile." -msgstr "" - -#: mod/dfrn_request.php:515 mod/dfrn_request.php:532 -msgid "Confirm" -msgstr "" - -#: mod/dfrn_request.php:527 -msgid "Hide this contact" -msgstr "" - -#: mod/dfrn_request.php:530 -#, php-format -msgid "Welcome home %s." -msgstr "" - -#: mod/dfrn_request.php:531 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "" - -#: mod/dfrn_request.php:642 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "" - -#: mod/dfrn_request.php:645 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow " -"this link to find a public Friendica site and join us today." -msgstr "" - -#: mod/dfrn_request.php:650 -msgid "Friend/Connection Request" -msgstr "" - -#: mod/dfrn_request.php:651 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@gnusocial.de" -msgstr "" - -#: mod/dfrn_request.php:652 mod/follow.php:149 -msgid "Please answer the following:" -msgstr "" - -#: mod/dfrn_request.php:653 mod/follow.php:150 -#, php-format -msgid "Does %s know you?" -msgstr "" - -#: mod/dfrn_request.php:654 mod/follow.php:151 -msgid "Add a personal note:" -msgstr "" - -#: mod/dfrn_request.php:657 -msgid "GNU Social (Pleroma, Mastodon)" -msgstr "" - -#: mod/dfrn_request.php:658 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "" - -#: mod/dfrn_request.php:659 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search " -"bar." -msgstr "" - -#: mod/crepair.php:87 -msgid "Contact settings applied." -msgstr "" - -#: mod/crepair.php:89 -msgid "Contact update failed." -msgstr "" - -#: mod/crepair.php:114 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect " -"information your communications with this contact may stop working." -msgstr "" - -#: mod/crepair.php:115 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "" - -#: mod/crepair.php:129 mod/crepair.php:131 -msgid "No mirroring" -msgstr "" - -#: mod/crepair.php:129 -msgid "Mirror as forwarded posting" -msgstr "" - -#: mod/crepair.php:129 mod/crepair.php:131 -msgid "Mirror as my own posting" -msgstr "" - -#: mod/crepair.php:144 -msgid "Return to contact editor" -msgstr "" - -#: mod/crepair.php:146 -msgid "Refetch contact data" -msgstr "" - -#: mod/crepair.php:149 -msgid "Remote Self" -msgstr "" - -#: mod/crepair.php:152 -msgid "Mirror postings from this contact" -msgstr "" - -#: mod/crepair.php:154 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "" - -#: mod/crepair.php:159 -msgid "Account Nickname" -msgstr "" - -#: mod/crepair.php:160 -msgid "@Tagname - overrides Name/Nickname" -msgstr "" - -#: mod/crepair.php:161 -msgid "Account URL" -msgstr "" - -#: mod/crepair.php:162 -msgid "Friend Request URL" -msgstr "" - -#: mod/crepair.php:163 -msgid "Friend Confirm URL" -msgstr "" - -#: mod/crepair.php:164 -msgid "Notification Endpoint URL" -msgstr "" - -#: mod/crepair.php:165 -msgid "Poll/Feed URL" -msgstr "" - -#: mod/crepair.php:166 -msgid "New photo from this URL" -msgstr "" - -#: mod/home.php:39 -#, php-format -msgid "Welcome to %s" -msgstr "" - -#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "" - -#: mod/poke.php:192 -msgid "Poke/Prod" -msgstr "" - -#: mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "" - -#: mod/poke.php:194 -msgid "Recipient" -msgstr "" - -#: mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: mod/poke.php:198 -msgid "Make this post private" -msgstr "" - -#: mod/oexchange.php:30 -msgid "Post successful." -msgstr "" - -#: mod/viewsrc.php:12 -msgid "Access denied." -msgstr "" - -#: mod/notifications.php:37 -msgid "Invalid request identifier." -msgstr "" - -#: mod/notifications.php:46 mod/notifications.php:183 mod/notifications.php:230 -msgid "Discard" -msgstr "" - -#: mod/notifications.php:62 mod/notifications.php:182 mod/notifications.php:266 -#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019 -msgid "Ignore" -msgstr "" - -#: mod/notifications.php:107 -msgid "Network Notifications" -msgstr "" - -#: mod/notifications.php:119 -msgid "Personal Notifications" -msgstr "" - -#: mod/notifications.php:125 -msgid "Home Notifications" -msgstr "" - -#: mod/notifications.php:155 -msgid "Show Ignored Requests" -msgstr "" - -#: mod/notifications.php:155 -msgid "Hide Ignored Requests" -msgstr "" - -#: mod/notifications.php:167 mod/notifications.php:237 -msgid "Notification type: " -msgstr "" - -#: mod/notifications.php:170 -#, php-format -msgid "suggested by %s" -msgstr "" - -#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646 -msgid "Hide this contact from others" -msgstr "" - -#: mod/notifications.php:176 mod/notifications.php:255 -msgid "Post a new friend activity" -msgstr "" - -#: mod/notifications.php:176 mod/notifications.php:255 -msgid "if applicable" -msgstr "" - -#: mod/notifications.php:198 -msgid "Claims to be known to you: " -msgstr "" - -#: mod/notifications.php:199 -msgid "yes" -msgstr "" - -#: mod/notifications.php:199 -msgid "no" -msgstr "" - -#: mod/notifications.php:200 mod/notifications.php:205 -msgid "Shall your connection be bidirectional or not?" -msgstr "" - -#: mod/notifications.php:201 mod/notifications.php:206 -#, php-format -msgid "" -"Accepting %s as a friend allows %s to subscribe to your posts, and you will " -"also receive updates from them in your news feed." -msgstr "" - -#: mod/notifications.php:202 -#, php-format -msgid "" -"Accepting %s as a subscriber allows them to subscribe to your posts, but you " -"will not receive updates from them in your news feed." -msgstr "" - -#: mod/notifications.php:207 -#, php-format -msgid "" -"Accepting %s as a sharer allows them to subscribe to your posts, but you " -"will not receive updates from them in your news feed." -msgstr "" - -#: mod/notifications.php:218 -msgid "Friend" -msgstr "" - -#: mod/notifications.php:219 -msgid "Sharer" -msgstr "" - -#: mod/notifications.php:219 -msgid "Subscriber" -msgstr "" - -#: mod/notifications.php:275 -msgid "No introductions." -msgstr "" - -#: mod/notifications.php:316 -msgid "Show unread" -msgstr "" - -#: mod/notifications.php:316 -msgid "Show all" -msgstr "" - -#: mod/notifications.php:322 -#, php-format -msgid "No more %s notifications." -msgstr "" - -#: mod/p.php:14 -msgid "Not Extended" -msgstr "" - -#: mod/p.php:21 mod/p.php:48 mod/p.php:57 mod/fetch.php:16 mod/fetch.php:52 -#: mod/fetch.php:65 mod/help.php:60 index.php:320 -msgid "Not Found" -msgstr "" - -#: mod/follow.php:45 -msgid "The contact could not be added." -msgstr "" - -#: mod/follow.php:73 -msgid "You already added this contact." -msgstr "" - -#: mod/follow.php:83 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "" - -#: mod/follow.php:90 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "" - -#: mod/follow.php:97 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "" - -#: mod/cal.php:313 -msgid "This calendar format is not supported" -msgstr "" - -#: mod/cal.php:315 -msgid "No exportable data found" -msgstr "" - -#: mod/cal.php:332 -msgid "calendar" -msgstr "" - -#: mod/contacts.php:157 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited." -msgstr[0] "" -msgstr[1] "" - -#: mod/contacts.php:184 mod/contacts.php:400 -msgid "Could not access contact record." -msgstr "" - -#: mod/contacts.php:194 -msgid "Could not locate selected profile." -msgstr "" - -#: mod/contacts.php:228 -msgid "Contact updated." -msgstr "" - -#: mod/contacts.php:421 -msgid "Contact has been blocked" -msgstr "" - -#: mod/contacts.php:421 -msgid "Contact has been unblocked" -msgstr "" - -#: mod/contacts.php:432 -msgid "Contact has been ignored" -msgstr "" - -#: mod/contacts.php:432 -msgid "Contact has been unignored" -msgstr "" - -#: mod/contacts.php:443 -msgid "Contact has been archived" -msgstr "" - -#: mod/contacts.php:443 -msgid "Contact has been unarchived" -msgstr "" - -#: mod/contacts.php:467 -msgid "Drop contact" -msgstr "" - -#: mod/contacts.php:470 mod/contacts.php:823 -msgid "Do you really want to delete this contact?" -msgstr "" - -#: mod/contacts.php:488 -msgid "Contact has been removed." -msgstr "" - -#: mod/contacts.php:519 -#, php-format -msgid "You are mutual friends with %s" -msgstr "" - -#: mod/contacts.php:523 -#, php-format -msgid "You are sharing with %s" -msgstr "" - -#: mod/contacts.php:527 -#, php-format -msgid "%s is sharing with you" -msgstr "" - -#: mod/contacts.php:547 -msgid "Private communications are not available for this contact." -msgstr "" - -#: mod/contacts.php:549 -msgid "Never" -msgstr "" - -#: mod/contacts.php:552 -msgid "(Update was successful)" -msgstr "" - -#: mod/contacts.php:552 -msgid "(Update was not successful)" -msgstr "" - -#: mod/contacts.php:554 mod/contacts.php:992 -msgid "Suggest friends" -msgstr "" - -#: mod/contacts.php:558 -#, php-format -msgid "Network type: %s" -msgstr "" - -#: mod/contacts.php:563 -msgid "Communications lost with this contact!" -msgstr "" - -#: mod/contacts.php:569 -msgid "Fetch further information for feeds" -msgstr "" - -#: mod/contacts.php:571 -msgid "" -"Fetch information like preview pictures, title and teaser from the feed " -"item. You can activate this if the feed doesn't contain much text. Keywords " -"are taken from the meta header in the feed item and are posted as hash tags." -msgstr "" - -#: mod/contacts.php:573 -msgid "Fetch information" -msgstr "" - -#: mod/contacts.php:574 -msgid "Fetch keywords" -msgstr "" - -#: mod/contacts.php:575 -msgid "Fetch information and keywords" -msgstr "" - -#: mod/contacts.php:608 -msgid "Contact" -msgstr "" - -#: mod/contacts.php:611 -msgid "Profile Visibility" -msgstr "" - -#: mod/contacts.php:612 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "" - -#: mod/contacts.php:613 -msgid "Contact Information / Notes" -msgstr "" - -#: mod/contacts.php:614 -msgid "Their personal note" -msgstr "" - -#: mod/contacts.php:616 -msgid "Edit contact notes" -msgstr "" - -#: mod/contacts.php:620 -msgid "Block/Unblock contact" -msgstr "" - -#: mod/contacts.php:621 -msgid "Ignore contact" -msgstr "" - -#: mod/contacts.php:622 -msgid "Repair URL settings" -msgstr "" - -#: mod/contacts.php:623 -msgid "View conversations" -msgstr "" - -#: mod/contacts.php:628 -msgid "Last update:" -msgstr "" - -#: mod/contacts.php:630 -msgid "Update public posts" -msgstr "" - -#: mod/contacts.php:632 mod/contacts.php:1002 -msgid "Update now" -msgstr "" - -#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019 -msgid "Unignore" -msgstr "" - -#: mod/contacts.php:642 -msgid "Currently blocked" -msgstr "" - -#: mod/contacts.php:643 -msgid "Currently ignored" -msgstr "" - -#: mod/contacts.php:644 -msgid "Currently archived" -msgstr "" - -#: mod/contacts.php:645 -msgid "Awaiting connection acknowledge" -msgstr "" - -#: mod/contacts.php:646 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "" - -#: mod/contacts.php:647 -msgid "Notification for new posts" -msgstr "" - -#: mod/contacts.php:647 -msgid "Send a notification of every new post of this contact" -msgstr "" - -#: mod/contacts.php:650 -msgid "Blacklisted keywords" -msgstr "" - -#: mod/contacts.php:650 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "" - -#: mod/contacts.php:667 -msgid "Actions" -msgstr "" - -#: mod/contacts.php:670 -msgid "Contact Settings" -msgstr "" - -#: mod/contacts.php:711 -msgid "Suggestions" -msgstr "" - -#: mod/contacts.php:714 -msgid "Suggest potential friends" -msgstr "" - -#: mod/contacts.php:722 -msgid "Show all contacts" -msgstr "" - -#: mod/contacts.php:727 -msgid "Unblocked" -msgstr "" - -#: mod/contacts.php:730 -msgid "Only show unblocked contacts" -msgstr "" - -#: mod/contacts.php:735 -msgid "Blocked" -msgstr "" - -#: mod/contacts.php:738 -msgid "Only show blocked contacts" -msgstr "" - -#: mod/contacts.php:743 -msgid "Ignored" -msgstr "" - -#: mod/contacts.php:746 -msgid "Only show ignored contacts" -msgstr "" - -#: mod/contacts.php:751 -msgid "Archived" -msgstr "" - -#: mod/contacts.php:754 -msgid "Only show archived contacts" -msgstr "" - -#: mod/contacts.php:759 -msgid "Hidden" -msgstr "" - -#: mod/contacts.php:762 -msgid "Only show hidden contacts" -msgstr "" - -#: mod/contacts.php:818 -msgid "Search your contacts" -msgstr "" - -#: mod/contacts.php:819 mod/search.php:236 -#, php-format -msgid "Results for: %s" -msgstr "" - -#: mod/contacts.php:829 mod/contacts.php:1027 -msgid "Archive" -msgstr "" - -#: mod/contacts.php:829 mod/contacts.php:1027 -msgid "Unarchive" -msgstr "" - -#: mod/contacts.php:832 -msgid "Batch Actions" -msgstr "" - -#: mod/contacts.php:878 -msgid "View all contacts" -msgstr "" - -#: mod/contacts.php:886 mod/common.php:140 -msgid "Common Friends" -msgstr "" - -#: mod/contacts.php:889 -msgid "View all common friends" -msgstr "" - -#: mod/contacts.php:898 -msgid "Advanced Contact Settings" -msgstr "" - -#: mod/contacts.php:930 -msgid "Mutual Friendship" -msgstr "" - -#: mod/contacts.php:934 -msgid "is a fan of yours" -msgstr "" - -#: mod/contacts.php:938 -msgid "you are a fan of" -msgstr "" - -#: mod/contacts.php:1013 -msgid "Toggle Blocked status" -msgstr "" - -#: mod/contacts.php:1021 -msgid "Toggle Ignored status" -msgstr "" - -#: mod/contacts.php:1029 -msgid "Toggle Archive status" -msgstr "" - -#: mod/contacts.php:1037 -msgid "Delete contact" -msgstr "" - -#: mod/bookmarklet.php:51 -msgid "The post was created" -msgstr "" - -#: mod/lostpass.php:27 -msgid "No valid account found." -msgstr "" - -#: mod/lostpass.php:39 -msgid "Password reset request issued. Check your email." -msgstr "" - -#: mod/lostpass.php:45 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" -"\t\tpassword. In order to confirm this request, please select the " -"verification link\n" -"\t\tbelow or paste it into your web browser address bar.\n" -"\n" -"\t\tIf you did NOT request this change, please DO NOT follow the link\n" -"\t\tprovided and ignore and/or delete this email, the request will expire " -"shortly.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." -msgstr "" - -#: mod/lostpass.php:56 -#, php-format -msgid "" -"\n" -"\t\tFollow this link soon to verify your identity:\n" -"\n" -"\t\t%1$s\n" -"\n" -"\t\tYou will then receive a follow-up message containing the new password.\n" -"\t\tYou may change that password from your account settings page after " -"logging in.\n" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%2$s\n" -"\t\tLogin Name:\t%3$s" -msgstr "" - -#: mod/lostpass.php:73 -#, php-format -msgid "Password reset requested at %s" -msgstr "" - -#: mod/lostpass.php:89 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "" - -#: mod/lostpass.php:102 -msgid "Request has expired, please make a new one." -msgstr "" - -#: mod/lostpass.php:117 -msgid "Forgot your Password?" -msgstr "" - -#: mod/lostpass.php:118 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "" - -#: mod/lostpass.php:120 -msgid "Reset" -msgstr "" - -#: mod/lostpass.php:137 -msgid "Your password has been reset as requested." -msgstr "" - -#: mod/lostpass.php:138 -msgid "Your new password is" -msgstr "" - -#: mod/lostpass.php:139 -msgid "Save or copy your new password - and then" -msgstr "" - -#: mod/lostpass.php:140 -msgid "click here to login" -msgstr "" - -#: mod/lostpass.php:141 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "" - -#: mod/lostpass.php:149 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\tinformation for your records (or change your password immediately to\n" -"\t\t\tsomething that you will remember).\n" -"\t\t" -msgstr "" - -#: mod/lostpass.php:155 -#, php-format -msgid "" -"\n" -"\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t%2$s\n" -"\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\tYou may change that password from your account settings page after " -"logging in.\n" -"\t\t" -msgstr "" - -#: mod/lostpass.php:169 -#, php-format -msgid "Your password has been changed at %s" -msgstr "" - -#: mod/install.php:114 -msgid "Friendica Communications Server - Setup" -msgstr "" - -#: mod/install.php:120 -msgid "Could not connect to database." -msgstr "" - -#: mod/install.php:124 -msgid "Could not create table." -msgstr "" - -#: mod/install.php:130 -msgid "Your Friendica site database has been installed." -msgstr "" - -#: mod/install.php:135 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "" - -#: mod/install.php:136 mod/install.php:208 mod/install.php:558 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "" - -#: mod/install.php:148 -msgid "Database already in use." -msgstr "" - -#: mod/install.php:205 -msgid "System check" -msgstr "" - -#: mod/install.php:210 -msgid "Check again" -msgstr "" - -#: mod/install.php:230 -msgid "Database connection" -msgstr "" - -#: mod/install.php:231 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "" - -#: mod/install.php:232 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "" - -#: mod/install.php:233 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "" - -#: mod/install.php:237 -msgid "Database Server Name" -msgstr "" - -#: mod/install.php:238 -msgid "Database Login Name" -msgstr "" - -#: mod/install.php:239 -msgid "Database Login Password" -msgstr "" - -#: mod/install.php:239 -msgid "For security reasons the password must not be empty" -msgstr "" - -#: mod/install.php:240 -msgid "Database Name" -msgstr "" - -#: mod/install.php:241 mod/install.php:281 -msgid "Site administrator email address" -msgstr "" - -#: mod/install.php:241 mod/install.php:281 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "" - -#: mod/install.php:245 mod/install.php:284 -msgid "Please select a default timezone for your website" -msgstr "" - -#: mod/install.php:271 -msgid "Site settings" -msgstr "" - -#: mod/install.php:285 -msgid "System Language:" -msgstr "" - -#: mod/install.php:285 -msgid "" -"Set the default language for your Friendica installation interface and to " -"send emails." -msgstr "" - -#: mod/install.php:325 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "" - -#: mod/install.php:326 -msgid "" -"If you don't have a command line version of PHP installed on your server, " -"you will not be able to run the background processing. See 'Setup the worker'" -msgstr "" - -#: mod/install.php:330 -msgid "PHP executable path" -msgstr "" - -#: mod/install.php:330 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "" - -#: mod/install.php:335 -msgid "Command line PHP" -msgstr "" - -#: mod/install.php:344 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "" - -#: mod/install.php:345 -msgid "Found PHP version: " -msgstr "" - -#: mod/install.php:347 -msgid "PHP cli binary" -msgstr "" - -#: mod/install.php:358 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "" - -#: mod/install.php:359 -msgid "This is required for message delivery to work." -msgstr "" - -#: mod/install.php:361 -msgid "PHP register_argc_argv" -msgstr "" - -#: mod/install.php:384 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "" - -#: mod/install.php:385 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." -msgstr "" - -#: mod/install.php:387 -msgid "Generate encryption keys" -msgstr "" - -#: mod/install.php:394 -msgid "libCurl PHP module" -msgstr "" - -#: mod/install.php:395 -msgid "GD graphics PHP module" -msgstr "" - -#: mod/install.php:396 -msgid "OpenSSL PHP module" -msgstr "" - -#: mod/install.php:397 -msgid "PDO or MySQLi PHP module" -msgstr "" - -#: mod/install.php:398 -msgid "mb_string PHP module" -msgstr "" - -#: mod/install.php:399 -msgid "XML PHP module" -msgstr "" - -#: mod/install.php:400 -msgid "iconv PHP module" -msgstr "" - -#: mod/install.php:401 -msgid "POSIX PHP module" -msgstr "" - -#: mod/install.php:405 mod/install.php:407 -msgid "Apache mod_rewrite module" -msgstr "" - -#: mod/install.php:405 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "" - -#: mod/install.php:413 -msgid "Error: libCURL PHP module required but not installed." -msgstr "" - -#: mod/install.php:417 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "" - -#: mod/install.php:421 -msgid "Error: openssl PHP module required but not installed." -msgstr "" - -#: mod/install.php:425 -msgid "Error: PDO or MySQLi PHP module required but not installed." -msgstr "" - -#: mod/install.php:429 -msgid "Error: The MySQL driver for PDO is not installed." -msgstr "" - -#: mod/install.php:433 -msgid "Error: mb_string PHP module required but not installed." -msgstr "" - -#: mod/install.php:437 -msgid "Error: iconv PHP module required but not installed." -msgstr "" - -#: mod/install.php:441 -msgid "Error: POSIX PHP module required but not installed." -msgstr "" - -#: mod/install.php:451 -msgid "Error, XML PHP module required but not installed." -msgstr "" - -#: mod/install.php:463 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\" " -"in the top folder of your web server and it is unable to do so." -msgstr "" - -#: mod/install.php:464 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "" - -#: mod/install.php:465 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "" - -#: mod/install.php:466 -msgid "" -"You can alternatively skip this procedure and perform a manual installation. " -"Please see the file \"INSTALL.txt\" for instructions." -msgstr "" - -#: mod/install.php:469 -msgid ".htconfig.php is writable" -msgstr "" - -#: mod/install.php:479 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "" - -#: mod/install.php:480 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "" - -#: mod/install.php:481 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." -msgstr "" - -#: mod/install.php:482 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "" - -#: mod/install.php:485 -msgid "view/smarty3 is writable" -msgstr "" - -#: mod/install.php:501 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "" - -#: mod/install.php:503 -msgid "Url rewrite is working" -msgstr "" - -#: mod/install.php:522 -msgid "ImageMagick PHP extension is not installed" -msgstr "" - -#: mod/install.php:524 -msgid "ImageMagick PHP extension is installed" -msgstr "" - -#: mod/install.php:526 -msgid "ImageMagick supports GIF" -msgstr "" - -#: mod/install.php:533 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "" - -#: mod/install.php:556 -msgid "

What next

" -msgstr "" - -#: mod/install.php:557 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the worker." -msgstr "" - -#: mod/install.php:560 -#, php-format -msgid "" -"Go to your new Friendica node registration page " -"and register as new user. Remember to use the same email you have entered as " -"administrator email. This will allow you to enter the site admin panel." -msgstr "" - -#: mod/babel.php:23 -msgid "Source input" -msgstr "" - -#: mod/babel.php:29 -msgid "BBCode::toPlaintext" -msgstr "" - -#: mod/babel.php:35 -msgid "BBCode::convert (raw HTML)" -msgstr "" - -#: mod/babel.php:40 -msgid "BBCode::convert" -msgstr "" - -#: mod/babel.php:46 -msgid "BBCode::convert => HTML::toBBCode" -msgstr "" - -#: mod/babel.php:52 -msgid "BBCode::toMarkdown" -msgstr "" - -#: mod/babel.php:58 -msgid "BBCode::toMarkdown => Markdown::convert" -msgstr "" - -#: mod/babel.php:64 -msgid "BBCode::toMarkdown => Markdown::toBBCode" -msgstr "" - -#: mod/babel.php:70 -msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -msgstr "" - -#: mod/babel.php:77 -msgid "Source input \\x28Diaspora format\\x29" -msgstr "" - -#: mod/babel.php:83 -msgid "Markdown::toBBCode" -msgstr "" - -#: mod/babel.php:90 -msgid "Raw HTML input" -msgstr "" - -#: mod/babel.php:95 -msgid "HTML Input" -msgstr "" - -#: mod/babel.php:101 -msgid "HTML::toBBCode" -msgstr "" - -#: mod/babel.php:107 -msgid "HTML::toPlaintext" -msgstr "" - -#: mod/babel.php:115 -msgid "Source text" -msgstr "" - -#: mod/babel.php:116 -msgid "BBCode" -msgstr "" - -#: mod/babel.php:117 -msgid "Markdown" -msgstr "" - -#: mod/babel.php:118 -msgid "HTML" -msgstr "" - -#: mod/lockview.php:38 mod/lockview.php:46 -msgid "Remote privacy information not available." -msgstr "" - -#: mod/lockview.php:55 -msgid "Visible to:" -msgstr "" - -#: mod/wallmessage.php:49 mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "" - -#: mod/wallmessage.php:60 -msgid "Unable to check your home location." -msgstr "" - -#: mod/wallmessage.php:86 mod/wallmessage.php:95 -msgid "No recipient." -msgstr "" - -#: mod/wallmessage.php:133 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "" - -#: mod/match.php:48 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "" - -#: mod/match.php:104 -msgid "is interested in:" -msgstr "" - -#: mod/match.php:120 -msgid "Profile Match" -msgstr "" - -#: mod/maintenance.php:24 -msgid "System down for maintenance" -msgstr "" - -#: mod/tagrm.php:47 -msgid "Tag removed" -msgstr "" - -#: mod/tagrm.php:85 -msgid "Remove Item Tag" -msgstr "" - -#: mod/tagrm.php:87 -msgid "Select a tag to remove: " -msgstr "" - -#: mod/feedtest.php:20 -msgid "You must be logged in to use this module" -msgstr "" - -#: mod/feedtest.php:48 -msgid "Source URL" -msgstr "" - -#: mod/search.php:105 -msgid "Only logged in users are permitted to perform a search." -msgstr "" - -#: mod/search.php:129 -msgid "Too Many Requests" -msgstr "" - -#: mod/search.php:130 -msgid "Only one search per minute is permitted for not logged in users." -msgstr "" - -#: mod/search.php:234 -#, php-format -msgid "Items tagged with: %s" -msgstr "" - -#: mod/uexport.php:44 -msgid "Export account" -msgstr "" - -#: mod/uexport.php:44 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "" - -#: mod/uexport.php:45 -msgid "Export all" -msgstr "" - -#: mod/uexport.php:45 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "" - -#: mod/newmember.php:11 -msgid "Welcome to Friendica" -msgstr "" - -#: mod/newmember.php:12 -msgid "New Member Checklist" -msgstr "" - -#: mod/newmember.php:14 -msgid "" -"We would like to offer some tips and links to help make your experience " -"enjoyable. Click any item to visit the relevant page. A link to this page " -"will be visible from your home page for two weeks after your initial " -"registration and then will quietly disappear." -msgstr "" - -#: mod/newmember.php:15 -msgid "Getting Started" -msgstr "" - -#: mod/newmember.php:17 -msgid "Friendica Walk-Through" -msgstr "" - -#: mod/newmember.php:17 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to " -"join." -msgstr "" - -#: mod/newmember.php:21 -msgid "Go to Your Settings" -msgstr "" - -#: mod/newmember.php:21 -msgid "" -"On your Settings page - change your initial password. Also make a " -"note of your Identity Address. This looks just like an email address - and " -"will be useful in making friends on the free social web." -msgstr "" - -#: mod/newmember.php:22 -msgid "" -"Review the other settings, particularly the privacy settings. An unpublished " -"directory listing is like having an unlisted phone number. In general, you " -"should probably publish your listing - unless all of your friends and " -"potential friends know exactly how to find you." -msgstr "" - -#: mod/newmember.php:26 -msgid "" -"Upload a profile photo if you have not done so already. Studies have shown " -"that people with real photos of themselves are ten times more likely to make " -"friends than people who do not." -msgstr "" - -#: mod/newmember.php:27 -msgid "Edit Your Profile" -msgstr "" - -#: mod/newmember.php:27 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown " -"visitors." -msgstr "" - -#: mod/newmember.php:28 -msgid "Profile Keywords" -msgstr "" - -#: mod/newmember.php:28 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "" - -#: mod/newmember.php:30 -msgid "Connecting" -msgstr "" - -#: mod/newmember.php:36 -msgid "Importing Emails" -msgstr "" - -#: mod/newmember.php:36 -msgid "" -"Enter your email access information on your Connector Settings page if you " -"wish to import and interact with friends or mailing lists from your email " -"INBOX" -msgstr "" - -#: mod/newmember.php:39 -msgid "Go to Your Contacts Page" -msgstr "" - -#: mod/newmember.php:39 -msgid "" -"Your Contacts page is your gateway to managing friendships and connecting " -"with friends on other networks. Typically you enter their address or site " -"URL in the Add New Contact dialog." -msgstr "" - -#: mod/newmember.php:40 -msgid "Go to Your Site's Directory" -msgstr "" - -#: mod/newmember.php:40 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "" - -#: mod/newmember.php:41 -msgid "Finding New People" -msgstr "" - -#: mod/newmember.php:41 -msgid "" -"On the side panel of the Contacts page are several tools to find new " -"friends. We can match people by interest, look up people by name or " -"interest, and provide suggestions based on network relationships. On a brand " -"new site, friend suggestions will usually begin to be populated within 24 " -"hours." -msgstr "" - -#: mod/newmember.php:45 -msgid "Group Your Contacts" -msgstr "" - -#: mod/newmember.php:45 -msgid "" -"Once you have made some friends, organize them into private conversation " -"groups from the sidebar of your Contacts page and then you can interact with " -"each group privately on your Network page." -msgstr "" - -#: mod/newmember.php:48 -msgid "Why Aren't My Posts Public?" -msgstr "" - -#: mod/newmember.php:48 -msgid "" -"Friendica respects your privacy. By default, your posts will only show up to " -"people you've added as friends. For more information, see the help section " -"from the link above." -msgstr "" - -#: mod/newmember.php:52 -msgid "Getting Help" -msgstr "" - -#: mod/newmember.php:54 -msgid "Go to the Help Section" -msgstr "" - -#: mod/newmember.php:54 -msgid "" -"Our help pages may be consulted for detail on other program " -"features and resources." -msgstr "" - -#: mod/dfrn_confirm.php:132 -msgid "" -"This may occasionally happen if contact was requested by both persons and it " -"has already been approved." -msgstr "" - -#: mod/dfrn_confirm.php:242 -msgid "Response from remote site was not understood." -msgstr "" - -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "" - -#: mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "" - -#: mod/dfrn_confirm.php:275 -msgid "Temporary failure. Please wait and try again." -msgstr "" - -#: mod/dfrn_confirm.php:278 -msgid "Introduction failed or was revoked." -msgstr "" - -#: mod/dfrn_confirm.php:283 -msgid "Remote site reported: " -msgstr "" - -#: mod/dfrn_confirm.php:396 -msgid "Unable to set contact photo." -msgstr "" - -#: mod/dfrn_confirm.php:498 -#, php-format -msgid "No user record found for '%s' " -msgstr "" - -#: mod/dfrn_confirm.php:508 -msgid "Our site encryption key is apparently messed up." -msgstr "" - -#: mod/dfrn_confirm.php:519 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "" - -#: mod/dfrn_confirm.php:535 -msgid "Contact record was not found for you on our site." -msgstr "" - -#: mod/dfrn_confirm.php:549 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "" - -#: mod/dfrn_confirm.php:565 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "" - -#: mod/dfrn_confirm.php:576 -msgid "Unable to set your contact credentials on our system." -msgstr "" - -#: mod/dfrn_confirm.php:631 -msgid "Unable to update your contact profile details on our system" -msgstr "" - -#: mod/dfrn_confirm.php:694 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "" - -#: mod/filer.php:34 -msgid "- select -" -msgstr "" - -#: mod/register.php:99 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "" - -#: mod/register.php:103 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." -msgstr "" - -#: mod/register.php:110 -msgid "Registration successful." -msgstr "" - -#: mod/register.php:115 -msgid "Your registration can not be processed." -msgstr "" - -#: mod/register.php:162 -msgid "Your registration is pending approval by the site owner." -msgstr "" - -#: mod/register.php:220 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "" - -#: mod/register.php:221 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "" - -#: mod/register.php:222 -msgid "Your OpenID (optional): " -msgstr "" - -#: mod/register.php:234 -msgid "Include your profile in member directory?" -msgstr "" - -#: mod/register.php:259 -msgid "Note for the admin" -msgstr "" - -#: mod/register.php:259 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "" - -#: mod/register.php:260 -msgid "Membership on this site is by invitation only." -msgstr "" - -#: mod/register.php:261 -msgid "Your invitation code: " -msgstr "" - -#: mod/register.php:270 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "" - -#: mod/register.php:271 -msgid "" -"Your Email Address: (Initial information will be send there, so this has to " -"be an existing address.)" -msgstr "" - -#: mod/register.php:273 -msgid "Leave empty for an auto generated password." -msgstr "" - -#: mod/register.php:275 -#, php-format -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be 'nickname@%s'." -msgstr "" - -#: mod/register.php:276 -msgid "Choose a nickname: " -msgstr "" - -#: mod/register.php:286 -msgid "Import your profile to this friendica instance" -msgstr "" - -#: mod/common.php:91 -msgid "No contacts in common." -msgstr "" - -#: mod/probe.php:14 mod/webfinger.php:17 -msgid "Only logged in users are permitted to perform a probing." -msgstr "" - -#: mod/help.php:48 -msgid "Help:" -msgstr "" - -#: mod/help.php:63 index.php:325 -msgid "Page not found." -msgstr "" - -#: mod/profperm.php:34 mod/profperm.php:65 -msgid "Invalid profile identifier." -msgstr "" - -#: mod/profperm.php:111 -msgid "Profile Visibility Editor" -msgstr "" - -#: mod/profperm.php:124 -msgid "Visible To" -msgstr "" - -#: mod/profperm.php:140 -msgid "All Contacts (with secure profile access)" -msgstr "" - -#: mod/item.php:114 -msgid "Unable to locate original post." -msgstr "" - -#: mod/item.php:274 -msgid "Empty post discarded." -msgstr "" - -#: mod/item.php:799 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social network." -msgstr "" - -#: mod/item.php:801 -#, php-format -msgid "You may visit them online at %s" -msgstr "" - -#: mod/item.php:802 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "" - -#: mod/item.php:806 -#, php-format -msgid "%s posted an update." -msgstr "" - -#: mod/editpost.php:25 mod/editpost.php:35 -msgid "Item not found" -msgstr "" - -#: mod/editpost.php:42 -msgid "Edit post" -msgstr "" - -#: view/theme/quattro/config.php:76 -msgid "Alignment" -msgstr "" - -#: view/theme/quattro/config.php:76 -msgid "Left" -msgstr "" - -#: view/theme/quattro/config.php:76 -msgid "Center" -msgstr "" - -#: view/theme/quattro/config.php:77 -msgid "Color scheme" -msgstr "" - -#: view/theme/quattro/config.php:78 -msgid "Posts font size" -msgstr "" - -#: view/theme/quattro/config.php:79 -msgid "Textareas font size" -msgstr "" - -#: view/theme/frio/php/Image.php:25 -msgid "Repeat the image" -msgstr "" - -#: view/theme/frio/php/Image.php:25 -msgid "Will repeat your image to fill the background." -msgstr "" - -#: view/theme/frio/php/Image.php:27 -msgid "Stretch" -msgstr "" - -#: view/theme/frio/php/Image.php:27 -msgid "Will stretch to width/height of the image." -msgstr "" - -#: view/theme/frio/php/Image.php:29 -msgid "Resize fill and-clip" -msgstr "" - -#: view/theme/frio/php/Image.php:29 -msgid "Resize to fill and retain aspect ratio." -msgstr "" - -#: view/theme/frio/php/Image.php:31 -msgid "Resize best fit" -msgstr "" - -#: view/theme/frio/php/Image.php:31 -msgid "Resize to best fit and retain aspect ratio." -msgstr "" - -#: view/theme/frio/config.php:97 -msgid "Default" -msgstr "" - -#: view/theme/frio/config.php:109 -msgid "Note" -msgstr "" - -#: view/theme/frio/config.php:109 -msgid "Check image permissions if all users are allowed to visit the image" -msgstr "" - -#: view/theme/frio/config.php:116 -msgid "Select scheme" -msgstr "" - -#: view/theme/frio/config.php:117 -msgid "Navigation bar background color" -msgstr "" - -#: view/theme/frio/config.php:118 -msgid "Navigation bar icon color " -msgstr "" - -#: view/theme/frio/config.php:119 -msgid "Link color" -msgstr "" - -#: view/theme/frio/config.php:120 -msgid "Set the background color" -msgstr "" - -#: view/theme/frio/config.php:121 -msgid "Content background opacity" -msgstr "" - -#: view/theme/frio/config.php:122 -msgid "Set the background image" -msgstr "" - -#: view/theme/frio/config.php:127 -msgid "Login page background image" -msgstr "" - -#: view/theme/frio/config.php:130 -msgid "Login page background color" -msgstr "" - -#: view/theme/frio/config.php:130 -msgid "Leave background image and color empty for theme defaults" -msgstr "" - -#: view/theme/frio/theme.php:238 -msgid "Guest" -msgstr "" - -#: view/theme/frio/theme.php:243 -msgid "Visitor" -msgstr "" - -#: view/theme/vier/config.php:75 -msgid "Comma separated list of helper forums" -msgstr "" - -#: view/theme/vier/config.php:122 -msgid "Set style" -msgstr "" - -#: view/theme/vier/config.php:123 -msgid "Community Pages" -msgstr "" - -#: view/theme/vier/config.php:124 view/theme/vier/theme.php:150 -msgid "Community Profiles" -msgstr "" - -#: view/theme/vier/config.php:125 -msgid "Help or @NewHere ?" -msgstr "" - -#: view/theme/vier/config.php:126 view/theme/vier/theme.php:389 -msgid "Connect Services" -msgstr "" - -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:199 -msgid "Find Friends" -msgstr "" - -#: view/theme/vier/config.php:128 view/theme/vier/theme.php:181 -msgid "Last users" -msgstr "" - -#: view/theme/vier/theme.php:200 -msgid "Local Directory" -msgstr "" - -#: view/theme/vier/theme.php:292 -msgid "Quick Start" -msgstr "" - -#: view/theme/duepuntozero/config.php:55 -msgid "greenzero" -msgstr "" - -#: view/theme/duepuntozero/config.php:56 -msgid "purplezero" -msgstr "" - -#: view/theme/duepuntozero/config.php:57 -msgid "easterbunny" -msgstr "" - -#: view/theme/duepuntozero/config.php:58 -msgid "darkzero" -msgstr "" - -#: view/theme/duepuntozero/config.php:59 -msgid "comix" -msgstr "" - -#: view/theme/duepuntozero/config.php:60 -msgid "slackr" -msgstr "" - -#: view/theme/duepuntozero/config.php:74 -msgid "Variations" +#: src/App.php:513 +msgid "show fewer" msgstr "" #: index.php:472 msgid "toggle mobile" msgstr "" + +#: boot.php:796 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "" diff --git a/view/install/style.css b/view/install/style.css index 2f995d599..d6140a1bb 100644 --- a/view/install/style.css +++ b/view/install/style.css @@ -32,6 +32,9 @@ td.help { td.help blockquote { margin-left: 60px; } +.error_header { + margin-left: 60px; +} input[type="submit"] { margin: 2em 0; } diff --git a/view/lang/fi-fi/messages.po b/view/lang/fi-fi/messages.po index 94a320866..3dcf592fe 100644 --- a/view/lang/fi-fi/messages.po +++ b/view/lang/fi-fi/messages.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-04-22 11:15+0200\n" -"PO-Revision-Date: 2018-04-23 13:50+0000\n" -"Last-Translator: Kris\n" +"POT-Creation-Date: 2018-04-29 07:13+0200\n" +"PO-Revision-Date: 2018-04-29 13:19+0000\n" +"Last-Translator: fabrixxm \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/Friendica/friendica/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,10 +24,67 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: boot.php:795 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "%s päivitys epäonnistui, katso virhelokit." +#: include/items.php:342 mod/notice.php:22 mod/viewsrc.php:21 +#: mod/display.php:72 mod/display.php:252 mod/display.php:354 +#: mod/admin.php:276 mod/admin.php:1870 mod/admin.php:2118 +msgid "Item not found." +msgstr "Kohdetta ei löytynyt." + +#: include/items.php:382 +msgid "Do you really want to delete this item?" +msgstr "Haluatko varmasti poistaa tämän kohteen?" + +#: include/items.php:384 mod/api.php:110 mod/suggest.php:38 +#: mod/dfrn_request.php:653 mod/message.php:138 mod/contacts.php:472 +#: mod/follow.php:150 mod/profiles.php:636 mod/profiles.php:639 +#: mod/profiles.php:661 mod/register.php:237 mod/settings.php:1107 +#: mod/settings.php:1113 mod/settings.php:1120 mod/settings.php:1124 +#: mod/settings.php:1128 mod/settings.php:1132 mod/settings.php:1136 +#: mod/settings.php:1140 mod/settings.php:1160 mod/settings.php:1161 +#: mod/settings.php:1162 mod/settings.php:1163 mod/settings.php:1164 +msgid "Yes" +msgstr "Kyllä" + +#: include/items.php:387 include/conversation.php:1355 mod/fbrowser.php:103 +#: mod/fbrowser.php:134 mod/suggest.php:41 mod/dfrn_request.php:663 +#: mod/tagrm.php:19 mod/tagrm.php:99 mod/editpost.php:149 mod/message.php:141 +#: mod/photos.php:248 mod/photos.php:324 mod/videos.php:147 +#: mod/contacts.php:475 mod/unfollow.php:117 mod/follow.php:161 +#: mod/settings.php:678 mod/settings.php:704 +msgid "Cancel" +msgstr "Peru" + +#: include/items.php:401 mod/allfriends.php:21 mod/api.php:35 mod/api.php:40 +#: mod/attach.php:38 mod/common.php:26 mod/crepair.php:98 mod/nogroup.php:28 +#: mod/repair_ostatus.php:13 mod/suggest.php:60 mod/uimport.php:28 +#: mod/notifications.php:73 mod/dfrn_confirm.php:68 mod/manage.php:131 +#: mod/wall_attach.php:74 mod/wall_attach.php:77 mod/poke.php:150 +#: mod/regmod.php:108 mod/viewcontacts.php:57 mod/wall_upload.php:103 +#: mod/wall_upload.php:106 mod/wallmessage.php:16 mod/wallmessage.php:40 +#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/editpost.php:18 +#: mod/fsuggest.php:80 mod/group.php:26 mod/message.php:59 mod/message.php:104 +#: mod/notes.php:30 mod/photos.php:174 mod/photos.php:1051 mod/cal.php:304 +#: mod/contacts.php:386 mod/delegate.php:25 mod/delegate.php:43 +#: mod/delegate.php:54 mod/events.php:194 mod/item.php:160 +#: mod/ostatus_subscribe.php:16 mod/profile_photo.php:30 +#: mod/profile_photo.php:176 mod/profile_photo.php:187 +#: mod/profile_photo.php:200 mod/unfollow.php:15 mod/unfollow.php:57 +#: mod/unfollow.php:90 mod/dirfind.php:25 mod/follow.php:17 mod/follow.php:54 +#: mod/follow.php:118 mod/profiles.php:182 mod/profiles.php:606 +#: mod/register.php:53 mod/invite.php:20 mod/invite.php:111 mod/network.php:32 +#: mod/settings.php:43 mod/settings.php:142 mod/settings.php:667 index.php:444 +msgid "Permission denied." +msgstr "Käyttöoikeus evätty." + +#: include/items.php:471 +msgid "Archives" +msgstr "Arkisto" + +#: include/items.php:477 view/theme/vier/theme.php:258 +#: src/Content/ForumManager.php:130 src/Content/Widget.php:317 +#: src/Object/Post.php:430 src/App.php:512 +msgid "show more" +msgstr "näytä lisää" #: include/api.php:1202 #, php-format @@ -49,12 +106,12 @@ msgstr[1] "Viikottainen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty. msgid "Monthly posting limit of %d post reached. The post was rejected." msgstr "Kuukausittainen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty." -#: include/api.php:4523 src/Model/User.php:549 src/Model/User.php:557 -#: src/Model/User.php:565 mod/profile_photo.php:85 mod/profile_photo.php:93 +#: include/api.php:4523 mod/photos.php:88 mod/photos.php:194 +#: mod/photos.php:722 mod/photos.php:1149 mod/photos.php:1166 +#: mod/photos.php:1684 mod/profile_photo.php:85 mod/profile_photo.php:93 #: mod/profile_photo.php:101 mod/profile_photo.php:211 -#: mod/profile_photo.php:302 mod/profile_photo.php:312 mod/photos.php:88 -#: mod/photos.php:194 mod/photos.php:722 mod/photos.php:1149 -#: mod/photos.php:1166 mod/photos.php:1684 +#: mod/profile_photo.php:302 mod/profile_photo.php:312 src/Model/User.php:553 +#: src/Model/User.php:561 src/Model/User.php:569 msgid "Profile Photos" msgstr "Profiilin valokuvat" @@ -350,31 +407,49 @@ msgstr "Koko nimi:\t%1$s\\nSivusto:\t%2$s\\nKäyttäjätunnus:\t%3$s (%4$s)" msgid "Please visit %s to approve or reject the request." msgstr "Hyväksy tai hylkää pyyntö %s-sivustossa." +#: include/security.php:81 +msgid "Welcome " +msgstr "Tervetuloa" + +#: include/security.php:82 +msgid "Please upload a profile photo." +msgstr "Lataa profiilikuva." + +#: include/security.php:84 +msgid "Welcome back " +msgstr "Tervetuloa takaisin" + +#: include/security.php:440 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "" + #: include/conversation.php:144 include/conversation.php:282 -#: include/text.php:1753 src/Model/Item.php:1796 +#: include/text.php:1748 src/Model/Item.php:1895 msgid "event" msgstr "tapahtuma" #: include/conversation.php:147 include/conversation.php:157 #: include/conversation.php:285 include/conversation.php:294 -#: src/Model/Item.php:1794 src/Protocol/Diaspora.php:2039 mod/subthread.php:97 -#: mod/tagger.php:72 +#: mod/subthread.php:97 mod/tagger.php:72 src/Model/Item.php:1893 +#: src/Protocol/Diaspora.php:2026 msgid "status" msgstr "tila" #: include/conversation.php:152 include/conversation.php:290 -#: include/text.php:1755 src/Model/Item.php:1794 mod/subthread.php:97 -#: mod/tagger.php:72 +#: include/text.php:1750 mod/subthread.php:97 mod/tagger.php:72 +#: src/Model/Item.php:1893 msgid "photo" msgstr "kuva" -#: include/conversation.php:164 src/Model/Item.php:1667 -#: src/Protocol/Diaspora.php:2035 +#: include/conversation.php:164 src/Model/Item.php:1766 +#: src/Protocol/Diaspora.php:2022 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s tykkää käyttäjän %2$s %3$s" -#: include/conversation.php:167 src/Model/Item.php:1672 +#: include/conversation.php:167 src/Model/Item.php:1771 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "" @@ -394,8 +469,8 @@ msgstr "%1$s ei osallistu tapahtumaan %3$s, jonka järjestää %2$s" msgid "%1$s attends maybe %2$s's %3$s" msgstr "%1$s ehkä osallistuu tapahtumaan %3$s, jonka järjestää %2$s" -#: include/conversation.php:209 src/Protocol/Diaspora.php:2510 -#: mod/dfrn_confirm.php:431 +#: include/conversation.php:209 mod/dfrn_confirm.php:431 +#: src/Protocol/Diaspora.php:2500 #, php-format msgid "%1$s is now friends with %2$s" msgstr "%1$s ja %2$s ovat kavereita" @@ -419,382 +494,373 @@ msgstr "julkaisu/kohde" msgid "%1$s marked %2$s's %3$s as favorite" msgstr "" -#: include/conversation.php:605 mod/profiles.php:355 mod/photos.php:1501 +#: include/conversation.php:608 mod/photos.php:1501 mod/profiles.php:355 msgid "Likes" msgstr "Tykkäyksiä" -#: include/conversation.php:605 mod/profiles.php:359 mod/photos.php:1501 +#: include/conversation.php:608 mod/photos.php:1501 mod/profiles.php:359 msgid "Dislikes" msgstr "Inhokit" -#: include/conversation.php:606 include/conversation.php:1661 +#: include/conversation.php:609 include/conversation.php:1664 #: mod/photos.php:1502 msgid "Attending" msgid_plural "Attending" msgstr[0] "Osallistuu" msgstr[1] "Osallistuu" -#: include/conversation.php:606 mod/photos.php:1502 +#: include/conversation.php:609 mod/photos.php:1502 msgid "Not attending" msgstr "Ei osallistu" -#: include/conversation.php:606 mod/photos.php:1502 +#: include/conversation.php:609 mod/photos.php:1502 msgid "Might attend" msgstr "Ehkä" -#: include/conversation.php:718 src/Object/Post.php:178 mod/photos.php:1569 +#: include/conversation.php:721 mod/photos.php:1569 src/Object/Post.php:178 msgid "Select" msgstr "Valitse" -#: include/conversation.php:719 src/Object/Post.php:179 mod/settings.php:738 -#: mod/admin.php:1812 mod/photos.php:1570 mod/contacts.php:830 -#: mod/contacts.php:1035 +#: include/conversation.php:722 mod/photos.php:1570 mod/contacts.php:830 +#: mod/contacts.php:1035 mod/admin.php:1814 mod/settings.php:740 +#: src/Object/Post.php:179 msgid "Delete" msgstr "Poista" -#: include/conversation.php:757 src/Object/Post.php:363 +#: include/conversation.php:760 src/Object/Post.php:363 #: src/Object/Post.php:364 #, php-format msgid "View %s's profile @ %s" msgstr "Katso %s-henkilön profiilia @ %s" -#: include/conversation.php:769 src/Object/Post.php:351 +#: include/conversation.php:772 src/Object/Post.php:351 msgid "Categories:" msgstr "Luokat:" -#: include/conversation.php:770 src/Object/Post.php:352 +#: include/conversation.php:773 src/Object/Post.php:352 msgid "Filed under:" msgstr "Arkistoitu kansioon:" -#: include/conversation.php:777 src/Object/Post.php:377 +#: include/conversation.php:780 src/Object/Post.php:377 #, php-format msgid "%s from %s" msgstr "%s sovelluksesta %s" -#: include/conversation.php:792 +#: include/conversation.php:795 msgid "View in context" msgstr "Näytä kontekstissa" -#: include/conversation.php:794 include/conversation.php:1334 -#: src/Object/Post.php:402 mod/photos.php:1473 mod/message.php:264 -#: mod/message.php:433 mod/wallmessage.php:145 mod/editpost.php:125 +#: include/conversation.php:797 include/conversation.php:1337 +#: mod/wallmessage.php:145 mod/editpost.php:125 mod/message.php:264 +#: mod/message.php:433 mod/photos.php:1473 src/Object/Post.php:402 msgid "Please wait" msgstr "Odota" -#: include/conversation.php:865 +#: include/conversation.php:868 msgid "remove" msgstr "poista" -#: include/conversation.php:869 +#: include/conversation.php:872 msgid "Delete Selected Items" msgstr "Poista valitut kohteet" -#: include/conversation.php:1039 view/theme/frio/theme.php:352 +#: include/conversation.php:1042 view/theme/frio/theme.php:352 msgid "Follow Thread" msgstr "Seuraa ketjua" -#: include/conversation.php:1040 src/Model/Contact.php:652 +#: include/conversation.php:1043 src/Model/Contact.php:652 msgid "View Status" msgstr "Näytä tila" -#: include/conversation.php:1041 include/conversation.php:1057 -#: src/Model/Contact.php:592 src/Model/Contact.php:605 -#: src/Model/Contact.php:653 mod/directory.php:159 mod/dirfind.php:217 -#: mod/suggest.php:82 mod/allfriends.php:73 mod/match.php:89 +#: include/conversation.php:1044 include/conversation.php:1060 +#: mod/allfriends.php:73 mod/suggest.php:82 mod/match.php:89 +#: mod/directory.php:159 mod/dirfind.php:217 src/Model/Contact.php:592 +#: src/Model/Contact.php:605 src/Model/Contact.php:653 msgid "View Profile" msgstr "Näytä profiilia" -#: include/conversation.php:1042 src/Model/Contact.php:654 +#: include/conversation.php:1045 src/Model/Contact.php:654 msgid "View Photos" msgstr "Näytä kuvia" -#: include/conversation.php:1043 src/Model/Contact.php:655 +#: include/conversation.php:1046 src/Model/Contact.php:655 msgid "Network Posts" msgstr "Verkkojulkaisut" -#: include/conversation.php:1044 src/Model/Contact.php:656 +#: include/conversation.php:1047 src/Model/Contact.php:656 msgid "View Contact" msgstr "Näytä kontaktia" -#: include/conversation.php:1045 src/Model/Contact.php:658 +#: include/conversation.php:1048 src/Model/Contact.php:658 msgid "Send PM" msgstr "Lähetä yksityisviesti" -#: include/conversation.php:1049 src/Model/Contact.php:659 +#: include/conversation.php:1052 src/Model/Contact.php:659 msgid "Poke" msgstr "Tökkää" -#: include/conversation.php:1054 src/Model/Contact.php:606 -#: src/Content/Widget.php:61 mod/dirfind.php:218 mod/suggest.php:83 -#: mod/allfriends.php:74 mod/follow.php:143 mod/contacts.php:596 -#: mod/match.php:90 +#: include/conversation.php:1057 mod/allfriends.php:74 mod/suggest.php:83 +#: mod/match.php:90 mod/contacts.php:596 mod/dirfind.php:218 +#: mod/follow.php:143 view/theme/vier/theme.php:201 src/Content/Widget.php:61 +#: src/Model/Contact.php:606 msgid "Connect/Follow" msgstr "Yhdistä/Seuraa" -#: include/conversation.php:1173 +#: include/conversation.php:1176 #, php-format msgid "%s likes this." msgstr "%s tykkää tästä." -#: include/conversation.php:1176 +#: include/conversation.php:1179 #, php-format msgid "%s doesn't like this." msgstr "%s ei tykkää tästä." -#: include/conversation.php:1179 +#: include/conversation.php:1182 #, php-format msgid "%s attends." msgstr "%s osallistuu." -#: include/conversation.php:1182 +#: include/conversation.php:1185 #, php-format msgid "%s doesn't attend." msgstr "%s ei osallistu." -#: include/conversation.php:1185 +#: include/conversation.php:1188 #, php-format msgid "%s attends maybe." msgstr "%s ehkä osallistuu." -#: include/conversation.php:1196 +#: include/conversation.php:1199 msgid "and" msgstr "ja" -#: include/conversation.php:1202 +#: include/conversation.php:1205 #, php-format msgid "and %d other people" msgstr "ja %d muuta ihmistä" -#: include/conversation.php:1211 +#: include/conversation.php:1214 #, php-format msgid "%2$d people like this" msgstr "%2$d ihmistä tykkää tästä" -#: include/conversation.php:1212 +#: include/conversation.php:1215 #, php-format msgid "%s like this." msgstr "%s tykkää tästä." -#: include/conversation.php:1215 +#: include/conversation.php:1218 #, php-format msgid "%2$d people don't like this" msgstr "%2$d ihmistä ei tykkää tästä." -#: include/conversation.php:1216 +#: include/conversation.php:1219 #, php-format msgid "%s don't like this." msgstr "%s ei tykkää tästä." -#: include/conversation.php:1219 +#: include/conversation.php:1222 #, php-format msgid "%2$d people attend" msgstr "%2$d ihmistä osallistuu" -#: include/conversation.php:1220 +#: include/conversation.php:1223 #, php-format msgid "%s attend." msgstr "%s osallistuu." -#: include/conversation.php:1223 +#: include/conversation.php:1226 #, php-format msgid "%2$d people don't attend" msgstr "%2$d ihmistä ei osallistu" -#: include/conversation.php:1224 +#: include/conversation.php:1227 #, php-format msgid "%s don't attend." msgstr "%s ei osallistu." -#: include/conversation.php:1227 +#: include/conversation.php:1230 #, php-format msgid "%2$d people attend maybe" msgstr "%2$d ihmistä ehkä osallistuu" -#: include/conversation.php:1228 +#: include/conversation.php:1231 #, php-format msgid "%s attend maybe." msgstr "%s ehkä osallistuu." -#: include/conversation.php:1258 include/conversation.php:1274 +#: include/conversation.php:1261 include/conversation.php:1277 msgid "Visible to everybody" msgstr "Näkyy kaikille" -#: include/conversation.php:1259 include/conversation.php:1275 -#: mod/message.php:200 mod/message.php:207 mod/message.php:343 -#: mod/message.php:350 mod/wallmessage.php:120 mod/wallmessage.php:127 +#: include/conversation.php:1262 include/conversation.php:1278 +#: mod/wallmessage.php:120 mod/wallmessage.php:127 mod/message.php:200 +#: mod/message.php:207 mod/message.php:343 mod/message.php:350 msgid "Please enter a link URL:" msgstr "Lisää URL-linkki:" -#: include/conversation.php:1260 include/conversation.php:1276 +#: include/conversation.php:1263 include/conversation.php:1279 msgid "Please enter a video link/URL:" msgstr "Lisää video URL-linkki:" -#: include/conversation.php:1261 include/conversation.php:1277 +#: include/conversation.php:1264 include/conversation.php:1280 msgid "Please enter an audio link/URL:" msgstr "Lisää ääni URL-linkki:" -#: include/conversation.php:1262 include/conversation.php:1278 +#: include/conversation.php:1265 include/conversation.php:1281 msgid "Tag term:" msgstr "Tunniste:" -#: include/conversation.php:1263 include/conversation.php:1279 +#: include/conversation.php:1266 include/conversation.php:1282 #: mod/filer.php:34 msgid "Save to Folder:" msgstr "Tallenna kansioon:" -#: include/conversation.php:1264 include/conversation.php:1280 +#: include/conversation.php:1267 include/conversation.php:1283 msgid "Where are you right now?" msgstr "Mikä on sijaintisi?" -#: include/conversation.php:1265 +#: include/conversation.php:1268 msgid "Delete item(s)?" msgstr "Poista kohde/kohteet?" -#: include/conversation.php:1312 +#: include/conversation.php:1315 msgid "New Post" msgstr "Uusi julkaisu" -#: include/conversation.php:1315 +#: include/conversation.php:1318 msgid "Share" msgstr "Jaa" -#: include/conversation.php:1316 mod/message.php:262 mod/message.php:430 -#: mod/wallmessage.php:143 mod/editpost.php:111 +#: include/conversation.php:1319 mod/wallmessage.php:143 mod/editpost.php:111 +#: mod/message.php:262 mod/message.php:430 msgid "Upload photo" msgstr "Lähetä kuva" -#: include/conversation.php:1317 mod/editpost.php:112 +#: include/conversation.php:1320 mod/editpost.php:112 msgid "upload photo" msgstr "lähetä kuva" -#: include/conversation.php:1318 mod/editpost.php:113 +#: include/conversation.php:1321 mod/editpost.php:113 msgid "Attach file" msgstr "Liitä tiedosto" -#: include/conversation.php:1319 mod/editpost.php:114 +#: include/conversation.php:1322 mod/editpost.php:114 msgid "attach file" msgstr "liitä tiedosto" -#: include/conversation.php:1320 mod/message.php:263 mod/message.php:431 -#: mod/wallmessage.php:144 mod/editpost.php:115 +#: include/conversation.php:1323 mod/wallmessage.php:144 mod/editpost.php:115 +#: mod/message.php:263 mod/message.php:431 msgid "Insert web link" msgstr "Lisää linkki" -#: include/conversation.php:1321 mod/editpost.php:116 +#: include/conversation.php:1324 mod/editpost.php:116 msgid "web link" msgstr "WWW-linkki" -#: include/conversation.php:1322 mod/editpost.php:117 +#: include/conversation.php:1325 mod/editpost.php:117 msgid "Insert video link" msgstr "Lisää videolinkki" -#: include/conversation.php:1323 mod/editpost.php:118 +#: include/conversation.php:1326 mod/editpost.php:118 msgid "video link" msgstr "videolinkki" -#: include/conversation.php:1324 mod/editpost.php:119 +#: include/conversation.php:1327 mod/editpost.php:119 msgid "Insert audio link" msgstr "Lisää äänilinkki" -#: include/conversation.php:1325 mod/editpost.php:120 +#: include/conversation.php:1328 mod/editpost.php:120 msgid "audio link" msgstr "äänilinkki" -#: include/conversation.php:1326 mod/editpost.php:121 +#: include/conversation.php:1329 mod/editpost.php:121 msgid "Set your location" msgstr "Aseta sijaintisi" -#: include/conversation.php:1327 mod/editpost.php:122 +#: include/conversation.php:1330 mod/editpost.php:122 msgid "set location" msgstr "aseta sijainti" -#: include/conversation.php:1328 mod/editpost.php:123 +#: include/conversation.php:1331 mod/editpost.php:123 msgid "Clear browser location" msgstr "Tyhjennä selaimen sijainti" -#: include/conversation.php:1329 mod/editpost.php:124 +#: include/conversation.php:1332 mod/editpost.php:124 msgid "clear location" msgstr "tyhjennä sijainti" -#: include/conversation.php:1331 mod/editpost.php:138 +#: include/conversation.php:1334 mod/editpost.php:138 msgid "Set title" msgstr "Aseta otsikko" -#: include/conversation.php:1333 mod/editpost.php:140 +#: include/conversation.php:1336 mod/editpost.php:140 msgid "Categories (comma-separated list)" msgstr "Luokat (pilkuilla eroteltu luettelo)" -#: include/conversation.php:1335 mod/editpost.php:126 +#: include/conversation.php:1338 mod/editpost.php:126 msgid "Permission settings" msgstr "Käyttöoikeusasetukset" -#: include/conversation.php:1336 mod/editpost.php:155 +#: include/conversation.php:1339 mod/editpost.php:155 msgid "permissions" msgstr "käyttöoikeudet" -#: include/conversation.php:1344 mod/editpost.php:135 +#: include/conversation.php:1347 mod/editpost.php:135 msgid "Public post" msgstr "Julkinen viesti" -#: include/conversation.php:1348 src/Object/Post.php:805 mod/events.php:528 -#: mod/photos.php:1492 mod/photos.php:1531 mod/photos.php:1604 -#: mod/editpost.php:146 +#: include/conversation.php:1351 mod/editpost.php:146 mod/photos.php:1492 +#: mod/photos.php:1531 mod/photos.php:1604 mod/events.php:528 +#: src/Object/Post.php:805 msgid "Preview" msgstr "Esikatselu" -#: include/conversation.php:1352 include/items.php:387 mod/suggest.php:41 -#: mod/settings.php:676 mod/settings.php:702 mod/fbrowser.php:103 -#: mod/fbrowser.php:134 mod/photos.php:248 mod/photos.php:324 -#: mod/message.php:141 mod/videos.php:147 mod/unfollow.php:117 -#: mod/dfrn_request.php:663 mod/follow.php:161 mod/contacts.php:475 -#: mod/tagrm.php:19 mod/tagrm.php:99 mod/editpost.php:149 -msgid "Cancel" -msgstr "Peru" - -#: include/conversation.php:1357 +#: include/conversation.php:1360 msgid "Post to Groups" msgstr "Lähetä ryhmiin" -#: include/conversation.php:1358 +#: include/conversation.php:1361 msgid "Post to Contacts" msgstr "Lähetä kontakteille" -#: include/conversation.php:1359 +#: include/conversation.php:1362 msgid "Private post" msgstr "Yksityinen julkaisu" -#: include/conversation.php:1364 src/Model/Profile.php:342 -#: mod/editpost.php:153 +#: include/conversation.php:1367 mod/editpost.php:153 +#: src/Model/Profile.php:338 msgid "Message" msgstr "Viesti" -#: include/conversation.php:1365 mod/editpost.php:154 +#: include/conversation.php:1368 mod/editpost.php:154 msgid "Browser" msgstr "Selain" -#: include/conversation.php:1632 +#: include/conversation.php:1635 msgid "View all" msgstr "Näytä kaikki" -#: include/conversation.php:1655 +#: include/conversation.php:1658 msgid "Like" msgid_plural "Likes" msgstr[0] "Tykkäys" msgstr[1] "Tykkäyksiä" -#: include/conversation.php:1658 +#: include/conversation.php:1661 msgid "Dislike" msgid_plural "Dislikes" msgstr[0] "Inhokki" msgstr[1] "Inhokit" -#: include/conversation.php:1664 +#: include/conversation.php:1667 msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "Ei osallistu" msgstr[1] "Ei osallistu" -#: include/conversation.php:1667 src/Content/ContactSelector.php:125 +#: include/conversation.php:1670 src/Content/ContactSelector.php:125 msgid "Undecided" msgid_plural "Undecided" msgstr[0] "En ole varma" @@ -805,24 +871,6 @@ msgstr[1] "En ole varma" msgid "Cannot locate DNS info for database server '%s'" msgstr "'%s' tietokantapalvelimen DNS-tieto ei löydy" -#: include/security.php:81 -msgid "Welcome " -msgstr "Tervetuloa" - -#: include/security.php:82 -msgid "Please upload a profile photo." -msgstr "Lataa profiilikuva." - -#: include/security.php:84 -msgid "Welcome back " -msgstr "Tervetuloa takaisin" - -#: include/security.php:440 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "" - #: include/text.php:302 msgid "newer" msgstr "uudempi" @@ -870,8 +918,8 @@ msgstr[1] "%d kontakteja" msgid "View Contacts" msgstr "Näytä kontaktit" -#: include/text.php:1010 mod/notes.php:67 mod/filer.php:35 -#: mod/editpost.php:110 +#: include/text.php:1010 mod/filer.php:35 mod/editpost.php:110 +#: mod/notes.php:67 msgid "Save" msgstr "Tallenna" @@ -879,7 +927,7 @@ msgstr "Tallenna" msgid "Follow" msgstr "Seuraa" -#: include/text.php:1016 src/Content/Nav.php:142 mod/search.php:155 +#: include/text.php:1016 mod/search.php:155 src/Content/Nav.php:142 msgid "Search" msgstr "Haku" @@ -896,14 +944,14 @@ msgstr "Koko teksti" msgid "Tags" msgstr "Tunnisteet" -#: include/text.php:1027 src/Model/Profile.php:961 src/Model/Profile.php:964 -#: src/Content/Nav.php:147 src/Content/Nav.php:208 mod/viewcontacts.php:131 -#: mod/contacts.php:814 mod/contacts.php:875 view/theme/frio/theme.php:270 +#: include/text.php:1027 mod/viewcontacts.php:131 mod/contacts.php:814 +#: mod/contacts.php:875 view/theme/frio/theme.php:270 src/Content/Nav.php:147 +#: src/Content/Nav.php:209 src/Model/Profile.php:955 src/Model/Profile.php:958 msgid "Contacts" msgstr "Yhteystiedot" -#: include/text.php:1030 src/Content/ForumManager.php:125 -#: src/Content/Nav.php:151 view/theme/vier/theme.php:254 +#: include/text.php:1030 view/theme/vier/theme.php:253 +#: src/Content/ForumManager.php:125 src/Content/Nav.php:151 msgid "Forums" msgstr "Foorumit" @@ -955,7 +1003,7 @@ msgstr "torju" msgid "rebuffed" msgstr "torjui" -#: include/text.php:1093 src/Model/Event.php:379 mod/settings.php:943 +#: include/text.php:1093 mod/settings.php:945 src/Model/Event.php:379 msgid "Monday" msgstr "Maanantai" @@ -979,7 +1027,7 @@ msgstr "Perjantai" msgid "Saturday" msgstr "Lauantai" -#: include/text.php:1093 src/Model/Event.php:378 mod/settings.php:943 +#: include/text.php:1093 mod/settings.php:945 src/Model/Event.php:378 msgid "Sunday" msgstr "Sunnuntai" @@ -1113,755 +1161,4569 @@ msgstr "Katso video" msgid "bytes" msgstr "tavua" -#: include/text.php:1374 include/text.php:1385 include/text.php:1421 +#: include/text.php:1374 include/text.php:1385 include/text.php:1418 msgid "Click to open/close" msgstr "Klikkaa auki/kiinni" -#: include/text.php:1538 +#: include/text.php:1533 msgid "View on separate page" msgstr "Katso erillisellä sivulla" -#: include/text.php:1539 +#: include/text.php:1534 msgid "view on separate page" msgstr "katso erillisellä sivulla" -#: include/text.php:1544 include/text.php:1551 src/Model/Event.php:594 +#: include/text.php:1539 include/text.php:1546 src/Model/Event.php:594 msgid "link to source" msgstr "linkki lähteeseen" -#: include/text.php:1757 +#: include/text.php:1752 msgid "activity" msgstr "toiminta" -#: include/text.php:1759 src/Object/Post.php:429 src/Object/Post.php:441 +#: include/text.php:1754 src/Object/Post.php:429 src/Object/Post.php:441 msgid "comment" msgid_plural "comments" msgstr[0] "kommentoi" msgstr[1] "kommentoi" -#: include/text.php:1762 +#: include/text.php:1757 msgid "post" msgstr "julkaisu" -#: include/text.php:1919 +#: include/text.php:1914 msgid "Item filed" msgstr "Kohde arkistoitu" -#: include/items.php:342 mod/display.php:72 mod/display.php:252 -#: mod/display.php:354 mod/admin.php:276 mod/admin.php:1868 mod/admin.php:2116 -#: mod/viewsrc.php:21 mod/notice.php:22 -msgid "Item not found." -msgstr "Kohdetta ei löytynyt." +#: mod/allfriends.php:51 +msgid "No friends to display." +msgstr "Ei näytettäviä kavereita." -#: include/items.php:382 -msgid "Do you really want to delete this item?" -msgstr "Haluatko varmasti poistaa tämän kohteen?" - -#: include/items.php:384 mod/suggest.php:38 mod/profiles.php:636 -#: mod/profiles.php:639 mod/profiles.php:661 mod/api.php:110 -#: mod/settings.php:1105 mod/settings.php:1111 mod/settings.php:1118 -#: mod/settings.php:1122 mod/settings.php:1126 mod/settings.php:1130 -#: mod/settings.php:1134 mod/settings.php:1138 mod/settings.php:1158 -#: mod/settings.php:1159 mod/settings.php:1160 mod/settings.php:1161 -#: mod/settings.php:1162 mod/message.php:138 mod/dfrn_request.php:653 -#: mod/follow.php:150 mod/contacts.php:472 mod/register.php:237 -msgid "Yes" -msgstr "Kyllä" - -#: include/items.php:401 mod/dirfind.php:25 mod/repair_ostatus.php:13 -#: mod/suggest.php:60 mod/profile_photo.php:30 mod/profile_photo.php:176 -#: mod/profile_photo.php:187 mod/profile_photo.php:200 mod/manage.php:131 -#: mod/uimport.php:28 mod/invite.php:20 mod/invite.php:111 mod/network.php:32 -#: mod/profiles.php:182 mod/profiles.php:606 mod/events.php:194 -#: mod/fsuggest.php:80 mod/attach.php:38 mod/allfriends.php:21 -#: mod/viewcontacts.php:57 mod/ostatus_subscribe.php:16 mod/api.php:35 -#: mod/api.php:40 mod/settings.php:42 mod/settings.php:141 -#: mod/settings.php:665 mod/regmod.php:108 mod/group.php:26 -#: mod/delegate.php:25 mod/delegate.php:43 mod/delegate.php:54 -#: mod/photos.php:174 mod/photos.php:1051 mod/nogroup.php:28 -#: mod/message.php:59 mod/message.php:104 mod/unfollow.php:15 -#: mod/unfollow.php:57 mod/unfollow.php:90 mod/wall_attach.php:74 -#: mod/wall_attach.php:77 mod/notes.php:30 mod/crepair.php:98 mod/poke.php:150 -#: mod/notifications.php:73 mod/follow.php:17 mod/follow.php:54 -#: mod/follow.php:118 mod/cal.php:304 mod/contacts.php:386 -#: mod/wallmessage.php:16 mod/wallmessage.php:40 mod/wallmessage.php:79 -#: mod/wallmessage.php:103 mod/dfrn_confirm.php:68 mod/wall_upload.php:103 -#: mod/wall_upload.php:106 mod/register.php:53 mod/common.php:26 -#: mod/item.php:160 mod/editpost.php:18 index.php:444 -msgid "Permission denied." -msgstr "Käyttöoikeus evätty." - -#: include/items.php:471 -msgid "Archives" -msgstr "Arkisto" - -#: include/items.php:477 src/Content/Widget.php:312 -#: src/Content/ForumManager.php:130 src/App.php:512 src/Object/Post.php:430 -#: view/theme/vier/theme.php:259 -msgid "show more" -msgstr "näytä lisää" - -#: src/Model/Item.php:1677 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s osallistuu tapahtumaan %3$s, jonka järjestää %2$s" - -#: src/Model/Item.php:1682 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s ei osallistu tapahtumaan %3$s, jonka järjestää %2$s" - -#: src/Model/Item.php:1687 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s ehkä osallistuu tapahtumaan %3$s, jonka järjestää %2$s" - -#: src/Model/Contact.php:657 -msgid "Drop Contact" -msgstr "Poista kontakti" - -#: src/Model/Contact.php:1060 -msgid "Organisation" -msgstr "Järjestö" - -#: src/Model/Contact.php:1063 -msgid "News" -msgstr "Uutiset" - -#: src/Model/Contact.php:1066 -msgid "Forum" -msgstr "Keskustelupalsta" - -#: src/Model/Contact.php:1235 mod/dfrn_request.php:345 -msgid "Disallowed profile URL." -msgstr "Kielletty profiiliosoite." - -#: src/Model/Contact.php:1240 mod/friendica.php:128 mod/admin.php:353 -#: mod/admin.php:371 mod/dfrn_request.php:351 -msgid "Blocked domain" -msgstr "Estetty verkkotunnus" - -#: src/Model/Contact.php:1245 -msgid "Connect URL missing." -msgstr "Yhteys URL-linkki puuttuu." - -#: src/Model/Contact.php:1254 -msgid "" -"The contact could not be added. Please check the relevant network " -"credentials in your Settings -> Social Networks page." -msgstr "" - -#: src/Model/Contact.php:1301 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "" - -#: src/Model/Contact.php:1302 src/Model/Contact.php:1316 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Yhteensopivia viestintäprotokolleja tai syötteitä ei löytynyt." - -#: src/Model/Contact.php:1314 -msgid "The profile address specified does not provide adequate information." -msgstr "Annettu profiiliosoite ei sisällä riittävästi tietoa." - -#: src/Model/Contact.php:1319 -msgid "An author or name was not found." -msgstr "" - -#: src/Model/Contact.php:1322 -msgid "No browser URL could be matched to this address." -msgstr "" - -#: src/Model/Contact.php:1325 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "" - -#: src/Model/Contact.php:1326 -msgid "Use mailto: in front of address to force email check." -msgstr "" - -#: src/Model/Contact.php:1332 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "" - -#: src/Model/Contact.php:1337 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "" - -#: src/Model/Contact.php:1388 -msgid "Unable to retrieve contact information." -msgstr "Kontaktin tietoja ei voitu hakea." - -#: src/Model/Contact.php:1537 mod/dfrn_request.php:568 -#: mod/dfrn_confirm.php:661 -msgid "[Name Withheld]" -msgstr "[Nimi jätetty pois]" - -#: src/Model/Contact.php:1605 src/Protocol/DFRN.php:1482 -#, php-format -msgid "%s's birthday" -msgstr "%s: syntymäpäivä" - -#: src/Model/Contact.php:1606 src/Protocol/DFRN.php:1483 -#, php-format -msgid "Happy Birthday %s" -msgstr "Hyvää syntymäpäivää %s" - -#: src/Model/Mail.php:40 src/Model/Mail.php:174 -msgid "[no subject]" -msgstr "[ei aihetta]" - -#: src/Model/Profile.php:97 -msgid "Requested account is not available." -msgstr "Pyydetty käyttäjätili ei ole saatavilla." - -#: src/Model/Profile.php:118 mod/profile.php:37 -msgid "Requested profile is not available." -msgstr "Pyydettyä profiilia ei saatavilla." - -#: src/Model/Profile.php:168 src/Model/Profile.php:399 -#: src/Model/Profile.php:863 -msgid "Edit profile" -msgstr "Muokkaa profiilia" - -#: src/Model/Profile.php:297 src/Content/Widget.php:37 mod/dirfind.php:215 -#: mod/suggest.php:101 mod/allfriends.php:90 mod/match.php:105 +#: mod/allfriends.php:90 mod/suggest.php:101 mod/match.php:105 +#: mod/dirfind.php:215 src/Content/Widget.php:37 src/Model/Profile.php:293 msgid "Connect" msgstr "Yhdistä" -#: src/Model/Profile.php:336 -msgid "Atom feed" -msgstr "Atom -syöte" +#: mod/api.php:85 mod/api.php:107 +msgid "Authorize application connection" +msgstr "Vahvista sovellusyhteys" -#: src/Model/Profile.php:372 src/Content/Nav.php:205 -msgid "Profiles" -msgstr "Profiilit" +#: mod/api.php:86 +msgid "Return to your app and insert this Securty Code:" +msgstr "Palaa takaisin sovellukseen ja lisää tämä turvakoodi:" -#: src/Model/Profile.php:372 -msgid "Manage/edit profiles" -msgstr "Hallitse/muokkaa profiilit" +#: mod/api.php:95 +msgid "Please login to continue." +msgstr "Ole hyvä ja kirjaudu jatkaaksesi." -#: src/Model/Profile.php:379 src/Model/Profile.php:401 mod/profiles.php:777 -msgid "Change profile photo" -msgstr "Vaihda profiilikuva" +#: mod/api.php:109 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Haluatko antaa tälle sovellukselle luvan hakea viestejäsi ja yhteystietojasi ja/tai luoda uusia viestejä?" -#: src/Model/Profile.php:380 mod/profiles.php:778 -msgid "Create New Profile" -msgstr "Luo uusi profiili" +#: mod/api.php:111 mod/dfrn_request.php:653 mod/follow.php:150 +#: mod/profiles.php:636 mod/profiles.php:640 mod/profiles.php:661 +#: mod/register.php:238 mod/settings.php:1107 mod/settings.php:1113 +#: mod/settings.php:1120 mod/settings.php:1124 mod/settings.php:1128 +#: mod/settings.php:1132 mod/settings.php:1136 mod/settings.php:1140 +#: mod/settings.php:1160 mod/settings.php:1161 mod/settings.php:1162 +#: mod/settings.php:1163 mod/settings.php:1164 +msgid "No" +msgstr "Ei" -#: src/Model/Profile.php:389 mod/profiles.php:767 -msgid "Profile Image" -msgstr "Profiilikuva" +#: mod/apps.php:14 index.php:273 +msgid "You must be logged in to use addons. " +msgstr "Sinun pitää kirjautua sisään, jotta voit käyttää lisäosia" -#: src/Model/Profile.php:392 mod/profiles.php:769 -msgid "visible to everybody" -msgstr "näkyvissä kaikille" +#: mod/apps.php:19 +msgid "Applications" +msgstr "Sovellukset" -#: src/Model/Profile.php:393 mod/profiles.php:675 mod/profiles.php:770 -msgid "Edit visibility" -msgstr "Muokkaa näkyvyyttä" +#: mod/apps.php:22 +msgid "No installed applications." +msgstr "Ei asennettuja sovelluksia." -#: src/Model/Profile.php:417 src/Model/Event.php:60 src/Model/Event.php:85 -#: src/Model/Event.php:421 src/Model/Event.php:900 mod/directory.php:148 -#: mod/events.php:518 mod/notifications.php:247 mod/contacts.php:660 -msgid "Location:" -msgstr "Sijainti:" +#: mod/attach.php:15 +msgid "Item not available." +msgstr "Kohde ei saatavilla." -#: src/Model/Profile.php:420 src/Model/Profile.php:749 mod/directory.php:151 -#: mod/notifications.php:253 -msgid "Gender:" -msgstr "Sukupuoli:" +#: mod/attach.php:25 +msgid "Item was not found." +msgstr "Kohdetta ei löytynyt." -#: src/Model/Profile.php:421 src/Model/Profile.php:773 mod/directory.php:152 -msgid "Status:" -msgstr "Tila:" +#: mod/common.php:91 +msgid "No contacts in common." +msgstr "Ei yhteisiä kontakteja." -#: src/Model/Profile.php:422 src/Model/Profile.php:790 mod/directory.php:153 -msgid "Homepage:" -msgstr "Kotisivu:" +#: mod/common.php:140 mod/contacts.php:886 +msgid "Common Friends" +msgstr "Yhteisiä kavereita" -#: src/Model/Profile.php:423 src/Model/Profile.php:810 mod/directory.php:154 -#: mod/notifications.php:249 mod/contacts.php:664 -msgid "About:" -msgstr "Lisätietoja:" +#: mod/credits.php:18 +msgid "Credits" +msgstr "Lopputekstit" -#: src/Model/Profile.php:424 mod/contacts.php:662 -msgid "XMPP:" -msgstr "XMPP:" - -#: src/Model/Profile.php:520 mod/notifications.php:261 mod/contacts.php:71 -msgid "Network:" -msgstr "Verkko:" - -#: src/Model/Profile.php:550 src/Model/Profile.php:643 -msgid "g A l F d" +#: mod/credits.php:19 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" msgstr "" -#: src/Model/Profile.php:551 -msgid "F d" +#: mod/crepair.php:87 +msgid "Contact settings applied." +msgstr "Kontaktiasetukset tallennettu." + +#: mod/crepair.php:89 +msgid "Contact update failed." +msgstr "Kontaktipäivitys epäonnistui." + +#: mod/crepair.php:110 mod/dfrn_confirm.php:131 mod/fsuggest.php:30 +#: mod/fsuggest.php:96 +msgid "Contact not found." +msgstr "Kontaktia ei ole." + +#: mod/crepair.php:114 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "VAROITUS: Tämä on erittäin vaativaa ja jos kirjoitat virheellisiä tietoja, viestintäsi tämän henkilön kanssa voi lakata toimimasta." + +#: mod/crepair.php:115 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Ole hyvä ja paina selaimesi 'Takaisin'-painiketta nyt, jos olet epävarma tämän sivun toiminnoista." + +#: mod/crepair.php:129 mod/crepair.php:131 +msgid "No mirroring" +msgstr "Ei peilausta" + +#: mod/crepair.php:129 +msgid "Mirror as forwarded posting" +msgstr "Peilaa välitettynä julkaisuna" + +#: mod/crepair.php:129 mod/crepair.php:131 +msgid "Mirror as my own posting" +msgstr "Peilaa omana julkaisuna" + +#: mod/crepair.php:144 +msgid "Return to contact editor" +msgstr "Palaa kontaktin muokkaamiseen" + +#: mod/crepair.php:146 +msgid "Refetch contact data" msgstr "" -#: src/Model/Profile.php:608 src/Model/Profile.php:707 -msgid "[today]" -msgstr "[tänään]" +#: mod/crepair.php:148 mod/manage.php:184 mod/localtime.php:56 +#: mod/poke.php:199 mod/fsuggest.php:114 mod/message.php:265 +#: mod/message.php:432 mod/photos.php:1080 mod/photos.php:1160 +#: mod/photos.php:1445 mod/photos.php:1491 mod/photos.php:1530 +#: mod/photos.php:1603 mod/contacts.php:610 mod/events.php:530 +#: mod/profiles.php:672 mod/install.php:251 mod/install.php:290 +#: mod/invite.php:154 view/theme/duepuntozero/config.php:71 +#: view/theme/frio/config.php:118 view/theme/quattro/config.php:73 +#: view/theme/vier/config.php:119 src/Object/Post.php:796 +msgid "Submit" +msgstr "Lähetä" -#: src/Model/Profile.php:619 -msgid "Birthday Reminders" -msgstr "Syntymäpäivämuistutukset" - -#: src/Model/Profile.php:620 -msgid "Birthdays this week:" -msgstr "Syntymäpäiviä tällä viikolla:" - -#: src/Model/Profile.php:694 -msgid "[No description]" -msgstr "[Ei kuvausta]" - -#: src/Model/Profile.php:721 -msgid "Event Reminders" -msgstr "Tapahtumamuistutukset" - -#: src/Model/Profile.php:722 -msgid "Events this week:" -msgstr "Tapahtumia tällä viikolla:" - -#: src/Model/Profile.php:734 src/Model/Profile.php:867 -#: src/Model/Profile.php:900 src/Content/Nav.php:101 mod/contacts.php:671 -#: mod/contacts.php:863 mod/newmember.php:24 mod/profperm.php:113 -#: view/theme/frio/theme.php:260 -msgid "Profile" -msgstr "Profiili" - -#: src/Model/Profile.php:742 mod/settings.php:1209 -msgid "Full Name:" -msgstr "Koko nimi:" - -#: src/Model/Profile.php:745 -msgid "Member since:" -msgstr "Liittymispäivämäärä:" - -#: src/Model/Profile.php:753 -msgid "j F, Y" +#: mod/crepair.php:149 +msgid "Remote Self" msgstr "" -#: src/Model/Profile.php:754 -msgid "j F" +#: mod/crepair.php:152 +msgid "Mirror postings from this contact" +msgstr "Peilaa tämän kontaktin julkaisut" + +#: mod/crepair.php:154 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." msgstr "" -#: src/Model/Profile.php:762 src/Util/Temporal.php:147 -msgid "Birthday:" -msgstr "Syntymäpäivä:" +#: mod/crepair.php:158 mod/admin.php:490 mod/admin.php:1798 mod/admin.php:1809 +#: mod/admin.php:1822 mod/admin.php:1838 mod/settings.php:679 +#: mod/settings.php:705 +msgid "Name" +msgstr "Nimi" -#: src/Model/Profile.php:769 -msgid "Age:" -msgstr "Ikä:" +#: mod/crepair.php:159 +msgid "Account Nickname" +msgstr "Tilin lempinimi" -#: src/Model/Profile.php:782 -#, php-format -msgid "for %1$d %2$s" -msgstr "" +#: mod/crepair.php:160 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tagname - ohittaa Nimen/Nimimerkin" -#: src/Model/Profile.php:786 mod/profiles.php:694 -msgid "Sexual Preference:" -msgstr "Seksuaalinen suuntautuminen:" +#: mod/crepair.php:161 +msgid "Account URL" +msgstr "Tilin URL-osoite" -#: src/Model/Profile.php:794 mod/profiles.php:721 -msgid "Hometown:" -msgstr "Kotikaupunki:" +#: mod/crepair.php:162 +msgid "Friend Request URL" +msgstr "URL kaveripyyntöä varten" -#: src/Model/Profile.php:798 mod/notifications.php:251 mod/follow.php:174 -#: mod/contacts.php:666 -msgid "Tags:" -msgstr "Tunnisteet:" +#: mod/crepair.php:163 +msgid "Friend Confirm URL" +msgstr "URL kaverin vahvistusta varten" -#: src/Model/Profile.php:802 mod/profiles.php:722 -msgid "Political Views:" -msgstr "Politiikka:" +#: mod/crepair.php:164 +msgid "Notification Endpoint URL" +msgstr "URL huomautuksia varten" -#: src/Model/Profile.php:806 -msgid "Religion:" -msgstr "Uskonto:" +#: mod/crepair.php:165 +msgid "Poll/Feed URL" +msgstr "URL äänestyksiä/syötteitä varten" -#: src/Model/Profile.php:814 -msgid "Hobbies/Interests:" -msgstr "Harrastukset:" +#: mod/crepair.php:166 +msgid "New photo from this URL" +msgstr "Uusi kuva osoitteesta" -#: src/Model/Profile.php:818 mod/profiles.php:726 -msgid "Likes:" -msgstr "Tykkäykset:" - -#: src/Model/Profile.php:822 mod/profiles.php:727 -msgid "Dislikes:" -msgstr "Ei tykkää:" - -#: src/Model/Profile.php:826 -msgid "Contact information and Social Networks:" -msgstr "Yhteystiedot ja sosiaalinen media:" - -#: src/Model/Profile.php:830 -msgid "Musical interests:" -msgstr "Musiikki:" - -#: src/Model/Profile.php:834 -msgid "Books, literature:" -msgstr "Kirjat, kirjallisuus:" - -#: src/Model/Profile.php:838 -msgid "Television:" -msgstr "Televisio:" - -#: src/Model/Profile.php:842 -msgid "Film/dance/culture/entertainment:" -msgstr "Elokuvat/tanssit/kulttuuri/viihde:" - -#: src/Model/Profile.php:846 -msgid "Love/Romance:" -msgstr "Rakkaus/romanssi:" - -#: src/Model/Profile.php:850 -msgid "Work/employment:" -msgstr "Työ:" - -#: src/Model/Profile.php:854 -msgid "School/education:" -msgstr "Koulutus:" - -#: src/Model/Profile.php:859 -msgid "Forums:" -msgstr "Foorumit:" - -#: src/Model/Profile.php:868 mod/events.php:531 -msgid "Basic" -msgstr "" - -#: src/Model/Profile.php:869 mod/events.php:532 mod/admin.php:1351 -#: mod/contacts.php:895 -msgid "Advanced" -msgstr "" - -#: src/Model/Profile.php:892 src/Content/Nav.php:100 mod/contacts.php:669 -#: mod/contacts.php:855 view/theme/frio/theme.php:259 -msgid "Status" -msgstr "Tila" - -#: src/Model/Profile.php:895 mod/unfollow.php:132 mod/follow.php:186 -#: mod/contacts.php:858 -msgid "Status Messages and Posts" -msgstr "Statusviestit ja postaukset" - -#: src/Model/Profile.php:903 mod/contacts.php:866 -msgid "Profile Details" -msgstr "Profiilitiedot" - -#: src/Model/Profile.php:908 src/Content/Nav.php:102 mod/fbrowser.php:34 -#: view/theme/frio/theme.php:261 +#: mod/fbrowser.php:34 view/theme/frio/theme.php:261 src/Content/Nav.php:102 +#: src/Model/Profile.php:902 msgid "Photos" msgstr "Kuvat" -#: src/Model/Profile.php:911 mod/photos.php:108 -msgid "Photo Albums" -msgstr "Valokuva-albumit" - -#: src/Model/Profile.php:916 src/Model/Profile.php:919 src/Content/Nav.php:103 -#: view/theme/frio/theme.php:262 -msgid "Videos" -msgstr "Videot" - -#: src/Model/Profile.php:928 src/Model/Profile.php:939 src/Content/Nav.php:104 -#: src/Content/Nav.php:169 mod/events.php:391 mod/cal.php:274 -#: view/theme/frio/theme.php:263 view/theme/frio/theme.php:267 -msgid "Events" -msgstr "Tapahtumat" - -#: src/Model/Profile.php:931 src/Model/Profile.php:942 src/Content/Nav.php:169 -#: view/theme/frio/theme.php:267 -msgid "Events and Calendar" -msgstr "Tapahtumat ja kalenteri" - -#: src/Model/Profile.php:950 mod/notes.php:52 -msgid "Personal Notes" -msgstr "Henkilökohtaiset tiedot" - -#: src/Model/Profile.php:953 -msgid "Only You Can See This" -msgstr "Vain sinä näet tämän" - -#: src/Model/Event.php:36 src/Model/Event.php:814 mod/localtime.php:19 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419 -#: src/Model/Event.php:882 -msgid "Starts:" -msgstr "Alkaa:" - -#: src/Model/Event.php:56 src/Model/Event.php:76 src/Model/Event.php:420 -#: src/Model/Event.php:886 -msgid "Finishes:" -msgstr "Päättyy:" - -#: src/Model/Event.php:368 -msgid "all-day" -msgstr "koko päivä" - -#: src/Model/Event.php:391 -msgid "Jun" -msgstr "Kes." - -#: src/Model/Event.php:394 -msgid "Sept" -msgstr "Syy." - -#: src/Model/Event.php:412 mod/events.php:400 mod/cal.php:280 -msgid "today" -msgstr "tänään" - -#: src/Model/Event.php:413 src/Util/Temporal.php:304 mod/events.php:401 -#: mod/cal.php:281 -msgid "month" -msgstr "kuukausi" - -#: src/Model/Event.php:414 src/Util/Temporal.php:305 mod/events.php:402 -#: mod/cal.php:282 -msgid "week" -msgstr "viikko" - -#: src/Model/Event.php:415 src/Util/Temporal.php:306 mod/events.php:403 -#: mod/cal.php:283 -msgid "day" -msgstr "päivä" - -#: src/Model/Event.php:417 -msgid "No events to display" -msgstr "Ei näytettäviä tapahtumia." - -#: src/Model/Event.php:543 -msgid "l, F j" -msgstr "l, F j" - -#: src/Model/Event.php:566 -msgid "Edit event" -msgstr "Muokkaa tapahtumaa" - -#: src/Model/Event.php:567 -msgid "Duplicate event" -msgstr "Monista tapahtuma" - -#: src/Model/Event.php:568 -msgid "Delete event" -msgstr "Poista tapahtuma" - -#: src/Model/Event.php:815 -msgid "D g:i A" -msgstr "" - -#: src/Model/Event.php:816 -msgid "g:i A" -msgstr "" - -#: src/Model/Event.php:901 src/Model/Event.php:903 -msgid "Show map" -msgstr "Näytä kartta" - -#: src/Model/Event.php:902 -msgid "Hide map" -msgstr "Piilota kartta" - -#: src/Model/Group.php:44 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "" - -#: src/Model/Group.php:341 -msgid "Default privacy group for new contacts" -msgstr "Oletusryhmä uusille kontakteille" - -#: src/Model/Group.php:374 -msgid "Everybody" -msgstr "Kaikki" - -#: src/Model/Group.php:394 -msgid "edit" -msgstr "muokkaa" - -#: src/Model/Group.php:413 mod/network.php:202 -msgid "add" -msgstr "lisää" - -#: src/Model/Group.php:414 mod/newmember.php:43 -msgid "Groups" -msgstr "Ryhmät" - -#: src/Model/Group.php:418 -msgid "Edit group" -msgstr "Muokkaa ryhmää" - -#: src/Model/Group.php:419 -msgid "Contacts not in any group" -msgstr "Kontaktit ilman ryhmää" - -#: src/Model/Group.php:420 -msgid "Create a new group" -msgstr "Luo uusi ryhmä" - -#: src/Model/Group.php:421 mod/group.php:103 mod/group.php:199 -msgid "Group Name: " -msgstr "Ryhmän nimi:" - -#: src/Model/Group.php:422 -msgid "Edit groups" -msgstr "Muokkaa ryhmiä" - -#: src/Model/Photo.php:244 src/Model/Photo.php:253 mod/fbrowser.php:43 -#: mod/fbrowser.php:68 mod/photos.php:194 mod/photos.php:1062 -#: mod/photos.php:1149 mod/photos.php:1166 mod/photos.php:1659 -#: mod/photos.php:1673 +#: mod/fbrowser.php:43 mod/fbrowser.php:68 mod/photos.php:194 +#: mod/photos.php:1062 mod/photos.php:1149 mod/photos.php:1166 +#: mod/photos.php:1659 mod/photos.php:1673 src/Model/Photo.php:244 +#: src/Model/Photo.php:253 msgid "Contact Photos" msgstr "Kontaktin valokuvat" -#: src/Model/User.php:154 -msgid "Login failed" -msgstr "Kirjautuminen epäonnistui" +#: mod/fbrowser.php:105 mod/fbrowser.php:136 mod/profile_photo.php:250 +msgid "Upload" +msgstr "Lähetä" -#: src/Model/User.php:185 -msgid "Not enough information to authenticate" +#: mod/fbrowser.php:131 +msgid "Files" +msgstr "Tiedostot" + +#: mod/fetch.php:16 mod/fetch.php:52 mod/fetch.php:65 mod/help.php:60 +#: mod/p.php:21 mod/p.php:48 mod/p.php:57 index.php:320 +msgid "Not Found" +msgstr "Ei löydetty" + +#: mod/hcard.php:18 +msgid "No profile" +msgstr "Ei profiilia" + +#: mod/help.php:48 +msgid "Help:" +msgstr "Ohje:" + +#: mod/help.php:54 view/theme/vier/theme.php:297 src/Content/Nav.php:134 +msgid "Help" +msgstr "Ohje" + +#: mod/help.php:63 index.php:325 +msgid "Page not found." +msgstr "Sivua ei löytynyt." + +#: mod/home.php:39 +#, php-format +msgid "Welcome to %s" +msgstr "Tervetuloa %s" + +#: mod/lockview.php:38 mod/lockview.php:46 +msgid "Remote privacy information not available." +msgstr "Yksityisyyden etätietoja ei saatavilla." + +#: mod/lockview.php:55 +msgid "Visible to:" +msgstr "Näkyvissä:" + +#: mod/maintenance.php:24 +msgid "System down for maintenance" +msgstr "Järjestelmä poiskytketty huoltoa varten" + +#: mod/newmember.php:11 +msgid "Welcome to Friendica" +msgstr "Tervetuloa Friendicaan" + +#: mod/newmember.php:12 +msgid "New Member Checklist" +msgstr "Uuden jäsenen tarkistuslista" + +#: mod/newmember.php:14 +msgid "" +"We would like to offer some tips and links to help make your experience " +"enjoyable. Click any item to visit the relevant page. A link to this page " +"will be visible from your home page for two weeks after your initial " +"registration and then will quietly disappear." msgstr "" -#: src/Model/User.php:214 src/Core/Console/NewPassword.php:74 mod/cal.php:297 +#: mod/newmember.php:15 +msgid "Getting Started" +msgstr "Ensiaskeleet" + +#: mod/newmember.php:17 +msgid "Friendica Walk-Through" +msgstr "Friendica -läpikäynti" + +#: mod/newmember.php:17 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "" + +#: mod/newmember.php:19 mod/admin.php:1922 mod/admin.php:2191 +#: mod/settings.php:124 view/theme/frio/theme.php:269 src/Content/Nav.php:203 +msgid "Settings" +msgstr "Asetukset" + +#: mod/newmember.php:21 +msgid "Go to Your Settings" +msgstr "Omat Asetukset" + +#: mod/newmember.php:21 +msgid "" +"On your Settings page - change your initial password. Also make a " +"note of your Identity Address. This looks just like an email address - and " +"will be useful in making friends on the free social web." +msgstr "" + +#: mod/newmember.php:22 +msgid "" +"Review the other settings, particularly the privacy settings. An unpublished" +" directory listing is like having an unlisted phone number. In general, you " +"should probably publish your listing - unless all of your friends and " +"potential friends know exactly how to find you." +msgstr "" + +#: mod/newmember.php:24 mod/profperm.php:113 mod/contacts.php:671 +#: mod/contacts.php:863 view/theme/frio/theme.php:260 src/Content/Nav.php:101 +#: src/Model/Profile.php:728 src/Model/Profile.php:861 +#: src/Model/Profile.php:894 +msgid "Profile" +msgstr "Profiili" + +#: mod/newmember.php:26 mod/profile_photo.php:249 mod/profiles.php:691 +msgid "Upload Profile Photo" +msgstr "Lataa profiilikuva" + +#: mod/newmember.php:26 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make" +" friends than people who do not." +msgstr "" + +#: mod/newmember.php:27 +msgid "Edit Your Profile" +msgstr "Muokkaa profiilisi" + +#: mod/newmember.php:27 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown" +" visitors." +msgstr "" + +#: mod/newmember.php:28 +msgid "Profile Keywords" +msgstr "Profiilin avainsanat" + +#: mod/newmember.php:28 +msgid "" +"Set some public keywords for your default profile which describe your " +"interests. We may be able to find other people with similar interests and " +"suggest friendships." +msgstr "" + +#: mod/newmember.php:30 +msgid "Connecting" +msgstr "Yhdistetään" + +#: mod/newmember.php:36 +msgid "Importing Emails" +msgstr "Sähköpostin tuominen" + +#: mod/newmember.php:36 +msgid "" +"Enter your email access information on your Connector Settings page if you " +"wish to import and interact with friends or mailing lists from your email " +"INBOX" +msgstr "" + +#: mod/newmember.php:39 +msgid "Go to Your Contacts Page" +msgstr "Näytä minun kontaktit" + +#: mod/newmember.php:39 +msgid "" +"Your Contacts page is your gateway to managing friendships and connecting " +"with friends on other networks. Typically you enter their address or site " +"URL in the Add New Contact dialog." +msgstr "" + +#: mod/newmember.php:40 +msgid "Go to Your Site's Directory" +msgstr "Näytä oman sivuston luettelo" + +#: mod/newmember.php:40 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "" + +#: mod/newmember.php:41 +msgid "Finding New People" +msgstr "Kavereiden hankkiminen" + +#: mod/newmember.php:41 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand" +" new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "" + +#: mod/newmember.php:43 src/Model/Group.php:414 +msgid "Groups" +msgstr "Ryhmät" + +#: mod/newmember.php:45 +msgid "Group Your Contacts" +msgstr "Järjestä kontaktit ryhmiin" + +#: mod/newmember.php:45 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with" +" each group privately on your Network page." +msgstr "" + +#: mod/newmember.php:48 +msgid "Why Aren't My Posts Public?" +msgstr "Miksi julkaisuni eivät ole julkisia?" + +#: mod/newmember.php:48 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to" +" people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "" + +#: mod/newmember.php:52 +msgid "Getting Help" +msgstr "Avun saaminen" + +#: mod/newmember.php:54 +msgid "Go to the Help Section" +msgstr "Näytä ohjeet" + +#: mod/newmember.php:54 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "" + +#: mod/nogroup.php:42 mod/viewcontacts.php:112 mod/contacts.php:619 +#: mod/contacts.php:959 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Näytä %s-käyttäjän profiili [%s]" + +#: mod/nogroup.php:43 mod/contacts.php:960 +msgid "Edit contact" +msgstr "Muokkaa kontaktia" + +#: mod/nogroup.php:63 +msgid "Contacts who are not members of a group" +msgstr "Kontaktit jotka eivät kuulu ryhmään" + +#: mod/p.php:14 +msgid "Not Extended" +msgstr "Ei laajennettu" + +#: mod/repair_ostatus.php:18 +msgid "Resubscribing to OStatus contacts" +msgstr "" + +#: mod/repair_ostatus.php:34 +msgid "Error" +msgstr "Virhe" + +#: mod/repair_ostatus.php:48 mod/ostatus_subscribe.php:64 +msgid "Done" +msgstr "Valmis" + +#: mod/repair_ostatus.php:54 mod/ostatus_subscribe.php:88 +msgid "Keep this window open until done." +msgstr "Pidä tämä ikkuna auki kunnes kaikki tehtävät on suoritettu." + +#: mod/suggest.php:36 +msgid "Do you really want to delete this suggestion?" +msgstr "Haluatko varmasti poistaa ehdotuksen?" + +#: mod/suggest.php:73 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Ehdotuksia ei löydy. Jos tämä on uusi sivusto, kokeile uudelleen vuorokauden kuluttua." + +#: mod/suggest.php:84 mod/suggest.php:104 +msgid "Ignore/Hide" +msgstr "Jätä huomiotta/piilota" + +#: mod/suggest.php:114 view/theme/vier/theme.php:204 src/Content/Widget.php:64 +msgid "Friend Suggestions" +msgstr "Ystäväehdotukset" + +#: mod/update_community.php:27 mod/update_display.php:27 +#: mod/update_notes.php:40 mod/update_profile.php:39 mod/update_network.php:33 +msgid "[Embedded content - reload page to view]" +msgstr "[Upotettu sisältö - näet sen päivittämällä sivun]" + +#: mod/uimport.php:55 mod/register.php:191 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Sivuston päivittäinen rekisteröintiraja ylitetty. Yritä uudelleen huomenna." + +#: mod/uimport.php:70 mod/register.php:285 +msgid "Import" +msgstr "Tuo" + +#: mod/uimport.php:72 +msgid "Move account" +msgstr "Siirrä tili" + +#: mod/uimport.php:73 +msgid "You can import an account from another Friendica server." +msgstr "Voit tuoda käyttäjätilin toiselta Friendica -palvelimelta." + +#: mod/uimport.php:74 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "" + +#: mod/uimport.php:75 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "Tämä on kokeellinen ominaisuus. Emme voi tuoda kontakteja OStatus-verkolta (GNU social/Statusnet) tai Diasporalta." + +#: mod/uimport.php:76 +msgid "Account file" +msgstr "Tilitiedosto" + +#: mod/uimport.php:76 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "" + +#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%1$s toivottaa tervetulleeksi ystävän %2$s" + +#: mod/match.php:48 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Avainsanat puuttuu. Lisää avainsanoja oletusprofiiliisi." + +#: mod/match.php:104 +msgid "is interested in:" +msgstr "on kiinnostunut seuraavista aiheista:" + +#: mod/match.php:120 +msgid "Profile Match" +msgstr "Vastaavien profiilien haku" + +#: mod/match.php:125 mod/dirfind.php:253 +msgid "No matches" +msgstr "Ei täsmääviä profiileja" + +#: mod/notifications.php:37 +msgid "Invalid request identifier." +msgstr "Virheellinen pyyntötunniste." + +#: mod/notifications.php:46 mod/notifications.php:183 +#: mod/notifications.php:230 +msgid "Discard" +msgstr "Hylkää" + +#: mod/notifications.php:62 mod/notifications.php:182 +#: mod/notifications.php:266 mod/contacts.php:638 mod/contacts.php:828 +#: mod/contacts.php:1019 +msgid "Ignore" +msgstr "Jätä huomiotta" + +#: mod/notifications.php:98 src/Content/Nav.php:187 +msgid "Notifications" +msgstr "Huomautukset" + +#: mod/notifications.php:107 +msgid "Network Notifications" +msgstr "Verkkoilmoitukset" + +#: mod/notifications.php:113 mod/notify.php:81 +msgid "System Notifications" +msgstr "Järjestelmäilmoitukset" + +#: mod/notifications.php:119 +msgid "Personal Notifications" +msgstr "Henkilökohtaiset ilmoitukset" + +#: mod/notifications.php:125 +msgid "Home Notifications" +msgstr "Koti-ilmoitukset" + +#: mod/notifications.php:155 +msgid "Show Ignored Requests" +msgstr "Näytä ohitetut pyynnöt" + +#: mod/notifications.php:155 +msgid "Hide Ignored Requests" +msgstr "Piilota ohitetut pyynnöt" + +#: mod/notifications.php:167 mod/notifications.php:237 +msgid "Notification type: " +msgstr "Ilmoitustyyppi:" + +#: mod/notifications.php:170 +#, php-format +msgid "suggested by %s" +msgstr "ehdottaa %s" + +#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646 +msgid "Hide this contact from others" +msgstr "Piilota kontakti muilta" + +#: mod/notifications.php:176 mod/notifications.php:255 +msgid "Post a new friend activity" +msgstr "" + +#: mod/notifications.php:176 mod/notifications.php:255 +msgid "if applicable" +msgstr "tarvittaessa" + +#: mod/notifications.php:179 mod/notifications.php:264 mod/admin.php:1812 +msgid "Approve" +msgstr "Hyväksy" + +#: mod/notifications.php:198 +msgid "Claims to be known to you: " +msgstr "Väittää tuntevansa sinut:" + +#: mod/notifications.php:199 +msgid "yes" +msgstr "kyllä" + +#: mod/notifications.php:199 +msgid "no" +msgstr "ei" + +#: mod/notifications.php:200 mod/notifications.php:205 +msgid "Shall your connection be bidirectional or not?" +msgstr "Kaksisuuntainen yhteys?" + +#: mod/notifications.php:201 mod/notifications.php:206 +#, php-format +msgid "" +"Accepting %s as a friend allows %s to subscribe to your posts, and you will " +"also receive updates from them in your news feed." +msgstr "" + +#: mod/notifications.php:202 +#, php-format +msgid "" +"Accepting %s as a subscriber allows them to subscribe to your posts, but you" +" will not receive updates from them in your news feed." +msgstr "" + +#: mod/notifications.php:207 +#, php-format +msgid "" +"Accepting %s as a sharer allows them to subscribe to your posts, but you " +"will not receive updates from them in your news feed." +msgstr "" + +#: mod/notifications.php:218 +msgid "Friend" +msgstr "Kaveri" + +#: mod/notifications.php:219 +msgid "Sharer" +msgstr "Jakaja" + +#: mod/notifications.php:219 +msgid "Subscriber" +msgstr "Tilaaja" + +#: mod/notifications.php:247 mod/contacts.php:660 mod/events.php:518 +#: mod/directory.php:148 src/Model/Event.php:60 src/Model/Event.php:85 +#: src/Model/Event.php:421 src/Model/Event.php:900 src/Model/Profile.php:413 +msgid "Location:" +msgstr "Sijainti:" + +#: mod/notifications.php:249 mod/contacts.php:664 mod/directory.php:154 +#: src/Model/Profile.php:419 src/Model/Profile.php:804 +msgid "About:" +msgstr "Lisätietoja:" + +#: mod/notifications.php:251 mod/contacts.php:666 mod/follow.php:174 +#: src/Model/Profile.php:792 +msgid "Tags:" +msgstr "Tunnisteet:" + +#: mod/notifications.php:253 mod/directory.php:151 src/Model/Profile.php:416 +#: src/Model/Profile.php:743 +msgid "Gender:" +msgstr "Sukupuoli:" + +#: mod/notifications.php:258 mod/contacts.php:656 mod/unfollow.php:122 +#: mod/follow.php:166 mod/admin.php:490 mod/admin.php:500 +msgid "Profile URL" +msgstr "Profiilin URL" + +#: mod/notifications.php:261 mod/contacts.php:71 src/Model/Profile.php:516 +msgid "Network:" +msgstr "Verkko:" + +#: mod/notifications.php:275 +msgid "No introductions." +msgstr "Ei esittelyjä." + +#: mod/notifications.php:316 +msgid "Show unread" +msgstr "Näytä lukemattomat" + +#: mod/notifications.php:316 +msgid "Show all" +msgstr "Näytä kaikki" + +#: mod/notifications.php:322 +#, php-format +msgid "No more %s notifications." +msgstr "Ei muita %s ilmoituksia." + +#: mod/openid.php:29 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID -protokollavirhe. Tunnusta ei vastaanotettu." + +#: mod/openid.php:66 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Käyttäjätiliä ei löytynyt. Rekisteröityminen OpenID:n kautta ei ole sallittua tällä sivustolla." + +#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:134 +msgid "Login failed." +msgstr "Kirjautuminen epäonnistui" + +#: mod/dfrn_confirm.php:74 mod/profiles.php:39 mod/profiles.php:149 +#: mod/profiles.php:196 mod/profiles.php:618 +msgid "Profile not found." +msgstr "Profiilia ei löytynyt." + +#: mod/dfrn_confirm.php:132 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "" + +#: mod/dfrn_confirm.php:242 +msgid "Response from remote site was not understood." +msgstr "Etäsivuston vastaus oli epäselvä." + +#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "Odottamaton vastaus etäsivustolta:" + +#: mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "Vahvistus onnistui." + +#: mod/dfrn_confirm.php:275 +msgid "Temporary failure. Please wait and try again." +msgstr "Tilapäinen vika. Yritä myöhemmin uudelleen." + +#: mod/dfrn_confirm.php:278 +msgid "Introduction failed or was revoked." +msgstr "Kaverikutsu epäonnistui tai oli peruutettu." + +#: mod/dfrn_confirm.php:283 +msgid "Remote site reported: " +msgstr "" + +#: mod/dfrn_confirm.php:396 +msgid "Unable to set contact photo." +msgstr "Kontaktin kuvaa ei voitu asettaa" + +#: mod/dfrn_confirm.php:498 +#, php-format +msgid "No user record found for '%s' " +msgstr "" + +#: mod/dfrn_confirm.php:508 +msgid "Our site encryption key is apparently messed up." +msgstr "Sivustomme salausavain on sekaisin." + +#: mod/dfrn_confirm.php:519 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "" + +#: mod/dfrn_confirm.php:535 +msgid "Contact record was not found for you on our site." +msgstr "" + +#: mod/dfrn_confirm.php:549 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "" + +#: mod/dfrn_confirm.php:565 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "" + +#: mod/dfrn_confirm.php:576 +msgid "Unable to set your contact credentials on our system." +msgstr "" + +#: mod/dfrn_confirm.php:631 +msgid "Unable to update your contact profile details on our system" +msgstr "" + +#: mod/dfrn_confirm.php:661 mod/dfrn_request.php:568 +#: src/Model/Contact.php:1537 +msgid "[Name Withheld]" +msgstr "[Nimi jätetty pois]" + +#: mod/dfrn_confirm.php:694 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s on liittynyt kohteeseen %2$s" + +#: mod/manage.php:180 +msgid "Manage Identities and/or Pages" +msgstr "Hallitse identiteetit ja/tai sivut" + +#: mod/manage.php:181 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "" + +#: mod/manage.php:182 +msgid "Select an identity to manage: " +msgstr "Valitse identiteetti hallitavaksi:" + +#: mod/wall_attach.php:24 mod/wall_attach.php:32 mod/wall_attach.php:83 +#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112 +#: mod/wall_upload.php:155 mod/wall_upload.php:158 +msgid "Invalid request." +msgstr "Virheellinen pyyntö." + +#: mod/wall_attach.php:101 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: mod/wall_attach.php:101 +msgid "Or - did you try to upload an empty file?" +msgstr "Yrititkö ladata tyhjän tiedoston?" + +#: mod/wall_attach.php:112 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Tiedosto ylittää kokorajoituksen %s" + +#: mod/wall_attach.php:136 mod/wall_attach.php:152 +msgid "File upload failed." +msgstr "Tiedoston lähettäminen epäonnistui." + +#: mod/dfrn_request.php:94 +msgid "This introduction has already been accepted." +msgstr "Tämä esittely on jo hyväksytty." + +#: mod/dfrn_request.php:112 mod/dfrn_request.php:359 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Profiilin sijainti on viallinen tai se ei sisällä profiilitietoja." + +#: mod/dfrn_request.php:116 mod/dfrn_request.php:363 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Varoitus: profiilin sijainnissa ei ole tunnistettavaa omistajan nimeä." + +#: mod/dfrn_request.php:119 mod/dfrn_request.php:366 +msgid "Warning: profile location has no profile photo." +msgstr "Varoitus: profiilin sijainnissa ei ole profiilikuvaa." + +#: mod/dfrn_request.php:123 mod/dfrn_request.php:370 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "" +msgstr[1] "" + +#: mod/dfrn_request.php:162 +msgid "Introduction complete." +msgstr "Esittely valmis." + +#: mod/dfrn_request.php:199 +msgid "Unrecoverable protocol error." +msgstr "Vakava protokollavirhe." + +#: mod/dfrn_request.php:226 +msgid "Profile unavailable." +msgstr "Profiili ei saatavilla." + +#: mod/dfrn_request.php:248 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s on saanut liikaa yhteyspyyntöjä tänään." + +#: mod/dfrn_request.php:249 +msgid "Spam protection measures have been invoked." +msgstr "Roskapostisuojaukset otettu käyttöön." + +#: mod/dfrn_request.php:250 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Ystäviä suositellaan yrittämään uudelleen vuorokauden sisällä." + +#: mod/dfrn_request.php:280 +msgid "Invalid locator" +msgstr "Viallinen paikannin" + +#: mod/dfrn_request.php:316 +msgid "You have already introduced yourself here." +msgstr "Olet jo esitellyt itsesi täällä." + +#: mod/dfrn_request.php:319 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Ilmeisesti olet jo ystävystynyt henkilön %s kanssa." + +#: mod/dfrn_request.php:339 +msgid "Invalid profile URL." +msgstr "Viallinen profiiliosoite." + +#: mod/dfrn_request.php:345 src/Model/Contact.php:1235 +msgid "Disallowed profile URL." +msgstr "Kielletty profiiliosoite." + +#: mod/dfrn_request.php:351 mod/admin.php:353 mod/admin.php:371 +#: mod/friendica.php:128 src/Model/Contact.php:1240 +msgid "Blocked domain" +msgstr "Estetty verkkotunnus" + +#: mod/dfrn_request.php:419 mod/contacts.php:230 +msgid "Failed to update contact record." +msgstr "Kontaktitietojen päivitys epäonnistui." + +#: mod/dfrn_request.php:439 +msgid "Your introduction has been sent." +msgstr "Esittelysi lähetettiin." + +#: mod/dfrn_request.php:477 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "" + +#: mod/dfrn_request.php:493 +msgid "Please login to confirm introduction." +msgstr "Kirjaudu vahvistaaksesi esittelysi." + +#: mod/dfrn_request.php:501 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Väärä identiteetti kirjautuneena sisään. Kirjaudu tähän profiiliin." + +#: mod/dfrn_request.php:515 mod/dfrn_request.php:532 +msgid "Confirm" +msgstr "Vahvista" + +#: mod/dfrn_request.php:527 +msgid "Hide this contact" +msgstr "Piilota kontakti" + +#: mod/dfrn_request.php:530 +#, php-format +msgid "Welcome home %s." +msgstr "Tervetuloa kotiin %s." + +#: mod/dfrn_request.php:531 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Vahvista esittelysi/yhteyspyyntösi henkilölle %s." + +#: mod/dfrn_request.php:607 mod/probe.php:13 mod/search.php:98 +#: mod/search.php:104 mod/viewcontacts.php:45 mod/webfinger.php:16 +#: mod/photos.php:932 mod/videos.php:199 mod/display.php:203 +#: mod/directory.php:42 mod/community.php:27 +msgid "Public access denied." +msgstr "Julkinen käyttö estetty." + +#: mod/dfrn_request.php:642 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Anna \"henkilöllisyysosoitteesi\" joissakin seuraavista tuetuista viestintäverkoista:" + +#: mod/dfrn_request.php:645 +#, php-format +msgid "" +"If you are not yet a member of the free social web, follow " +"this link to find a public Friendica site and join us today." +msgstr "" + +#: mod/dfrn_request.php:650 +msgid "Friend/Connection Request" +msgstr "Ystävä/yhteyspyyntö" + +#: mod/dfrn_request.php:651 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@gnusocial.de" +msgstr "Esim. jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de" + +#: mod/dfrn_request.php:652 mod/follow.php:149 +msgid "Please answer the following:" +msgstr "Vastaa seuraavaan:" + +#: mod/dfrn_request.php:653 mod/follow.php:150 +#, php-format +msgid "Does %s know you?" +msgstr "Tunteeko %s sinut?" + +#: mod/dfrn_request.php:654 mod/follow.php:151 +msgid "Add a personal note:" +msgstr "Lisää oma merkintä:" + +#: mod/dfrn_request.php:656 src/Content/ContactSelector.php:79 +msgid "Friendica" +msgstr "Friendica" + +#: mod/dfrn_request.php:657 +msgid "GNU Social (Pleroma, Mastodon)" +msgstr "GNU Social (Pleroma, Mastodon)" + +#: mod/dfrn_request.php:658 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "Diaspora (Socialhome, Hubzilla)" + +#: mod/dfrn_request.php:659 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - älä käytä tätä lomaketta. Kirjoita sen sijaan %s Diaspora-hakupalkkiisi." + +#: mod/dfrn_request.php:660 mod/unfollow.php:113 mod/follow.php:157 +msgid "Your Identity Address:" +msgstr "Identiteettisi osoite:" + +#: mod/dfrn_request.php:662 mod/unfollow.php:65 mod/follow.php:62 +msgid "Submit Request" +msgstr "Lähetä pyyntö" + +#: mod/filer.php:34 +msgid "- select -" +msgstr "- valitse -" + +#: mod/localtime.php:19 src/Model/Event.php:36 src/Model/Event.php:814 +msgid "l F d, Y \\@ g:i A" +msgstr "" + +#: mod/localtime.php:33 +msgid "Time Conversion" +msgstr "Aikamuunnos" + +#: mod/localtime.php:35 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "" + +#: mod/localtime.php:39 +#, php-format +msgid "UTC time: %s" +msgstr "UTC-aika: %s" + +#: mod/localtime.php:42 +#, php-format +msgid "Current timezone: %s" +msgstr "Aikavyöhyke: %s" + +#: mod/localtime.php:46 +#, php-format +msgid "Converted localtime: %s" +msgstr "Muunnettu paikallisaika: %s" + +#: mod/localtime.php:52 +msgid "Please select your timezone:" +msgstr "Valitse aikavyöhykkeesi:" + +#: mod/notify.php:77 +msgid "No more system notifications." +msgstr "Ei enää järjestelmäilmoituksia." + +#: mod/ping.php:292 +msgid "{0} wants to be your friend" +msgstr "{0} lähetti kaveripyynnön" + +#: mod/ping.php:307 +msgid "{0} sent you a message" +msgstr "{0} lähetti sinulle viestin" + +#: mod/ping.php:322 +msgid "{0} requested registration" +msgstr "{0} jätti rekisteröintipyynnön" + +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Tökkää" + +#: mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: mod/poke.php:194 +msgid "Recipient" +msgstr "Vastaanottaja" + +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Valitse mitä haluat tehdä vastaanottajalle" + +#: mod/poke.php:198 +msgid "Make this post private" +msgstr "Muuta julkaisu yksityiseksi" + +#: mod/probe.php:14 mod/webfinger.php:17 +msgid "Only logged in users are permitted to perform a probing." +msgstr "" + +#: mod/profperm.php:28 mod/group.php:83 index.php:443 +msgid "Permission denied" +msgstr "Käyttöoikeus evätty" + +#: mod/profperm.php:34 mod/profperm.php:65 +msgid "Invalid profile identifier." +msgstr "Virheellinen profiilitunniste." + +#: mod/profperm.php:111 +msgid "Profile Visibility Editor" +msgstr "Profiilin näkyvyyden muokkaaminen" + +#: mod/profperm.php:115 mod/group.php:265 +msgid "Click on a contact to add or remove." +msgstr "Valitse kontakti, jota haluat poistaa tai lisätä." + +#: mod/profperm.php:124 +msgid "Visible To" +msgstr "Näkyvyys" + +#: mod/profperm.php:140 +msgid "All Contacts (with secure profile access)" +msgstr "" + +#: mod/regmod.php:68 +msgid "Account approved." +msgstr "Tili hyväksytty." + +#: mod/regmod.php:93 +#, php-format +msgid "Registration revoked for %s" +msgstr "" + +#: mod/regmod.php:102 +msgid "Please login." +msgstr "Ole hyvä ja kirjaudu." + +#: mod/search.php:37 mod/network.php:194 +msgid "Remove term" +msgstr "Poista kohde" + +#: mod/search.php:46 mod/network.php:201 src/Content/Feature.php:100 +msgid "Saved Searches" +msgstr "Tallennetut haut" + +#: mod/search.php:105 +msgid "Only logged in users are permitted to perform a search." +msgstr "" + +#: mod/search.php:129 +msgid "Too Many Requests" +msgstr "Liian monta pyyntöä" + +#: mod/search.php:130 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "" + +#: mod/search.php:228 mod/community.php:141 +msgid "No results." +msgstr "Ei tuloksia." + +#: mod/search.php:234 +#, php-format +msgid "Items tagged with: %s" +msgstr "Kohteet joilla tunnisteet: %s" + +#: mod/search.php:236 mod/contacts.php:819 +#, php-format +msgid "Results for: %s" +msgstr "Tulokset haulla: %s" + +#: mod/subthread.php:113 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: mod/tagrm.php:47 +msgid "Tag removed" +msgstr "Tägi poistettiin" + +#: mod/tagrm.php:85 +msgid "Remove Item Tag" +msgstr "Poista tägi" + +#: mod/tagrm.php:87 +msgid "Select a tag to remove: " +msgstr "Valitse tägi poistamista varten:" + +#: mod/tagrm.php:98 mod/delegate.php:177 +msgid "Remove" +msgstr "Poista" + +#: mod/uexport.php:44 +msgid "Export account" +msgstr "Vie tili" + +#: mod/uexport.php:44 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Vie tilin tiedot ja yhteystiedot. Käytä tätä tilisi varmuuskopiointiin ja/tai siirtämiseen toiselle palvelimelle." + +#: mod/uexport.php:45 +msgid "Export all" +msgstr "Vie kaikki" + +#: mod/uexport.php:45 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Vie tilin tiedot, yhteystiedot ja kaikki nimikkeesi json-muodossa. Saattaa luoda hyvin suuren tiedoston ja kestää todella pitkään. Tämän avulla voit ottaa täydellisen varmuuskopion tilistäsi (valokuvia ei viedä)" + +#: mod/uexport.php:52 mod/settings.php:108 +msgid "Export personal data" +msgstr "Vie henkilökohtaiset tiedot" + +#: mod/viewcontacts.php:87 +msgid "No contacts." +msgstr "Ei kontakteja." + +#: mod/viewsrc.php:12 mod/community.php:34 +msgid "Access denied." +msgstr "Käyttö estetty." + +#: mod/wall_upload.php:186 mod/photos.php:763 mod/photos.php:766 +#: mod/photos.php:795 mod/profile_photo.php:153 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Kuva ylittää kokorajoituksen %s" + +#: mod/wall_upload.php:200 mod/photos.php:818 mod/profile_photo.php:162 +msgid "Unable to process image." +msgstr "Kuvan käsitteleminen epäonnistui." + +#: mod/wall_upload.php:231 mod/item.php:471 src/Object/Image.php:953 +#: src/Object/Image.php:969 src/Object/Image.php:977 src/Object/Image.php:1002 +msgid "Wall Photos" +msgstr "Seinäkuvat" + +#: mod/wall_upload.php:239 mod/photos.php:847 mod/profile_photo.php:307 +msgid "Image upload failed." +msgstr "Kuvan lähettäminen epäonnistui." + +#: mod/wallmessage.php:49 mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "%s-käyttäjän päivittäinen seinäviestiraja ylitetty. Viestin lähettäminen epäonnistui." + +#: mod/wallmessage.php:57 mod/message.php:73 +msgid "No recipient selected." +msgstr "Vastaanottaja puuttuu." + +#: mod/wallmessage.php:60 +msgid "Unable to check your home location." +msgstr "Kotisijaintisi ei voitu tarkistaa." + +#: mod/wallmessage.php:63 mod/message.php:80 +msgid "Message could not be sent." +msgstr "Viestiä ei voitu lähettää." + +#: mod/wallmessage.php:66 mod/message.php:83 +msgid "Message collection failure." +msgstr "Viestin noutaminen epäonnistui." + +#: mod/wallmessage.php:69 mod/message.php:86 +msgid "Message sent." +msgstr "Viesti lähetetty." + +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Vastaanottaja puuttuu." + +#: mod/wallmessage.php:132 mod/message.php:250 +msgid "Send Private Message" +msgstr "Lähetä yksityisviesti" + +#: mod/wallmessage.php:133 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "" + +#: mod/wallmessage.php:134 mod/message.php:251 mod/message.php:421 +msgid "To:" +msgstr "Vastaanottaja:" + +#: mod/wallmessage.php:135 mod/message.php:255 mod/message.php:423 +msgid "Subject:" +msgstr "Aihe:" + +#: mod/wallmessage.php:141 mod/message.php:259 mod/message.php:426 +#: mod/invite.php:149 +msgid "Your message:" +msgstr "Viestisi:" + +#: mod/bookmarklet.php:23 src/Content/Nav.php:114 src/Module/Login.php:312 +msgid "Login" +msgstr "Kirjaudu sisään" + +#: mod/bookmarklet.php:51 +msgid "The post was created" +msgstr "Julkaisu luotu" + +#: mod/editpost.php:25 mod/editpost.php:35 +msgid "Item not found" +msgstr "Kohdetta ei löytynyt" + +#: mod/editpost.php:42 +msgid "Edit post" +msgstr "Muokkaa viestiä" + +#: mod/editpost.php:134 src/Core/ACL.php:315 +msgid "CC: email addresses" +msgstr "Kopio: sähköpostiosoitteet" + +#: mod/editpost.php:141 src/Core/ACL.php:316 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Esimerkki: bob@example.com, mary@example.com" + +#: mod/fsuggest.php:72 +msgid "Friend suggestion sent." +msgstr "Ystäväehdotus lähetettiin." + +#: mod/fsuggest.php:101 +msgid "Suggest Friends" +msgstr "Ehdota ystäviä" + +#: mod/fsuggest.php:103 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Ehdota ystävää ystävälle %s" + +#: mod/group.php:36 +msgid "Group created." +msgstr "Ryhmä luotu." + +#: mod/group.php:42 +msgid "Could not create group." +msgstr "Ryhmää ei voitu luoda." + +#: mod/group.php:56 mod/group.php:157 +msgid "Group not found." +msgstr "Ryhmää ei löytynyt." + +#: mod/group.php:70 +msgid "Group name changed." +msgstr "Ryhmän nimi muutettu." + +#: mod/group.php:97 +msgid "Save Group" +msgstr "Tallenna ryhmä" + +#: mod/group.php:102 +msgid "Create a group of contacts/friends." +msgstr "Luo kontakti/kaveriryhmä" + +#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421 +msgid "Group Name: " +msgstr "Ryhmän nimi:" + +#: mod/group.php:127 +msgid "Group removed." +msgstr "Ryhmä poistettu." + +#: mod/group.php:129 +msgid "Unable to remove group." +msgstr "Ryhmää ei voida poistaa." + +#: mod/group.php:192 +msgid "Delete Group" +msgstr "Poista ryhmä" + +#: mod/group.php:198 +msgid "Group Editor" +msgstr "Ryhmien muokkausta" + +#: mod/group.php:203 +msgid "Edit Group Name" +msgstr "Muokkaa ryhmän nimeä" + +#: mod/group.php:213 +msgid "Members" +msgstr "Jäsenet" + +#: mod/group.php:215 mod/contacts.php:719 +msgid "All Contacts" +msgstr "Kaikki yhteystiedot" + +#: mod/group.php:216 mod/network.php:639 +msgid "Group is empty" +msgstr "Ryhmä on tyhjä" + +#: mod/group.php:229 +msgid "Remove Contact" +msgstr "Poista kontakti" + +#: mod/group.php:253 +msgid "Add Contact" +msgstr "Lisää kontakti" + +#: mod/message.php:30 src/Content/Nav.php:195 +msgid "New Message" +msgstr "Uusi viesti" + +#: mod/message.php:77 +msgid "Unable to locate contact information." +msgstr "Kontaktin tiedot ei löydy." + +#: mod/message.php:112 view/theme/frio/theme.php:268 src/Content/Nav.php:192 +msgid "Messages" +msgstr "Viestit" + +#: mod/message.php:136 +msgid "Do you really want to delete this message?" +msgstr "Haluatko varmasti poistaa viestin?" + +#: mod/message.php:156 +msgid "Message deleted." +msgstr "Viesti poistettu." + +#: mod/message.php:185 +msgid "Conversation removed." +msgstr "Keskustelu poistettu." + +#: mod/message.php:291 +msgid "No messages." +msgstr "Ei viestejä." + +#: mod/message.php:330 +msgid "Message not available." +msgstr "Viesti ei saatavilla." + +#: mod/message.php:397 +msgid "Delete message" +msgstr "Poista viesti" + +#: mod/message.php:399 mod/message.php:500 +msgid "D, d M Y - g:i A" +msgstr "" + +#: mod/message.php:414 mod/message.php:497 +msgid "Delete conversation" +msgstr "Poista keskustelu" + +#: mod/message.php:416 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: mod/message.php:420 +msgid "Send Reply" +msgstr "Lähetä vastaus" + +#: mod/message.php:471 +#, php-format +msgid "Unknown sender - %s" +msgstr "Tuntematon lähettäjä - %s" + +#: mod/message.php:473 +#, php-format +msgid "You and %s" +msgstr "Sinä ja %s" + +#: mod/message.php:475 +#, php-format +msgid "%s and You" +msgstr "%s ja sinä" + +#: mod/message.php:503 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d viesti" +msgstr[1] "%d viestiä" + +#: mod/notes.php:52 src/Model/Profile.php:944 +msgid "Personal Notes" +msgstr "Henkilökohtaiset tiedot" + +#: mod/photos.php:108 src/Model/Profile.php:905 +msgid "Photo Albums" +msgstr "Valokuva-albumit" + +#: mod/photos.php:109 mod/photos.php:1713 +msgid "Recent Photos" +msgstr "Viimeaikaisia kuvia" + +#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715 +msgid "Upload New Photos" +msgstr "Lähetä uusia kuvia" + +#: mod/photos.php:126 mod/settings.php:51 +msgid "everybody" +msgstr "kaikki" + +#: mod/photos.php:184 +msgid "Contact information unavailable" +msgstr "Kontaktin tietoja ei saatavilla" + +#: mod/photos.php:204 +msgid "Album not found." +msgstr "Albumia ei ole." + +#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161 +msgid "Delete Album" +msgstr "Poista albumi" + +#: mod/photos.php:243 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Haluatko varmasti poistaa tämän albumin ja kaikki sen kuvat?" + +#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446 +msgid "Delete Photo" +msgstr "Poista valokuva" + +#: mod/photos.php:319 +msgid "Do you really want to delete this photo?" +msgstr "Haluatko varmasti poistaa kuvan?" + +#: mod/photos.php:667 +msgid "a photo" +msgstr "valokuva" + +#: mod/photos.php:667 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s merkattiin kuvaan %2$s ystävän %3$s toimesta" + +#: mod/photos.php:769 +msgid "Image upload didn't complete, please try again" +msgstr "Kuvan lataus ei onnistunut, yritä uudelleen" + +#: mod/photos.php:772 +msgid "Image file is missing" +msgstr "Kuvatiedosto puuttuu" + +#: mod/photos.php:777 +msgid "" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "" + +#: mod/photos.php:803 +msgid "Image file is empty." +msgstr "Kuvatiedosto on tyhjä." + +#: mod/photos.php:940 +msgid "No photos selected" +msgstr "Ei valittuja kuvia" + +#: mod/photos.php:1036 mod/videos.php:309 +msgid "Access to this item is restricted." +msgstr "Pääsy kohteeseen on rajoitettu." + +#: mod/photos.php:1090 +msgid "Upload Photos" +msgstr "Lähetä kuvia" + +#: mod/photos.php:1094 mod/photos.php:1156 +msgid "New album name: " +msgstr "Albumin uusi nimi: " + +#: mod/photos.php:1095 +msgid "or existing album name: " +msgstr "tai olemassaolevan albumin nimi: " + +#: mod/photos.php:1096 +msgid "Do not show a status post for this upload" +msgstr "Älä näytä tilaviestiä tälle lähetykselle" + +#: mod/photos.php:1098 mod/photos.php:1441 mod/events.php:533 +#: src/Core/ACL.php:318 +msgid "Permissions" +msgstr "Käyttöoikeudet" + +#: mod/photos.php:1106 mod/photos.php:1449 mod/settings.php:1231 +msgid "Show to Groups" +msgstr "Näytä ryhmille" + +#: mod/photos.php:1107 mod/photos.php:1450 mod/settings.php:1232 +msgid "Show to Contacts" +msgstr "Näytä kontakteille" + +#: mod/photos.php:1167 +msgid "Edit Album" +msgstr "Muokkaa albumia" + +#: mod/photos.php:1172 +msgid "Show Newest First" +msgstr "Näytä uusin ensin" + +#: mod/photos.php:1174 +msgid "Show Oldest First" +msgstr "Näytä vanhin ensin" + +#: mod/photos.php:1195 mod/photos.php:1698 +msgid "View Photo" +msgstr "Näytä kuva" + +#: mod/photos.php:1236 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Estetty. Tämän kohteen käyttöä on saatettu rajoittaa." + +#: mod/photos.php:1238 +msgid "Photo not available" +msgstr "Kuva ei ole saatavilla" + +#: mod/photos.php:1301 +msgid "View photo" +msgstr "Näytä kuva" + +#: mod/photos.php:1301 +msgid "Edit photo" +msgstr "Muokkaa kuvaa" + +#: mod/photos.php:1302 +msgid "Use as profile photo" +msgstr "Käytä profiilikuvana" + +#: mod/photos.php:1308 src/Object/Post.php:149 +msgid "Private Message" +msgstr "Yksityisviesti" + +#: mod/photos.php:1327 +msgid "View Full Size" +msgstr "Näytä täysikokoisena" + +#: mod/photos.php:1414 +msgid "Tags: " +msgstr "Merkinnät:" + +#: mod/photos.php:1417 +msgid "[Remove any tag]" +msgstr "[Poista mikä tahansa merkintä]" + +#: mod/photos.php:1432 +msgid "New album name" +msgstr "Uusi nimi albumille" + +#: mod/photos.php:1433 +msgid "Caption" +msgstr "Kuvateksti" + +#: mod/photos.php:1434 +msgid "Add a Tag" +msgstr "Lisää merkintä" + +#: mod/photos.php:1434 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Esimerkki: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1435 +msgid "Do not rotate" +msgstr "Älä kierrä" + +#: mod/photos.php:1436 +msgid "Rotate CW (right)" +msgstr "Käännä oikealle" + +#: mod/photos.php:1437 +msgid "Rotate CCW (left)" +msgstr "Käännä vasemmalle" + +#: mod/photos.php:1471 src/Object/Post.php:296 +msgid "I like this (toggle)" +msgstr "Tykkään tästä (vaihda)" + +#: mod/photos.php:1472 src/Object/Post.php:297 +msgid "I don't like this (toggle)" +msgstr "En tykkää tästä (vaihda)" + +#: mod/photos.php:1488 mod/photos.php:1527 mod/photos.php:1600 +#: mod/contacts.php:953 src/Object/Post.php:793 +msgid "This is you" +msgstr "Tämä olet sinä" + +#: mod/photos.php:1490 mod/photos.php:1529 mod/photos.php:1602 +#: src/Object/Post.php:399 src/Object/Post.php:795 +msgid "Comment" +msgstr "Kommentti" + +#: mod/photos.php:1634 +msgid "Map" +msgstr "Kartta" + +#: mod/photos.php:1704 mod/videos.php:387 +msgid "View Album" +msgstr "Näytä albumi" + +#: mod/videos.php:139 +msgid "Do you really want to delete this video?" +msgstr "Haluatko varmasti poistaa tämän videon?" + +#: mod/videos.php:144 +msgid "Delete Video" +msgstr "Poista video" + +#: mod/videos.php:207 +msgid "No videos selected" +msgstr "Ei videoita valittuna" + +#: mod/videos.php:396 +msgid "Recent Videos" +msgstr "Viimeisimmät videot" + +#: mod/videos.php:398 +msgid "Upload New Videos" +msgstr "Lataa uusia videoita" + +#: mod/cal.php:142 mod/display.php:313 mod/profile.php:173 +msgid "Access to this profile has been restricted." +msgstr "Pääsy tähän profiiliin on rajoitettu" + +#: mod/cal.php:274 mod/events.php:391 view/theme/frio/theme.php:263 +#: view/theme/frio/theme.php:267 src/Content/Nav.php:104 +#: src/Content/Nav.php:170 src/Model/Profile.php:922 src/Model/Profile.php:933 +msgid "Events" +msgstr "Tapahtumat" + +#: mod/cal.php:275 mod/events.php:392 +msgid "View" +msgstr "Katso" + +#: mod/cal.php:276 mod/events.php:394 +msgid "Previous" +msgstr "Edellinen" + +#: mod/cal.php:277 mod/events.php:395 mod/install.php:209 +msgid "Next" +msgstr "Seuraava" + +#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412 +msgid "today" +msgstr "tänään" + +#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304 +#: src/Model/Event.php:413 +msgid "month" +msgstr "kuukausi" + +#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305 +#: src/Model/Event.php:414 +msgid "week" +msgstr "viikko" + +#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306 +#: src/Model/Event.php:415 +msgid "day" +msgstr "päivä" + +#: mod/cal.php:284 mod/events.php:404 +msgid "list" +msgstr "luettelo" + +#: mod/cal.php:297 src/Core/Console/NewPassword.php:73 src/Model/User.php:214 msgid "User not found" msgstr "Käyttäjää ei löydy" -#: src/Model/User.php:335 mod/settings.php:384 -msgid "Passwords do not match. Password unchanged." -msgstr "Salasanat eivät täsmää. Salasana ennallaan." +#: mod/cal.php:313 +msgid "This calendar format is not supported" +msgstr "Tätä kalenteriformaattia ei tueta" -#: src/Model/User.php:342 -msgid "An invitation is required." +#: mod/cal.php:315 +msgid "No exportable data found" +msgstr "Vientikelpoista dataa ei löytynyt" + +#: mod/cal.php:332 +msgid "calendar" +msgstr "kalenteri" + +#: mod/contacts.php:157 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "%d kontakti muokattu" +msgstr[1] "%d kontakteja muokattu" + +#: mod/contacts.php:184 mod/contacts.php:400 +msgid "Could not access contact record." +msgstr "Yhteystietoon ei päästä käsiksi." + +#: mod/contacts.php:194 +msgid "Could not locate selected profile." +msgstr "Valittua profiilia ei löydy." + +#: mod/contacts.php:228 +msgid "Contact updated." +msgstr "Yhteystietopäivitys onnistui." + +#: mod/contacts.php:421 +msgid "Contact has been blocked" +msgstr "Henkilö on estetty" + +#: mod/contacts.php:421 +msgid "Contact has been unblocked" +msgstr "Henkilö on jälleen sallittu" + +#: mod/contacts.php:432 +msgid "Contact has been ignored" +msgstr "Henkilöä ei enää huomioida" + +#: mod/contacts.php:432 +msgid "Contact has been unignored" +msgstr "Henkilö on jälleen huomioituna." + +#: mod/contacts.php:443 +msgid "Contact has been archived" +msgstr "Henkilö on arkistoitu." + +#: mod/contacts.php:443 +msgid "Contact has been unarchived" +msgstr "Henkilö on otettu pois arkistosta." + +#: mod/contacts.php:467 +msgid "Drop contact" +msgstr "Poista kontakti" + +#: mod/contacts.php:470 mod/contacts.php:823 +msgid "Do you really want to delete this contact?" +msgstr "Haluatko todella poistaa tämän yhteystiedon?" + +#: mod/contacts.php:488 +msgid "Contact has been removed." +msgstr "Yhteystieto on poistettu." + +#: mod/contacts.php:519 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Olet kaveri %s kanssa." + +#: mod/contacts.php:523 +#, php-format +msgid "You are sharing with %s" +msgstr "Olet jakanut jotakin %s:n kanssa" + +#: mod/contacts.php:527 +#, php-format +msgid "%s is sharing with you" +msgstr "%s jakaa sinulle jotakin." + +#: mod/contacts.php:547 +msgid "Private communications are not available for this contact." +msgstr "Yksityiskeskustelu ei ole käytettävissä tälle henkilölle." + +#: mod/contacts.php:549 +msgid "Never" +msgstr "Ei koskaan" + +#: mod/contacts.php:552 +msgid "(Update was successful)" +msgstr "(Päivitys onnistui)" + +#: mod/contacts.php:552 +msgid "(Update was not successful)" +msgstr "(Päivitys epäonnistui)" + +#: mod/contacts.php:554 mod/contacts.php:992 +msgid "Suggest friends" +msgstr "Ehdota ystäviä" + +#: mod/contacts.php:558 +#, php-format +msgid "Network type: %s" +msgstr "Verkkotyyppi: %s" + +#: mod/contacts.php:563 +msgid "Communications lost with this contact!" +msgstr "Yhteys tähän henkilöön menetettiin!" + +#: mod/contacts.php:569 +msgid "Fetch further information for feeds" msgstr "" -#: src/Model/User.php:346 -msgid "Invitation could not be verified." -msgstr "Kutsua ei voitu vahvistaa." - -#: src/Model/User.php:353 -msgid "Invalid OpenID url" -msgstr "Virheellinen OpenID url-osoite" - -#: src/Model/User.php:366 src/Module/Login.php:100 +#: mod/contacts.php:571 msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." +"Fetch information like preview pictures, title and teaser from the feed " +"item. You can activate this if the feed doesn't contain much text. Keywords " +"are taken from the meta header in the feed item and are posted as hash tags." msgstr "" -#: src/Model/User.php:366 src/Module/Login.php:100 -msgid "The error message was:" -msgstr "Virheviesti oli:" +#: mod/contacts.php:572 mod/admin.php:1274 mod/admin.php:1437 +#: mod/admin.php:1447 +msgid "Disabled" +msgstr "Pois käytöstä" -#: src/Model/User.php:372 -msgid "Please enter the required information." -msgstr "Syötä tarvittavat tiedot." +#: mod/contacts.php:573 +msgid "Fetch information" +msgstr "Nouda tiedot" -#: src/Model/User.php:385 -msgid "Please use a shorter name." -msgstr "Käytä lyhyempää nimeä." +#: mod/contacts.php:574 +msgid "Fetch keywords" +msgstr "Nouda avainsanat" -#: src/Model/User.php:388 -msgid "Name too short." -msgstr "Nimi on liian lyhyt." +#: mod/contacts.php:575 +msgid "Fetch information and keywords" +msgstr "Nouda tiedot ja avainsanat" -#: src/Model/User.php:396 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "" +#: mod/contacts.php:599 mod/unfollow.php:100 +msgid "Disconnect/Unfollow" +msgstr "Katkaise / Lopeta seuraaminen" -#: src/Model/User.php:401 -msgid "Your email domain is not among those allowed on this site." -msgstr "Sähköpostiosoitteesi verkkotunnus on tämän sivuston estolistalla." +#: mod/contacts.php:608 +msgid "Contact" +msgstr "Kontakti" -#: src/Model/User.php:405 -msgid "Not a valid email address." -msgstr "Virheellinen sähköpostiosoite." +#: mod/contacts.php:611 +msgid "Profile Visibility" +msgstr "Profiilin näkyvyys" -#: src/Model/User.php:409 src/Model/User.php:417 -msgid "Cannot use that email." -msgstr "Sähköpostiosoitetta ei voitu käyttää." - -#: src/Model/User.php:424 -msgid "Your nickname can only contain a-z, 0-9 and _." -msgstr "Nimimerkki voi sisältää a-z, 0-9 ja _." - -#: src/Model/User.php:431 src/Model/User.php:487 -msgid "Nickname is already registered. Please choose another." -msgstr "Valitsemasi nimimerkki on jo käytössä. Valitse toinen nimimerkki." - -#: src/Model/User.php:441 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "VAKAVA VIRHE: Salausavainten luominen epäonnistui." - -#: src/Model/User.php:474 src/Model/User.php:478 -msgid "An error occurred during registration. Please try again." -msgstr "Rekisteröityminen epäonnistui. Yritä uudelleen." - -#: src/Model/User.php:498 view/theme/duepuntozero/config.php:54 -msgid "default" -msgstr "oletus" - -#: src/Model/User.php:503 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Oletusprofiilin luominen epäonnistui. Yritä uudelleen." - -#: src/Model/User.php:510 -msgid "An error occurred creating your self contact. Please try again." -msgstr "" - -#: src/Model/User.php:515 src/Content/ContactSelector.php:169 -msgid "Friends" -msgstr "Kaverit" - -#: src/Model/User.php:519 +#: mod/contacts.php:612 +#, php-format msgid "" -"An error occurred creating your default contact group. Please try again." +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Valitse profiili, jonka haluat näyttää %s:lle, kun hän haluaa katsoa profiiliasi turvallisesti." + +#: mod/contacts.php:613 +msgid "Contact Information / Notes" +msgstr "Yhteystiedot / Muistiinpanot" + +#: mod/contacts.php:614 +msgid "Their personal note" msgstr "" -#: src/Model/User.php:593 +#: mod/contacts.php:616 +msgid "Edit contact notes" +msgstr "Muokkaa yhteystietojen muistiinpanoja" + +#: mod/contacts.php:620 +msgid "Block/Unblock contact" +msgstr "Estä/salli henkilö" + +#: mod/contacts.php:621 +msgid "Ignore contact" +msgstr "Jätä henkilö huomiotta" + +#: mod/contacts.php:622 +msgid "Repair URL settings" +msgstr "Korjaa URL-asetukset" + +#: mod/contacts.php:623 +msgid "View conversations" +msgstr "Katso keskusteluja" + +#: mod/contacts.php:628 +msgid "Last update:" +msgstr "Viimeksi päivitetty:" + +#: mod/contacts.php:630 +msgid "Update public posts" +msgstr "Päivitä julkiset postaukset" + +#: mod/contacts.php:632 mod/contacts.php:1002 +msgid "Update now" +msgstr "Päivitä nyt" + +#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011 +#: mod/admin.php:485 mod/admin.php:1816 +msgid "Unblock" +msgstr "Salli" + +#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011 +#: mod/admin.php:484 mod/admin.php:1815 +msgid "Block" +msgstr "Estä" + +#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019 +msgid "Unignore" +msgstr "Ota huomioon" + +#: mod/contacts.php:642 +msgid "Currently blocked" +msgstr "Estetty tällä hetkellä" + +#: mod/contacts.php:643 +msgid "Currently ignored" +msgstr "Jätetty huomiotta tällä hetkellä" + +#: mod/contacts.php:644 +msgid "Currently archived" +msgstr "Arkistoitu tällä hetkellä" + +#: mod/contacts.php:645 +msgid "Awaiting connection acknowledge" +msgstr "Odotetaan yhteyden kuittausta" + +#: mod/contacts.php:646 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "" + +#: mod/contacts.php:647 +msgid "Notification for new posts" +msgstr "Uusien postausten ilmoitus" + +#: mod/contacts.php:647 +msgid "Send a notification of every new post of this contact" +msgstr "Lähetä ilmoitus tälle henkilölle kaikista uusista postauksista" + +#: mod/contacts.php:650 +msgid "Blacklisted keywords" +msgstr "Kielletyt avainsanat" + +#: mod/contacts.php:650 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "" + +#: mod/contacts.php:662 src/Model/Profile.php:420 +msgid "XMPP:" +msgstr "XMPP:" + +#: mod/contacts.php:667 +msgid "Actions" +msgstr "Toimenpiteet" + +#: mod/contacts.php:669 mod/contacts.php:855 view/theme/frio/theme.php:259 +#: src/Content/Nav.php:100 src/Model/Profile.php:886 +msgid "Status" +msgstr "Tila" + +#: mod/contacts.php:670 +msgid "Contact Settings" +msgstr "Yhteystietoasetukset" + +#: mod/contacts.php:711 +msgid "Suggestions" +msgstr "Ehdotukset" + +#: mod/contacts.php:714 +msgid "Suggest potential friends" +msgstr "Ehdota mahdollisille ystäville" + +#: mod/contacts.php:722 +msgid "Show all contacts" +msgstr "Näytä kaikki yhteystiedot" + +#: mod/contacts.php:727 +msgid "Unblocked" +msgstr "Sallittu" + +#: mod/contacts.php:730 +msgid "Only show unblocked contacts" +msgstr "Näytä vain sallitut henkilöt" + +#: mod/contacts.php:735 +msgid "Blocked" +msgstr "Estetty" + +#: mod/contacts.php:738 +msgid "Only show blocked contacts" +msgstr "Näytä vain estetyt henkilöt" + +#: mod/contacts.php:743 +msgid "Ignored" +msgstr "Jätetty huomiotta" + +#: mod/contacts.php:746 +msgid "Only show ignored contacts" +msgstr "Näytä vain henkilöt, jotka jätetty huomiotta" + +#: mod/contacts.php:751 +msgid "Archived" +msgstr "Arkistoitu" + +#: mod/contacts.php:754 +msgid "Only show archived contacts" +msgstr "Näytä vain arkistoidut henkilöt" + +#: mod/contacts.php:759 +msgid "Hidden" +msgstr "Piilotettu" + +#: mod/contacts.php:762 +msgid "Only show hidden contacts" +msgstr "Näytä vain piilotetut henkilöt" + +#: mod/contacts.php:818 +msgid "Search your contacts" +msgstr "Etsi henkilöitä" + +#: mod/contacts.php:820 mod/directory.php:209 view/theme/vier/theme.php:203 +#: src/Content/Widget.php:63 +msgid "Find" +msgstr "Etsi" + +#: mod/contacts.php:826 mod/settings.php:171 mod/settings.php:703 +msgid "Update" +msgstr "Päivitä" + +#: mod/contacts.php:829 mod/contacts.php:1027 +msgid "Archive" +msgstr "Arkistoi" + +#: mod/contacts.php:829 mod/contacts.php:1027 +msgid "Unarchive" +msgstr "Poista arkistosta" + +#: mod/contacts.php:832 +msgid "Batch Actions" +msgstr "" + +#: mod/contacts.php:858 mod/unfollow.php:132 mod/follow.php:186 +#: src/Model/Profile.php:889 +msgid "Status Messages and Posts" +msgstr "Statusviestit ja postaukset" + +#: mod/contacts.php:866 src/Model/Profile.php:897 +msgid "Profile Details" +msgstr "Profiilitiedot" + +#: mod/contacts.php:878 +msgid "View all contacts" +msgstr "Näytä kaikki kontaktit" + +#: mod/contacts.php:889 +msgid "View all common friends" +msgstr "Näytä kaikki yhteiset kaverit" + +#: mod/contacts.php:895 mod/events.php:532 mod/admin.php:1353 +#: src/Model/Profile.php:863 +msgid "Advanced" +msgstr "" + +#: mod/contacts.php:898 +msgid "Advanced Contact Settings" +msgstr "Kontakti-lisäasetukset" + +#: mod/contacts.php:930 +msgid "Mutual Friendship" +msgstr "Yhteinen kaveruus" + +#: mod/contacts.php:934 +msgid "is a fan of yours" +msgstr "on fanisi" + +#: mod/contacts.php:938 +msgid "you are a fan of" +msgstr "fanitat" + +#: mod/contacts.php:1013 +msgid "Toggle Blocked status" +msgstr "Estetty tila päälle/pois" + +#: mod/contacts.php:1021 +msgid "Toggle Ignored status" +msgstr "Sivuuta/seuraa" + +#: mod/contacts.php:1029 +msgid "Toggle Archive status" +msgstr "Arkistotila päälle/pois" + +#: mod/contacts.php:1037 +msgid "Delete contact" +msgstr "Poista kontakti" + +#: mod/delegate.php:37 +msgid "Parent user not found." +msgstr "" + +#: mod/delegate.php:144 +msgid "No parent user" +msgstr "" + +#: mod/delegate.php:159 +msgid "Parent Password:" +msgstr "" + +#: mod/delegate.php:159 +msgid "" +"Please enter the password of the parent account to legitimize your request." +msgstr "" + +#: mod/delegate.php:164 +msgid "Parent User" +msgstr "" + +#: mod/delegate.php:167 +msgid "" +"Parent users have total control about this account, including the account " +"settings. Please double check whom you give this access." +msgstr "" + +#: mod/delegate.php:168 mod/admin.php:307 mod/admin.php:1348 +#: mod/admin.php:1981 mod/admin.php:2234 mod/admin.php:2308 mod/admin.php:2455 +#: mod/settings.php:677 mod/settings.php:786 mod/settings.php:874 +#: mod/settings.php:963 mod/settings.php:1196 +msgid "Save Settings" +msgstr "Tallenna asetukset" + +#: mod/delegate.php:169 src/Content/Nav.php:201 +msgid "Delegate Page Management" +msgstr "" + +#: mod/delegate.php:170 +msgid "Delegates" +msgstr "" + +#: mod/delegate.php:172 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "" + +#: mod/delegate.php:173 +msgid "Existing Page Delegates" +msgstr "" + +#: mod/delegate.php:175 +msgid "Potential Delegates" +msgstr "" + +#: mod/delegate.php:178 +msgid "Add" +msgstr "Lisää" + +#: mod/delegate.php:179 +msgid "No entries." +msgstr "" + +#: mod/events.php:105 mod/events.php:107 +msgid "Event can not end before it has started." +msgstr "" + +#: mod/events.php:114 mod/events.php:116 +msgid "Event title and start time are required." +msgstr "Tapahtuman nimi ja alkamisaika vaaditaan." + +#: mod/events.php:393 +msgid "Create New Event" +msgstr "Luo uusi tapahtuma" + +#: mod/events.php:506 +msgid "Event details" +msgstr "Tapahtuman tiedot" + +#: mod/events.php:507 +msgid "Starting date and Title are required." +msgstr "Aloituspvm ja otsikko vaaditaan." + +#: mod/events.php:508 mod/events.php:509 +msgid "Event Starts:" +msgstr "Tapahtuma alkaa:" + +#: mod/events.php:508 mod/events.php:520 mod/profiles.php:700 +msgid "Required" +msgstr "Vaaditaan" + +#: mod/events.php:510 mod/events.php:526 +msgid "Finish date/time is not known or not relevant" +msgstr "Päättymispvm ja kellonaika ei ole tiedossa tai niillä ei ole merkitystä" + +#: mod/events.php:512 mod/events.php:513 +msgid "Event Finishes:" +msgstr "Tapahtuma päättyy:" + +#: mod/events.php:514 mod/events.php:527 +msgid "Adjust for viewer timezone" +msgstr "Ota huomioon katsojan aikavyöhyke" + +#: mod/events.php:516 +msgid "Description:" +msgstr "Kuvaus:" + +#: mod/events.php:520 mod/events.php:522 +msgid "Title:" +msgstr "Otsikko:" + +#: mod/events.php:523 mod/events.php:524 +msgid "Share this event" +msgstr "Jaa tämä tapahtuma" + +#: mod/events.php:531 src/Model/Profile.php:862 +msgid "Basic" +msgstr "" + +#: mod/events.php:552 +msgid "Failed to remove event" +msgstr "Tapahtuman poisto epäonnistui" + +#: mod/events.php:554 +msgid "Event removed" +msgstr "Tapahtuma poistettu" + +#: mod/feedtest.php:20 +msgid "You must be logged in to use this module" +msgstr "Sinun pitää kirjautua sisään, jotta voit käyttää tätä moduulia" + +#: mod/feedtest.php:48 +msgid "Source URL" +msgstr "Lähde URL" + +#: mod/item.php:114 +msgid "Unable to locate original post." +msgstr "Alkuperäinen julkaisu ei löydy." + +#: mod/item.php:274 +msgid "Empty post discarded." +msgstr "Tyhjä julkaisu hylätty." + +#: mod/item.php:799 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "" + +#: mod/item.php:801 +#, php-format +msgid "You may visit them online at %s" +msgstr "" + +#: mod/item.php:802 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "" + +#: mod/item.php:806 +#, php-format +msgid "%s posted an update." +msgstr "%s julkaisi päivityksen." + +#: mod/oexchange.php:30 +msgid "Post successful." +msgstr "Viestin lähetys onnistui." + +#: mod/ostatus_subscribe.php:21 +msgid "Subscribing to OStatus contacts" +msgstr "OStatus -kontaktien tilaaminen" + +#: mod/ostatus_subscribe.php:33 +msgid "No contact provided." +msgstr "Kontakti puuttuu." + +#: mod/ostatus_subscribe.php:40 +msgid "Couldn't fetch information for contact." +msgstr "Kontaktin tietoja ei voitu hakea." + +#: mod/ostatus_subscribe.php:50 +msgid "Couldn't fetch friends for contact." +msgstr "Ei voitu hakea kontaktin kaverit." + +#: mod/ostatus_subscribe.php:78 +msgid "success" +msgstr "onnistui" + +#: mod/ostatus_subscribe.php:80 +msgid "failed" +msgstr "epäonnistui" + +#: mod/ostatus_subscribe.php:83 src/Object/Post.php:279 +msgid "ignored" +msgstr "ohitettu" + +#: mod/profile_photo.php:55 +msgid "Image uploaded but image cropping failed." +msgstr "Kuva ladattu mutta kuvan rajaus epäonnistui." + +#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104 +#: mod/profile_photo.php:315 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Kuvan pienentäminen [%s] epäonnistui." + +#: mod/profile_photo.php:125 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Jos kuva ei näy heti, lataa sivu uudelleen tai tyhjennä selaimen välimuisti." + +#: mod/profile_photo.php:134 +msgid "Unable to process image" +msgstr "Kuvan käsitteleminen epäonnistui" + +#: mod/profile_photo.php:247 +msgid "Upload File:" +msgstr "Lähetä tiedosto:" + +#: mod/profile_photo.php:248 +msgid "Select a profile:" +msgstr "Valitse profiili:" + +#: mod/profile_photo.php:253 +msgid "or" +msgstr "tai" + +#: mod/profile_photo.php:253 +msgid "skip this step" +msgstr "ohita tämä vaihe" + +#: mod/profile_photo.php:253 +msgid "select a photo from your photo albums" +msgstr "valitse kuva albumeistasi" + +#: mod/profile_photo.php:266 +msgid "Crop Image" +msgstr "Rajaa kuva" + +#: mod/profile_photo.php:267 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Rajaa kuva sopivasti." + +#: mod/profile_photo.php:269 +msgid "Done Editing" +msgstr "Lopeta muokkaus" + +#: mod/profile_photo.php:305 +msgid "Image uploaded successfully." +msgstr "Kuvan lähettäminen onnistui." + +#: mod/unfollow.php:34 +msgid "Contact wasn't found or can't be unfollowed." +msgstr "" + +#: mod/unfollow.php:47 +msgid "Contact unfollowed" +msgstr "Kontaktia ei enää seurata" + +#: mod/unfollow.php:73 +msgid "You aren't a friend of this contact." +msgstr "Et ole kontaktin kaveri." + +#: mod/unfollow.php:79 +msgid "Unfollowing is currently not supported by your network." +msgstr "Seuraamisen lopettaminen ei tällä hetkellä tueta verkossasi." + +#: mod/directory.php:152 src/Model/Profile.php:417 src/Model/Profile.php:767 +msgid "Status:" +msgstr "Tila:" + +#: mod/directory.php:153 src/Model/Profile.php:418 src/Model/Profile.php:784 +msgid "Homepage:" +msgstr "Kotisivu:" + +#: mod/directory.php:202 view/theme/vier/theme.php:208 +#: src/Content/Widget.php:68 +msgid "Global Directory" +msgstr "Maailmanlaajuinen hakemisto" + +#: mod/directory.php:204 +msgid "Find on this site" +msgstr "" + +#: mod/directory.php:206 +msgid "Results for:" +msgstr "Tulokset haulla:" + +#: mod/directory.php:208 +msgid "Site Directory" +msgstr "Sivuston luettelo" + +#: mod/directory.php:213 +msgid "No entries (some entries may be hidden)." +msgstr "" + +#: mod/dirfind.php:49 +#, php-format +msgid "People Search - %s" +msgstr "Käyttäjähaku - %s" + +#: mod/dirfind.php:60 +#, php-format +msgid "Forum Search - %s" +msgstr "Foorumihaku - %s" + +#: mod/follow.php:45 +msgid "The contact could not be added." +msgstr "Kontaktia ei voitu lisätä." + +#: mod/follow.php:73 +msgid "You already added this contact." +msgstr "Olet jo lisännyt tämän kontaktin." + +#: mod/follow.php:83 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Diaspora -tuki ei ole käytössä. Kontaktia ei voi lisätä." + +#: mod/follow.php:90 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "OStatus -tuki ei ole käytössä. Kontaktia ei voi lisätä." + +#: mod/follow.php:97 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "Verkkotyyppiä ei voitu havaita. Kontaktia ei voitu lisätä." + +#: mod/lostpass.php:27 +msgid "No valid account found." +msgstr "Voimassa olevaa tiliä ei löytynyt." + +#: mod/lostpass.php:39 +msgid "Password reset request issued. Check your email." +msgstr "Salasanan nollauspyyntö lähetetty. Tarkista sähköpostisi." + +#: mod/lostpass.php:45 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" +"\t\tpassword. In order to confirm this request, please select the verification link\n" +"\t\tbelow or paste it into your web browser address bar.\n" +"\n" +"\t\tIf you did NOT request this change, please DO NOT follow the link\n" +"\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n" +"\n" +"\t\tYour password will not be changed unless we can verify that you\n" +"\t\tissued this request." +msgstr "" + +#: mod/lostpass.php:56 +#, php-format +msgid "" +"\n" +"\t\tFollow this link soon to verify your identity:\n" +"\n" +"\t\t%1$s\n" +"\n" +"\t\tYou will then receive a follow-up message containing the new password.\n" +"\t\tYou may change that password from your account settings page after logging in.\n" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%2$s\n" +"\t\tLogin Name:\t%3$s" +msgstr "" + +#: mod/lostpass.php:73 +#, php-format +msgid "Password reset requested at %s" +msgstr "Salasanan nollauspyyntö kohteessa %s" + +#: mod/lostpass.php:89 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Pyyntöä ei voitu vahvistaa. (Saatoit lähettää pyyntöä aikaisemmin.) Salasanan nollaus epäonnistui." + +#: mod/lostpass.php:102 +msgid "Request has expired, please make a new one." +msgstr "Pyyntö on vanhentunut, tehkää uusi pyyntö." + +#: mod/lostpass.php:117 +msgid "Forgot your Password?" +msgstr "Unohditko salasanasi?" + +#: mod/lostpass.php:118 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "" + +#: mod/lostpass.php:119 src/Module/Login.php:314 +msgid "Nickname or Email: " +msgstr "Lempinimi tai sähköposti:" + +#: mod/lostpass.php:120 +msgid "Reset" +msgstr "Nollaus" + +#: mod/lostpass.php:136 src/Module/Login.php:326 +msgid "Password Reset" +msgstr "Salasanan nollaus" + +#: mod/lostpass.php:137 +msgid "Your password has been reset as requested." +msgstr "Salasanasi on nollattu pyynnöstäsi." + +#: mod/lostpass.php:138 +msgid "Your new password is" +msgstr "Uusi salasanasi on" + +#: mod/lostpass.php:139 +msgid "Save or copy your new password - and then" +msgstr "Tallenna tai kopioi uusi salasanasi, ja sitten" + +#: mod/lostpass.php:140 +msgid "click here to login" +msgstr "kirjaudu klikkaamalla tästä" + +#: mod/lostpass.php:141 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Salsanaa voi vaihtaa asetussivulta kirjautumisen jälkeen." + +#: mod/lostpass.php:149 #, php-format msgid "" "\n" "\t\t\tDear %1$s,\n" -"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\tinformation for your records (or change your password immediately to\n" +"\t\t\tsomething that you will remember).\n" "\t\t" msgstr "" -#: src/Model/User.php:603 +#: mod/lostpass.php:155 #, php-format -msgid "Registration at %s" -msgstr "Rekisteröityminen kohteessa %s" +msgid "" +"\n" +"\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%1$s\n" +"\t\t\tLogin Name:\t%2$s\n" +"\t\t\tPassword:\t%3$s\n" +"\n" +"\t\t\tYou may change that password from your account settings page after logging in.\n" +"\t\t" +msgstr "\n\t\t\tKäyttäjätilisi tiedot:\n\n\t\t\tSivuston osoite:\t%1$s\n\t\t\tKäyttäjätunnus:\t%2$s\n\t\t\tSalasana:\t%3$s\n\n\t\t\tVoit vaihtaa salasanasi kirjautumisen jälkeen asetussivulta.\n\t\t" -#: src/Model/User.php:621 +#: mod/lostpass.php:169 +#, php-format +msgid "Your password has been changed at %s" +msgstr "Salasanasi on vaihdettu sivustolla %s" + +#: mod/profiles.php:58 +msgid "Profile deleted." +msgstr "Profiili poistettiin." + +#: mod/profiles.php:74 mod/profiles.php:110 +msgid "Profile-" +msgstr "Profiili-" + +#: mod/profiles.php:93 mod/profiles.php:132 +msgid "New profile created." +msgstr "Uusi profiili luotu." + +#: mod/profiles.php:116 +msgid "Profile unavailable to clone." +msgstr "Profiili ei saatavilla kloonattavaksi." + +#: mod/profiles.php:206 +msgid "Profile Name is required." +msgstr "Profiilinimi on pakollinen." + +#: mod/profiles.php:347 +msgid "Marital Status" +msgstr "Siviilisääty" + +#: mod/profiles.php:351 +msgid "Romantic Partner" +msgstr "Romanttinen kumppani" + +#: mod/profiles.php:363 +msgid "Work/Employment" +msgstr "Työ" + +#: mod/profiles.php:366 +msgid "Religion" +msgstr "Uskonto" + +#: mod/profiles.php:370 +msgid "Political Views" +msgstr "Poliittiset näkemykset" + +#: mod/profiles.php:374 +msgid "Gender" +msgstr "Sukupuoli" + +#: mod/profiles.php:378 +msgid "Sexual Preference" +msgstr "Seksuaalinen suuntautuminen" + +#: mod/profiles.php:382 +msgid "XMPP" +msgstr "XMPP" + +#: mod/profiles.php:386 +msgid "Homepage" +msgstr "Kotisivu" + +#: mod/profiles.php:390 mod/profiles.php:686 +msgid "Interests" +msgstr "Kiinnostukset" + +#: mod/profiles.php:394 mod/admin.php:490 +msgid "Address" +msgstr "Osoite" + +#: mod/profiles.php:401 mod/profiles.php:682 +msgid "Location" +msgstr "Sijainti" + +#: mod/profiles.php:486 +msgid "Profile updated." +msgstr "Profiili päivitettiin." + +#: mod/profiles.php:564 +msgid " and " +msgstr "ja" + +#: mod/profiles.php:573 +msgid "public profile" +msgstr "julkinen profiili" + +#: mod/profiles.php:576 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "" + +#: mod/profiles.php:577 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr "" + +#: mod/profiles.php:579 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "" + +#: mod/profiles.php:633 +msgid "Hide contacts and friends:" +msgstr "Piilota kontaktit ja kaverit:" + +#: mod/profiles.php:638 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Piilota tämän profiilin kontakti/kaverilista?" + +#: mod/profiles.php:658 +msgid "Show more profile fields:" +msgstr "Näytä lisää profiilikenttiä:" + +#: mod/profiles.php:670 +msgid "Profile Actions" +msgstr "" + +#: mod/profiles.php:671 +msgid "Edit Profile Details" +msgstr "Muokkaa profiilin yksityiskohdat" + +#: mod/profiles.php:673 +msgid "Change Profile Photo" +msgstr "Vaihda profiilikuva" + +#: mod/profiles.php:674 +msgid "View this profile" +msgstr "Näytä profiilia" + +#: mod/profiles.php:675 mod/profiles.php:770 src/Model/Profile.php:389 +msgid "Edit visibility" +msgstr "Muokkaa näkyvyyttä" + +#: mod/profiles.php:676 +msgid "Create a new profile using these settings" +msgstr "Luo uusi profiili näillä asetuksilla" + +#: mod/profiles.php:677 +msgid "Clone this profile" +msgstr "Kloonaa tämä profiili" + +#: mod/profiles.php:678 +msgid "Delete this profile" +msgstr "Poista tämä profiili" + +#: mod/profiles.php:680 +msgid "Basic information" +msgstr "Perustiedot" + +#: mod/profiles.php:681 +msgid "Profile picture" +msgstr "Profiilikuva" + +#: mod/profiles.php:683 +msgid "Preferences" +msgstr "Mieltymykset" + +#: mod/profiles.php:684 +msgid "Status information" +msgstr "Tilatiedot" + +#: mod/profiles.php:685 +msgid "Additional information" +msgstr "Lisätietoja" + +#: mod/profiles.php:687 mod/network.php:956 +#: src/Core/NotificationsManager.php:185 +msgid "Personal" +msgstr "Henkilökohtainen" + +#: mod/profiles.php:688 +msgid "Relation" +msgstr "Suhde" + +#: mod/profiles.php:689 src/Util/Temporal.php:81 src/Util/Temporal.php:83 +msgid "Miscellaneous" +msgstr "Sekalaista" + +#: mod/profiles.php:692 +msgid "Your Gender:" +msgstr "Sukupuoli:" + +#: mod/profiles.php:693 +msgid " Marital Status:" +msgstr " Siviilisääty:" + +#: mod/profiles.php:694 src/Model/Profile.php:780 +msgid "Sexual Preference:" +msgstr "Seksuaalinen suuntautuminen:" + +#: mod/profiles.php:695 +msgid "Example: fishing photography software" +msgstr "Esimerkki: kalastus valokuvaus ohjelmistot" + +#: mod/profiles.php:700 +msgid "Profile Name:" +msgstr "Profiilinimi:" + +#: mod/profiles.php:702 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "" + +#: mod/profiles.php:703 +msgid "Your Full Name:" +msgstr "Koko nimi:" + +#: mod/profiles.php:704 +msgid "Title/Description:" +msgstr "Otsikko/kuvaus:" + +#: mod/profiles.php:707 +msgid "Street Address:" +msgstr "Katuosoite:" + +#: mod/profiles.php:708 +msgid "Locality/City:" +msgstr "Kaupunki:" + +#: mod/profiles.php:709 +msgid "Region/State:" +msgstr "Alue/osavaltio:" + +#: mod/profiles.php:710 +msgid "Postal/Zip Code:" +msgstr "Postinumero:" + +#: mod/profiles.php:711 +msgid "Country:" +msgstr "Maa:" + +#: mod/profiles.php:712 src/Util/Temporal.php:149 +msgid "Age: " +msgstr "Ikä:" + +#: mod/profiles.php:715 +msgid "Who: (if applicable)" +msgstr "Kuka: (tarvittaessa)" + +#: mod/profiles.php:715 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Esimerkkejä: cathy123, Cathy Williams, cathy@example.com" + +#: mod/profiles.php:716 +msgid "Since [date]:" +msgstr "Lähtien [päivämäärä]:" + +#: mod/profiles.php:718 +msgid "Tell us about yourself..." +msgstr "Kerro vähän itsestäsi..." + +#: mod/profiles.php:719 +msgid "XMPP (Jabber) address:" +msgstr "XMPP (Jabber) osoite:" + +#: mod/profiles.php:719 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow" +" you." +msgstr "" + +#: mod/profiles.php:720 +msgid "Homepage URL:" +msgstr "Kotisivun URL-osoite:" + +#: mod/profiles.php:721 src/Model/Profile.php:788 +msgid "Hometown:" +msgstr "Kotikaupunki:" + +#: mod/profiles.php:722 src/Model/Profile.php:796 +msgid "Political Views:" +msgstr "Politiikka:" + +#: mod/profiles.php:723 +msgid "Religious Views:" +msgstr "Uskonto:" + +#: mod/profiles.php:724 +msgid "Public Keywords:" +msgstr "Julkiset avainsanat:" + +#: mod/profiles.php:724 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Käytetään kaveriehdotuksia varten, näkyy muille)" + +#: mod/profiles.php:725 +msgid "Private Keywords:" +msgstr "Yksityiset avainsanat:" + +#: mod/profiles.php:725 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Käytetään profiilihakua varten, ei näy muille)" + +#: mod/profiles.php:726 src/Model/Profile.php:812 +msgid "Likes:" +msgstr "Tykkäykset:" + +#: mod/profiles.php:727 src/Model/Profile.php:816 +msgid "Dislikes:" +msgstr "Ei tykkää:" + +#: mod/profiles.php:728 +msgid "Musical interests" +msgstr "Musiikki" + +#: mod/profiles.php:729 +msgid "Books, literature" +msgstr "Kirjat, kirjallisuus" + +#: mod/profiles.php:730 +msgid "Television" +msgstr "Televisio" + +#: mod/profiles.php:731 +msgid "Film/dance/culture/entertainment" +msgstr "Elokuvat/tanssi/kulttuuri/viihde" + +#: mod/profiles.php:732 +msgid "Hobbies/Interests" +msgstr "Harrastukset" + +#: mod/profiles.php:733 +msgid "Love/romance" +msgstr "Rakkaus/romanssi" + +#: mod/profiles.php:734 +msgid "Work/employment" +msgstr "Työ:" + +#: mod/profiles.php:735 +msgid "School/education" +msgstr "Koulutus:" + +#: mod/profiles.php:736 +msgid "Contact information and Social Networks" +msgstr "Yhteystiedot ja sosiaalinen media" + +#: mod/profiles.php:767 src/Model/Profile.php:385 +msgid "Profile Image" +msgstr "Profiilikuva" + +#: mod/profiles.php:769 src/Model/Profile.php:388 +msgid "visible to everybody" +msgstr "näkyvissä kaikille" + +#: mod/profiles.php:776 +msgid "Edit/Manage Profiles" +msgstr "Muokkaa/hallitse profiilit" + +#: mod/profiles.php:777 src/Model/Profile.php:375 src/Model/Profile.php:397 +msgid "Change profile photo" +msgstr "Vaihda profiilikuva" + +#: mod/profiles.php:778 src/Model/Profile.php:376 +msgid "Create New Profile" +msgstr "Luo uusi profiili" + +#: mod/register.php:99 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Rekisteröityminen onnistui. Saat kohta lisäohjeita sähköpostitse." + +#: mod/register.php:103 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "" + +#: mod/register.php:110 +msgid "Registration successful." +msgstr "Rekisteröityminen onnistui." + +#: mod/register.php:115 +msgid "Your registration can not be processed." +msgstr "Rekisteröintisi ei voida käsitellä." + +#: mod/register.php:162 +msgid "Your registration is pending approval by the site owner." +msgstr "Rekisteröintisi odottaa ylläpitäjän hyväksyntää." + +#: mod/register.php:220 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "" + +#: mod/register.php:221 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Jos OpenID ei ole tuttu, jätä kenttä tyhjäksi." + +#: mod/register.php:222 +msgid "Your OpenID (optional): " +msgstr "OpenID -tunnus (valinnainen):" + +#: mod/register.php:234 +msgid "Include your profile in member directory?" +msgstr "Lisää profiilisi jäsenluetteloon?" + +#: mod/register.php:259 +msgid "Note for the admin" +msgstr "Viesti ylläpidolle" + +#: mod/register.php:259 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "Kerro yllåpitäjälle miksi haluat liittyä tähän Friendica -sivustoon" + +#: mod/register.php:260 +msgid "Membership on this site is by invitation only." +msgstr "Tähän sivustoon voi liittyä vain kutsusta." + +#: mod/register.php:261 +msgid "Your invitation code: " +msgstr "Kutsukoodisi:" + +#: mod/register.php:264 mod/admin.php:1350 +msgid "Registration" +msgstr "Rekisteröityminen" + +#: mod/register.php:270 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "Koko nimi (esim. Matti Meikäläinen, Aku Ankka):" + +#: mod/register.php:271 +msgid "" +"Your Email Address: (Initial information will be send there, so this has to " +"be an existing address.)" +msgstr "Sähköpostiosoite: (pitää olla toimiva osoite että rekisteröityminen onnistuu)" + +#: mod/register.php:273 mod/settings.php:1203 +msgid "New Password:" +msgstr "Uusi salasana:" + +#: mod/register.php:273 +msgid "Leave empty for an auto generated password." +msgstr "Jätä tyhjäksi jos haluat automaattisesti luotu salasanan." + +#: mod/register.php:274 mod/settings.php:1204 +msgid "Confirm:" +msgstr "Vahvista:" + +#: mod/register.php:275 +#, php-format +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be 'nickname@%s'." +msgstr "" + +#: mod/register.php:276 +msgid "Choose a nickname: " +msgstr "Valitse lempinimi:" + +#: mod/register.php:279 src/Content/Nav.php:128 src/Module/Login.php:283 +msgid "Register" +msgstr "Rekisteröidy" + +#: mod/register.php:286 +msgid "Import your profile to this friendica instance" +msgstr "Tuo profiilisi tähän Friendica -instanssiin." + +#: mod/register.php:288 mod/admin.php:188 mod/admin.php:302 +#: src/Module/Tos.php:48 +msgid "Terms of Service" +msgstr "Käyttöehdot" + +#: mod/removeme.php:43 +msgid "User deleted their account" +msgstr "Käyttäjä poisti tilinsä" + +#: mod/removeme.php:44 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "Friendica -solmullasi käyttäjä poisti tilinsä. Varmista että hänen tiedot poistetaan myös varmuuskopioista." + +#: mod/removeme.php:45 +#, php-format +msgid "The user id is %d" +msgstr "" + +#: mod/removeme.php:76 mod/removeme.php:79 +msgid "Remove My Account" +msgstr "Poista tilini" + +#: mod/removeme.php:77 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Tämä poistaa käyttäjätilisi pysyvästi. Poistoa ei voi perua myöhemmin." + +#: mod/removeme.php:78 +msgid "Please enter your password for verification:" +msgstr "Syötä salasanasi varmistusta varten:" + +#: mod/admin.php:106 +msgid "Theme settings updated." +msgstr "Teeman asetukset päivitetty." + +#: mod/admin.php:179 src/Content/Nav.php:175 +msgid "Information" +msgstr "Tietoja" + +#: mod/admin.php:180 +msgid "Overview" +msgstr "Yleiskatsaus" + +#: mod/admin.php:181 mod/admin.php:718 +msgid "Federation Statistics" +msgstr "Liiton tilastotiedot" + +#: mod/admin.php:182 +msgid "Configuration" +msgstr "Kokoonpano" + +#: mod/admin.php:183 mod/admin.php:1347 +msgid "Site" +msgstr "Sivusto" + +#: mod/admin.php:184 mod/admin.php:1275 mod/admin.php:1804 mod/admin.php:1820 +msgid "Users" +msgstr "Käyttäjät" + +#: mod/admin.php:185 mod/admin.php:1920 mod/admin.php:1980 mod/settings.php:87 +msgid "Addons" +msgstr "Lisäosat" + +#: mod/admin.php:186 mod/admin.php:2189 mod/admin.php:2233 +msgid "Themes" +msgstr "Teemat" + +#: mod/admin.php:187 mod/settings.php:65 +msgid "Additional features" +msgstr "Lisäominaisuuksia" + +#: mod/admin.php:189 +msgid "Database" +msgstr "Tietokanta" + +#: mod/admin.php:190 +msgid "DB updates" +msgstr "Tietokannan päivitykset" + +#: mod/admin.php:191 mod/admin.php:753 +msgid "Inspect Queue" +msgstr "Tarkista jono" + +#: mod/admin.php:192 +msgid "Tools" +msgstr "Työkalut" + +#: mod/admin.php:193 +msgid "Contact Blocklist" +msgstr "Kontaktien estolista" + +#: mod/admin.php:194 mod/admin.php:362 +msgid "Server Blocklist" +msgstr "Palvelimien estolista" + +#: mod/admin.php:195 mod/admin.php:521 +msgid "Delete Item" +msgstr "Poista kohde" + +#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2307 +msgid "Logs" +msgstr "Lokit" + +#: mod/admin.php:198 mod/admin.php:2374 +msgid "View Logs" +msgstr "Katso lokit" + +#: mod/admin.php:200 +msgid "Diagnostics" +msgstr "Diagnostiikka" + +#: mod/admin.php:201 +msgid "PHP Info" +msgstr "PHP tietoja" + +#: mod/admin.php:202 +msgid "probe address" +msgstr "" + +#: mod/admin.php:203 +msgid "check webfinger" +msgstr "Tarkista webfinger" + +#: mod/admin.php:222 src/Content/Nav.php:214 +msgid "Admin" +msgstr "Ylläpitäjä" + +#: mod/admin.php:223 +msgid "Addon Features" +msgstr "Lisäosaominaisuudet" + +#: mod/admin.php:224 +msgid "User registrations waiting for confirmation" +msgstr "Käyttäjärekisteröinnit odottavat hyväksyntää" + +#: mod/admin.php:301 mod/admin.php:361 mod/admin.php:478 mod/admin.php:520 +#: mod/admin.php:717 mod/admin.php:752 mod/admin.php:848 mod/admin.php:1346 +#: mod/admin.php:1803 mod/admin.php:1919 mod/admin.php:1979 mod/admin.php:2188 +#: mod/admin.php:2232 mod/admin.php:2306 mod/admin.php:2373 +msgid "Administration" +msgstr "Ylläpito" + +#: mod/admin.php:303 +msgid "Display Terms of Service" +msgstr "Näytä käyttöehdot" + +#: mod/admin.php:303 +msgid "" +"Enable the Terms of Service page. If this is enabled a link to the terms " +"will be added to the registration form and the general information page." +msgstr "" + +#: mod/admin.php:304 +msgid "Display Privacy Statement" +msgstr "Näytä tietosuojalausunto" + +#: mod/admin.php:304 +#, php-format +msgid "" +"Show some informations regarding the needed information to operate the node " +"according e.g. to EU-GDPR." +msgstr "" + +#: mod/admin.php:305 +msgid "The Terms of Service" +msgstr "Käyttöehdot" + +#: mod/admin.php:305 +msgid "" +"Enter the Terms of Service for your node here. You can use BBCode. Headers " +"of sections should be [h2] and below." +msgstr "" + +#: mod/admin.php:353 +msgid "The blocked domain" +msgstr "Estetty verkkotunnus" + +#: mod/admin.php:354 mod/admin.php:372 mod/friendica.php:128 +msgid "Reason for the block" +msgstr "Eston syy" + +#: mod/admin.php:354 mod/admin.php:367 +msgid "The reason why you blocked this domain." +msgstr "Verkkotunnuksen estosyy." + +#: mod/admin.php:355 +msgid "Delete domain" +msgstr "Poista verkkotunnus" + +#: mod/admin.php:355 +msgid "Check to delete this entry from the blocklist" +msgstr "Laita rasti poistaaksesi kohde estolistalta" + +#: mod/admin.php:363 +msgid "" +"This page can be used to define a black list of servers from the federated " +"network that are not allowed to interact with your node. For all entered " +"domains you should also give a reason why you have blocked the remote " +"server." +msgstr "" + +#: mod/admin.php:364 +msgid "" +"The list of blocked servers will be made publically available on the " +"/friendica page so that your users and people investigating communication " +"problems can find the reason easily." +msgstr "" + +#: mod/admin.php:365 +msgid "Add new entry to block list" +msgstr "Lisää uusi kohde estolistaan" + +#: mod/admin.php:366 +msgid "Server Domain" +msgstr "Palvelimen verkkotunnus" + +#: mod/admin.php:366 +msgid "" +"The domain of the new server to add to the block list. Do not include the " +"protocol." +msgstr "" + +#: mod/admin.php:367 +msgid "Block reason" +msgstr "Estosyy" + +#: mod/admin.php:368 +msgid "Add Entry" +msgstr "Lisää merkintä" + +#: mod/admin.php:369 +msgid "Save changes to the blocklist" +msgstr "Tallenna muutoksia estolistaan" + +#: mod/admin.php:370 +msgid "Current Entries in the Blocklist" +msgstr "Nykyinen estolista" + +#: mod/admin.php:373 +msgid "Delete entry from blocklist" +msgstr "Poista kohde estolistalta" + +#: mod/admin.php:376 +msgid "Delete entry from blocklist?" +msgstr "Poista kohde estolistalta?" + +#: mod/admin.php:402 +msgid "Server added to blocklist." +msgstr "Palvelin lisätty estolistalle" + +#: mod/admin.php:418 +msgid "Site blocklist updated." +msgstr "Sivuston estolista päivitetty." + +#: mod/admin.php:441 src/Core/Console/GlobalCommunityBlock.php:72 +msgid "The contact has been blocked from the node" +msgstr "Kontakti on estetty tällä solmulla" + +#: mod/admin.php:443 src/Core/Console/GlobalCommunityBlock.php:69 +#, php-format +msgid "Could not find any contact entry for this URL (%s)" +msgstr "" + +#: mod/admin.php:450 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "%s kontakti poistettu estolistalta" +msgstr[1] "%s kontaktia poistettu estolistalta" + +#: mod/admin.php:479 +msgid "Remote Contact Blocklist" +msgstr "Etäkontakti estolista" + +#: mod/admin.php:480 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "" + +#: mod/admin.php:481 +msgid "Block Remote Contact" +msgstr "Estä etäkontakti" + +#: mod/admin.php:482 mod/admin.php:1806 +msgid "select all" +msgstr "valitse kaikki" + +#: mod/admin.php:483 +msgid "select none" +msgstr "älä valitse mitään" + +#: mod/admin.php:486 +msgid "No remote contact is blocked from this node." +msgstr "" + +#: mod/admin.php:488 +msgid "Blocked Remote Contacts" +msgstr "Estetty etäkontaktit" + +#: mod/admin.php:489 +msgid "Block New Remote Contact" +msgstr "Estä uusi etäkontakti" + +#: mod/admin.php:490 +msgid "Photo" +msgstr "Kuva" + +#: mod/admin.php:498 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "Yhteensä %s estetty kontakti" +msgstr[1] "Yhteensä %s estettyjä kontakteja" + +#: mod/admin.php:500 +msgid "URL of the remote contact to block." +msgstr "Estettävän etäkontaktin URL-osoite" + +#: mod/admin.php:522 +msgid "Delete this Item" +msgstr "Poista tämä kohde" + +#: mod/admin.php:523 +msgid "" +"On this page you can delete an item from your node. If the item is a top " +"level posting, the entire thread will be deleted." +msgstr "" + +#: mod/admin.php:524 +msgid "" +"You need to know the GUID of the item. You can find it e.g. by looking at " +"the display URL. The last part of http://example.com/display/123456 is the " +"GUID, here 123456." +msgstr "" + +#: mod/admin.php:525 +msgid "GUID" +msgstr "GUID" + +#: mod/admin.php:525 +msgid "The GUID of the item you want to delete." +msgstr "Poistettavan kohteen GUID." + +#: mod/admin.php:564 +msgid "Item marked for deletion." +msgstr "Kohde merkitty poistettavaksi." + +#: mod/admin.php:635 +msgid "unknown" +msgstr "tuntematon" + +#: mod/admin.php:711 +msgid "" +"This page offers you some numbers to the known part of the federated social " +"network your Friendica node is part of. These numbers are not complete but " +"only reflect the part of the network your node is aware of." +msgstr "" + +#: mod/admin.php:712 +msgid "" +"The Auto Discovered Contact Directory feature is not enabled, it " +"will improve the data displayed here." +msgstr "" + +#: mod/admin.php:724 +#, php-format +msgid "" +"Currently this node is aware of %d nodes with %d registered users from the " +"following platforms:" +msgstr "Tällä hetkellä tämä solmu havaitsee %d muita solmuja joissa %d rekisteröityneitä käyttäjiä. Tarkemmat tiedot:" + +#: mod/admin.php:755 +msgid "ID" +msgstr "" + +#: mod/admin.php:756 +msgid "Recipient Name" +msgstr "Vastaanottajan nimi" + +#: mod/admin.php:757 +msgid "Recipient Profile" +msgstr "Vastaanottajan profiili" + +#: mod/admin.php:758 view/theme/frio/theme.php:266 +#: src/Core/NotificationsManager.php:178 src/Content/Nav.php:179 +msgid "Network" +msgstr "Verkko" + +#: mod/admin.php:759 +msgid "Created" +msgstr "Luotu" + +#: mod/admin.php:760 +msgid "Last Tried" +msgstr "Viimeksi yritetty" + +#: mod/admin.php:761 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "" + +#: mod/admin.php:785 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the command php " +"bin/console.php dbstructure toinnodb of your Friendica installation for" +" an automatic conversion.
" +msgstr "" + +#: mod/admin.php:792 +#, php-format +msgid "" +"There is a new version of Friendica available for download. Your current " +"version is %1$s, upstream version is %2$s" +msgstr "" + +#: mod/admin.php:802 +msgid "" +"The database update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear." +msgstr "Tietokannan päivitys epäonnistui. Suorita komento \"php bin/console.php dbstructure update\" komentoriviltä ja lue mahdolliset virheviestit." + +#: mod/admin.php:808 +msgid "The worker was never executed. Please check your database structure!" +msgstr "Workeriä ei ole otettu käyttöön. Tarkista tietokantasi rakenne!" + +#: mod/admin.php:811 +#, php-format +msgid "" +"The last worker execution was on %s UTC. This is older than one hour. Please" +" check your crontab settings." +msgstr "Viimeisin worker -käynnistys tapahtui klo %s UTC, eli yli tunti sitten. Tarkista crontab -asetukset." + +#: mod/admin.php:816 +msgid "Normal Account" +msgstr "Perustili" + +#: mod/admin.php:817 +msgid "Automatic Follower Account" +msgstr "Automaattinen seuraajatili" + +#: mod/admin.php:818 +msgid "Public Forum Account" +msgstr "Julkinen foorumitili" + +#: mod/admin.php:819 +msgid "Automatic Friend Account" +msgstr "Automaattinen kaveritili" + +#: mod/admin.php:820 +msgid "Blog Account" +msgstr "Blogitili" + +#: mod/admin.php:821 +msgid "Private Forum Account" +msgstr "Yksityinen foorumitili" + +#: mod/admin.php:843 +msgid "Message queues" +msgstr "Viestijonot" + +#: mod/admin.php:849 +msgid "Summary" +msgstr "Yhteenveto" + +#: mod/admin.php:851 +msgid "Registered users" +msgstr "Rekisteröityneet käyttäjät" + +#: mod/admin.php:853 +msgid "Pending registrations" +msgstr "Vireillä olevat rekisteröinnit" + +#: mod/admin.php:854 +msgid "Version" +msgstr "Versio" + +#: mod/admin.php:859 +msgid "Active addons" +msgstr "Käytössäolevat lisäosat" + +#: mod/admin.php:890 +msgid "Can not parse base url. Must have at least ://" +msgstr "Ei voitu jäsentää perusosoitetta. Täytyy sisältää ainakin ://" + +#: mod/admin.php:1210 +msgid "Site settings updated." +msgstr "Sivuston asetukset päivitettiin." + +#: mod/admin.php:1237 mod/settings.php:907 +msgid "No special theme for mobile devices" +msgstr "Ei mobiiliteemaa" + +#: mod/admin.php:1266 +msgid "No community page for local users" +msgstr "" + +#: mod/admin.php:1267 +msgid "No community page" +msgstr "Ei yhteisösivua" + +#: mod/admin.php:1268 +msgid "Public postings from users of this site" +msgstr "Julkiset julkaisut tämän sivuston käyttäjiltä" + +#: mod/admin.php:1269 +msgid "Public postings from the federated network" +msgstr "Julkiset julkaisut liittoutuneelta verkolta" + +#: mod/admin.php:1270 +msgid "Public postings from local users and the federated network" +msgstr "Julkiset julkaisut tältä sivustolta ja liittoutuneelta verkolta" + +#: mod/admin.php:1276 +msgid "Users, Global Contacts" +msgstr "Käyttäjät, maailmanlaajuiset kontaktit" + +#: mod/admin.php:1277 +msgid "Users, Global Contacts/fallback" +msgstr "" + +#: mod/admin.php:1281 +msgid "One month" +msgstr "Yksi kuukausi" + +#: mod/admin.php:1282 +msgid "Three months" +msgstr "Kolme kuukautta" + +#: mod/admin.php:1283 +msgid "Half a year" +msgstr "Puoli vuotta" + +#: mod/admin.php:1284 +msgid "One year" +msgstr "Yksi vuosi" + +#: mod/admin.php:1289 +msgid "Multi user instance" +msgstr "Monen käyttäjän instanssi" + +#: mod/admin.php:1312 +msgid "Closed" +msgstr "Suljettu" + +#: mod/admin.php:1313 +msgid "Requires approval" +msgstr "Edellyttää hyväksyntää" + +#: mod/admin.php:1314 +msgid "Open" +msgstr "Avoin" + +#: mod/admin.php:1318 +msgid "No SSL policy, links will track page SSL state" +msgstr "" + +#: mod/admin.php:1319 +msgid "Force all links to use SSL" +msgstr "Pakota kaikki linkit käyttämään SSL-yhteyttä" + +#: mod/admin.php:1320 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "" + +#: mod/admin.php:1324 +msgid "Don't check" +msgstr "Älä tarkista" + +#: mod/admin.php:1325 +msgid "check the stable version" +msgstr "" + +#: mod/admin.php:1326 +msgid "check the development version" +msgstr "" + +#: mod/admin.php:1349 +msgid "Republish users to directory" +msgstr "" + +#: mod/admin.php:1351 +msgid "File upload" +msgstr "Tiedoston lataus" + +#: mod/admin.php:1352 +msgid "Policies" +msgstr "Käytännöt" + +#: mod/admin.php:1354 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: mod/admin.php:1355 +msgid "Performance" +msgstr "Suoritus" + +#: mod/admin.php:1356 +msgid "Worker" +msgstr "Worker" + +#: mod/admin.php:1357 +msgid "Message Relay" +msgstr "Viestirele" + +#: mod/admin.php:1358 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "" + +#: mod/admin.php:1361 +msgid "Site name" +msgstr "Sivuston nimi" + +#: mod/admin.php:1362 +msgid "Host name" +msgstr "Palvelimen nimi" + +#: mod/admin.php:1363 +msgid "Sender Email" +msgstr "Lähettäjän sähköposti" + +#: mod/admin.php:1363 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "Lähettäjän sähköpostiosoite palvelimen ilmoitussähköposteissa." + +#: mod/admin.php:1364 +msgid "Banner/Logo" +msgstr "Banneri/logo" + +#: mod/admin.php:1365 +msgid "Shortcut icon" +msgstr "Pikakuvake" + +#: mod/admin.php:1365 +msgid "Link to an icon that will be used for browsers." +msgstr "Linkki kuvakkeeseen jota selaimet saa käyttää." + +#: mod/admin.php:1366 +msgid "Touch icon" +msgstr "Kosketusnäyttökuvake" + +#: mod/admin.php:1366 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "Linkki kuvakkeeseen jota tabletit ja matkapuhelimet saa käyttää." + +#: mod/admin.php:1367 +msgid "Additional Info" +msgstr "Lisätietoja" + +#: mod/admin.php:1367 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/servers." +msgstr "" + +#: mod/admin.php:1368 +msgid "System language" +msgstr "Järjestelmän kieli" + +#: mod/admin.php:1369 +msgid "System theme" +msgstr "Järjestelmäteema" + +#: mod/admin.php:1369 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" + +#: mod/admin.php:1370 +msgid "Mobile system theme" +msgstr "Mobiili järjestelmäteema" + +#: mod/admin.php:1370 +msgid "Theme for mobile devices" +msgstr "Mobiiliteema" + +#: mod/admin.php:1371 +msgid "SSL link policy" +msgstr "SSL-linkkikäytäntö" + +#: mod/admin.php:1371 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Määrittää pakotetaanko tuotetut linkit käyttämään SSL-yhteyttä." + +#: mod/admin.php:1372 +msgid "Force SSL" +msgstr "Pakoita SSL-yhteyden käyttöä" + +#: mod/admin.php:1372 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "" + +#: mod/admin.php:1373 +msgid "Hide help entry from navigation menu" +msgstr "" + +#: mod/admin.php:1373 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "" + +#: mod/admin.php:1374 +msgid "Single user instance" +msgstr "Yksittäisen käyttäjän instanssi" + +#: mod/admin.php:1374 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "" + +#: mod/admin.php:1375 +msgid "Maximum image size" +msgstr "Suurin kuvakoko" + +#: mod/admin.php:1375 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Ladattavan kuvatiedoston enimmäiskoko tavuina. Oletusarvo on 0, eli ei enimmäiskokoa." + +#: mod/admin.php:1376 +msgid "Maximum image length" +msgstr "Suurin kuvapituus" + +#: mod/admin.php:1376 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Ladattavan kuvatiedoston enimmäispituus pikseleinä. Oletusarvo on -1, eli ei enimmäispituutta." + +#: mod/admin.php:1377 +msgid "JPEG image quality" +msgstr "JPEG-kuvanlaatu" + +#: mod/admin.php:1377 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Ladatut JPEG-kuvat tallennetaan tällä laatuasetuksella [0-100]. Oletus on 100, eli korkein laatu." + +#: mod/admin.php:1379 +msgid "Register policy" +msgstr "Rekisteröintipolitiikka" + +#: mod/admin.php:1380 +msgid "Maximum Daily Registrations" +msgstr "Päivittäinen rekisteröitymisraja" + +#: mod/admin.php:1380 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "Mikäli rekisteröityminen on sallittu, tämä asettaa enimmäismäärä uusia rekisteröitymisiä päivässä. Jos reksiteröityminen ei ole sallittu, tällä asetuksella ei ole vaikutusta." + +#: mod/admin.php:1381 +msgid "Register text" +msgstr "Rekisteröitymisteksti" + +#: mod/admin.php:1381 +msgid "" +"Will be displayed prominently on the registration page. You can use BBCode " +"here." +msgstr "Näkyvästi esillä rekisteröitymissivulla. Voit käyttää BBCodeia." + +#: mod/admin.php:1382 +msgid "Accounts abandoned after x days" +msgstr "Käyttäjätilit hylätään X päivän jälkeen" + +#: mod/admin.php:1382 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "" + +#: mod/admin.php:1383 +msgid "Allowed friend domains" +msgstr "Sallittuja kaveri-verkkotunnuksia" + +#: mod/admin.php:1383 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "" + +#: mod/admin.php:1384 +msgid "Allowed email domains" +msgstr "Sallittuja sähköposti-verkkotunnuksia" + +#: mod/admin.php:1384 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "" + +#: mod/admin.php:1385 +msgid "No OEmbed rich content" +msgstr "" + +#: mod/admin.php:1385 +msgid "" +"Don't show the rich content (e.g. embedded PDF), except from the domains " +"listed below." +msgstr "" + +#: mod/admin.php:1386 +msgid "Allowed OEmbed domains" +msgstr "Sallittuja OEmbed -verkkotunnuksia" + +#: mod/admin.php:1386 +msgid "" +"Comma separated list of domains which oembed content is allowed to be " +"displayed. Wildcards are accepted." +msgstr "" + +#: mod/admin.php:1387 +msgid "Block public" +msgstr "Estä vierailijat" + +#: mod/admin.php:1387 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "" + +#: mod/admin.php:1388 +msgid "Force publish" +msgstr "" + +#: mod/admin.php:1388 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: mod/admin.php:1389 +msgid "Global directory URL" +msgstr "Maailmanlaajuisen hakemiston URL-osoite" + +#: mod/admin.php:1389 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "" + +#: mod/admin.php:1390 +msgid "Private posts by default for new users" +msgstr "" + +#: mod/admin.php:1390 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "" + +#: mod/admin.php:1391 +msgid "Don't include post content in email notifications" +msgstr "Älä lisää julkaisun sisältö sähköposti-ilmoitukseen" + +#: mod/admin.php:1391 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "" + +#: mod/admin.php:1392 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "" + +#: mod/admin.php:1392 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "" + +#: mod/admin.php:1393 +msgid "Don't embed private images in posts" +msgstr "Älä upota yksityisiä kuvia julkaisuissa" + +#: mod/admin.php:1393 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "" + +#: mod/admin.php:1394 +msgid "Allow Users to set remote_self" +msgstr "" + +#: mod/admin.php:1394 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "" + +#: mod/admin.php:1395 +msgid "Block multiple registrations" +msgstr "" + +#: mod/admin.php:1395 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "" + +#: mod/admin.php:1396 +msgid "OpenID support" +msgstr "OpenID-tuki" + +#: mod/admin.php:1396 +msgid "OpenID support for registration and logins." +msgstr "OpenID-tuki rekisteröitymiseen ja kirjautumiseen" + +#: mod/admin.php:1397 +msgid "Fullname check" +msgstr "Koko nimi tarkistus" + +#: mod/admin.php:1397 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "" + +#: mod/admin.php:1398 +msgid "Community pages for visitors" +msgstr "Yhteisösivu vieraille" + +#: mod/admin.php:1398 +msgid "" +"Which community pages should be available for visitors. Local users always " +"see both pages." +msgstr "" + +#: mod/admin.php:1399 +msgid "Posts per user on community page" +msgstr "" + +#: mod/admin.php:1399 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "Enimmäismäärä julkaisuja käyttäjää kohden yhteisösivulla. (Ei koske maailmanlaajuista yhteisösivua.)" + +#: mod/admin.php:1400 +msgid "Enable OStatus support" +msgstr "Salli OStatus-tuki" + +#: mod/admin.php:1400 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "" + +#: mod/admin.php:1401 +msgid "Only import OStatus threads from our contacts" +msgstr "Ainoastaan tuo OStatus -ketjuja kontakteiltamme" + +#: mod/admin.php:1401 +msgid "" +"Normally we import every content from our OStatus contacts. With this option" +" we only store threads that are started by a contact that is known on our " +"system." +msgstr "" + +#: mod/admin.php:1402 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "OStatus-tuki voidaan ottaa käyttöön ainoastaan jos ketjuttaminen on jo otettu käyttöön." + +#: mod/admin.php:1404 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "Diaspora -tukea ei voitu ottaa käyttöön koska Friendica on asennettu alihakemistoon." + +#: mod/admin.php:1405 +msgid "Enable Diaspora support" +msgstr "Salli Diaspora-tuki" + +#: mod/admin.php:1405 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Ota käyttöön Diaspora-yhteensopivuus" + +#: mod/admin.php:1406 +msgid "Only allow Friendica contacts" +msgstr "Salli ainoastaan Friendica -kontakteja" + +#: mod/admin.php:1406 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Kaikkien kontaktien on käytettävä Friendica-protokollaa. Kaikki muut protokollat poistetaan käytöstä." + +#: mod/admin.php:1407 +msgid "Verify SSL" +msgstr "Vahvista SSL" + +#: mod/admin.php:1407 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you" +" cannot connect (at all) to self-signed SSL sites." +msgstr "" + +#: mod/admin.php:1408 +msgid "Proxy user" +msgstr "Välityspalvelimen käyttäjä" + +#: mod/admin.php:1409 +msgid "Proxy URL" +msgstr "Välityspalvelimen osoite" + +#: mod/admin.php:1410 +msgid "Network timeout" +msgstr "Verkon aikakatkaisu" + +#: mod/admin.php:1410 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: mod/admin.php:1411 +msgid "Maximum Load Average" +msgstr "Kuorman enimmäiskeksiarvo" + +#: mod/admin.php:1411 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Järjestelmäkuormitus jolloin lähetys- ja kyselyprosessit lykätään (oletusarvo 50)." + +#: mod/admin.php:1412 +msgid "Maximum Load Average (Frontend)" +msgstr "Kuorman enimmäiskeskiarvo (Frontend)" + +#: mod/admin.php:1412 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "Järjestelmäkuormitus jolloin Frontend poistetaan käytöstä (oletusarvo 50)." + +#: mod/admin.php:1413 +msgid "Minimal Memory" +msgstr "" + +#: mod/admin.php:1413 +msgid "" +"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " +"default 0 (deactivated)." +msgstr "" + +#: mod/admin.php:1414 +msgid "Maximum table size for optimization" +msgstr "Taulukon enimmäiskoko optimointia varten" + +#: mod/admin.php:1414 +msgid "" +"Maximum table size (in MB) for the automatic optimization - default 100 MB. " +"Enter -1 to disable it." +msgstr "Taulukon enimmäiskoko (megatavuina) automaattista optimointia varten - oletusarvo 100 mt. Syötä -1 poistamaan optimointi käytöstä." + +#: mod/admin.php:1415 +msgid "Minimum level of fragmentation" +msgstr "" + +#: mod/admin.php:1415 +msgid "" +"Minimum fragmenation level to start the automatic optimization - default " +"value is 30%." +msgstr "" + +#: mod/admin.php:1417 +msgid "Periodical check of global contacts" +msgstr "" + +#: mod/admin.php:1417 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "" + +#: mod/admin.php:1418 +msgid "Days between requery" +msgstr "" + +#: mod/admin.php:1418 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: mod/admin.php:1419 +msgid "Discover contacts from other servers" +msgstr "Etsi kontakteja muilta palvelimilta" + +#: mod/admin.php:1419 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "" + +#: mod/admin.php:1420 +msgid "Timeframe for fetching global contacts" +msgstr "" + +#: mod/admin.php:1420 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "" + +#: mod/admin.php:1421 +msgid "Search the local directory" +msgstr "Paikallisluettelohaku" + +#: mod/admin.php:1421 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "" + +#: mod/admin.php:1423 +msgid "Publish server information" +msgstr "Julkaise palvelintiedot" + +#: mod/admin.php:1423 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "" + +#: mod/admin.php:1425 +msgid "Check upstream version" +msgstr "" + +#: mod/admin.php:1425 +msgid "" +"Enables checking for new Friendica versions at github. If there is a new " +"version, you will be informed in the admin panel overview." +msgstr "" + +#: mod/admin.php:1426 +msgid "Suppress Tags" +msgstr "Piilota tunnisteet" + +#: mod/admin.php:1426 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "Piilota tunnistelista julkaisun lopussa." + +#: mod/admin.php:1427 +msgid "Path to item cache" +msgstr "" + +#: mod/admin.php:1427 +msgid "The item caches buffers generated bbcode and external images." +msgstr "" + +#: mod/admin.php:1428 +msgid "Cache duration in seconds" +msgstr "" + +#: mod/admin.php:1428 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "" + +#: mod/admin.php:1429 +msgid "Maximum numbers of comments per post" +msgstr "Julkaisun kommentiraja" + +#: mod/admin.php:1429 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "" + +#: mod/admin.php:1430 +msgid "Temp path" +msgstr "" + +#: mod/admin.php:1430 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "" + +#: mod/admin.php:1431 +msgid "Base path to installation" +msgstr "Asennuksen peruspolku" + +#: mod/admin.php:1431 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "" + +#: mod/admin.php:1432 +msgid "Disable picture proxy" +msgstr "" + +#: mod/admin.php:1432 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "" + +#: mod/admin.php:1433 +msgid "Only search in tags" +msgstr "Tunnistehaku" + +#: mod/admin.php:1433 +msgid "On large systems the text search can slow down the system extremely." +msgstr "" + +#: mod/admin.php:1435 +msgid "New base url" +msgstr "Uusi perusosoite" + +#: mod/admin.php:1435 +msgid "" +"Change base url for this server. Sends relocate message to all Friendica and" +" Diaspora* contacts of all users." +msgstr "Vaihtaa tämän palvelimen perus-URL-osoitteen. Lähettää uudelleensijoitusviestit käyttäjien kaikille kontakteille Friendicassa ja Diasporassa*." + +#: mod/admin.php:1437 +msgid "RINO Encryption" +msgstr "RINO-salaus" + +#: mod/admin.php:1437 +msgid "Encryption layer between nodes." +msgstr "Salauskerros solmujen välillä." + +#: mod/admin.php:1437 +msgid "Enabled" +msgstr "Käytössä" + +#: mod/admin.php:1439 +msgid "Maximum number of parallel workers" +msgstr "Enimmäismäärä rinnakkaisia workereitä" + +#: mod/admin.php:1439 +msgid "" +"On shared hosters set this to 2. On larger systems, values of 10 are great. " +"Default value is 4." +msgstr "" + +#: mod/admin.php:1440 +msgid "Don't use 'proc_open' with the worker" +msgstr "" + +#: mod/admin.php:1440 +msgid "" +"Enable this if your system doesn't allow the use of 'proc_open'. This can " +"happen on shared hosters. If this is enabled you should increase the " +"frequency of worker calls in your crontab." +msgstr "" + +#: mod/admin.php:1441 +msgid "Enable fastlane" +msgstr "Käytä fastlane" + +#: mod/admin.php:1441 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "" + +#: mod/admin.php:1442 +msgid "Enable frontend worker" +msgstr "Ota Frontend Worker käyttöön" + +#: mod/admin.php:1442 +#, php-format +msgid "" +"When enabled the Worker process is triggered when backend access is " +"performed \\x28e.g. messages being delivered\\x29. On smaller sites you " +"might want to call %s/worker on a regular basis via an external cron job. " +"You should only enable this option if you cannot utilize cron/scheduled jobs" +" on your server." +msgstr "" + +#: mod/admin.php:1444 +msgid "Subscribe to relay" +msgstr "Relen tilaus" + +#: mod/admin.php:1444 +msgid "" +"Enables the receiving of public posts from the relay. They will be included " +"in the search, subscribed tags and on the global community page." +msgstr "" + +#: mod/admin.php:1445 +msgid "Relay server" +msgstr "Relepalvelin" + +#: mod/admin.php:1445 +msgid "" +"Address of the relay server where public posts should be send to. For " +"example https://relay.diasp.org" +msgstr "" + +#: mod/admin.php:1446 +msgid "Direct relay transfer" +msgstr "Suora releen siirto" + +#: mod/admin.php:1446 +msgid "" +"Enables the direct transfer to other servers without using the relay servers" +msgstr "" + +#: mod/admin.php:1447 +msgid "Relay scope" +msgstr "Relen soveltamisala" + +#: mod/admin.php:1447 +msgid "" +"Can be 'all' or 'tags'. 'all' means that every public post should be " +"received. 'tags' means that only posts with selected tags should be " +"received." +msgstr "" + +#: mod/admin.php:1447 +msgid "all" +msgstr "kaikki" + +#: mod/admin.php:1447 +msgid "tags" +msgstr "tunnisteet" + +#: mod/admin.php:1448 +msgid "Server tags" +msgstr "palvelintunnisteet" + +#: mod/admin.php:1448 +msgid "Comma separated list of tags for the 'tags' subscription." +msgstr "Pilkulla erotettu tunnistelista tunnistetilausta varten." + +#: mod/admin.php:1449 +msgid "Allow user tags" +msgstr "Salli käyttäjien tunnisteet" + +#: mod/admin.php:1449 +msgid "" +"If enabled, the tags from the saved searches will used for the 'tags' " +"subscription in addition to the 'relay_server_tags'." +msgstr "Jos otettu käyttöön, tunnisteet tallennetuista hauista käytetään tunnistetilaukseen 'relay_server_tags'in lisäksi." + +#: mod/admin.php:1477 +msgid "Update has been marked successful" +msgstr "" + +#: mod/admin.php:1484 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Tietokannan rakenteen %s-päivitys onnistui." + +#: mod/admin.php:1487 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "Tietokannan rakennepäivitys %s epäonnistui virheviestillä %s" + +#: mod/admin.php:1500 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "" + +#: mod/admin.php:1502 +#, php-format +msgid "Update %s was successfully applied." +msgstr "%s-päivitys onnistui." + +#: mod/admin.php:1505 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "" + +#: mod/admin.php:1508 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "" + +#: mod/admin.php:1528 +msgid "No failed updates." +msgstr "Ei epäonnistuineita päivityksiä." + +#: mod/admin.php:1529 +msgid "Check database structure" +msgstr "Tarkista tietokannan rakenne" + +#: mod/admin.php:1534 +msgid "Failed Updates" +msgstr "Epäonnistuineita päivityksiä" + +#: mod/admin.php:1535 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "" + +#: mod/admin.php:1536 +msgid "Mark success (if update was manually applied)" +msgstr "" + +#: mod/admin.php:1537 +msgid "Attempt to execute this update step automatically" +msgstr "" + +#: mod/admin.php:1576 #, php-format msgid "" "\n" "\t\t\tDear %1$s,\n" -"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t\t" +"\t\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: src/Model/User.php:625 +#: mod/admin.php:1579 #, php-format msgid "" "\n" "\t\t\tThe login details are as follows:\n" "\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t\t%1$s\n" -"\t\t\tPassword:\t\t%5$s\n" +"\t\t\tSite Location:\t%1$s\n" +"\t\t\tLogin Name:\t\t%2$s\n" +"\t\t\tPassword:\t\t%3$s\n" "\n" "\t\t\tYou may change your password from your account \"Settings\" page after logging\n" "\t\t\tin.\n" @@ -1880,16 +5742,2345 @@ msgid "" "\t\t\tIf you are new and do not know anybody here, they may help\n" "\t\t\tyou to make some new and interesting friends.\n" "\n" -"\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n" +"\t\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n" "\n" -"\t\t\tThank you and welcome to %2$s." +"\t\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:659 mod/admin.php:1611 +#: mod/admin.php:1613 src/Model/User.php:663 #, php-format msgid "Registration details for %s" msgstr "" +#: mod/admin.php:1623 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s käyttäjä estetty / poistettu estolistalta" +msgstr[1] "%s käyttäjää estetty / poistettu estolistalta" + +#: mod/admin.php:1629 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s käyttäjä poistettu" +msgstr[1] "%s käyttäjää poistettu" + +#: mod/admin.php:1676 +#, php-format +msgid "User '%s' deleted" +msgstr "Käyttäjä '%s' poistettu" + +#: mod/admin.php:1684 +#, php-format +msgid "User '%s' unblocked" +msgstr "Käyttäjä '%s' poistettu estolistalta" + +#: mod/admin.php:1684 +#, php-format +msgid "User '%s' blocked" +msgstr "Käyttäjä '%s' estetty" + +#: mod/admin.php:1741 mod/settings.php:1071 +msgid "Normal Account Page" +msgstr "Tavallinen käyttäjätili" + +#: mod/admin.php:1742 mod/settings.php:1075 +msgid "Soapbox Page" +msgstr "Saarnatuoli sivu" + +#: mod/admin.php:1743 mod/settings.php:1079 +msgid "Public Forum" +msgstr "Julkinen foorumi" + +#: mod/admin.php:1744 mod/settings.php:1083 +msgid "Automatic Friend Page" +msgstr "" + +#: mod/admin.php:1745 +msgid "Private Forum" +msgstr "Yksityisfoorumi" + +#: mod/admin.php:1748 mod/settings.php:1055 +msgid "Personal Page" +msgstr "Henkilökohtainen sivu" + +#: mod/admin.php:1749 mod/settings.php:1059 +msgid "Organisation Page" +msgstr "Järjestön sivu" + +#: mod/admin.php:1750 mod/settings.php:1063 +msgid "News Page" +msgstr "Uutissivu" + +#: mod/admin.php:1751 mod/settings.php:1067 +msgid "Community Forum" +msgstr "Yhteisöfoorumi" + +#: mod/admin.php:1798 mod/admin.php:1809 mod/admin.php:1822 mod/admin.php:1840 +#: src/Content/ContactSelector.php:82 +msgid "Email" +msgstr "Sähköposti" + +#: mod/admin.php:1798 mod/admin.php:1822 +msgid "Register date" +msgstr "Rekisteripäivämäärä" + +#: mod/admin.php:1798 mod/admin.php:1822 +msgid "Last login" +msgstr "Viimeisin kirjautuminen" + +#: mod/admin.php:1798 mod/admin.php:1822 +msgid "Last item" +msgstr "Viimeisin kohde" + +#: mod/admin.php:1798 +msgid "Type" +msgstr "Tyyppi" + +#: mod/admin.php:1805 +msgid "Add User" +msgstr "Lisää käyttäjä" + +#: mod/admin.php:1807 +msgid "User registrations waiting for confirm" +msgstr "" + +#: mod/admin.php:1808 +msgid "User waiting for permanent deletion" +msgstr "" + +#: mod/admin.php:1809 +msgid "Request date" +msgstr "Pyynnön päivämäärä" + +#: mod/admin.php:1810 +msgid "No registrations." +msgstr "Ei rekisteröintejä." + +#: mod/admin.php:1811 +msgid "Note from the user" +msgstr "" + +#: mod/admin.php:1813 +msgid "Deny" +msgstr "Kieltäydy" + +#: mod/admin.php:1817 +msgid "Site admin" +msgstr "Sivuston ylläpito" + +#: mod/admin.php:1818 +msgid "Account expired" +msgstr "Tili vanhentunut" + +#: mod/admin.php:1821 +msgid "New User" +msgstr "Uusi käyttäjä" + +#: mod/admin.php:1822 +msgid "Deleted since" +msgstr "Poistettu" + +#: mod/admin.php:1827 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: mod/admin.php:1828 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: mod/admin.php:1838 +msgid "Name of the new user." +msgstr "Uuden käyttäjän nimi." + +#: mod/admin.php:1839 +msgid "Nickname" +msgstr "Lempinimi" + +#: mod/admin.php:1839 +msgid "Nickname of the new user." +msgstr "Uuden käyttäjän lempinimi" + +#: mod/admin.php:1840 +msgid "Email address of the new user." +msgstr "Uuden käyttäjän sähköpostiosoite." + +#: mod/admin.php:1882 +#, php-format +msgid "Addon %s disabled." +msgstr "Lisäosa %s poistettu käytöstä." + +#: mod/admin.php:1886 +#, php-format +msgid "Addon %s enabled." +msgstr "Lisäosa %s käytössä." + +#: mod/admin.php:1896 mod/admin.php:2145 +msgid "Disable" +msgstr "Poista käytöstä" + +#: mod/admin.php:1899 mod/admin.php:2148 +msgid "Enable" +msgstr "Ota käyttöön" + +#: mod/admin.php:1921 mod/admin.php:2190 +msgid "Toggle" +msgstr "Vaihda" + +#: mod/admin.php:1929 mod/admin.php:2199 +msgid "Author: " +msgstr "Tekijä" + +#: mod/admin.php:1930 mod/admin.php:2200 +msgid "Maintainer: " +msgstr "Ylläpitäjä:" + +#: mod/admin.php:1982 +msgid "Reload active addons" +msgstr "" + +#: mod/admin.php:1987 +#, php-format +msgid "" +"There are currently no addons available on your node. You can find the " +"official addon repository at %1$s and might find other interesting addons in" +" the open addon registry at %2$s" +msgstr "" + +#: mod/admin.php:2107 +msgid "No themes found." +msgstr "Teemoja ei löytynyt." + +#: mod/admin.php:2181 +msgid "Screenshot" +msgstr "Kuvakaappaus" + +#: mod/admin.php:2235 +msgid "Reload active themes" +msgstr "Lataa aktiiviset teemat uudelleen" + +#: mod/admin.php:2240 +#, php-format +msgid "No themes found on the system. They should be placed in %1$s" +msgstr "" + +#: mod/admin.php:2241 +msgid "[Experimental]" +msgstr "[Kokeellinen]" + +#: mod/admin.php:2242 +msgid "[Unsupported]" +msgstr "[Ei tueta]" + +#: mod/admin.php:2266 +msgid "Log settings updated." +msgstr "Lokiasetukset päivitetty." + +#: mod/admin.php:2298 +msgid "PHP log currently enabled." +msgstr "PHP-loki käytössä" + +#: mod/admin.php:2300 +msgid "PHP log currently disabled." +msgstr "PHP-loki pois käytöstä" + +#: mod/admin.php:2309 +msgid "Clear" +msgstr "Tyhjennä" + +#: mod/admin.php:2313 +msgid "Enable Debugging" +msgstr "Ota virheenkorjaustila käyttöön" + +#: mod/admin.php:2314 +msgid "Log file" +msgstr "Lokitiedosto" + +#: mod/admin.php:2314 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "" + +#: mod/admin.php:2315 +msgid "Log level" +msgstr "Lokitaso" + +#: mod/admin.php:2317 +msgid "PHP logging" +msgstr "PHP-loki" + +#: mod/admin.php:2318 +msgid "" +"To enable logging of PHP errors and warnings you can add the following to " +"the .htconfig.php file of your installation. The filename set in the " +"'error_log' line is relative to the friendica top-level directory and must " +"be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "" + +#: mod/admin.php:2349 +#, php-format +msgid "" +"Error trying to open %1$s log file.\\r\\n
Check to see " +"if file %1$s exist and is readable." +msgstr "" + +#: mod/admin.php:2353 +#, php-format +msgid "" +"Couldn't open %1$s log file.\\r\\n
Check to see if file" +" %1$s is readable." +msgstr "" + +#: mod/admin.php:2444 mod/admin.php:2445 mod/settings.php:777 +msgid "Off" +msgstr "Pois päältä" + +#: mod/admin.php:2444 mod/admin.php:2445 mod/settings.php:777 +msgid "On" +msgstr "Päällä" + +#: mod/admin.php:2445 +#, php-format +msgid "Lock feature %s" +msgstr "Lukitse ominaisuus %s" + +#: mod/admin.php:2453 +msgid "Manage Additional Features" +msgstr "Hallitse lisäominaisuudet" + +#: mod/babel.php:22 +msgid "Source input" +msgstr "" + +#: mod/babel.php:28 +msgid "BBCode::toPlaintext" +msgstr "BBCode::toPlaintext" + +#: mod/babel.php:34 +msgid "BBCode::convert (raw HTML)" +msgstr "BBCode::convert (raaka HTML)" + +#: mod/babel.php:39 +msgid "BBCode::convert" +msgstr "BBCode::convert" + +#: mod/babel.php:45 +msgid "BBCode::convert => HTML::toBBCode" +msgstr "BBCode::convert => HTML::toBBCode" + +#: mod/babel.php:51 +msgid "BBCode::toMarkdown" +msgstr "BBCode::toMarkdown" + +#: mod/babel.php:57 +msgid "BBCode::toMarkdown => Markdown::convert" +msgstr "BBCode::toMarkdown => Markdown::convert" + +#: mod/babel.php:63 +msgid "BBCode::toMarkdown => Markdown::toBBCode" +msgstr "BBCode::toMarkdown => Markdown::toBBCode" + +#: mod/babel.php:69 +msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" +msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" + +#: mod/babel.php:76 +msgid "Source input \\x28Diaspora format\\x29" +msgstr "" + +#: mod/babel.php:82 +msgid "Markdown::toBBCode" +msgstr "Markdown::toBBCode" + +#: mod/babel.php:89 +msgid "Raw HTML input" +msgstr "Raaka HTML-syöte" + +#: mod/babel.php:94 +msgid "HTML Input" +msgstr "HTML-syöte" + +#: mod/babel.php:100 +msgid "HTML::toBBCode" +msgstr "HTML::toBBCode" + +#: mod/babel.php:106 +msgid "HTML::toPlaintext" +msgstr "HTML::toPlaintext" + +#: mod/babel.php:114 +msgid "Source text" +msgstr "Lähdeteksti" + +#: mod/babel.php:115 +msgid "BBCode" +msgstr "BBCode" + +#: mod/babel.php:116 +msgid "Markdown" +msgstr "Markdown" + +#: mod/babel.php:117 +msgid "HTML" +msgstr "HTML" + +#: mod/community.php:51 +msgid "Community option not available." +msgstr "Yhteisö vaihtoehto ei saatavilla." + +#: mod/community.php:68 +msgid "Not available." +msgstr "Ei saatavilla." + +#: mod/community.php:81 +msgid "Local Community" +msgstr "Paikallinen yhteisö" + +#: mod/community.php:84 +msgid "Posts from local users on this server" +msgstr "Tämän palvelimen julkaisut" + +#: mod/community.php:92 +msgid "Global Community" +msgstr "Maailmanlaajuinen yhteisö" + +#: mod/community.php:95 +msgid "Posts from users of the whole federated network" +msgstr "Maailmanlaajuisen verkon julkaisut" + +#: mod/community.php:185 +msgid "" +"This community stream shows all public posts received by this node. They may" +" not reflect the opinions of this node’s users." +msgstr "" + +#: mod/friendica.php:77 +msgid "This is Friendica, version" +msgstr "Tämä on Friendica, versio" + +#: mod/friendica.php:78 +msgid "running at web location" +msgstr "käynnissä osoitteessa" + +#: mod/friendica.php:82 +msgid "" +"Please visit Friendi.ca to learn more " +"about the Friendica project." +msgstr "Vieraile osoitteessa Friendi.ca saadaksesi lisätietoja Friendica- projektista." + +#: mod/friendica.php:86 +msgid "Bug reports and issues: please visit" +msgstr "Bugiraportit ja kysymykset: vieraile osoitteessa" + +#: mod/friendica.php:86 +msgid "the bugtracker at github" +msgstr "githubin bugtrackeri" + +#: mod/friendica.php:89 +msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" +msgstr "Ehdotukset ja palaute: lähetä sähköposti osoitteeseen \"info\" at \"friendi - piste - ca" + +#: mod/friendica.php:103 +msgid "Installed addons/apps:" +msgstr "Asennettu lisäosat/sovellukset:" + +#: mod/friendica.php:117 +msgid "No installed addons/apps" +msgstr "Ei asennettuja lisäosia/sovelluksia" + +#: mod/friendica.php:122 +#, php-format +msgid "Read about the Terms of Service of this node." +msgstr "Lue tämän solmun käyttöehdot." + +#: mod/friendica.php:127 +msgid "On this server the following remote servers are blocked." +msgstr "Tällä palvelimella seuraavat etäpalvelimet ovat estetty." + +#: mod/install.php:114 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica viestinnän palvelin - asetukset" + +#: mod/install.php:120 +msgid "Could not connect to database." +msgstr "Tietokantaan ei saada yhteyttä." + +#: mod/install.php:124 +msgid "Could not create table." +msgstr "Taulun luominen epäonnistui." + +#: mod/install.php:130 +msgid "Your Friendica site database has been installed." +msgstr "Friendica-sivustosi tietokanta on asennettu." + +#: mod/install.php:135 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Sinun on ehkä tuotava tiedosto \"database.sql\" manuaalisesti käyttämällä phpMyAdminia tai MySQL:ää." + +#: mod/install.php:136 mod/install.php:208 mod/install.php:565 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Lue tiedosto \"INSTALL.txt\"." + +#: mod/install.php:148 +msgid "Database already in use." +msgstr "Tietokanta on jo käytössä." + +#: mod/install.php:205 +msgid "System check" +msgstr "Järjestelmän tarkistus" + +#: mod/install.php:210 +msgid "Check again" +msgstr "Tarkista uudelleen" + +#: mod/install.php:230 +msgid "Database connection" +msgstr "Tietokantayhteys" + +#: mod/install.php:231 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Jotta voit asentaa Friendican, tarvitaan tieto siitä, miten tietokantaasi saa yhteyden." + +#: mod/install.php:232 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Ota yhteyttä web-palveluntarjoajaasi tai sivuston ylläpitäjään, jos sinulla on näihin asetuksiin liittyviä kysymyksiä." + +#: mod/install.php:233 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Alla määritetyn tietokannan tulisi olla jo olemassa. Jos se ei ole, luo se ennen kuin jatkat." + +#: mod/install.php:237 +msgid "Database Server Name" +msgstr "Tietokannan palvelimen nimi" + +#: mod/install.php:238 +msgid "Database Login Name" +msgstr "Tietokannan käyttäjän nimi" + +#: mod/install.php:239 +msgid "Database Login Password" +msgstr "Tietokannan käyttäjän salasana" + +#: mod/install.php:239 +msgid "For security reasons the password must not be empty" +msgstr "Turvallisuussyistä salasanakenttä ei saa olla tyhjä" + +#: mod/install.php:240 +msgid "Database Name" +msgstr "Tietokannan nimi" + +#: mod/install.php:241 mod/install.php:281 +msgid "Site administrator email address" +msgstr "Sivuston ylläpitäjän sähköpostiosoite" + +#: mod/install.php:241 mod/install.php:281 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Tilisi sähköpostiosoitteen on vastattava tätä, jotta voit käyttää ylläpitokäyttöliittymää." + +#: mod/install.php:245 mod/install.php:284 +msgid "Please select a default timezone for your website" +msgstr "Valitse oletusaikavyöhyke sivustollesi" + +#: mod/install.php:271 +msgid "Site settings" +msgstr "Sivuston asetukset" + +#: mod/install.php:285 +msgid "System Language:" +msgstr "Järjestelmän kieli:" + +#: mod/install.php:285 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "Valitse Friendica-sivustosi oletuskieli." + +#: mod/install.php:326 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Komentoriviversiota PHP:stä ei löytynyt web-palvelimen PATH:ista." + +#: mod/install.php:327 +msgid "" +"If you don't have a command line version of PHP installed on your server, " +"you will not be able to run the background processing. See 'Setup the worker'" +msgstr "" + +#: mod/install.php:331 +msgid "PHP executable path" +msgstr "Polku PHP-ohjelmaan" + +#: mod/install.php:331 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Kirjoita koko polku PHP-ohjelmaan. Voit jättää sen tyhjäksi, jos haluat jatkaa asennusta." + +#: mod/install.php:336 +msgid "Command line PHP" +msgstr "Komentorivi-PHP" + +#: mod/install.php:345 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "" + +#: mod/install.php:346 +msgid "Found PHP version: " +msgstr "PHP-versio löydetty:" + +#: mod/install.php:348 +msgid "PHP cli binary" +msgstr "PHP cli -binääritiedosto" + +#: mod/install.php:359 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Järjestelmäsi komentorivi-PHP:ssä ei ole käytössä asetusta \"register_argc_argv\"." + +#: mod/install.php:360 +msgid "This is required for message delivery to work." +msgstr "Asetus vaaditaan viestien lähettämiseen." + +#: mod/install.php:362 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: mod/install.php:385 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Virhe: järjestelmäsi \"openssl_pkey_new\" -funktio ei pysty generoimaan salausavaimia." + +#: mod/install.php:386 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Jos on kyse Windows-pavelimesta, katso \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: mod/install.php:388 +msgid "Generate encryption keys" +msgstr "Luo salausavaimet" + +#: mod/install.php:395 +msgid "libCurl PHP module" +msgstr "PHP-moduuli libCurl" + +#: mod/install.php:396 +msgid "GD graphics PHP module" +msgstr "PHP-moduuli GD graphics" + +#: mod/install.php:397 +msgid "OpenSSL PHP module" +msgstr "PHP-moduuli OpenSSL" + +#: mod/install.php:398 +msgid "PDO or MySQLi PHP module" +msgstr "PDO tai MySQLi PHP-moduuli" + +#: mod/install.php:399 +msgid "mb_string PHP module" +msgstr "PHP-moduuli mb_string" + +#: mod/install.php:400 +msgid "XML PHP module" +msgstr "XML PHP-moduuli" + +#: mod/install.php:401 +msgid "iconv PHP module" +msgstr "iconv PHP-moduuli" + +#: mod/install.php:402 +msgid "POSIX PHP module" +msgstr "POSIX PHP-moduuli" + +#: mod/install.php:406 mod/install.php:408 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite -moduuli" + +#: mod/install.php:406 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Virhe: Apache-palvelimen mod-rewrite -moduuli vaaditaan, mutta sitä ei ole asennettu." + +#: mod/install.php:414 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Virhe: libCURL PHP -moduuli vaaditaan, mutta sitä ei ole asennettu." + +#: mod/install.php:418 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Virhe: GD graphics PHP -moduuli JPEG-tuella vaaditaan, mutta sitä ei ole asennettu." + +#: mod/install.php:422 +msgid "Error: openssl PHP module required but not installed." +msgstr "Virhe: openssl PHP -moduuli vaaditaan, mutta sitä ei ole asennettu." + +#: mod/install.php:426 +msgid "Error: PDO or MySQLi PHP module required but not installed." +msgstr "Virhe: PDO tai MySQLi PHP-moduuli vaaditaan, mutta sitä ei ole asennettu." + +#: mod/install.php:430 +msgid "Error: The MySQL driver for PDO is not installed." +msgstr "Virhe: PDO:n MySQL-ajuri ei ole asennettu" + +#: mod/install.php:434 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Virhe: PHP-moduuli mb_string vaaditaan, mutta sitä ei ole asennettu." + +#: mod/install.php:438 +msgid "Error: iconv PHP module required but not installed." +msgstr "Virhe: iconv PHP-moduuli vaaditaan, mutta sitä ei ole asennettu." + +#: mod/install.php:442 +msgid "Error: POSIX PHP module required but not installed." +msgstr "Virhe: POSIX PHP-moduuli vaadittaan, mutta sitä ei ole asennettu." + +#: mod/install.php:452 +msgid "Error, XML PHP module required but not installed." +msgstr "Virhe: XML PHP-moduuli vaaditaan, mutta sitä ei ole asennettu." + +#: mod/install.php:464 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "Web-asennuksen pitäisi pystyä luomaan tiedosto nimeltä \".htconfig.php\" palvelimesi ylimpään kansioon, mutta se ei nyt onnistu." + +#: mod/install.php:465 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Tämä on yleensä käyttöoikeusasetus, jolloin web-palvelimesi ei pysty kirjoittamaan tiedostoja kansioosi, vaikka itse siihen pystyisit." + +#: mod/install.php:466 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "Tämän menettelyn lopussa annamme sinulle tekstin tallennettavaksi tiedostoon nimeltä .htconfig.php Friendican ylätason kansiossa." + +#: mod/install.php:467 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "" + +#: mod/install.php:470 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php on kirjoitettava" + +#: mod/install.php:480 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "" + +#: mod/install.php:481 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "" + +#: mod/install.php:482 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "" + +#: mod/install.php:483 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "" + +#: mod/install.php:486 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 on kirjoitettava" + +#: mod/install.php:504 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "URL-osoitteen uudelleenkirjoitus .htaccess-tiedostossa ei toimi. Tarkista palvelimen asetukset." + +#: mod/install.php:506 +msgid "Error message from Curl when fetching" +msgstr "" + +#: mod/install.php:510 +msgid "Url rewrite is working" +msgstr "URL-osoitteen uudellenkirjoitus toimii" + +#: mod/install.php:529 +msgid "ImageMagick PHP extension is not installed" +msgstr "ImageMagick PHP-laajennus ei ole asetettu" + +#: mod/install.php:531 +msgid "ImageMagick PHP extension is installed" +msgstr "ImageMagick PHP-laajennus on asetettu" + +#: mod/install.php:533 +msgid "ImageMagick supports GIF" +msgstr "ImageMagik tukee GIF-formaattia" + +#: mod/install.php:540 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Tietokannan asetustiedostoa \".htconfig.php\" ei pystytty kirjoittamaan. Käytä mukaanliitettyä tekstiä luomaan asetustiedosto web-palvelimesi juureen." + +#: mod/install.php:563 +msgid "

What next

" +msgstr "

Mitä seuraavaksi

" + +#: mod/install.php:564 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"worker." +msgstr "TÄRKEÄÄ: Sinun pitää asettaa [manuaalisesti] ajastettu tehtävä Workerille." + +#: mod/install.php:567 +#, php-format +msgid "" +"Go to your new Friendica node registration page " +"and register as new user. Remember to use the same email you have entered as" +" administrator email. This will allow you to enter the site admin panel." +msgstr "" + +#: mod/invite.php:33 +msgid "Total invitation limit exceeded." +msgstr "Kutsuraja ylitetty." + +#: mod/invite.php:55 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Virheellinen sähköpostiosoite." + +#: mod/invite.php:87 +msgid "Please join us on Friendica" +msgstr "Tervetuloa Friendicaan" + +#: mod/invite.php:96 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Kutsuraja ylitetty. Ota yhteyttä ylläpitäjään." + +#: mod/invite.php:100 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Viestin toimitus epäonnistui." + +#: mod/invite.php:104 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d viesti lähetetty." +msgstr[1] "%d viestiä lähetetty." + +#: mod/invite.php:122 +msgid "You have no more invitations available" +msgstr "Sinulla ei ole kutsuja jäljellä" + +#: mod/invite.php:130 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "" + +#: mod/invite.php:132 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "" + +#: mod/invite.php:133 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "" + +#: mod/invite.php:137 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "" + +#: mod/invite.php:141 +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks." +msgstr "" + +#: mod/invite.php:140 +#, php-format +msgid "To accept this invitation, please visit and register at %s." +msgstr "" + +#: mod/invite.php:147 +msgid "Send invitations" +msgstr "Lähetä kutsut" + +#: mod/invite.php:148 +msgid "Enter email addresses, one per line:" +msgstr "Syötä sähköpostiosoitteet, yksi riviä kohden:" + +#: mod/invite.php:149 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "" + +#: mod/invite.php:151 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "" + +#: mod/invite.php:151 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Kun olet rekisteröitynyt, lähetä minulle kaverikutsun profiilisivuni kautta:" + +#: mod/invite.php:153 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendi.ca" +msgstr "" + +#: mod/network.php:202 src/Model/Group.php:413 +msgid "add" +msgstr "lisää" + +#: mod/network.php:547 +#, php-format +msgid "" +"Warning: This group contains %s member from a network that doesn't allow non" +" public messages." +msgid_plural "" +"Warning: This group contains %s members from a network that doesn't allow " +"non public messages." +msgstr[0] "" +msgstr[1] "" + +#: mod/network.php:550 +msgid "Messages in this group won't be send to these receivers." +msgstr "" + +#: mod/network.php:618 +msgid "No such group" +msgstr "Ryhmä ei ole olemassa" + +#: mod/network.php:643 +#, php-format +msgid "Group: %s" +msgstr "Ryhmä: %s" + +#: mod/network.php:669 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Yksityisviestit lähetetty tälle henkilölle saattaa näkyä muillekin." + +#: mod/network.php:672 +msgid "Invalid contact." +msgstr "Virheellinen kontakti." + +#: mod/network.php:937 +msgid "Commented Order" +msgstr "Järjestä viimeisimpien kommenttien mukaan" + +#: mod/network.php:940 +msgid "Sort by Comment Date" +msgstr "Kommentit päivämäärän mukaan" + +#: mod/network.php:945 +msgid "Posted Order" +msgstr "Järjestä julkaisupäivämäärän mukaan" + +#: mod/network.php:948 +msgid "Sort by Post Date" +msgstr "Julkaisut päivämäärän mukaan" + +#: mod/network.php:959 +msgid "Posts that mention or involve you" +msgstr "Julkaisut jotka liittyvät sinuun" + +#: mod/network.php:967 +msgid "New" +msgstr "Uusi" + +#: mod/network.php:970 +msgid "Activity Stream - by date" +msgstr "" + +#: mod/network.php:978 +msgid "Shared Links" +msgstr "Jaetut linkit" + +#: mod/network.php:981 +msgid "Interesting Links" +msgstr "Kiinnostavat linkit" + +#: mod/network.php:989 +msgid "Starred" +msgstr "Tähtimerkitty" + +#: mod/network.php:992 +msgid "Favourite Posts" +msgstr "Lempijulkaisut" + +#: mod/profile.php:37 src/Model/Profile.php:118 +msgid "Requested profile is not available." +msgstr "Pyydettyä profiilia ei saatavilla." + +#: mod/profile.php:78 src/Protocol/OStatus.php:1252 +#, php-format +msgid "%s's posts" +msgstr "%s: julkaisut" + +#: mod/profile.php:79 src/Protocol/OStatus.php:1253 +#, php-format +msgid "%s's comments" +msgstr "%s: kommentit" + +#: mod/profile.php:80 src/Protocol/OStatus.php:1251 +#, php-format +msgid "%s's timeline" +msgstr "%s: aikajana" + +#: mod/profile.php:194 +msgid "Tips for New Members" +msgstr "Vinkkejä uusille käyttäjille" + +#: mod/settings.php:56 +msgid "Account" +msgstr "Tili" + +#: mod/settings.php:73 +msgid "Display" +msgstr "Ulkonäkö" + +#: mod/settings.php:80 mod/settings.php:844 +msgid "Social Networks" +msgstr "Sosiaalinen media" + +#: mod/settings.php:94 src/Content/Nav.php:201 +msgid "Delegations" +msgstr "" + +#: mod/settings.php:101 +msgid "Connected apps" +msgstr "Yhdistetyt sovellukset" + +#: mod/settings.php:115 +msgid "Remove account" +msgstr "Poista tili" + +#: mod/settings.php:169 +msgid "Missing some important data!" +msgstr "Tärkeää dataa puuttuu!" + +#: mod/settings.php:280 +msgid "Failed to connect with email account using the settings provided." +msgstr "" + +#: mod/settings.php:285 +msgid "Email settings updated." +msgstr "Sähköpostin asetukset päivitettiin." + +#: mod/settings.php:301 +msgid "Features updated" +msgstr "Ominaisuudet päivitetty" + +#: mod/settings.php:374 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: mod/settings.php:386 src/Model/User.php:339 +msgid "Passwords do not match. Password unchanged." +msgstr "Salasanat eivät täsmää. Salasana ennallaan." + +#: mod/settings.php:391 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Tyhjä salasanakenttä ei ole sallittu. Salasana ennallaan." + +#: mod/settings.php:396 src/Core/Console/NewPassword.php:87 +msgid "" +"The new password has been exposed in a public data dump, please choose " +"another." +msgstr "" + +#: mod/settings.php:402 +msgid "Wrong password." +msgstr "Väärä salasana." + +#: mod/settings.php:409 src/Core/Console/NewPassword.php:94 +msgid "Password changed." +msgstr "Salasana vaihdettu." + +#: mod/settings.php:411 src/Core/Console/NewPassword.php:91 +msgid "Password update failed. Please try again." +msgstr "Salasanan vaihto epäonnistui. Yritä uudelleen." + +#: mod/settings.php:498 +msgid " Please use a shorter name." +msgstr "Käytä lyhyempää nimeä." + +#: mod/settings.php:501 +msgid " Name too short." +msgstr "Nimi on liian lyhyt." + +#: mod/settings.php:509 +msgid "Wrong Password" +msgstr "Väärä salasana" + +#: mod/settings.php:514 +msgid "Invalid email." +msgstr "Virheellinen sähköposti." + +#: mod/settings.php:521 +msgid "Cannot change to that email." +msgstr "" + +#: mod/settings.php:574 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "" + +#: mod/settings.php:577 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "" + +#: mod/settings.php:617 +msgid "Settings updated." +msgstr "Asetukset päivitetty." + +#: mod/settings.php:676 mod/settings.php:702 mod/settings.php:738 +msgid "Add application" +msgstr "Lisää sovellus" + +#: mod/settings.php:680 mod/settings.php:706 +msgid "Consumer Key" +msgstr "Kuluttajan avain" + +#: mod/settings.php:681 mod/settings.php:707 +msgid "Consumer Secret" +msgstr "Kuluttajasalaisuus" + +#: mod/settings.php:682 mod/settings.php:708 +msgid "Redirect" +msgstr "Uudelleenohjaus" + +#: mod/settings.php:683 mod/settings.php:709 +msgid "Icon url" +msgstr "Kuvakkeen URL-osoite" + +#: mod/settings.php:694 +msgid "You can't edit this application." +msgstr "Et voi muokata tätä sovellusta." + +#: mod/settings.php:737 +msgid "Connected Apps" +msgstr "Yhdistetyt sovellukset" + +#: mod/settings.php:739 src/Object/Post.php:155 src/Object/Post.php:157 +msgid "Edit" +msgstr "Muokkaa" + +#: mod/settings.php:741 +msgid "Client key starts with" +msgstr "Asiakasavain alkaa" + +#: mod/settings.php:742 +msgid "No name" +msgstr "Ei nimeä" + +#: mod/settings.php:743 +msgid "Remove authorization" +msgstr "Poista lupa" + +#: mod/settings.php:754 +msgid "No Addon settings configured" +msgstr "Lisäosa-asetukset puuttuvat" + +#: mod/settings.php:763 +msgid "Addon Settings" +msgstr "Lisäosa-asetukset" + +#: mod/settings.php:784 +msgid "Additional Features" +msgstr "Lisäominaisuuksia" + +#: mod/settings.php:807 src/Content/ContactSelector.php:83 +msgid "Diaspora" +msgstr "Diaspora" + +#: mod/settings.php:807 mod/settings.php:808 +msgid "enabled" +msgstr "käytössä" + +#: mod/settings.php:807 mod/settings.php:808 +msgid "disabled" +msgstr "pois käytöstä" + +#: mod/settings.php:807 mod/settings.php:808 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "" + +#: mod/settings.php:808 +msgid "GNU Social (OStatus)" +msgstr "GNU Social (OStatus)" + +#: mod/settings.php:839 +msgid "Email access is disabled on this site." +msgstr "" + +#: mod/settings.php:849 +msgid "General Social Media Settings" +msgstr "Yleiset some asetukset" + +#: mod/settings.php:850 +msgid "Disable Content Warning" +msgstr "Poista sisältövaroitus käytöstä" + +#: mod/settings.php:850 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This disables the automatic " +"collapsing and sets the content warning as the post title. Doesn't affect " +"any other content filtering you eventually set up." +msgstr "" + +#: mod/settings.php:851 +msgid "Disable intelligent shortening" +msgstr "" + +#: mod/settings.php:851 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "" + +#: mod/settings.php:852 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "Automaattisesti seuraa GNU social (OStatus) seuraajat/mainitsijat" + +#: mod/settings.php:852 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "" + +#: mod/settings.php:853 +msgid "Default group for OStatus contacts" +msgstr "Oletusryhmä OStatus kontakteille" + +#: mod/settings.php:854 +msgid "Your legacy GNU Social account" +msgstr "Vanha GNU social käyttäjätilisi" + +#: mod/settings.php:854 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "" + +#: mod/settings.php:857 +msgid "Repair OStatus subscriptions" +msgstr "Korjaa OStatus tilaukset" + +#: mod/settings.php:861 +msgid "Email/Mailbox Setup" +msgstr "Sähköpostin asennus" + +#: mod/settings.php:862 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "" + +#: mod/settings.php:863 +msgid "Last successful email check:" +msgstr "Viimeisin onnistunut sähköpostitarkistus:" + +#: mod/settings.php:865 +msgid "IMAP server name:" +msgstr "IMAP-palvelimen nimi:" + +#: mod/settings.php:866 +msgid "IMAP port:" +msgstr "IMAP-porttti:" + +#: mod/settings.php:867 +msgid "Security:" +msgstr "Turvallisuus:" + +#: mod/settings.php:867 mod/settings.php:872 +msgid "None" +msgstr "Ei mitään" + +#: mod/settings.php:868 +msgid "Email login name:" +msgstr "Sähköpostitilin käyttäjätunnus:" + +#: mod/settings.php:869 +msgid "Email password:" +msgstr "Sähköpostin salasana:" + +#: mod/settings.php:870 +msgid "Reply-to address:" +msgstr "Vastausosoite:" + +#: mod/settings.php:871 +msgid "Send public posts to all email contacts:" +msgstr "Lähetä julkiset julkaisut kaikille kontakteille:" + +#: mod/settings.php:872 +msgid "Action after import:" +msgstr "Toiminta tuonnin jälkeen:" + +#: mod/settings.php:872 src/Content/Nav.php:189 +msgid "Mark as seen" +msgstr "Merkitse luetuksi" + +#: mod/settings.php:872 +msgid "Move to folder" +msgstr "Siirrä kansioon" + +#: mod/settings.php:873 +msgid "Move to folder:" +msgstr "Siirrä kansioon:" + +#: mod/settings.php:916 +#, php-format +msgid "%s - (Unsupported)" +msgstr "%s - (Ei tueta)" + +#: mod/settings.php:918 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Kokeellinen)" + +#: mod/settings.php:961 +msgid "Display Settings" +msgstr "Näyttöasetukset" + +#: mod/settings.php:967 mod/settings.php:991 +msgid "Display Theme:" +msgstr "Käyttöliittymän teema:" + +#: mod/settings.php:968 +msgid "Mobile Theme:" +msgstr "Mobiiliteema:" + +#: mod/settings.php:969 +msgid "Suppress warning of insecure networks" +msgstr "" + +#: mod/settings.php:969 +msgid "" +"Should the system suppress the warning that the current group contains " +"members of networks that can't receive non public postings." +msgstr "" + +#: mod/settings.php:970 +msgid "Update browser every xx seconds" +msgstr "Päivitä selain xx sekunnin välein" + +#: mod/settings.php:970 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "Vähintään 10 sekuntia. -1 poistaa ominaisuuden käytöstä." + +#: mod/settings.php:971 +msgid "Number of items to display per page:" +msgstr "" + +#: mod/settings.php:971 mod/settings.php:972 +msgid "Maximum of 100 items" +msgstr "Enintään 100 kohdetta" + +#: mod/settings.php:972 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "" + +#: mod/settings.php:973 +msgid "Don't show emoticons" +msgstr "Piilota hymiöt" + +#: mod/settings.php:974 +msgid "Calendar" +msgstr "Kalenteri" + +#: mod/settings.php:975 +msgid "Beginning of week:" +msgstr "Viikon alku:" + +#: mod/settings.php:976 +msgid "Don't show notices" +msgstr "" + +#: mod/settings.php:977 +msgid "Infinite scroll" +msgstr "Loputon selaaminen" + +#: mod/settings.php:978 +msgid "Automatic updates only at the top of the network page" +msgstr "" + +#: mod/settings.php:978 +msgid "" +"When disabled, the network page is updated all the time, which could be " +"confusing while reading." +msgstr "" + +#: mod/settings.php:979 +msgid "Bandwith Saver Mode" +msgstr "Kaistanleveyssäästömoodi" + +#: mod/settings.php:979 +msgid "" +"When enabled, embedded content is not displayed on automatic updates, they " +"only show on page reload." +msgstr "" + +#: mod/settings.php:980 +msgid "Smart Threading" +msgstr "" + +#: mod/settings.php:980 +msgid "" +"When enabled, suppress extraneous thread indentation while keeping it where " +"it matters. Only works if threading is available and enabled." +msgstr "" + +#: mod/settings.php:982 +msgid "General Theme Settings" +msgstr "Yleiset teeman asetukset" + +#: mod/settings.php:983 +msgid "Custom Theme Settings" +msgstr "Mukautetut teema-asetukset" + +#: mod/settings.php:984 +msgid "Content Settings" +msgstr "Sisältöasetukset" + +#: mod/settings.php:985 view/theme/duepuntozero/config.php:73 +#: view/theme/frio/config.php:120 view/theme/quattro/config.php:75 +#: view/theme/vier/config.php:121 +msgid "Theme settings" +msgstr "Teeman asetukset" + +#: mod/settings.php:1004 +msgid "Unable to find your profile. Please contact your admin." +msgstr "Profiilisi ei löytynyt. Ota yhteyttä ylläpitäjään." + +#: mod/settings.php:1046 +msgid "Account Types" +msgstr "Tilityypit" + +#: mod/settings.php:1047 +msgid "Personal Page Subtypes" +msgstr "Henkilökohtaisen sivun alatyypit" + +#: mod/settings.php:1048 +msgid "Community Forum Subtypes" +msgstr "Yhteisöfoorumin alatyypit" + +#: mod/settings.php:1056 +msgid "Account for a personal profile." +msgstr "Henkilökohtaisen profiilin käyttäjätili." + +#: mod/settings.php:1060 +msgid "" +"Account for an organisation that automatically approves contact requests as " +"\"Followers\"." +msgstr "" + +#: mod/settings.php:1064 +msgid "" +"Account for a news reflector that automatically approves contact requests as" +" \"Followers\"." +msgstr "" + +#: mod/settings.php:1068 +msgid "Account for community discussions." +msgstr "" + +#: mod/settings.php:1072 +msgid "" +"Account for a regular personal profile that requires manual approval of " +"\"Friends\" and \"Followers\"." +msgstr "" + +#: mod/settings.php:1076 +msgid "" +"Account for a public profile that automatically approves contact requests as" +" \"Followers\"." +msgstr "" + +#: mod/settings.php:1080 +msgid "Automatically approves all contact requests." +msgstr "Automaattisesti hyväksyy kaikki kontaktipyynnöt" + +#: mod/settings.php:1084 +msgid "" +"Account for a popular profile that automatically approves contact requests " +"as \"Friends\"." +msgstr "" + +#: mod/settings.php:1087 +msgid "Private Forum [Experimental]" +msgstr "Yksityisfoorumi [kokeellinen]" + +#: mod/settings.php:1088 +msgid "Requires manual approval of contact requests." +msgstr "" + +#: mod/settings.php:1099 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1099 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "" + +#: mod/settings.php:1107 +msgid "Publish your default profile in your local site directory?" +msgstr "Julkaise oletusprofiilisi tämän sivuston paikallisluettelossa?" + +#: mod/settings.php:1107 +#, php-format +msgid "" +"Your profile will be published in the global friendica directories (e.g. %s). Your profile will be visible in public." +msgstr "" + +#: mod/settings.php:1113 +msgid "Publish your default profile in the global social directory?" +msgstr "Julkaise oletusprofiilisi maailmanlaajuisessa sosiaaliluettelossa?" + +#: mod/settings.php:1113 +#, php-format +msgid "" +"Your profile will be published in this node's local " +"directory. Your profile details may be publicly visible depending on the" +" system settings." +msgstr "" + +#: mod/settings.php:1120 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "" + +#: mod/settings.php:1120 +msgid "" +"Your contact list won't be shown in your default profile page. You can " +"decide to show your contact list separately for each additional profile you " +"create" +msgstr "" + +#: mod/settings.php:1124 +msgid "Hide your profile details from anonymous viewers?" +msgstr "" + +#: mod/settings.php:1124 +msgid "" +"Anonymous visitors will only see your profile picture, your display name and" +" the nickname you are using on your profile page. Disables posting public " +"messages to Diaspora and other networks." +msgstr "" + +#: mod/settings.php:1128 +msgid "Allow friends to post to your profile page?" +msgstr "Anna kavereiden julkaista profiilisivullasi?" + +#: mod/settings.php:1128 +msgid "" +"Your contacts may write posts on your profile wall. These posts will be " +"distributed to your contacts" +msgstr "" + +#: mod/settings.php:1132 +msgid "Allow friends to tag your posts?" +msgstr "Anna kavereiden lisätä tunnisteita julkaisuusi?" + +#: mod/settings.php:1132 +msgid "Your contacts can add additional tags to your posts." +msgstr "Kontaktisi voi lisätä ylimääräisiä tunnisteita julkaisuusi." + +#: mod/settings.php:1136 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "" + +#: mod/settings.php:1136 +msgid "" +"If you like, Friendica may suggest new members to add you as a contact." +msgstr "" + +#: mod/settings.php:1140 +msgid "Permit unknown people to send you private mail?" +msgstr "Salli yksityisviesit tuntemattomilta?" + +#: mod/settings.php:1140 +msgid "" +"Friendica network users may send you private messages even if they are not " +"in your contact list." +msgstr "" + +#: mod/settings.php:1144 +msgid "Profile is not published." +msgstr "Profiili ei ole julkaistu." + +#: mod/settings.php:1150 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "Identiteettisi osoite on '%s' tai '%s'." + +#: mod/settings.php:1157 +msgid "Automatically expire posts after this many days:" +msgstr "" + +#: mod/settings.php:1157 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Jos kenttä jää tyhjäksi, julkaisut eivät vanhene. Vanhentuneet julkaisut poistetaan." + +#: mod/settings.php:1158 +msgid "Advanced expiration settings" +msgstr "" + +#: mod/settings.php:1159 +msgid "Advanced Expiration" +msgstr "" + +#: mod/settings.php:1160 +msgid "Expire posts:" +msgstr "Julkaisujen vanheneminen:" + +#: mod/settings.php:1161 +msgid "Expire personal notes:" +msgstr "" + +#: mod/settings.php:1162 +msgid "Expire starred posts:" +msgstr "Tähtimerkityt julkaisut vanhenee:" + +#: mod/settings.php:1163 +msgid "Expire photos:" +msgstr "Kuvat vanhenee:" + +#: mod/settings.php:1164 +msgid "Only expire posts by others:" +msgstr "" + +#: mod/settings.php:1194 +msgid "Account Settings" +msgstr "Tiliasetukset" + +#: mod/settings.php:1202 +msgid "Password Settings" +msgstr "Salasana-asetukset" + +#: mod/settings.php:1204 +msgid "Leave password fields blank unless changing" +msgstr "Jätä salasana kenttää tyhjäksi jos et halua vaihtaa salasanaa" + +#: mod/settings.php:1205 +msgid "Current Password:" +msgstr "Nykyinen salasana:" + +#: mod/settings.php:1205 mod/settings.php:1206 +msgid "Your current password to confirm the changes" +msgstr "" + +#: mod/settings.php:1206 +msgid "Password:" +msgstr "Salasana:" + +#: mod/settings.php:1210 +msgid "Basic Settings" +msgstr "Perusasetukset" + +#: mod/settings.php:1211 src/Model/Profile.php:736 +msgid "Full Name:" +msgstr "Koko nimi:" + +#: mod/settings.php:1212 +msgid "Email Address:" +msgstr "Sähköpostiosoite:" + +#: mod/settings.php:1213 +msgid "Your Timezone:" +msgstr "Aikavyöhyke:" + +#: mod/settings.php:1214 +msgid "Your Language:" +msgstr "Kieli:" + +#: mod/settings.php:1214 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "" + +#: mod/settings.php:1215 +msgid "Default Post Location:" +msgstr "Julkaisun oletussijainti:" + +#: mod/settings.php:1216 +msgid "Use Browser Location:" +msgstr "Käytä selaimen sijainti:" + +#: mod/settings.php:1219 +msgid "Security and Privacy Settings" +msgstr "Turvallisuus ja tietosuoja-asetukset" + +#: mod/settings.php:1221 +msgid "Maximum Friend Requests/Day:" +msgstr "Kaveripyyntöraja päivässä:" + +#: mod/settings.php:1221 mod/settings.php:1250 +msgid "(to prevent spam abuse)" +msgstr "(roskapostin estämiseksi)" + +#: mod/settings.php:1222 +msgid "Default Post Permissions" +msgstr "Julkaisun oletuskäyttöoikeudet:" + +#: mod/settings.php:1223 +msgid "(click to open/close)" +msgstr "(klikkaa auki/kiinni)" + +#: mod/settings.php:1233 +msgid "Default Private Post" +msgstr "" + +#: mod/settings.php:1234 +msgid "Default Public Post" +msgstr "" + +#: mod/settings.php:1238 +msgid "Default Permissions for New Posts" +msgstr "Uuden julkaisun oletuskäyttöoikeudet" + +#: mod/settings.php:1250 +msgid "Maximum private messages per day from unknown people:" +msgstr "Enimmäismäärä yksityisviestejä päivässä tuntemattomilta henkilöiltä:" + +#: mod/settings.php:1253 +msgid "Notification Settings" +msgstr "Huomautusasetukset" + +#: mod/settings.php:1254 +msgid "By default post a status message when:" +msgstr "Oletuksena julkaise tilapäivitys kun:" + +#: mod/settings.php:1255 +msgid "accepting a friend request" +msgstr "hyväksyt kaveripyynnön" + +#: mod/settings.php:1256 +msgid "joining a forum/community" +msgstr "liityt foorumiin/yhteisöön" + +#: mod/settings.php:1257 +msgid "making an interesting profile change" +msgstr "muokkaat kiinnostavalla tavalla profiiliasi" + +#: mod/settings.php:1258 +msgid "Send a notification email when:" +msgstr "Lähetä sähköposti-ilmoitus kun:" + +#: mod/settings.php:1259 +msgid "You receive an introduction" +msgstr "Vastaanotat kaverikutsun" + +#: mod/settings.php:1260 +msgid "Your introductions are confirmed" +msgstr "Kaverikutsusi on hyväksytty" + +#: mod/settings.php:1261 +msgid "Someone writes on your profile wall" +msgstr "Joku kirjoittaa profiiliseinällesi" + +#: mod/settings.php:1262 +msgid "Someone writes a followup comment" +msgstr "Joku vastaa kommenttiin" + +#: mod/settings.php:1263 +msgid "You receive a private message" +msgstr "Vastaanotat yksityisviestin" + +#: mod/settings.php:1264 +msgid "You receive a friend suggestion" +msgstr "Vastaanotat kaveriehdotuksen" + +#: mod/settings.php:1265 +msgid "You are tagged in a post" +msgstr "Sinut on merkitty julkaisuun" + +#: mod/settings.php:1266 +msgid "You are poked/prodded/etc. in a post" +msgstr "sinut on tökätty tms. julkaisussa" + +#: mod/settings.php:1268 +msgid "Activate desktop notifications" +msgstr "Ota työpöytäilmoitukset käyttöön" + +#: mod/settings.php:1268 +msgid "Show desktop popup on new notifications" +msgstr "Näytä uudet ilmoitukset ponnahdusikkunassa" + +#: mod/settings.php:1270 +msgid "Text-only notification emails" +msgstr "Ilmoitussähköposteissa vain tekstiä" + +#: mod/settings.php:1272 +msgid "Send text only notification emails, without the html part" +msgstr "Lähetä ilmoitussähköposteissa vain tekstiä ilman HTML-koodia" + +#: mod/settings.php:1274 +msgid "Show detailled notifications" +msgstr "Näytä yksityiskohtaiset ilmoitukset" + +#: mod/settings.php:1276 +msgid "" +"Per default, notifications are condensed to a single notification per item. " +"When enabled every notification is displayed." +msgstr "" + +#: mod/settings.php:1278 +msgid "Advanced Account/Page Type Settings" +msgstr "Käyttäjätili/sivutyyppi lisäasetuksia" + +#: mod/settings.php:1279 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: mod/settings.php:1282 +msgid "Relocate" +msgstr "Uudelleensijoitus" + +#: mod/settings.php:1283 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "" + +#: mod/settings.php:1284 +msgid "Resend relocate message to contacts" +msgstr "" + +#: view/theme/duepuntozero/config.php:54 src/Model/User.php:502 +msgid "default" +msgstr "oletus" + +#: view/theme/duepuntozero/config.php:55 +msgid "greenzero" +msgstr "greenzero" + +#: view/theme/duepuntozero/config.php:56 +msgid "purplezero" +msgstr "purplezero" + +#: view/theme/duepuntozero/config.php:57 +msgid "easterbunny" +msgstr "easterbunny" + +#: view/theme/duepuntozero/config.php:58 +msgid "darkzero" +msgstr "darkzero" + +#: view/theme/duepuntozero/config.php:59 +msgid "comix" +msgstr "comix" + +#: view/theme/duepuntozero/config.php:60 +msgid "slackr" +msgstr "slackr" + +#: view/theme/duepuntozero/config.php:74 +msgid "Variations" +msgstr "Muunnelmat" + +#: view/theme/frio/php/Image.php:24 +msgid "Top Banner" +msgstr "" + +#: view/theme/frio/php/Image.php:24 +msgid "" +"Resize image to the width of the screen and show background color below on " +"long pages." +msgstr "" + +#: view/theme/frio/php/Image.php:25 +msgid "Full screen" +msgstr "" + +#: view/theme/frio/php/Image.php:25 +msgid "" +"Resize image to fill entire screen, clipping either the right or the bottom." +msgstr "" + +#: view/theme/frio/php/Image.php:26 +msgid "Single row mosaic" +msgstr "" + +#: view/theme/frio/php/Image.php:26 +msgid "" +"Resize image to repeat it on a single row, either vertical or horizontal." +msgstr "" + +#: view/theme/frio/php/Image.php:27 +msgid "Mosaic" +msgstr "" + +#: view/theme/frio/php/Image.php:27 +msgid "Repeat image to fill the screen." +msgstr "" + +#: view/theme/frio/config.php:102 +msgid "Custom" +msgstr "" + +#: view/theme/frio/config.php:114 +msgid "Note" +msgstr "" + +#: view/theme/frio/config.php:114 +msgid "Check image permissions if all users are allowed to see the image" +msgstr "" + +#: view/theme/frio/config.php:121 +msgid "Select color scheme" +msgstr "" + +#: view/theme/frio/config.php:122 +msgid "Navigation bar background color" +msgstr "Navigointipalkin taustaväri" + +#: view/theme/frio/config.php:123 +msgid "Navigation bar icon color " +msgstr "Navigointipalkin kuvakkeiden väri" + +#: view/theme/frio/config.php:124 +msgid "Link color" +msgstr "Linkin väri" + +#: view/theme/frio/config.php:125 +msgid "Set the background color" +msgstr "Valitse taustaväri" + +#: view/theme/frio/config.php:126 +msgid "Content background opacity" +msgstr "Sisällön taustasameus" + +#: view/theme/frio/config.php:127 +msgid "Set the background image" +msgstr "Valitse taustakuva" + +#: view/theme/frio/config.php:128 +msgid "Background image style" +msgstr "" + +#: view/theme/frio/config.php:133 +msgid "Login page background image" +msgstr "Sisäänkirjautumissivun taustakuva" + +#: view/theme/frio/config.php:137 +msgid "Login page background color" +msgstr "Sisäänkirjautumissivun taustaväri" + +#: view/theme/frio/config.php:137 +msgid "Leave background image and color empty for theme defaults" +msgstr "" + +#: view/theme/frio/theme.php:238 +msgid "Guest" +msgstr "Vieras" + +#: view/theme/frio/theme.php:243 +msgid "Visitor" +msgstr "Vierailija" + +#: view/theme/frio/theme.php:256 src/Content/Nav.php:97 +#: src/Module/Login.php:311 +msgid "Logout" +msgstr "Kirjaudu ulos" + +#: view/theme/frio/theme.php:256 src/Content/Nav.php:97 +msgid "End this session" +msgstr "Lopeta istunto" + +#: view/theme/frio/theme.php:259 src/Content/Nav.php:100 +#: src/Content/Nav.php:182 +msgid "Your posts and conversations" +msgstr "Omat julkaisut ja keskustelut" + +#: view/theme/frio/theme.php:260 src/Content/Nav.php:101 +msgid "Your profile page" +msgstr "Oma profiilisivu" + +#: view/theme/frio/theme.php:261 src/Content/Nav.php:102 +msgid "Your photos" +msgstr "Omat kuvat" + +#: view/theme/frio/theme.php:262 src/Content/Nav.php:103 +#: src/Model/Profile.php:910 src/Model/Profile.php:913 +msgid "Videos" +msgstr "Videot" + +#: view/theme/frio/theme.php:262 src/Content/Nav.php:103 +msgid "Your videos" +msgstr "Omat videot" + +#: view/theme/frio/theme.php:263 src/Content/Nav.php:104 +msgid "Your events" +msgstr "Omat tapahtumat" + +#: view/theme/frio/theme.php:266 src/Content/Nav.php:179 +msgid "Conversations from your friends" +msgstr "Kavereiden keskustelut" + +#: view/theme/frio/theme.php:267 src/Content/Nav.php:170 +#: src/Model/Profile.php:925 src/Model/Profile.php:936 +msgid "Events and Calendar" +msgstr "Tapahtumat ja kalenteri" + +#: view/theme/frio/theme.php:268 src/Content/Nav.php:192 +msgid "Private mail" +msgstr "Yksityinen posti" + +#: view/theme/frio/theme.php:269 src/Content/Nav.php:203 +msgid "Account settings" +msgstr "Tiliasetukset" + +#: view/theme/frio/theme.php:270 src/Content/Nav.php:209 +msgid "Manage/edit friends and contacts" +msgstr "Hallitse/muokkaa kaverit ja kontaktit" + +#: view/theme/quattro/config.php:76 +msgid "Alignment" +msgstr "Kohdistaminen" + +#: view/theme/quattro/config.php:76 +msgid "Left" +msgstr "Vasemmalle" + +#: view/theme/quattro/config.php:76 +msgid "Center" +msgstr "Keskelle" + +#: view/theme/quattro/config.php:77 +msgid "Color scheme" +msgstr "Värimalli" + +#: view/theme/quattro/config.php:78 +msgid "Posts font size" +msgstr "Julkaisujen fonttikoko" + +#: view/theme/quattro/config.php:79 +msgid "Textareas font size" +msgstr "Tekstikenttien fonttikoko" + +#: view/theme/vier/config.php:75 +msgid "Comma separated list of helper forums" +msgstr "" + +#: view/theme/vier/config.php:115 src/Core/ACL.php:309 +msgid "don't show" +msgstr "älä näytä" + +#: view/theme/vier/config.php:115 src/Core/ACL.php:308 +msgid "show" +msgstr "näytä" + +#: view/theme/vier/config.php:122 +msgid "Set style" +msgstr "Aseta tyyli" + +#: view/theme/vier/config.php:123 +msgid "Community Pages" +msgstr "Yhteisösivut" + +#: view/theme/vier/config.php:124 view/theme/vier/theme.php:150 +msgid "Community Profiles" +msgstr "Yhteisöprofiilit" + +#: view/theme/vier/config.php:125 +msgid "Help or @NewHere ?" +msgstr "" + +#: view/theme/vier/config.php:126 view/theme/vier/theme.php:388 +msgid "Connect Services" +msgstr "Yhdistä palvelut" + +#: view/theme/vier/config.php:127 +msgid "Find Friends" +msgstr "Etsi kavereita" + +#: view/theme/vier/config.php:128 view/theme/vier/theme.php:181 +msgid "Last users" +msgstr "Viimeisimmät käyttäjät" + +#: view/theme/vier/theme.php:199 src/Content/Widget.php:59 +msgid "Find People" +msgstr "Löydä ihmisiä" + +#: view/theme/vier/theme.php:200 src/Content/Widget.php:60 +msgid "Enter name or interest" +msgstr "Syötä nimi tai harrastus" + +#: view/theme/vier/theme.php:202 src/Content/Widget.php:62 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Esim. Matti Meikäläinen, kalastus yms." + +#: view/theme/vier/theme.php:205 src/Content/Widget.php:65 +msgid "Similar Interests" +msgstr "Yhteiset harrastukset" + +#: view/theme/vier/theme.php:206 src/Content/Widget.php:66 +msgid "Random Profile" +msgstr "Satunnainen profiili" + +#: view/theme/vier/theme.php:207 src/Content/Widget.php:67 +msgid "Invite Friends" +msgstr "Kutsu kavereita" + +#: view/theme/vier/theme.php:210 src/Content/Widget.php:70 +msgid "Local Directory" +msgstr "Paikallinen hakemisto" + +#: view/theme/vier/theme.php:255 src/Content/ForumManager.php:127 +msgid "External link to forum" +msgstr "Ulkoinen linkki foorumiin" + +#: view/theme/vier/theme.php:291 +msgid "Quick Start" +msgstr "Pika-aloitus" + +#: src/Core/UserImport.php:104 +msgid "Error decoding account file" +msgstr "" + +#: src/Core/UserImport.php:110 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Virhe: tiedostosta puuttuu versiotiedot! Saattaa olla että tämä ei ole Friendica -tilitiedosto?" + +#: src/Core/UserImport.php:118 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Käyttäjä '%s' on jo olemassa tällä palvelimella!" + +#: src/Core/UserImport.php:151 +msgid "User creation error" +msgstr "Virhe käyttäjän luomisessa" + +#: src/Core/UserImport.php:169 +msgid "User profile creation error" +msgstr "Virhe käyttäjäprofiilin luomisessa" + +#: src/Core/UserImport.php:213 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d kontakti ei tuotu" +msgstr[1] "%d kontakteja ei tuotu" + +#: src/Core/UserImport.php:278 +msgid "Done. You can now login with your username and password" +msgstr "Suoritettu. Voit nyt kirjautua sisään käyttäjätunnuksellasi." + +#: src/Core/ACL.php:295 +msgid "Post to Email" +msgstr "Viesti sähköpostiin" + +#: src/Core/ACL.php:301 +msgid "Hide your profile details from unknown viewers?" +msgstr "Piilota profiilitietosi tuntemattomilta?" + +#: src/Core/ACL.php:300 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "" + +#: src/Core/ACL.php:307 +msgid "Visible to everybody" +msgstr "Näkyvissä kaikille" + +#: src/Core/ACL.php:319 +msgid "Close" +msgstr "Sulje" + +#: src/Core/Console/NewPassword.php:78 +msgid "Enter new password: " +msgstr "" + +#: src/Core/Console/NewPassword.php:83 src/Model/User.php:262 +msgid "Password can't be empty" +msgstr "" + +#: src/Core/Console/ArchiveContact.php:67 +#, php-format +msgid "Could not find any unarchived contact entry for this URL (%s)" +msgstr "" + +#: src/Core/Console/ArchiveContact.php:72 +msgid "The contact entries have been archived" +msgstr "" + +#: src/Core/NotificationsManager.php:171 +msgid "System" +msgstr "Järjestelmä" + +#: src/Core/NotificationsManager.php:192 src/Content/Nav.php:124 +#: src/Content/Nav.php:182 +msgid "Home" +msgstr "Koti" + +#: src/Core/NotificationsManager.php:199 src/Content/Nav.php:186 +msgid "Introductions" +msgstr "Esittelyt" + +#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s kommentoi julkaisuun jonka kirjoitti %s" + +#: src/Core/NotificationsManager.php:267 +#, php-format +msgid "%s created a new post" +msgstr "%s loi uuden julkaisun" + +#: src/Core/NotificationsManager.php:281 +#, php-format +msgid "%s liked %s's post" +msgstr "%s tykkäsi julkaisusta jonka kirjoitti %s" + +#: src/Core/NotificationsManager.php:294 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s ei tykännyt julkaisusta jonka kirjoitti %s" + +#: src/Core/NotificationsManager.php:307 +#, php-format +msgid "%s is attending %s's event" +msgstr "%s osallistuu tapahtumaan jonka järjestää %s" + +#: src/Core/NotificationsManager.php:320 +#, php-format +msgid "%s is not attending %s's event" +msgstr "%s ei osallistu tapahtumaan jonka järjestää %s" + +#: src/Core/NotificationsManager.php:333 +#, php-format +msgid "%s may attend %s's event" +msgstr "%s ehkä osallistuu tapahtumaan jonka järjestää %s" + +#: src/Core/NotificationsManager.php:350 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s ja %s ovat kavereita" + +#: src/Core/NotificationsManager.php:825 +msgid "Friend Suggestion" +msgstr "Kaveriehdotus" + +#: src/Core/NotificationsManager.php:851 +msgid "Friend/Connect Request" +msgstr "Ystävä/yhteyspyyntö" + +#: src/Core/NotificationsManager.php:851 +msgid "New Follower" +msgstr "Uusi seuraaja" + +#: src/Util/Temporal.php:147 src/Model/Profile.php:756 +msgid "Birthday:" +msgstr "Syntymäpäivä:" + +#: src/Util/Temporal.php:151 +msgid "YYYY-MM-DD or MM-DD" +msgstr "VVVV-KK-PP tai KK-PP" + +#: src/Util/Temporal.php:294 +msgid "never" +msgstr "ei ikinä" + +#: src/Util/Temporal.php:300 +msgid "less than a second ago" +msgstr "alle sekunti sitten" + +#: src/Util/Temporal.php:303 +msgid "year" +msgstr "vuosi" + +#: src/Util/Temporal.php:303 +msgid "years" +msgstr "vuotta" + +#: src/Util/Temporal.php:304 +msgid "months" +msgstr "kuukautta" + +#: src/Util/Temporal.php:305 +msgid "weeks" +msgstr "viikkoa" + +#: src/Util/Temporal.php:306 +msgid "days" +msgstr "päivää" + +#: src/Util/Temporal.php:307 +msgid "hour" +msgstr "tunti" + +#: src/Util/Temporal.php:307 +msgid "hours" +msgstr "tuntia" + +#: src/Util/Temporal.php:308 +msgid "minute" +msgstr "minuutti" + +#: src/Util/Temporal.php:308 +msgid "minutes" +msgstr "inuuttia" + +#: src/Util/Temporal.php:309 +msgid "second" +msgstr "sekunti" + +#: src/Util/Temporal.php:309 +msgid "seconds" +msgstr "sekuntia" + +#: src/Util/Temporal.php:318 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s sitten" + #: src/Content/Text/BBCode.php:416 msgid "view full size" msgstr "näytä täysikokoisena" @@ -2007,10 +8198,6 @@ msgstr "Verkkosuodatin" msgid "Enable widget to display Network posts only from selected network" msgstr "" -#: src/Content/Feature.php:100 mod/network.php:201 mod/search.php:46 -msgid "Saved Searches" -msgstr "Tallennetut haut" - #: src/Content/Feature.php:100 msgid "Save search terms for re-use" msgstr "Tallenna hakutermit myöhempää käyttöä varten" @@ -2079,7 +8266,7 @@ msgstr "Julkaisuluokat" msgid "Add categories to your posts" msgstr "Luokittele julkaisusi" -#: src/Content/Feature.php:118 src/Content/Widget.php:200 +#: src/Content/Feature.php:118 src/Content/Widget.php:205 msgid "Saved Folders" msgstr "Tallennetut kansiot" @@ -2135,6 +8322,14 @@ msgstr "Näytä liittymispäivämäärä" msgid "Display membership date in profile" msgstr "Näytä liittymispäivämäärä profiilissa" +#: src/Content/OEmbed.php:253 +msgid "Embedding disabled" +msgstr "Upottaminen poistettu käytöstä" + +#: src/Content/OEmbed.php:373 +msgid "Embedded content" +msgstr "Upotettu sisältö" + #: src/Content/Widget/CalendarExport.php:61 msgid "Export" msgstr "Vie" @@ -2147,84 +8342,6 @@ msgstr "Vie kalenteri ical -tiedostona" msgid "Export calendar as csv" msgstr "Vie kalenteri csv-tiedostona" -#: src/Content/Widget.php:33 -msgid "Add New Contact" -msgstr "Lisää uusi kontakti" - -#: src/Content/Widget.php:34 -msgid "Enter address or web location" -msgstr "Syötä verkko-osoite" - -#: src/Content/Widget.php:35 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Esimerkki: bob@example.com, http://example.com/barbara" - -#: src/Content/Widget.php:53 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d kutsu saatavilla" -msgstr[1] "%d kutsuja saatavilla" - -#: src/Content/Widget.php:59 -msgid "Find People" -msgstr "Löydä ihmisiä" - -#: src/Content/Widget.php:60 -msgid "Enter name or interest" -msgstr "Syötä nimi tai harrastus" - -#: src/Content/Widget.php:62 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Esim. Matti Meikäläinen, kalastus yms." - -#: src/Content/Widget.php:63 mod/directory.php:209 mod/contacts.php:820 -msgid "Find" -msgstr "Etsi" - -#: src/Content/Widget.php:64 mod/suggest.php:114 view/theme/vier/theme.php:203 -msgid "Friend Suggestions" -msgstr "Ystäväehdotukset" - -#: src/Content/Widget.php:65 view/theme/vier/theme.php:202 -msgid "Similar Interests" -msgstr "Yhteiset harrastukset" - -#: src/Content/Widget.php:66 -msgid "Random Profile" -msgstr "Satunnainen profiili" - -#: src/Content/Widget.php:67 view/theme/vier/theme.php:204 -msgid "Invite Friends" -msgstr "Kutsu kavereita" - -#: src/Content/Widget.php:68 -msgid "View Global Directory" -msgstr "Katso maailmanlaajuista luetteloa" - -#: src/Content/Widget.php:159 -msgid "Networks" -msgstr "Verkot" - -#: src/Content/Widget.php:162 -msgid "All Networks" -msgstr "Kaikki verkot" - -#: src/Content/Widget.php:203 src/Content/Widget.php:243 -msgid "Everything" -msgstr "Kaikki" - -#: src/Content/Widget.php:240 -msgid "Categories" -msgstr "Luokat" - -#: src/Content/Widget.php:307 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d yhteinen kontakti" -msgstr[1] "%d yhteistä kontaktia" - #: src/Content/ContactSelector.php:55 msgid "Frequently" msgstr "Usein" @@ -2249,10 +8366,6 @@ msgstr "Viikottain" msgid "Monthly" msgstr "Kuukausittain" -#: src/Content/ContactSelector.php:79 mod/dfrn_request.php:656 -msgid "Friendica" -msgstr "Friendica" - #: src/Content/ContactSelector.php:80 msgid "OStatus" msgstr "OStatus" @@ -2261,15 +8374,6 @@ msgstr "OStatus" msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:82 mod/admin.php:1796 mod/admin.php:1807 -#: mod/admin.php:1820 mod/admin.php:1838 -msgid "Email" -msgstr "Sähköposti" - -#: src/Content/ContactSelector.php:83 mod/settings.php:805 -msgid "Diaspora" -msgstr "Diaspora" - #: src/Content/ContactSelector.php:84 msgid "Facebook" msgstr "Facebook" @@ -2458,6 +8562,10 @@ msgstr "" msgid "Sex Addict" msgstr "" +#: src/Content/ContactSelector.php:169 src/Model/User.php:519 +msgid "Friends" +msgstr "Kaverit" + #: src/Content/ContactSelector.php:169 msgid "Friends/Benefits" msgstr "" @@ -2542,18 +8650,6 @@ msgstr "Ei ole väliä" msgid "Ask me" msgstr "Kysy minulta" -#: src/Content/OEmbed.php:253 -msgid "Embedding disabled" -msgstr "Upottaminen poistettu käytöstä" - -#: src/Content/OEmbed.php:373 -msgid "Embedded content" -msgstr "Upotettu sisältö" - -#: src/Content/ForumManager.php:127 view/theme/vier/theme.php:256 -msgid "External link to forum" -msgstr "Ulkoinen linkki foorumiin" - #: src/Content/Nav.php:53 msgid "Nothing new here" msgstr "" @@ -2562,36 +8658,6 @@ msgstr "" msgid "Clear notifications" msgstr "Tyhjennä ilmoitukset" -#: src/Content/Nav.php:97 src/Module/Login.php:311 -#: view/theme/frio/theme.php:256 -msgid "Logout" -msgstr "Kirjaudu ulos" - -#: src/Content/Nav.php:97 view/theme/frio/theme.php:256 -msgid "End this session" -msgstr "Lopeta istunto" - -#: src/Content/Nav.php:100 src/Content/Nav.php:181 -#: view/theme/frio/theme.php:259 -msgid "Your posts and conversations" -msgstr "Omat julkaisut ja keskustelut" - -#: src/Content/Nav.php:101 view/theme/frio/theme.php:260 -msgid "Your profile page" -msgstr "Oma profiilisivu" - -#: src/Content/Nav.php:102 view/theme/frio/theme.php:261 -msgid "Your photos" -msgstr "Omat kuvat" - -#: src/Content/Nav.php:103 view/theme/frio/theme.php:262 -msgid "Your videos" -msgstr "Omat videot" - -#: src/Content/Nav.php:104 view/theme/frio/theme.php:263 -msgid "Your events" -msgstr "Omat tapahtumat" - #: src/Content/Nav.php:105 msgid "Personal notes" msgstr "" @@ -2600,35 +8666,18 @@ msgstr "" msgid "Your personal notes" msgstr "" -#: src/Content/Nav.php:114 src/Module/Login.php:312 mod/bookmarklet.php:23 -msgid "Login" -msgstr "Kirjaudu sisään" - #: src/Content/Nav.php:114 msgid "Sign in" msgstr "Kirjaudu sisään" -#: src/Content/Nav.php:124 src/Content/Nav.php:181 -#: src/Core/NotificationsManager.php:192 -msgid "Home" -msgstr "Koti" - #: src/Content/Nav.php:124 msgid "Home Page" msgstr "Kotisivu" -#: src/Content/Nav.php:128 src/Module/Login.php:283 mod/register.php:279 -msgid "Register" -msgstr "Rekisteröidy" - #: src/Content/Nav.php:128 msgid "Create an account" msgstr "Luo tili" -#: src/Content/Nav.php:134 mod/help.php:54 view/theme/vier/theme.php:298 -msgid "Help" -msgstr "Ohje" - #: src/Content/Nav.php:134 msgid "Help and documentation" msgstr "Ohjeet ja dokmentointi" @@ -2645,164 +8694,655 @@ msgstr "Lisäosa sovelluksia, apuohjelmia, pelejä" msgid "Search site content" msgstr "Sivustohaku" -#: src/Content/Nav.php:165 +#: src/Content/Nav.php:166 msgid "Community" msgstr "Yhteisö" -#: src/Content/Nav.php:165 +#: src/Content/Nav.php:166 msgid "Conversations on this and other servers" msgstr "Keskustelut täällä ja muilla palvelimilla" -#: src/Content/Nav.php:172 +#: src/Content/Nav.php:173 msgid "Directory" msgstr "Luettelo" -#: src/Content/Nav.php:172 +#: src/Content/Nav.php:173 msgid "People directory" msgstr "Henkilöluettelo" -#: src/Content/Nav.php:174 mod/admin.php:179 -msgid "Information" -msgstr "Tietoja" - -#: src/Content/Nav.php:174 +#: src/Content/Nav.php:175 msgid "Information about this friendica instance" msgstr "Lisätietoja tästä Friendica -instanssista" -#: src/Content/Nav.php:178 src/Core/NotificationsManager.php:178 -#: mod/admin.php:758 view/theme/frio/theme.php:266 -msgid "Network" -msgstr "Verkko" - -#: src/Content/Nav.php:178 view/theme/frio/theme.php:266 -msgid "Conversations from your friends" -msgstr "Kavereiden keskustelut" - -#: src/Content/Nav.php:179 +#: src/Content/Nav.php:180 msgid "Network Reset" msgstr "Verkon nollaus" -#: src/Content/Nav.php:179 +#: src/Content/Nav.php:180 msgid "Load Network page with no filters" msgstr "" -#: src/Content/Nav.php:185 src/Core/NotificationsManager.php:199 -msgid "Introductions" -msgstr "Esittelyt" - -#: src/Content/Nav.php:185 +#: src/Content/Nav.php:186 msgid "Friend Requests" msgstr "Kaveripyynnöt" -#: src/Content/Nav.php:186 mod/notifications.php:98 -msgid "Notifications" -msgstr "Huomautukset" - -#: src/Content/Nav.php:187 +#: src/Content/Nav.php:188 msgid "See all notifications" msgstr "Näytä kaikki ilmoitukset" -#: src/Content/Nav.php:188 mod/settings.php:870 -msgid "Mark as seen" -msgstr "Merkitse luetuksi" - -#: src/Content/Nav.php:188 +#: src/Content/Nav.php:189 msgid "Mark all system notifications seen" msgstr "" -#: src/Content/Nav.php:191 mod/message.php:112 view/theme/frio/theme.php:268 -msgid "Messages" -msgstr "Viestit" - -#: src/Content/Nav.php:191 view/theme/frio/theme.php:268 -msgid "Private mail" -msgstr "Yksityinen posti" - -#: src/Content/Nav.php:192 +#: src/Content/Nav.php:193 msgid "Inbox" msgstr "Saapuneet" -#: src/Content/Nav.php:193 +#: src/Content/Nav.php:194 msgid "Outbox" msgstr "Lähtevät" -#: src/Content/Nav.php:194 mod/message.php:30 -msgid "New Message" -msgstr "Uusi viesti" - -#: src/Content/Nav.php:197 +#: src/Content/Nav.php:198 msgid "Manage" msgstr "Hallitse" -#: src/Content/Nav.php:197 +#: src/Content/Nav.php:198 msgid "Manage other pages" msgstr "Hallitse muita sivuja" -#: src/Content/Nav.php:200 mod/settings.php:93 -msgid "Delegations" -msgstr "" +#: src/Content/Nav.php:206 src/Model/Profile.php:368 +msgid "Profiles" +msgstr "Profiilit" -#: src/Content/Nav.php:200 mod/delegate.php:169 -msgid "Delegate Page Management" -msgstr "" - -#: src/Content/Nav.php:202 mod/settings.php:123 mod/admin.php:1920 -#: mod/admin.php:2189 mod/newmember.php:19 view/theme/frio/theme.php:269 -msgid "Settings" -msgstr "Asetukset" - -#: src/Content/Nav.php:202 view/theme/frio/theme.php:269 -msgid "Account settings" -msgstr "Tiliasetukset" - -#: src/Content/Nav.php:205 +#: src/Content/Nav.php:206 msgid "Manage/Edit Profiles" msgstr "Hallitse/muokka profiilit" -#: src/Content/Nav.php:208 view/theme/frio/theme.php:270 -msgid "Manage/edit friends and contacts" -msgstr "Hallitse/muokkaa kaverit ja kontaktit" - -#: src/Content/Nav.php:213 mod/admin.php:222 -msgid "Admin" -msgstr "Ylläpitäjä" - -#: src/Content/Nav.php:213 +#: src/Content/Nav.php:214 msgid "Site setup and configuration" msgstr "Sivuston asennus ja asetukset" -#: src/Content/Nav.php:216 +#: src/Content/Nav.php:217 msgid "Navigation" msgstr "Navigointi" -#: src/Content/Nav.php:216 +#: src/Content/Nav.php:217 msgid "Site map" msgstr "Sivustokartta" -#: src/Worker/Delivery.php:390 +#: src/Content/Widget.php:33 +msgid "Add New Contact" +msgstr "Lisää uusi kontakti" + +#: src/Content/Widget.php:34 +msgid "Enter address or web location" +msgstr "Syötä verkko-osoite" + +#: src/Content/Widget.php:35 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Esimerkki: bob@example.com, http://example.com/barbara" + +#: src/Content/Widget.php:53 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d kutsu saatavilla" +msgstr[1] "%d kutsuja saatavilla" + +#: src/Content/Widget.php:164 +msgid "Networks" +msgstr "Verkot" + +#: src/Content/Widget.php:167 +msgid "All Networks" +msgstr "Kaikki verkot" + +#: src/Content/Widget.php:208 src/Content/Widget.php:248 +msgid "Everything" +msgstr "Kaikki" + +#: src/Content/Widget.php:245 +msgid "Categories" +msgstr "Luokat" + +#: src/Content/Widget.php:312 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d yhteinen kontakti" +msgstr[1] "%d yhteistä kontaktia" + +#: src/Database/DBStructure.php:32 +msgid "There are no tables on MyISAM." +msgstr "MyISAMissa ei ole taulukoita." + +#: src/Database/DBStructure.php:75 +#, php-format +msgid "" +"\n" +"\t\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "\n\t\t\t\tFriendican kehittäjät askettäin julkaisi %s-päivityksen,\n\t\t\t\tmutta asennuksessa jotain meni pahasti pieleen.\n\t\t\t\tTämä on korjattava pian, ja en voi korjata sitä itse. Ota yhteyttä\n\t\t\t\tFriendica -kehittäjään jos et voi auttaa. Tietokantani saattaa olla virheellinen." + +#: src/Database/DBStructure.php:80 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Virheviesti on\n[pre]%s[/pre]" + +#: src/Database/DBStructure.php:191 +#, php-format +msgid "" +"\n" +"Error %d occurred during database update:\n" +"%s\n" +msgstr "\n%d virhe tapahtui tietokannan päivityksen aikana:\n%s\n" + +#: src/Database/DBStructure.php:194 +msgid "Errors encountered performing database changes: " +msgstr "Tietokannan muokkauksessa tapahtui virheitä:" + +#: src/Database/DBStructure.php:210 +msgid ": Database update" +msgstr ": Tietokannan päivitys" + +#: src/Database/DBStructure.php:460 +#, php-format +msgid "%s: updating %s table." +msgstr "%s: päivitetään %s-taulukkoa." + +#: src/Model/Mail.php:40 src/Model/Mail.php:174 +msgid "[no subject]" +msgstr "[ei aihetta]" + +#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419 +#: src/Model/Event.php:882 +msgid "Starts:" +msgstr "Alkaa:" + +#: src/Model/Event.php:56 src/Model/Event.php:76 src/Model/Event.php:420 +#: src/Model/Event.php:886 +msgid "Finishes:" +msgstr "Päättyy:" + +#: src/Model/Event.php:368 +msgid "all-day" +msgstr "koko päivä" + +#: src/Model/Event.php:391 +msgid "Jun" +msgstr "Kes." + +#: src/Model/Event.php:394 +msgid "Sept" +msgstr "Syy." + +#: src/Model/Event.php:417 +msgid "No events to display" +msgstr "Ei näytettäviä tapahtumia." + +#: src/Model/Event.php:543 +msgid "l, F j" +msgstr "l, F j" + +#: src/Model/Event.php:566 +msgid "Edit event" +msgstr "Muokkaa tapahtumaa" + +#: src/Model/Event.php:567 +msgid "Duplicate event" +msgstr "Monista tapahtuma" + +#: src/Model/Event.php:568 +msgid "Delete event" +msgstr "Poista tapahtuma" + +#: src/Model/Event.php:815 +msgid "D g:i A" +msgstr "" + +#: src/Model/Event.php:816 +msgid "g:i A" +msgstr "" + +#: src/Model/Event.php:901 src/Model/Event.php:903 +msgid "Show map" +msgstr "Näytä kartta" + +#: src/Model/Event.php:902 +msgid "Hide map" +msgstr "Piilota kartta" + +#: src/Model/Group.php:44 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "" + +#: src/Model/Group.php:341 +msgid "Default privacy group for new contacts" +msgstr "Oletusryhmä uusille kontakteille" + +#: src/Model/Group.php:374 +msgid "Everybody" +msgstr "Kaikki" + +#: src/Model/Group.php:394 +msgid "edit" +msgstr "muokkaa" + +#: src/Model/Group.php:418 +msgid "Edit group" +msgstr "Muokkaa ryhmää" + +#: src/Model/Group.php:419 +msgid "Contacts not in any group" +msgstr "Kontaktit ilman ryhmää" + +#: src/Model/Group.php:420 +msgid "Create a new group" +msgstr "Luo uusi ryhmä" + +#: src/Model/Group.php:422 +msgid "Edit groups" +msgstr "Muokkaa ryhmiä" + +#: src/Model/User.php:154 +msgid "Login failed" +msgstr "Kirjautuminen epäonnistui" + +#: src/Model/User.php:185 +msgid "Not enough information to authenticate" +msgstr "" + +#: src/Model/User.php:346 +msgid "An invitation is required." +msgstr "" + +#: src/Model/User.php:350 +msgid "Invitation could not be verified." +msgstr "Kutsua ei voitu vahvistaa." + +#: src/Model/User.php:357 +msgid "Invalid OpenID url" +msgstr "Virheellinen OpenID url-osoite" + +#: src/Model/User.php:370 src/Module/Login.php:100 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "" + +#: src/Model/User.php:370 src/Module/Login.php:100 +msgid "The error message was:" +msgstr "Virheviesti oli:" + +#: src/Model/User.php:376 +msgid "Please enter the required information." +msgstr "Syötä tarvittavat tiedot." + +#: src/Model/User.php:389 +msgid "Please use a shorter name." +msgstr "Käytä lyhyempää nimeä." + +#: src/Model/User.php:392 +msgid "Name too short." +msgstr "Nimi on liian lyhyt." + +#: src/Model/User.php:400 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "" + +#: src/Model/User.php:405 +msgid "Your email domain is not among those allowed on this site." +msgstr "Sähköpostiosoitteesi verkkotunnus on tämän sivuston estolistalla." + +#: src/Model/User.php:409 +msgid "Not a valid email address." +msgstr "Virheellinen sähköpostiosoite." + +#: src/Model/User.php:413 src/Model/User.php:421 +msgid "Cannot use that email." +msgstr "Sähköpostiosoitetta ei voitu käyttää." + +#: src/Model/User.php:428 +msgid "Your nickname can only contain a-z, 0-9 and _." +msgstr "Nimimerkki voi sisältää a-z, 0-9 ja _." + +#: src/Model/User.php:435 src/Model/User.php:491 +msgid "Nickname is already registered. Please choose another." +msgstr "Valitsemasi nimimerkki on jo käytössä. Valitse toinen nimimerkki." + +#: src/Model/User.php:445 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "VAKAVA VIRHE: Salausavainten luominen epäonnistui." + +#: src/Model/User.php:478 src/Model/User.php:482 +msgid "An error occurred during registration. Please try again." +msgstr "Rekisteröityminen epäonnistui. Yritä uudelleen." + +#: src/Model/User.php:507 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Oletusprofiilin luominen epäonnistui. Yritä uudelleen." + +#: src/Model/User.php:514 +msgid "An error occurred creating your self contact. Please try again." +msgstr "" + +#: src/Model/User.php:523 +msgid "" +"An error occurred creating your default contact group. Please try again." +msgstr "" + +#: src/Model/User.php:597 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\t\t" +msgstr "" + +#: src/Model/User.php:607 +#, php-format +msgid "Registration at %s" +msgstr "Rekisteröityminen kohteessa %s" + +#: src/Model/User.php:625 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t\t" +msgstr "" + +#: src/Model/User.php:629 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t\t%1$s\n" +"\t\t\tPassword:\t\t%5$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n" +"\n" +"\t\t\tThank you and welcome to %2$s." +msgstr "" + +#: src/Model/Contact.php:657 +msgid "Drop Contact" +msgstr "Poista kontakti" + +#: src/Model/Contact.php:1060 +msgid "Organisation" +msgstr "Järjestö" + +#: src/Model/Contact.php:1063 +msgid "News" +msgstr "Uutiset" + +#: src/Model/Contact.php:1066 +msgid "Forum" +msgstr "Keskustelupalsta" + +#: src/Model/Contact.php:1245 +msgid "Connect URL missing." +msgstr "Yhteys URL-linkki puuttuu." + +#: src/Model/Contact.php:1254 +msgid "" +"The contact could not be added. Please check the relevant network " +"credentials in your Settings -> Social Networks page." +msgstr "" + +#: src/Model/Contact.php:1301 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "" + +#: src/Model/Contact.php:1302 src/Model/Contact.php:1316 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Yhteensopivia viestintäprotokolleja tai syötteitä ei löytynyt." + +#: src/Model/Contact.php:1314 +msgid "The profile address specified does not provide adequate information." +msgstr "Annettu profiiliosoite ei sisällä riittävästi tietoa." + +#: src/Model/Contact.php:1319 +msgid "An author or name was not found." +msgstr "" + +#: src/Model/Contact.php:1322 +msgid "No browser URL could be matched to this address." +msgstr "" + +#: src/Model/Contact.php:1325 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "" + +#: src/Model/Contact.php:1326 +msgid "Use mailto: in front of address to force email check." +msgstr "" + +#: src/Model/Contact.php:1332 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "" + +#: src/Model/Contact.php:1337 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "" + +#: src/Model/Contact.php:1388 +msgid "Unable to retrieve contact information." +msgstr "Kontaktin tietoja ei voitu hakea." + +#: src/Model/Contact.php:1605 src/Protocol/DFRN.php:1510 +#, php-format +msgid "%s's birthday" +msgstr "%s: syntymäpäivä" + +#: src/Model/Contact.php:1606 src/Protocol/DFRN.php:1511 +#, php-format +msgid "Happy Birthday %s" +msgstr "Hyvää syntymäpäivää %s" + +#: src/Model/Item.php:1776 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s osallistuu tapahtumaan %3$s, jonka järjestää %2$s" + +#: src/Model/Item.php:1781 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s ei osallistu tapahtumaan %3$s, jonka järjestää %2$s" + +#: src/Model/Item.php:1786 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s ehkä osallistuu tapahtumaan %3$s, jonka järjestää %2$s" + +#: src/Model/Profile.php:97 +msgid "Requested account is not available." +msgstr "Pyydetty käyttäjätili ei ole saatavilla." + +#: src/Model/Profile.php:164 src/Model/Profile.php:395 +#: src/Model/Profile.php:857 +msgid "Edit profile" +msgstr "Muokkaa profiilia" + +#: src/Model/Profile.php:332 +msgid "Atom feed" +msgstr "Atom -syöte" + +#: src/Model/Profile.php:368 +msgid "Manage/edit profiles" +msgstr "Hallitse/muokkaa profiilit" + +#: src/Model/Profile.php:546 src/Model/Profile.php:639 +msgid "g A l F d" +msgstr "" + +#: src/Model/Profile.php:547 +msgid "F d" +msgstr "" + +#: src/Model/Profile.php:604 src/Model/Profile.php:701 +msgid "[today]" +msgstr "[tänään]" + +#: src/Model/Profile.php:615 +msgid "Birthday Reminders" +msgstr "Syntymäpäivämuistutukset" + +#: src/Model/Profile.php:616 +msgid "Birthdays this week:" +msgstr "Syntymäpäiviä tällä viikolla:" + +#: src/Model/Profile.php:688 +msgid "[No description]" +msgstr "[Ei kuvausta]" + +#: src/Model/Profile.php:715 +msgid "Event Reminders" +msgstr "Tapahtumamuistutukset" + +#: src/Model/Profile.php:716 +msgid "Events this week:" +msgstr "Tapahtumia tällä viikolla:" + +#: src/Model/Profile.php:739 +msgid "Member since:" +msgstr "Liittymispäivämäärä:" + +#: src/Model/Profile.php:747 +msgid "j F, Y" +msgstr "" + +#: src/Model/Profile.php:748 +msgid "j F" +msgstr "" + +#: src/Model/Profile.php:763 +msgid "Age:" +msgstr "Ikä:" + +#: src/Model/Profile.php:776 +#, php-format +msgid "for %1$d %2$s" +msgstr "" + +#: src/Model/Profile.php:800 +msgid "Religion:" +msgstr "Uskonto:" + +#: src/Model/Profile.php:808 +msgid "Hobbies/Interests:" +msgstr "Harrastukset:" + +#: src/Model/Profile.php:820 +msgid "Contact information and Social Networks:" +msgstr "Yhteystiedot ja sosiaalinen media:" + +#: src/Model/Profile.php:824 +msgid "Musical interests:" +msgstr "Musiikki:" + +#: src/Model/Profile.php:828 +msgid "Books, literature:" +msgstr "Kirjat, kirjallisuus:" + +#: src/Model/Profile.php:832 +msgid "Television:" +msgstr "Televisio:" + +#: src/Model/Profile.php:836 +msgid "Film/dance/culture/entertainment:" +msgstr "Elokuvat/tanssit/kulttuuri/viihde:" + +#: src/Model/Profile.php:840 +msgid "Love/Romance:" +msgstr "Rakkaus/romanssi:" + +#: src/Model/Profile.php:844 +msgid "Work/employment:" +msgstr "Työ:" + +#: src/Model/Profile.php:848 +msgid "School/education:" +msgstr "Koulutus:" + +#: src/Model/Profile.php:853 +msgid "Forums:" +msgstr "Foorumit:" + +#: src/Model/Profile.php:947 +msgid "Only You Can See This" +msgstr "Vain sinä näet tämän" + +#: src/Protocol/OStatus.php:1799 +#, php-format +msgid "%s is now following %s." +msgstr "%s seuraa %s." + +#: src/Protocol/OStatus.php:1800 +msgid "following" +msgstr "seuraa" + +#: src/Protocol/OStatus.php:1803 +#, php-format +msgid "%s stopped following %s." +msgstr "%s ei enää seuraa %s." + +#: src/Protocol/OStatus.php:1804 +msgid "stopped following" +msgstr "ei enää seuraa" + +#: src/Protocol/Diaspora.php:2670 +msgid "Sharing notification from Diaspora network" +msgstr "" + +#: src/Protocol/Diaspora.php:3762 +msgid "Attachments:" +msgstr "Liitteitä:" + +#: src/Worker/Delivery.php:407 msgid "(no subject)" msgstr "(ei aihetta)" -#: src/App.php:511 -msgid "Delete this item?" -msgstr "Poista tämä kohde?" - -#: src/App.php:513 -msgid "show fewer" -msgstr "näytä vähemmän" - -#: src/Module/Login.php:86 src/Module/Login.php:134 mod/openid.php:116 -msgid "Login failed." -msgstr "Kirjautuminen epäonnistui" - #: src/Module/Login.php:282 msgid "Create a New Account" msgstr "Luo uusi käyttäjätili" -#: src/Module/Login.php:314 mod/lostpass.php:119 -msgid "Nickname or Email: " -msgstr "Lempinimi tai sähköposti:" - #: src/Module/Login.php:315 msgid "Password: " msgstr "Salasana:" @@ -2819,10 +9359,6 @@ msgstr "Kirjaudu sisään OpenID -tunnuksella:" msgid "Forgot your password?" msgstr "Unohditko salasanasi?" -#: src/Module/Login.php:326 mod/lostpass.php:136 -msgid "Password Reset" -msgstr "Salasanan nollaus" - #: src/Module/Login.php:328 msgid "Website Terms of Service" msgstr "Verkkosivun käyttöehdot" @@ -2839,10 +9375,9 @@ msgstr "Sivuston tietosuojakäytäntö" msgid "privacy policy" msgstr "tietosuojakäytäntö" -#: src/Module/Tos.php:48 mod/admin.php:188 mod/admin.php:302 -#: mod/register.php:288 -msgid "Terms of Service" -msgstr "Käyttöehdot" +#: src/Module/Logout.php:28 +msgid "Logged out." +msgstr "Kirjautunut ulos." #: src/Module/Tos.php:51 msgid "Privacy Statement" @@ -2878,27 +9413,10 @@ msgid "" "be permanent." msgstr "" -#: src/Module/Logout.php:28 -msgid "Logged out." -msgstr "Kirjautunut ulos." - -#: src/Object/Image.php:953 src/Object/Image.php:969 src/Object/Image.php:977 -#: src/Object/Image.php:1002 mod/wall_upload.php:231 mod/item.php:471 -msgid "Wall Photos" -msgstr "Seinäkuvat" - #: src/Object/Post.php:128 msgid "This entry was edited" msgstr "Tämä kohde oli muokattu" -#: src/Object/Post.php:149 mod/photos.php:1308 -msgid "Private Message" -msgstr "Yksityisviesti" - -#: src/Object/Post.php:155 src/Object/Post.php:157 mod/settings.php:737 -msgid "Edit" -msgstr "Muokkaa" - #: src/Object/Post.php:182 msgid "save to folder" msgstr "tallenna kansioon" @@ -2943,26 +9461,14 @@ msgstr "Seuraa keskustelua" msgid "toggle ignore status" msgstr "Sivuuta/seuraa" -#: src/Object/Post.php:279 mod/ostatus_subscribe.php:83 -msgid "ignored" -msgstr "ohitettu" - #: src/Object/Post.php:285 msgid "add tag" msgstr "lisää tägi" -#: src/Object/Post.php:296 mod/photos.php:1471 -msgid "I like this (toggle)" -msgstr "Tykkään tästä (vaihda)" - #: src/Object/Post.php:296 msgid "like" msgstr "tykkää" -#: src/Object/Post.php:297 mod/photos.php:1472 -msgid "I don't like this (toggle)" -msgstr "En tykkää tästä (vaihda)" - #: src/Object/Post.php:297 msgid "dislike" msgstr "en tykkää" @@ -2991,11 +9497,6 @@ msgstr "Seinäjulkaisu" msgid "via Wall-To-Wall:" msgstr "seinäjulkaisun kautta" -#: src/Object/Post.php:399 src/Object/Post.php:795 mod/photos.php:1490 -#: mod/photos.php:1529 mod/photos.php:1602 -msgid "Comment" -msgstr "Kommentti" - #: src/Object/Post.php:427 #, php-format msgid "%d comment" @@ -3003,23 +9504,6 @@ msgid_plural "%d comments" msgstr[0] "%d kommentti" msgstr[1] "%d kommentteja" -#: src/Object/Post.php:793 mod/photos.php:1488 mod/photos.php:1527 -#: mod/photos.php:1600 mod/contacts.php:953 -msgid "This is you" -msgstr "Tämä olet sinä" - -#: src/Object/Post.php:796 mod/manage.php:184 mod/invite.php:155 -#: mod/profiles.php:672 mod/events.php:530 mod/fsuggest.php:114 -#: mod/photos.php:1080 mod/photos.php:1160 mod/photos.php:1445 -#: mod/photos.php:1491 mod/photos.php:1530 mod/photos.php:1603 -#: mod/message.php:265 mod/message.php:432 mod/localtime.php:56 -#: mod/crepair.php:148 mod/poke.php:199 mod/contacts.php:610 -#: mod/install.php:251 mod/install.php:290 view/theme/quattro/config.php:73 -#: view/theme/frio/config.php:113 view/theme/vier/config.php:119 -#: view/theme/duepuntozero/config.php:71 -msgid "Submit" -msgstr "Lähetä" - #: src/Object/Post.php:797 msgid "Bold" msgstr "Lihavoitu" @@ -3052,6474 +9536,19 @@ msgstr "Linkki" msgid "Video" msgstr "Video" -#: src/Database/DBStructure.php:32 -msgid "There are no tables on MyISAM." -msgstr "MyISAMissa ei ole taulukoita." +#: src/App.php:511 +msgid "Delete this item?" +msgstr "Poista tämä kohde?" -#: src/Database/DBStructure.php:75 -#, php-format -msgid "" -"\n" -"\t\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "\n\t\t\t\tFriendican kehittäjät askettäin julkaisi %s-päivityksen,\n\t\t\t\tmutta asennuksessa jotain meni pahasti pieleen.\n\t\t\t\tTämä on korjattava pian, ja en voi korjata sitä itse. Ota yhteyttä\n\t\t\t\tFriendica -kehittäjään jos et voi auttaa. Tietokantani saattaa olla virheellinen." - -#: src/Database/DBStructure.php:80 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Virheviesti on\n[pre]%s[/pre]" - -#: src/Database/DBStructure.php:191 -#, php-format -msgid "" -"\n" -"Error %d occurred during database update:\n" -"%s\n" -msgstr "\n%d virhe tapahtui tietokannan päivityksen aikana:\n%s\n" - -#: src/Database/DBStructure.php:194 -msgid "Errors encountered performing database changes: " -msgstr "Tietokannan muokkauksessa tapahtui virheitä:" - -#: src/Database/DBStructure.php:210 -msgid ": Database update" -msgstr ": Tietokannan päivitys" - -#: src/Database/DBStructure.php:460 -#, php-format -msgid "%s: updating %s table." -msgstr "%s: päivitetään %s-taulukkoa." - -#: src/Core/UserImport.php:104 -msgid "Error decoding account file" -msgstr "" - -#: src/Core/UserImport.php:110 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Virhe: tiedostosta puuttuu versiotiedot! Saattaa olla että tämä ei ole Friendica -tilitiedosto?" - -#: src/Core/UserImport.php:118 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "Käyttäjä '%s' on jo olemassa tällä palvelimella!" - -#: src/Core/UserImport.php:151 -msgid "User creation error" -msgstr "Virhe käyttäjän luomisessa" - -#: src/Core/UserImport.php:169 -msgid "User profile creation error" -msgstr "Virhe käyttäjäprofiilin luomisessa" - -#: src/Core/UserImport.php:213 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d kontakti ei tuotu" -msgstr[1] "%d kontakteja ei tuotu" - -#: src/Core/UserImport.php:278 -msgid "Done. You can now login with your username and password" -msgstr "Suoritettu. Voit nyt kirjautua sisään käyttäjätunnuksellasi." - -#: src/Core/Console/NewPassword.php:78 mod/settings.php:394 -msgid "" -"The new password has been exposed in a public data dump, please choose " -"another." -msgstr "" - -#: src/Core/Console/NewPassword.php:82 mod/settings.php:409 -msgid "Password update failed. Please try again." -msgstr "Salasanan vaihto epäonnistui. Yritä uudelleen." - -#: src/Core/Console/NewPassword.php:85 mod/settings.php:407 -msgid "Password changed." -msgstr "Salasana vaihdettu." - -#: src/Core/Console/GlobalCommunityBlock.php:69 mod/admin.php:443 -#, php-format -msgid "Could not find any contact entry for this URL (%s)" -msgstr "" - -#: src/Core/Console/GlobalCommunityBlock.php:72 mod/admin.php:441 -msgid "The contact has been blocked from the node" -msgstr "Kontakti on estetty tällä solmulla" - -#: src/Core/ACL.php:295 -msgid "Post to Email" -msgstr "Viesti sähköpostiin" - -#: src/Core/ACL.php:301 -msgid "Hide your profile details from unknown viewers?" -msgstr "Piilota profiilitietosi tuntemattomilta?" - -#: src/Core/ACL.php:300 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" - -#: src/Core/ACL.php:307 -msgid "Visible to everybody" -msgstr "Näkyvissä kaikille" - -#: src/Core/ACL.php:308 view/theme/vier/config.php:115 -msgid "show" -msgstr "näytä" - -#: src/Core/ACL.php:309 view/theme/vier/config.php:115 -msgid "don't show" -msgstr "älä näytä" - -#: src/Core/ACL.php:315 mod/editpost.php:134 -msgid "CC: email addresses" -msgstr "Kopio: sähköpostiosoitteet" - -#: src/Core/ACL.php:316 mod/editpost.php:141 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Esimerkki: bob@example.com, mary@example.com" - -#: src/Core/ACL.php:318 mod/events.php:533 mod/photos.php:1098 -#: mod/photos.php:1441 -msgid "Permissions" -msgstr "Käyttöoikeudet" - -#: src/Core/ACL.php:319 -msgid "Close" -msgstr "Sulje" - -#: src/Core/NotificationsManager.php:171 -msgid "System" -msgstr "Järjestelmä" - -#: src/Core/NotificationsManager.php:185 mod/network.php:955 -#: mod/profiles.php:687 -msgid "Personal" -msgstr "Henkilökohtainen" - -#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s kommentoi julkaisuun jonka kirjoitti %s" - -#: src/Core/NotificationsManager.php:267 -#, php-format -msgid "%s created a new post" -msgstr "%s loi uuden julkaisun" - -#: src/Core/NotificationsManager.php:281 -#, php-format -msgid "%s liked %s's post" -msgstr "%s tykkäsi julkaisusta jonka kirjoitti %s" - -#: src/Core/NotificationsManager.php:294 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s ei tykännyt julkaisusta jonka kirjoitti %s" - -#: src/Core/NotificationsManager.php:307 -#, php-format -msgid "%s is attending %s's event" -msgstr "%s osallistuu tapahtumaan jonka järjestää %s" - -#: src/Core/NotificationsManager.php:320 -#, php-format -msgid "%s is not attending %s's event" -msgstr "%s ei osallistu tapahtumaan jonka järjestää %s" - -#: src/Core/NotificationsManager.php:333 -#, php-format -msgid "%s may attend %s's event" -msgstr "%s ehkä osallistuu tapahtumaan jonka järjestää %s" - -#: src/Core/NotificationsManager.php:350 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s ja %s ovat kavereita" - -#: src/Core/NotificationsManager.php:825 -msgid "Friend Suggestion" -msgstr "Kaveriehdotus" - -#: src/Core/NotificationsManager.php:851 -msgid "Friend/Connect Request" -msgstr "Ystävä/yhteyspyyntö" - -#: src/Core/NotificationsManager.php:851 -msgid "New Follower" -msgstr "Uusi seuraaja" - -#: src/Util/Temporal.php:81 src/Util/Temporal.php:83 mod/profiles.php:689 -msgid "Miscellaneous" -msgstr "Sekalaista" - -#: src/Util/Temporal.php:149 mod/profiles.php:712 -msgid "Age: " -msgstr "Ikä:" - -#: src/Util/Temporal.php:151 -msgid "YYYY-MM-DD or MM-DD" -msgstr "VVVV-KK-PP tai KK-PP" - -#: src/Util/Temporal.php:294 -msgid "never" -msgstr "ei ikinä" - -#: src/Util/Temporal.php:300 -msgid "less than a second ago" -msgstr "alle sekunti sitten" - -#: src/Util/Temporal.php:303 -msgid "year" -msgstr "vuosi" - -#: src/Util/Temporal.php:303 -msgid "years" -msgstr "vuotta" - -#: src/Util/Temporal.php:304 -msgid "months" -msgstr "kuukautta" - -#: src/Util/Temporal.php:305 -msgid "weeks" -msgstr "viikkoa" - -#: src/Util/Temporal.php:306 -msgid "days" -msgstr "päivää" - -#: src/Util/Temporal.php:307 -msgid "hour" -msgstr "tunti" - -#: src/Util/Temporal.php:307 -msgid "hours" -msgstr "tuntia" - -#: src/Util/Temporal.php:308 -msgid "minute" -msgstr "minuutti" - -#: src/Util/Temporal.php:308 -msgid "minutes" -msgstr "inuuttia" - -#: src/Util/Temporal.php:309 -msgid "second" -msgstr "sekunti" - -#: src/Util/Temporal.php:309 -msgid "seconds" -msgstr "sekuntia" - -#: src/Util/Temporal.php:318 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s sitten" - -#: src/Protocol/OStatus.php:1251 mod/profile.php:80 -#, php-format -msgid "%s's timeline" -msgstr "%s: aikajana" - -#: src/Protocol/OStatus.php:1252 mod/profile.php:78 -#, php-format -msgid "%s's posts" -msgstr "%s: julkaisut" - -#: src/Protocol/OStatus.php:1253 mod/profile.php:79 -#, php-format -msgid "%s's comments" -msgstr "%s: kommentit" - -#: src/Protocol/OStatus.php:1799 -#, php-format -msgid "%s is now following %s." -msgstr "%s seuraa %s." - -#: src/Protocol/OStatus.php:1800 -msgid "following" -msgstr "seuraa" - -#: src/Protocol/OStatus.php:1803 -#, php-format -msgid "%s stopped following %s." -msgstr "%s ei enää seuraa %s." - -#: src/Protocol/OStatus.php:1804 -msgid "stopped following" -msgstr "ei enää seuraa" - -#: src/Protocol/Diaspora.php:2680 -msgid "Sharing notification from Diaspora network" -msgstr "" - -#: src/Protocol/Diaspora.php:3756 -msgid "Attachments:" -msgstr "Liitteitä:" - -#: mod/directory.php:42 mod/display.php:203 mod/viewcontacts.php:45 -#: mod/photos.php:932 mod/community.php:27 mod/videos.php:199 -#: mod/dfrn_request.php:607 mod/search.php:98 mod/search.php:104 -#: mod/probe.php:13 mod/webfinger.php:16 -msgid "Public access denied." -msgstr "Julkinen käyttö estetty." - -#: mod/directory.php:202 view/theme/vier/theme.php:201 -msgid "Global Directory" -msgstr "Maailmanlaajuinen hakemisto" - -#: mod/directory.php:204 -msgid "Find on this site" -msgstr "" - -#: mod/directory.php:206 -msgid "Results for:" -msgstr "Tulokset haulla:" - -#: mod/directory.php:208 -msgid "Site Directory" -msgstr "Sivuston luettelo" - -#: mod/directory.php:213 -msgid "No entries (some entries may be hidden)." -msgstr "" - -#: mod/dirfind.php:49 -#, php-format -msgid "People Search - %s" -msgstr "Käyttäjähaku - %s" - -#: mod/dirfind.php:60 -#, php-format -msgid "Forum Search - %s" -msgstr "Foorumihaku - %s" - -#: mod/dirfind.php:253 mod/match.php:125 -msgid "No matches" -msgstr "Ei täsmääviä profiileja" - -#: mod/repair_ostatus.php:18 -msgid "Resubscribing to OStatus contacts" -msgstr "" - -#: mod/repair_ostatus.php:34 -msgid "Error" -msgstr "Virhe" - -#: mod/repair_ostatus.php:48 mod/ostatus_subscribe.php:64 -msgid "Done" -msgstr "Valmis" - -#: mod/repair_ostatus.php:54 mod/ostatus_subscribe.php:88 -msgid "Keep this window open until done." -msgstr "Pidä tämä ikkuna auki kunnes kaikki tehtävät on suoritettu." - -#: mod/ping.php:292 -msgid "{0} wants to be your friend" -msgstr "{0} lähetti kaveripyynnön" - -#: mod/ping.php:307 -msgid "{0} sent you a message" -msgstr "{0} lähetti sinulle viestin" - -#: mod/ping.php:322 -msgid "{0} requested registration" -msgstr "{0} jätti rekisteröintipyynnön" - -#: mod/suggest.php:36 -msgid "Do you really want to delete this suggestion?" -msgstr "Haluatko varmasti poistaa ehdotuksen?" - -#: mod/suggest.php:73 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Ehdotuksia ei löydy. Jos tämä on uusi sivusto, kokeile uudelleen vuorokauden kuluttua." - -#: mod/suggest.php:84 mod/suggest.php:104 -msgid "Ignore/Hide" -msgstr "Jätä huomiotta/piilota" - -#: mod/display.php:313 mod/profile.php:173 mod/cal.php:142 -msgid "Access to this profile has been restricted." -msgstr "Pääsy tähän profiiliin on rajoitettu" - -#: mod/profile_photo.php:55 -msgid "Image uploaded but image cropping failed." -msgstr "Kuva ladattu mutta kuvan rajaus epäonnistui." - -#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104 -#: mod/profile_photo.php:315 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Kuvan pienentäminen [%s] epäonnistui." - -#: mod/profile_photo.php:125 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Jos kuva ei näy heti, lataa sivu uudelleen tai tyhjennä selaimen välimuisti." - -#: mod/profile_photo.php:134 -msgid "Unable to process image" -msgstr "Kuvan käsitteleminen epäonnistui" - -#: mod/profile_photo.php:153 mod/photos.php:763 mod/photos.php:766 -#: mod/photos.php:795 mod/wall_upload.php:186 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Kuva ylittää kokorajoituksen %s" - -#: mod/profile_photo.php:162 mod/photos.php:818 mod/wall_upload.php:200 -msgid "Unable to process image." -msgstr "Kuvan käsitteleminen epäonnistui." - -#: mod/profile_photo.php:247 -msgid "Upload File:" -msgstr "Lähetä tiedosto:" - -#: mod/profile_photo.php:248 -msgid "Select a profile:" -msgstr "Valitse profiili:" - -#: mod/profile_photo.php:249 mod/profiles.php:691 mod/newmember.php:26 -msgid "Upload Profile Photo" -msgstr "Lataa profiilikuva" - -#: mod/profile_photo.php:250 mod/fbrowser.php:105 mod/fbrowser.php:136 -msgid "Upload" -msgstr "Lähetä" - -#: mod/profile_photo.php:253 -msgid "or" -msgstr "tai" - -#: mod/profile_photo.php:253 -msgid "skip this step" -msgstr "ohita tämä vaihe" - -#: mod/profile_photo.php:253 -msgid "select a photo from your photo albums" -msgstr "valitse kuva albumeistasi" - -#: mod/profile_photo.php:266 -msgid "Crop Image" -msgstr "Rajaa kuva" - -#: mod/profile_photo.php:267 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Rajaa kuva sopivasti." - -#: mod/profile_photo.php:269 -msgid "Done Editing" -msgstr "Lopeta muokkaus" - -#: mod/profile_photo.php:305 -msgid "Image uploaded successfully." -msgstr "Kuvan lähettäminen onnistui." - -#: mod/profile_photo.php:307 mod/photos.php:847 mod/wall_upload.php:239 -msgid "Image upload failed." -msgstr "Kuvan lähettäminen epäonnistui." - -#: mod/removeme.php:43 -msgid "User deleted their account" -msgstr "Käyttäjä poisti tilinsä" - -#: mod/removeme.php:44 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "Friendica -solmullasi käyttäjä poisti tilinsä. Varmista että hänen tiedot poistetaan myös varmuuskopioista." - -#: mod/removeme.php:45 -#, php-format -msgid "The user id is %d" -msgstr "" - -#: mod/removeme.php:76 mod/removeme.php:79 -msgid "Remove My Account" -msgstr "Poista tilini" - -#: mod/removeme.php:77 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Tämä poistaa käyttäjätilisi pysyvästi. Poistoa ei voi perua myöhemmin." - -#: mod/removeme.php:78 -msgid "Please enter your password for verification:" -msgstr "Syötä salasanasi varmistusta varten:" - -#: mod/manage.php:180 -msgid "Manage Identities and/or Pages" -msgstr "Hallitse identiteetit ja/tai sivut" - -#: mod/manage.php:181 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "" - -#: mod/manage.php:182 -msgid "Select an identity to manage: " -msgstr "Valitse identiteetti hallitavaksi:" - -#: mod/update_notes.php:40 mod/update_display.php:27 -#: mod/update_community.php:27 mod/update_network.php:33 -#: mod/update_profile.php:39 -msgid "[Embedded content - reload page to view]" -msgstr "[Upotettu sisältö - näet sen päivittämällä sivun]" - -#: mod/uimport.php:55 mod/register.php:191 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Sivuston päivittäinen rekisteröintiraja ylitetty. Yritä uudelleen huomenna." - -#: mod/uimport.php:70 mod/register.php:285 -msgid "Import" -msgstr "Tuo" - -#: mod/uimport.php:72 -msgid "Move account" -msgstr "Siirrä tili" - -#: mod/uimport.php:73 -msgid "You can import an account from another Friendica server." -msgstr "Voit tuoda käyttäjätilin toiselta Friendica -palvelimelta." - -#: mod/uimport.php:74 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "" - -#: mod/uimport.php:75 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (GNU Social/Statusnet) or from Diaspora" -msgstr "Tämä on kokeellinen ominaisuus. Emme voi tuoda kontakteja OStatus-verkolta (GNU social/Statusnet) tai Diasporalta." - -#: mod/uimport.php:76 -msgid "Account file" -msgstr "Tilitiedosto" - -#: mod/uimport.php:76 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "" - -#: mod/invite.php:33 -msgid "Total invitation limit exceeded." -msgstr "Kutsuraja ylitetty." - -#: mod/invite.php:55 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Virheellinen sähköpostiosoite." - -#: mod/invite.php:87 -msgid "Please join us on Friendica" -msgstr "Tervetuloa Friendicaan" - -#: mod/invite.php:96 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Kutsuraja ylitetty. Ota yhteyttä ylläpitäjään." - -#: mod/invite.php:100 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Viestin toimitus epäonnistui." - -#: mod/invite.php:104 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d viesti lähetetty." -msgstr[1] "%d viestiä lähetetty." - -#: mod/invite.php:122 -msgid "You have no more invitations available" -msgstr "Sinulla ei ole kutsuja jäljellä" - -#: mod/invite.php:130 -#, php-format -msgid "" -"Visit %s for a list of public sites that you can join. Friendica members on " -"other sites can all connect with each other, as well as with members of many" -" other social networks." -msgstr "" - -#: mod/invite.php:132 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "" - -#: mod/invite.php:133 -#, php-format -msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." -msgstr "" - -#: mod/invite.php:137 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "" - -#: mod/invite.php:141 -msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks." -msgstr "" - -#: mod/invite.php:140 -#, php-format -msgid "To accept this invitation, please visit and register at %s." -msgstr "" - -#: mod/invite.php:147 -msgid "Send invitations" -msgstr "Lähetä kutsut" - -#: mod/invite.php:148 -msgid "Enter email addresses, one per line:" -msgstr "Syötä sähköpostiosoitteet, yksi riviä kohden:" - -#: mod/invite.php:149 mod/message.php:259 mod/message.php:426 -#: mod/wallmessage.php:141 -msgid "Your message:" -msgstr "Viestisi:" - -#: mod/invite.php:150 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "" - -#: mod/invite.php:152 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "" - -#: mod/invite.php:152 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Kun olet rekisteröitynyt, lähetä minulle kaverikutsun profiilisivuni kautta:" - -#: mod/invite.php:154 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendi.ca" -msgstr "" - -#: mod/openid.php:29 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID -protokollavirhe. Tunnusta ei vastaanotettu." - -#: mod/openid.php:66 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Käyttäjätiliä ei löytynyt. Rekisteröityminen OpenID:n kautta ei ole sallittua tällä sivustolla." - -#: mod/hcard.php:18 -msgid "No profile" -msgstr "Ei profiilia" - -#: mod/apps.php:14 index.php:273 -msgid "You must be logged in to use addons. " -msgstr "Sinun pitää kirjautua sisään, jotta voit käyttää lisäosia" - -#: mod/apps.php:19 -msgid "Applications" -msgstr "Sovellukset" - -#: mod/apps.php:22 -msgid "No installed applications." -msgstr "Ei asennettuja sovelluksia." - -#: mod/network.php:194 mod/search.php:37 -msgid "Remove term" -msgstr "Poista kohde" - -#: mod/network.php:547 -#, php-format -msgid "" -"Warning: This group contains %s member from a network that doesn't allow non" -" public messages." -msgid_plural "" -"Warning: This group contains %s members from a network that doesn't allow " -"non public messages." -msgstr[0] "" -msgstr[1] "" - -#: mod/network.php:550 -msgid "Messages in this group won't be send to these receivers." -msgstr "" - -#: mod/network.php:618 -msgid "No such group" -msgstr "Ryhmä ei ole olemassa" - -#: mod/network.php:639 mod/group.php:216 -msgid "Group is empty" -msgstr "Ryhmä on tyhjä" - -#: mod/network.php:643 -#, php-format -msgid "Group: %s" -msgstr "Ryhmä: %s" - -#: mod/network.php:669 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Yksityisviestit lähetetty tälle henkilölle saattaa näkyä muillekin." - -#: mod/network.php:672 -msgid "Invalid contact." -msgstr "Virheellinen kontakti." - -#: mod/network.php:936 -msgid "Commented Order" -msgstr "Järjestä viimeisimpien kommenttien mukaan" - -#: mod/network.php:939 -msgid "Sort by Comment Date" -msgstr "Kommentit päivämäärän mukaan" - -#: mod/network.php:944 -msgid "Posted Order" -msgstr "Järjestä julkaisupäivämäärän mukaan" - -#: mod/network.php:947 -msgid "Sort by Post Date" -msgstr "Julkaisut päivämäärän mukaan" - -#: mod/network.php:958 -msgid "Posts that mention or involve you" -msgstr "Julkaisut jotka liittyvät sinuun" - -#: mod/network.php:966 -msgid "New" -msgstr "Uusi" - -#: mod/network.php:969 -msgid "Activity Stream - by date" -msgstr "" - -#: mod/network.php:977 -msgid "Shared Links" -msgstr "Jaetut linkit" - -#: mod/network.php:980 -msgid "Interesting Links" -msgstr "Kiinnostavat linkit" - -#: mod/network.php:988 -msgid "Starred" -msgstr "Tähtimerkitty" - -#: mod/network.php:991 -msgid "Favourite Posts" -msgstr "Lempijulkaisut" - -#: mod/friendica.php:77 -msgid "This is Friendica, version" -msgstr "Tämä on Friendica, versio" - -#: mod/friendica.php:78 -msgid "running at web location" -msgstr "käynnissä osoitteessa" - -#: mod/friendica.php:82 -msgid "" -"Please visit Friendi.ca to learn more " -"about the Friendica project." -msgstr "Vieraile osoitteessa Friendi.ca saadaksesi lisätietoja Friendica- projektista." - -#: mod/friendica.php:86 -msgid "Bug reports and issues: please visit" -msgstr "Bugiraportit ja kysymykset: vieraile osoitteessa" - -#: mod/friendica.php:86 -msgid "the bugtracker at github" -msgstr "githubin bugtrackeri" - -#: mod/friendica.php:89 -msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" -msgstr "Ehdotukset ja palaute: lähetä sähköposti osoitteeseen \"info\" at \"friendi - piste - ca" - -#: mod/friendica.php:103 -msgid "Installed addons/apps:" -msgstr "Asennettu lisäosat/sovellukset:" - -#: mod/friendica.php:117 -msgid "No installed addons/apps" -msgstr "Ei asennettuja lisäosia/sovelluksia" - -#: mod/friendica.php:122 -#, php-format -msgid "Read about the Terms of Service of this node." -msgstr "Lue tämän solmun käyttöehdot." - -#: mod/friendica.php:127 -msgid "On this server the following remote servers are blocked." -msgstr "Tällä palvelimella seuraavat etäpalvelimet ovat estetty." - -#: mod/friendica.php:128 mod/admin.php:354 mod/admin.php:372 -msgid "Reason for the block" -msgstr "Eston syy" - -#: mod/subthread.php:113 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: mod/profiles.php:39 mod/profiles.php:149 mod/profiles.php:196 -#: mod/profiles.php:618 mod/dfrn_confirm.php:74 -msgid "Profile not found." -msgstr "Profiilia ei löytynyt." - -#: mod/profiles.php:58 -msgid "Profile deleted." -msgstr "Profiili poistettiin." - -#: mod/profiles.php:74 mod/profiles.php:110 -msgid "Profile-" -msgstr "Profiili-" - -#: mod/profiles.php:93 mod/profiles.php:132 -msgid "New profile created." -msgstr "Uusi profiili luotu." - -#: mod/profiles.php:116 -msgid "Profile unavailable to clone." -msgstr "Profiili ei saatavilla kloonattavaksi." - -#: mod/profiles.php:206 -msgid "Profile Name is required." -msgstr "Profiilinimi on pakollinen." - -#: mod/profiles.php:347 -msgid "Marital Status" -msgstr "Siviilisääty" - -#: mod/profiles.php:351 -msgid "Romantic Partner" -msgstr "Romanttinen kumppani" - -#: mod/profiles.php:363 -msgid "Work/Employment" -msgstr "Työ" - -#: mod/profiles.php:366 -msgid "Religion" -msgstr "Uskonto" - -#: mod/profiles.php:370 -msgid "Political Views" -msgstr "Poliittiset näkemykset" - -#: mod/profiles.php:374 -msgid "Gender" -msgstr "Sukupuoli" - -#: mod/profiles.php:378 -msgid "Sexual Preference" -msgstr "Seksuaalinen suuntautuminen" - -#: mod/profiles.php:382 -msgid "XMPP" -msgstr "XMPP" - -#: mod/profiles.php:386 -msgid "Homepage" -msgstr "Kotisivu" - -#: mod/profiles.php:390 mod/profiles.php:686 -msgid "Interests" -msgstr "Kiinnostukset" - -#: mod/profiles.php:394 mod/admin.php:490 -msgid "Address" -msgstr "Osoite" - -#: mod/profiles.php:401 mod/profiles.php:682 -msgid "Location" -msgstr "Sijainti" - -#: mod/profiles.php:486 -msgid "Profile updated." -msgstr "Profiili päivitettiin." - -#: mod/profiles.php:564 -msgid " and " -msgstr "ja" - -#: mod/profiles.php:573 -msgid "public profile" -msgstr "julkinen profiili" - -#: mod/profiles.php:576 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "" - -#: mod/profiles.php:577 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr "" - -#: mod/profiles.php:579 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "" - -#: mod/profiles.php:633 -msgid "Hide contacts and friends:" -msgstr "Piilota kontaktit ja kaverit:" - -#: mod/profiles.php:636 mod/profiles.php:640 mod/profiles.php:661 -#: mod/api.php:111 mod/settings.php:1105 mod/settings.php:1111 -#: mod/settings.php:1118 mod/settings.php:1122 mod/settings.php:1126 -#: mod/settings.php:1130 mod/settings.php:1134 mod/settings.php:1138 -#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160 -#: mod/settings.php:1161 mod/settings.php:1162 mod/dfrn_request.php:653 -#: mod/follow.php:150 mod/register.php:238 -msgid "No" -msgstr "Ei" - -#: mod/profiles.php:638 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Piilota tämän profiilin kontakti/kaverilista?" - -#: mod/profiles.php:658 -msgid "Show more profile fields:" -msgstr "Näytä lisää profiilikenttiä:" - -#: mod/profiles.php:670 -msgid "Profile Actions" -msgstr "" - -#: mod/profiles.php:671 -msgid "Edit Profile Details" -msgstr "Muokkaa profiilin yksityiskohdat" - -#: mod/profiles.php:673 -msgid "Change Profile Photo" -msgstr "Vaihda profiilikuva" - -#: mod/profiles.php:674 -msgid "View this profile" -msgstr "Näytä profiilia" - -#: mod/profiles.php:676 -msgid "Create a new profile using these settings" -msgstr "Luo uusi profiili näillä asetuksilla" - -#: mod/profiles.php:677 -msgid "Clone this profile" -msgstr "Kloonaa tämä profiili" - -#: mod/profiles.php:678 -msgid "Delete this profile" -msgstr "Poista tämä profiili" - -#: mod/profiles.php:680 -msgid "Basic information" -msgstr "Perustiedot" - -#: mod/profiles.php:681 -msgid "Profile picture" -msgstr "Profiilikuva" - -#: mod/profiles.php:683 -msgid "Preferences" -msgstr "Mieltymykset" - -#: mod/profiles.php:684 -msgid "Status information" -msgstr "Tilatiedot" - -#: mod/profiles.php:685 -msgid "Additional information" -msgstr "Lisätietoja" - -#: mod/profiles.php:688 -msgid "Relation" -msgstr "Suhde" - -#: mod/profiles.php:692 -msgid "Your Gender:" -msgstr "Sukupuoli:" - -#: mod/profiles.php:693 -msgid " Marital Status:" -msgstr " Siviilisääty:" - -#: mod/profiles.php:695 -msgid "Example: fishing photography software" -msgstr "Esimerkki: kalastus valokuvaus ohjelmistot" - -#: mod/profiles.php:700 -msgid "Profile Name:" -msgstr "Profiilinimi:" - -#: mod/profiles.php:700 mod/events.php:508 mod/events.php:520 -msgid "Required" -msgstr "Vaaditaan" - -#: mod/profiles.php:702 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "" - -#: mod/profiles.php:703 -msgid "Your Full Name:" -msgstr "Koko nimi:" - -#: mod/profiles.php:704 -msgid "Title/Description:" -msgstr "Otsikko/kuvaus:" - -#: mod/profiles.php:707 -msgid "Street Address:" -msgstr "Katuosoite:" - -#: mod/profiles.php:708 -msgid "Locality/City:" -msgstr "Kaupunki:" - -#: mod/profiles.php:709 -msgid "Region/State:" -msgstr "Alue/osavaltio:" - -#: mod/profiles.php:710 -msgid "Postal/Zip Code:" -msgstr "Postinumero:" - -#: mod/profiles.php:711 -msgid "Country:" -msgstr "Maa:" - -#: mod/profiles.php:715 -msgid "Who: (if applicable)" -msgstr "Kuka: (tarvittaessa)" - -#: mod/profiles.php:715 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Esimerkkejä: cathy123, Cathy Williams, cathy@example.com" - -#: mod/profiles.php:716 -msgid "Since [date]:" -msgstr "Lähtien [päivämäärä]:" - -#: mod/profiles.php:718 -msgid "Tell us about yourself..." -msgstr "Kerro vähän itsestäsi..." - -#: mod/profiles.php:719 -msgid "XMPP (Jabber) address:" -msgstr "XMPP (Jabber) osoite:" - -#: mod/profiles.php:719 -msgid "" -"The XMPP address will be propagated to your contacts so that they can follow" -" you." -msgstr "" - -#: mod/profiles.php:720 -msgid "Homepage URL:" -msgstr "Kotisivun URL-osoite:" - -#: mod/profiles.php:723 -msgid "Religious Views:" -msgstr "Uskonto:" - -#: mod/profiles.php:724 -msgid "Public Keywords:" -msgstr "Julkiset avainsanat:" - -#: mod/profiles.php:724 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Käytetään kaveriehdotuksia varten, näkyy muille)" - -#: mod/profiles.php:725 -msgid "Private Keywords:" -msgstr "Yksityiset avainsanat:" - -#: mod/profiles.php:725 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Käytetään profiilihakua varten, ei näy muille)" - -#: mod/profiles.php:728 -msgid "Musical interests" -msgstr "Musiikki" - -#: mod/profiles.php:729 -msgid "Books, literature" -msgstr "Kirjat, kirjallisuus" - -#: mod/profiles.php:730 -msgid "Television" -msgstr "Televisio" - -#: mod/profiles.php:731 -msgid "Film/dance/culture/entertainment" -msgstr "Elokuvat/tanssi/kulttuuri/viihde" - -#: mod/profiles.php:732 -msgid "Hobbies/Interests" -msgstr "Harrastukset" - -#: mod/profiles.php:733 -msgid "Love/romance" -msgstr "Rakkaus/romanssi" - -#: mod/profiles.php:734 -msgid "Work/employment" -msgstr "Työ:" - -#: mod/profiles.php:735 -msgid "School/education" -msgstr "Koulutus:" - -#: mod/profiles.php:736 -msgid "Contact information and Social Networks" -msgstr "Yhteystiedot ja sosiaalinen media" - -#: mod/profiles.php:776 -msgid "Edit/Manage Profiles" -msgstr "Muokkaa/hallitse profiilit" - -#: mod/events.php:105 mod/events.php:107 -msgid "Event can not end before it has started." -msgstr "" - -#: mod/events.php:114 mod/events.php:116 -msgid "Event title and start time are required." -msgstr "Tapahtuman nimi ja alkamisaika vaaditaan." - -#: mod/events.php:392 mod/cal.php:275 -msgid "View" -msgstr "Katso" - -#: mod/events.php:393 -msgid "Create New Event" -msgstr "Luo uusi tapahtuma" - -#: mod/events.php:394 mod/cal.php:276 -msgid "Previous" -msgstr "Edellinen" - -#: mod/events.php:395 mod/cal.php:277 mod/install.php:209 -msgid "Next" -msgstr "Seuraava" - -#: mod/events.php:404 mod/cal.php:284 -msgid "list" -msgstr "luettelo" - -#: mod/events.php:506 -msgid "Event details" -msgstr "Tapahtuman tiedot" - -#: mod/events.php:507 -msgid "Starting date and Title are required." -msgstr "Aloituspvm ja otsikko vaaditaan." - -#: mod/events.php:508 mod/events.php:509 -msgid "Event Starts:" -msgstr "Tapahtuma alkaa:" - -#: mod/events.php:510 mod/events.php:526 -msgid "Finish date/time is not known or not relevant" -msgstr "Päättymispvm ja kellonaika ei ole tiedossa tai niillä ei ole merkitystä" - -#: mod/events.php:512 mod/events.php:513 -msgid "Event Finishes:" -msgstr "Tapahtuma päättyy:" - -#: mod/events.php:514 mod/events.php:527 -msgid "Adjust for viewer timezone" -msgstr "Ota huomioon katsojan aikavyöhyke" - -#: mod/events.php:516 -msgid "Description:" -msgstr "Kuvaus:" - -#: mod/events.php:520 mod/events.php:522 -msgid "Title:" -msgstr "Otsikko:" - -#: mod/events.php:523 mod/events.php:524 -msgid "Share this event" -msgstr "Jaa tämä tapahtuma" - -#: mod/events.php:552 -msgid "Failed to remove event" -msgstr "Tapahtuman poisto epäonnistui" - -#: mod/events.php:554 -msgid "Event removed" -msgstr "Tapahtuma poistettu" - -#: mod/notify.php:77 -msgid "No more system notifications." -msgstr "Ei enää järjestelmäilmoituksia." - -#: mod/notify.php:81 mod/notifications.php:113 -msgid "System Notifications" -msgstr "Järjestelmäilmoitukset" - -#: mod/fsuggest.php:30 mod/fsuggest.php:96 mod/crepair.php:110 -#: mod/dfrn_confirm.php:131 -msgid "Contact not found." -msgstr "Kontaktia ei ole." - -#: mod/fsuggest.php:72 -msgid "Friend suggestion sent." -msgstr "Ystäväehdotus lähetettiin." - -#: mod/fsuggest.php:101 -msgid "Suggest Friends" -msgstr "Ehdota ystäviä" - -#: mod/fsuggest.php:103 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Ehdota ystävää ystävälle %s" - -#: mod/attach.php:15 -msgid "Item not available." -msgstr "Kohde ei saatavilla." - -#: mod/attach.php:25 -msgid "Item was not found." -msgstr "Kohdetta ei löytynyt." - -#: mod/allfriends.php:51 -msgid "No friends to display." -msgstr "Ei näytettäviä kavereita." - -#: mod/viewcontacts.php:87 -msgid "No contacts." -msgstr "Ei kontakteja." - -#: mod/viewcontacts.php:112 mod/nogroup.php:42 mod/contacts.php:619 -#: mod/contacts.php:959 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Näytä %s-käyttäjän profiili [%s]" - -#: mod/ostatus_subscribe.php:21 -msgid "Subscribing to OStatus contacts" -msgstr "OStatus -kontaktien tilaaminen" - -#: mod/ostatus_subscribe.php:33 -msgid "No contact provided." -msgstr "Kontakti puuttuu." - -#: mod/ostatus_subscribe.php:40 -msgid "Couldn't fetch information for contact." -msgstr "Kontaktin tietoja ei voitu hakea." - -#: mod/ostatus_subscribe.php:50 -msgid "Couldn't fetch friends for contact." -msgstr "Ei voitu hakea kontaktin kaverit." - -#: mod/ostatus_subscribe.php:78 -msgid "success" -msgstr "onnistui" - -#: mod/ostatus_subscribe.php:80 -msgid "failed" -msgstr "epäonnistui" - -#: mod/api.php:85 mod/api.php:107 -msgid "Authorize application connection" -msgstr "Vahvista sovellusyhteys" - -#: mod/api.php:86 -msgid "Return to your app and insert this Securty Code:" -msgstr "Palaa takaisin sovellukseen ja lisää tämä turvakoodi:" - -#: mod/api.php:95 -msgid "Please login to continue." -msgstr "Ole hyvä ja kirjaudu jatkaaksesi." - -#: mod/api.php:109 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Haluatko antaa tälle sovellukselle luvan hakea viestejäsi ja yhteystietojasi ja/tai luoda uusia viestejä?" - -#: mod/settings.php:50 mod/photos.php:126 -msgid "everybody" -msgstr "kaikki" - -#: mod/settings.php:55 -msgid "Account" -msgstr "Tili" - -#: mod/settings.php:64 mod/admin.php:187 -msgid "Additional features" -msgstr "Lisäominaisuuksia" - -#: mod/settings.php:72 -msgid "Display" -msgstr "Ulkonäkö" - -#: mod/settings.php:79 mod/settings.php:842 -msgid "Social Networks" -msgstr "Sosiaalinen media" - -#: mod/settings.php:86 mod/admin.php:185 mod/admin.php:1918 mod/admin.php:1978 -msgid "Addons" -msgstr "Lisäosat" - -#: mod/settings.php:100 -msgid "Connected apps" -msgstr "Yhdistetyt sovellukset" - -#: mod/settings.php:107 mod/uexport.php:52 -msgid "Export personal data" -msgstr "Vie henkilökohtaiset tiedot" - -#: mod/settings.php:114 -msgid "Remove account" -msgstr "Poista tili" - -#: mod/settings.php:168 -msgid "Missing some important data!" -msgstr "Tärkeää dataa puuttuu!" - -#: mod/settings.php:170 mod/settings.php:701 mod/contacts.php:826 -msgid "Update" -msgstr "Päivitä" - -#: mod/settings.php:279 -msgid "Failed to connect with email account using the settings provided." -msgstr "" - -#: mod/settings.php:284 -msgid "Email settings updated." -msgstr "Sähköpostin asetukset päivitettiin." - -#: mod/settings.php:300 -msgid "Features updated" -msgstr "Ominaisuudet päivitetty" - -#: mod/settings.php:372 -msgid "Relocate message has been send to your contacts" -msgstr "" - -#: mod/settings.php:389 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Tyhjä salasanakenttä ei ole sallittu. Salasana ennallaan." - -#: mod/settings.php:400 -msgid "Wrong password." -msgstr "Väärä salasana." - -#: mod/settings.php:496 -msgid " Please use a shorter name." -msgstr "Käytä lyhyempää nimeä." - -#: mod/settings.php:499 -msgid " Name too short." -msgstr "Nimi on liian lyhyt." - -#: mod/settings.php:507 -msgid "Wrong Password" -msgstr "Väärä salasana" - -#: mod/settings.php:512 -msgid "Invalid email." -msgstr "Virheellinen sähköposti." - -#: mod/settings.php:519 -msgid "Cannot change to that email." -msgstr "" - -#: mod/settings.php:572 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "" - -#: mod/settings.php:575 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "" - -#: mod/settings.php:615 -msgid "Settings updated." -msgstr "Asetukset päivitetty." - -#: mod/settings.php:674 mod/settings.php:700 mod/settings.php:736 -msgid "Add application" -msgstr "Lisää sovellus" - -#: mod/settings.php:675 mod/settings.php:784 mod/settings.php:872 -#: mod/settings.php:961 mod/settings.php:1194 mod/admin.php:307 -#: mod/admin.php:1346 mod/admin.php:1979 mod/admin.php:2232 mod/admin.php:2306 -#: mod/admin.php:2453 mod/delegate.php:168 -msgid "Save Settings" -msgstr "Tallenna asetukset" - -#: mod/settings.php:677 mod/settings.php:703 mod/admin.php:490 -#: mod/admin.php:1796 mod/admin.php:1807 mod/admin.php:1820 mod/admin.php:1836 -#: mod/crepair.php:158 -msgid "Name" -msgstr "Nimi" - -#: mod/settings.php:678 mod/settings.php:704 -msgid "Consumer Key" -msgstr "Kuluttajan avain" - -#: mod/settings.php:679 mod/settings.php:705 -msgid "Consumer Secret" -msgstr "Kuluttajasalaisuus" - -#: mod/settings.php:680 mod/settings.php:706 -msgid "Redirect" -msgstr "Uudelleenohjaus" - -#: mod/settings.php:681 mod/settings.php:707 -msgid "Icon url" -msgstr "Kuvakkeen URL-osoite" - -#: mod/settings.php:692 -msgid "You can't edit this application." -msgstr "Et voi muokata tätä sovellusta." - -#: mod/settings.php:735 -msgid "Connected Apps" -msgstr "Yhdistetyt sovellukset" - -#: mod/settings.php:739 -msgid "Client key starts with" -msgstr "Asiakasavain alkaa" - -#: mod/settings.php:740 -msgid "No name" -msgstr "Ei nimeä" - -#: mod/settings.php:741 -msgid "Remove authorization" -msgstr "Poista lupa" - -#: mod/settings.php:752 -msgid "No Addon settings configured" -msgstr "Lisäosa-asetukset puuttuvat" - -#: mod/settings.php:761 -msgid "Addon Settings" -msgstr "Lisäosa-asetukset" - -#: mod/settings.php:775 mod/admin.php:2442 mod/admin.php:2443 -msgid "Off" -msgstr "Pois päältä" - -#: mod/settings.php:775 mod/admin.php:2442 mod/admin.php:2443 -msgid "On" -msgstr "Päällä" - -#: mod/settings.php:782 -msgid "Additional Features" -msgstr "Lisäominaisuuksia" - -#: mod/settings.php:805 mod/settings.php:806 -msgid "enabled" -msgstr "käytössä" - -#: mod/settings.php:805 mod/settings.php:806 -msgid "disabled" -msgstr "pois käytöstä" - -#: mod/settings.php:805 mod/settings.php:806 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "" - -#: mod/settings.php:806 -msgid "GNU Social (OStatus)" -msgstr "GNU Social (OStatus)" - -#: mod/settings.php:837 -msgid "Email access is disabled on this site." -msgstr "" - -#: mod/settings.php:847 -msgid "General Social Media Settings" -msgstr "Yleiset some asetukset" - -#: mod/settings.php:848 -msgid "Disable Content Warning" -msgstr "Poista sisältövaroitus käytöstä" - -#: mod/settings.php:848 -msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This disables the automatic " -"collapsing and sets the content warning as the post title. Doesn't affect " -"any other content filtering you eventually set up." -msgstr "" - -#: mod/settings.php:849 -msgid "Disable intelligent shortening" -msgstr "" - -#: mod/settings.php:849 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If this option is enabled then every shortened post will always point to the" -" original friendica post." -msgstr "" - -#: mod/settings.php:850 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "Automaattisesti seuraa GNU social (OStatus) seuraajat/mainitsijat" - -#: mod/settings.php:850 -msgid "" -"If you receive a message from an unknown OStatus user, this option decides " -"what to do. If it is checked, a new contact will be created for every " -"unknown user." -msgstr "" - -#: mod/settings.php:851 -msgid "Default group for OStatus contacts" -msgstr "Oletusryhmä OStatus kontakteille" - -#: mod/settings.php:852 -msgid "Your legacy GNU Social account" -msgstr "Vanha GNU social käyttäjätilisi" - -#: mod/settings.php:852 -msgid "" -"If you enter your old GNU Social/Statusnet account name here (in the format " -"user@domain.tld), your contacts will be added automatically. The field will " -"be emptied when done." -msgstr "" - -#: mod/settings.php:855 -msgid "Repair OStatus subscriptions" -msgstr "Korjaa OStatus tilaukset" - -#: mod/settings.php:859 -msgid "Email/Mailbox Setup" -msgstr "Sähköpostin asennus" - -#: mod/settings.php:860 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "" - -#: mod/settings.php:861 -msgid "Last successful email check:" -msgstr "Viimeisin onnistunut sähköpostitarkistus:" - -#: mod/settings.php:863 -msgid "IMAP server name:" -msgstr "IMAP-palvelimen nimi:" - -#: mod/settings.php:864 -msgid "IMAP port:" -msgstr "IMAP-porttti:" - -#: mod/settings.php:865 -msgid "Security:" -msgstr "Turvallisuus:" - -#: mod/settings.php:865 mod/settings.php:870 -msgid "None" -msgstr "Ei mitään" - -#: mod/settings.php:866 -msgid "Email login name:" -msgstr "Sähköpostitilin käyttäjätunnus:" - -#: mod/settings.php:867 -msgid "Email password:" -msgstr "Sähköpostin salasana:" - -#: mod/settings.php:868 -msgid "Reply-to address:" -msgstr "Vastausosoite:" - -#: mod/settings.php:869 -msgid "Send public posts to all email contacts:" -msgstr "Lähetä julkiset julkaisut kaikille kontakteille:" - -#: mod/settings.php:870 -msgid "Action after import:" -msgstr "Toiminta tuonnin jälkeen:" - -#: mod/settings.php:870 -msgid "Move to folder" -msgstr "Siirrä kansioon" - -#: mod/settings.php:871 -msgid "Move to folder:" -msgstr "Siirrä kansioon:" - -#: mod/settings.php:905 mod/admin.php:1236 -msgid "No special theme for mobile devices" -msgstr "Ei mobiiliteemaa" - -#: mod/settings.php:914 -#, php-format -msgid "%s - (Unsupported)" -msgstr "%s - (Ei tueta)" - -#: mod/settings.php:916 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Kokeellinen)" - -#: mod/settings.php:959 -msgid "Display Settings" -msgstr "Näyttöasetukset" - -#: mod/settings.php:965 mod/settings.php:989 -msgid "Display Theme:" -msgstr "Käyttöliittymän teema:" - -#: mod/settings.php:966 -msgid "Mobile Theme:" -msgstr "Mobiiliteema:" - -#: mod/settings.php:967 -msgid "Suppress warning of insecure networks" -msgstr "" - -#: mod/settings.php:967 -msgid "" -"Should the system suppress the warning that the current group contains " -"members of networks that can't receive non public postings." -msgstr "" - -#: mod/settings.php:968 -msgid "Update browser every xx seconds" -msgstr "Päivitä selain xx sekunnin välein" - -#: mod/settings.php:968 -msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "Vähintään 10 sekuntia. -1 poistaa ominaisuuden käytöstä." - -#: mod/settings.php:969 -msgid "Number of items to display per page:" -msgstr "" - -#: mod/settings.php:969 mod/settings.php:970 -msgid "Maximum of 100 items" -msgstr "Enintään 100 kohdetta" - -#: mod/settings.php:970 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "" - -#: mod/settings.php:971 -msgid "Don't show emoticons" -msgstr "Piilota hymiöt" - -#: mod/settings.php:972 -msgid "Calendar" -msgstr "Kalenteri" - -#: mod/settings.php:973 -msgid "Beginning of week:" -msgstr "Viikon alku:" - -#: mod/settings.php:974 -msgid "Don't show notices" -msgstr "" - -#: mod/settings.php:975 -msgid "Infinite scroll" -msgstr "Loputon selaaminen" - -#: mod/settings.php:976 -msgid "Automatic updates only at the top of the network page" -msgstr "" - -#: mod/settings.php:976 -msgid "" -"When disabled, the network page is updated all the time, which could be " -"confusing while reading." -msgstr "" - -#: mod/settings.php:977 -msgid "Bandwith Saver Mode" -msgstr "Kaistanleveyssäästömoodi" - -#: mod/settings.php:977 -msgid "" -"When enabled, embedded content is not displayed on automatic updates, they " -"only show on page reload." -msgstr "" - -#: mod/settings.php:978 -msgid "Smart Threading" -msgstr "" - -#: mod/settings.php:978 -msgid "" -"When enabled, suppress extraneous thread indentation while keeping it where " -"it matters. Only works if threading is available and enabled." -msgstr "" - -#: mod/settings.php:980 -msgid "General Theme Settings" -msgstr "Yleiset teeman asetukset" - -#: mod/settings.php:981 -msgid "Custom Theme Settings" -msgstr "Mukautetut teema-asetukset" - -#: mod/settings.php:982 -msgid "Content Settings" -msgstr "Sisältöasetukset" - -#: mod/settings.php:983 view/theme/quattro/config.php:75 -#: view/theme/frio/config.php:115 view/theme/vier/config.php:121 -#: view/theme/duepuntozero/config.php:73 -msgid "Theme settings" -msgstr "Teeman asetukset" - -#: mod/settings.php:1002 -msgid "Unable to find your profile. Please contact your admin." -msgstr "Profiilisi ei löytynyt. Ota yhteyttä ylläpitäjään." - -#: mod/settings.php:1044 -msgid "Account Types" -msgstr "Tilityypit" - -#: mod/settings.php:1045 -msgid "Personal Page Subtypes" -msgstr "Henkilökohtaisen sivun alatyypit" - -#: mod/settings.php:1046 -msgid "Community Forum Subtypes" -msgstr "Yhteisöfoorumin alatyypit" - -#: mod/settings.php:1053 mod/admin.php:1746 -msgid "Personal Page" -msgstr "Henkilökohtainen sivu" - -#: mod/settings.php:1054 -msgid "Account for a personal profile." -msgstr "Henkilökohtaisen profiilin käyttäjätili." - -#: mod/settings.php:1057 mod/admin.php:1747 -msgid "Organisation Page" -msgstr "Järjestön sivu" - -#: mod/settings.php:1058 -msgid "" -"Account for an organisation that automatically approves contact requests as " -"\"Followers\"." -msgstr "" - -#: mod/settings.php:1061 mod/admin.php:1748 -msgid "News Page" -msgstr "Uutissivu" - -#: mod/settings.php:1062 -msgid "" -"Account for a news reflector that automatically approves contact requests as" -" \"Followers\"." -msgstr "" - -#: mod/settings.php:1065 mod/admin.php:1749 -msgid "Community Forum" -msgstr "Yhteisöfoorumi" - -#: mod/settings.php:1066 -msgid "Account for community discussions." -msgstr "" - -#: mod/settings.php:1069 mod/admin.php:1739 -msgid "Normal Account Page" -msgstr "Tavallinen käyttäjätili" - -#: mod/settings.php:1070 -msgid "" -"Account for a regular personal profile that requires manual approval of " -"\"Friends\" and \"Followers\"." -msgstr "" - -#: mod/settings.php:1073 mod/admin.php:1740 -msgid "Soapbox Page" -msgstr "Saarnatuoli sivu" - -#: mod/settings.php:1074 -msgid "" -"Account for a public profile that automatically approves contact requests as" -" \"Followers\"." -msgstr "" - -#: mod/settings.php:1077 mod/admin.php:1741 -msgid "Public Forum" -msgstr "Julkinen foorumi" - -#: mod/settings.php:1078 -msgid "Automatically approves all contact requests." -msgstr "Automaattisesti hyväksyy kaikki kontaktipyynnöt" - -#: mod/settings.php:1081 mod/admin.php:1742 -msgid "Automatic Friend Page" -msgstr "" - -#: mod/settings.php:1082 -msgid "" -"Account for a popular profile that automatically approves contact requests " -"as \"Friends\"." -msgstr "" - -#: mod/settings.php:1085 -msgid "Private Forum [Experimental]" -msgstr "Yksityisfoorumi [kokeellinen]" - -#: mod/settings.php:1086 -msgid "Requires manual approval of contact requests." -msgstr "" - -#: mod/settings.php:1097 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:1097 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "" - -#: mod/settings.php:1105 -msgid "Publish your default profile in your local site directory?" -msgstr "Julkaise oletusprofiilisi tämän sivuston paikallisluettelossa?" - -#: mod/settings.php:1105 -#, php-format -msgid "" -"Your profile will be published in the global friendica directories (e.g. %s). Your profile will be visible in public." -msgstr "" - -#: mod/settings.php:1111 -msgid "Publish your default profile in the global social directory?" -msgstr "Julkaise oletusprofiilisi maailmanlaajuisessa sosiaaliluettelossa?" - -#: mod/settings.php:1111 -#, php-format -msgid "" -"Your profile will be published in this node's local " -"directory. Your profile details may be publicly visible depending on the" -" system settings." -msgstr "" - -#: mod/settings.php:1118 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "" - -#: mod/settings.php:1118 -msgid "" -"Your contact list won't be shown in your default profile page. You can " -"decide to show your contact list separately for each additional profile you " -"create" -msgstr "" - -#: mod/settings.php:1122 -msgid "Hide your profile details from anonymous viewers?" -msgstr "" - -#: mod/settings.php:1122 -msgid "" -"Anonymous visitors will only see your profile picture, your display name and" -" the nickname you are using on your profile page. Disables posting public " -"messages to Diaspora and other networks." -msgstr "" - -#: mod/settings.php:1126 -msgid "Allow friends to post to your profile page?" -msgstr "Anna kavereiden julkaista profiilisivullasi?" - -#: mod/settings.php:1126 -msgid "" -"Your contacts may write posts on your profile wall. These posts will be " -"distributed to your contacts" -msgstr "" - -#: mod/settings.php:1130 -msgid "Allow friends to tag your posts?" -msgstr "Anna kavereiden lisätä tunnisteita julkaisuusi?" - -#: mod/settings.php:1130 -msgid "Your contacts can add additional tags to your posts." -msgstr "Kontaktisi voi lisätä ylimääräisiä tunnisteita julkaisuusi." - -#: mod/settings.php:1134 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" - -#: mod/settings.php:1134 -msgid "" -"If you like, Friendica may suggest new members to add you as a contact." -msgstr "" - -#: mod/settings.php:1138 -msgid "Permit unknown people to send you private mail?" -msgstr "Salli yksityisviesit tuntemattomilta?" - -#: mod/settings.php:1138 -msgid "" -"Friendica network users may send you private messages even if they are not " -"in your contact list." -msgstr "" - -#: mod/settings.php:1142 -msgid "Profile is not published." -msgstr "Profiili ei ole julkaistu." - -#: mod/settings.php:1148 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "Identiteettisi osoite on '%s' tai '%s'." - -#: mod/settings.php:1155 -msgid "Automatically expire posts after this many days:" -msgstr "" - -#: mod/settings.php:1155 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Jos kenttä jää tyhjäksi, julkaisut eivät vanhene. Vanhentuneet julkaisut poistetaan." - -#: mod/settings.php:1156 -msgid "Advanced expiration settings" -msgstr "" - -#: mod/settings.php:1157 -msgid "Advanced Expiration" -msgstr "" - -#: mod/settings.php:1158 -msgid "Expire posts:" -msgstr "Julkaisujen vanheneminen:" - -#: mod/settings.php:1159 -msgid "Expire personal notes:" -msgstr "" - -#: mod/settings.php:1160 -msgid "Expire starred posts:" -msgstr "Tähtimerkityt julkaisut vanhenee:" - -#: mod/settings.php:1161 -msgid "Expire photos:" -msgstr "Kuvat vanhenee:" - -#: mod/settings.php:1162 -msgid "Only expire posts by others:" -msgstr "" - -#: mod/settings.php:1192 -msgid "Account Settings" -msgstr "Tiliasetukset" - -#: mod/settings.php:1200 -msgid "Password Settings" -msgstr "Salasana-asetukset" - -#: mod/settings.php:1201 mod/register.php:273 -msgid "New Password:" -msgstr "Uusi salasana:" - -#: mod/settings.php:1202 mod/register.php:274 -msgid "Confirm:" -msgstr "Vahvista:" - -#: mod/settings.php:1202 -msgid "Leave password fields blank unless changing" -msgstr "Jätä salasana kenttää tyhjäksi jos et halua vaihtaa salasanaa" - -#: mod/settings.php:1203 -msgid "Current Password:" -msgstr "Nykyinen salasana:" - -#: mod/settings.php:1203 mod/settings.php:1204 -msgid "Your current password to confirm the changes" -msgstr "" - -#: mod/settings.php:1204 -msgid "Password:" -msgstr "Salasana:" - -#: mod/settings.php:1208 -msgid "Basic Settings" -msgstr "Perusasetukset" - -#: mod/settings.php:1210 -msgid "Email Address:" -msgstr "Sähköpostiosoite:" - -#: mod/settings.php:1211 -msgid "Your Timezone:" -msgstr "Aikavyöhyke:" - -#: mod/settings.php:1212 -msgid "Your Language:" -msgstr "Kieli:" - -#: mod/settings.php:1212 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "" - -#: mod/settings.php:1213 -msgid "Default Post Location:" -msgstr "Julkaisun oletussijainti:" - -#: mod/settings.php:1214 -msgid "Use Browser Location:" -msgstr "Käytä selaimen sijainti:" - -#: mod/settings.php:1217 -msgid "Security and Privacy Settings" -msgstr "Turvallisuus ja tietosuoja-asetukset" - -#: mod/settings.php:1219 -msgid "Maximum Friend Requests/Day:" -msgstr "Kaveripyyntöraja päivässä:" - -#: mod/settings.php:1219 mod/settings.php:1248 -msgid "(to prevent spam abuse)" -msgstr "(roskapostin estämiseksi)" - -#: mod/settings.php:1220 -msgid "Default Post Permissions" -msgstr "Julkaisun oletuskäyttöoikeudet:" - -#: mod/settings.php:1221 -msgid "(click to open/close)" -msgstr "(klikkaa auki/kiinni)" - -#: mod/settings.php:1229 mod/photos.php:1106 mod/photos.php:1449 -msgid "Show to Groups" -msgstr "Näytä ryhmille" - -#: mod/settings.php:1230 mod/photos.php:1107 mod/photos.php:1450 -msgid "Show to Contacts" -msgstr "Näytä kontakteille" - -#: mod/settings.php:1231 -msgid "Default Private Post" -msgstr "" - -#: mod/settings.php:1232 -msgid "Default Public Post" -msgstr "" - -#: mod/settings.php:1236 -msgid "Default Permissions for New Posts" -msgstr "Uuden julkaisun oletuskäyttöoikeudet" - -#: mod/settings.php:1248 -msgid "Maximum private messages per day from unknown people:" -msgstr "Enimmäismäärä yksityisviestejä päivässä tuntemattomilta henkilöiltä:" - -#: mod/settings.php:1251 -msgid "Notification Settings" -msgstr "Huomautusasetukset" - -#: mod/settings.php:1252 -msgid "By default post a status message when:" -msgstr "Oletuksena julkaise tilapäivitys kun:" - -#: mod/settings.php:1253 -msgid "accepting a friend request" -msgstr "hyväksyt kaveripyynnön" - -#: mod/settings.php:1254 -msgid "joining a forum/community" -msgstr "liityt foorumiin/yhteisöön" - -#: mod/settings.php:1255 -msgid "making an interesting profile change" -msgstr "muokkaat kiinnostavalla tavalla profiiliasi" - -#: mod/settings.php:1256 -msgid "Send a notification email when:" -msgstr "Lähetä sähköposti-ilmoitus kun:" - -#: mod/settings.php:1257 -msgid "You receive an introduction" -msgstr "Vastaanotat kaverikutsun" - -#: mod/settings.php:1258 -msgid "Your introductions are confirmed" -msgstr "Kaverikutsusi on hyväksytty" - -#: mod/settings.php:1259 -msgid "Someone writes on your profile wall" -msgstr "Joku kirjoittaa profiiliseinällesi" - -#: mod/settings.php:1260 -msgid "Someone writes a followup comment" -msgstr "Joku vastaa kommenttiin" - -#: mod/settings.php:1261 -msgid "You receive a private message" -msgstr "Vastaanotat yksityisviestin" - -#: mod/settings.php:1262 -msgid "You receive a friend suggestion" -msgstr "Vastaanotat kaveriehdotuksen" - -#: mod/settings.php:1263 -msgid "You are tagged in a post" -msgstr "Sinut on merkitty julkaisuun" - -#: mod/settings.php:1264 -msgid "You are poked/prodded/etc. in a post" -msgstr "sinut on tökätty tms. julkaisussa" - -#: mod/settings.php:1266 -msgid "Activate desktop notifications" -msgstr "Ota työpöytäilmoitukset käyttöön" - -#: mod/settings.php:1266 -msgid "Show desktop popup on new notifications" -msgstr "Näytä uudet ilmoitukset ponnahdusikkunassa" - -#: mod/settings.php:1268 -msgid "Text-only notification emails" -msgstr "Ilmoitussähköposteissa vain tekstiä" - -#: mod/settings.php:1270 -msgid "Send text only notification emails, without the html part" -msgstr "Lähetä ilmoitussähköposteissa vain tekstiä ilman HTML-koodia" - -#: mod/settings.php:1272 -msgid "Show detailled notifications" -msgstr "Näytä yksityiskohtaiset ilmoitukset" - -#: mod/settings.php:1274 -msgid "" -"Per default, notifications are condensed to a single notification per item. " -"When enabled every notification is displayed." -msgstr "" - -#: mod/settings.php:1276 -msgid "Advanced Account/Page Type Settings" -msgstr "Käyttäjätili/sivutyyppi lisäasetuksia" - -#: mod/settings.php:1277 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: mod/settings.php:1280 -msgid "Relocate" -msgstr "Uudelleensijoitus" - -#: mod/settings.php:1281 -msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." -msgstr "" - -#: mod/settings.php:1282 -msgid "Resend relocate message to contacts" -msgstr "" - -#: mod/regmod.php:68 -msgid "Account approved." -msgstr "Tili hyväksytty." - -#: mod/regmod.php:93 -#, php-format -msgid "Registration revoked for %s" -msgstr "" - -#: mod/regmod.php:102 -msgid "Please login." -msgstr "Ole hyvä ja kirjaudu." - -#: mod/group.php:36 -msgid "Group created." -msgstr "Ryhmä luotu." - -#: mod/group.php:42 -msgid "Could not create group." -msgstr "Ryhmää ei voitu luoda." - -#: mod/group.php:56 mod/group.php:157 -msgid "Group not found." -msgstr "Ryhmää ei löytynyt." - -#: mod/group.php:70 -msgid "Group name changed." -msgstr "Ryhmän nimi muutettu." - -#: mod/group.php:83 mod/profperm.php:28 index.php:443 -msgid "Permission denied" -msgstr "Käyttöoikeus evätty" - -#: mod/group.php:97 -msgid "Save Group" -msgstr "Tallenna ryhmä" - -#: mod/group.php:102 -msgid "Create a group of contacts/friends." -msgstr "Luo kontakti/kaveriryhmä" - -#: mod/group.php:127 -msgid "Group removed." -msgstr "Ryhmä poistettu." - -#: mod/group.php:129 -msgid "Unable to remove group." -msgstr "Ryhmää ei voida poistaa." - -#: mod/group.php:192 -msgid "Delete Group" -msgstr "Poista ryhmä" - -#: mod/group.php:198 -msgid "Group Editor" -msgstr "Ryhmien muokkausta" - -#: mod/group.php:203 -msgid "Edit Group Name" -msgstr "Muokkaa ryhmän nimeä" - -#: mod/group.php:213 -msgid "Members" -msgstr "Jäsenet" - -#: mod/group.php:215 mod/contacts.php:719 -msgid "All Contacts" -msgstr "Kaikki yhteystiedot" - -#: mod/group.php:229 -msgid "Remove Contact" -msgstr "Poista kontakti" - -#: mod/group.php:253 -msgid "Add Contact" -msgstr "Lisää kontakti" - -#: mod/group.php:265 mod/profperm.php:115 -msgid "Click on a contact to add or remove." -msgstr "Valitse kontakti, jota haluat poistaa tai lisätä." - -#: mod/fbrowser.php:131 -msgid "Files" -msgstr "Tiedostot" - -#: mod/admin.php:106 -msgid "Theme settings updated." -msgstr "Teeman asetukset päivitetty." - -#: mod/admin.php:180 -msgid "Overview" -msgstr "Yleiskatsaus" - -#: mod/admin.php:181 mod/admin.php:718 -msgid "Federation Statistics" -msgstr "Liiton tilastotiedot" - -#: mod/admin.php:182 -msgid "Configuration" -msgstr "Kokoonpano" - -#: mod/admin.php:183 mod/admin.php:1345 -msgid "Site" -msgstr "Sivusto" - -#: mod/admin.php:184 mod/admin.php:1273 mod/admin.php:1802 mod/admin.php:1818 -msgid "Users" -msgstr "Käyttäjät" - -#: mod/admin.php:186 mod/admin.php:2187 mod/admin.php:2231 -msgid "Themes" -msgstr "Teemat" - -#: mod/admin.php:189 -msgid "Database" -msgstr "Tietokanta" - -#: mod/admin.php:190 -msgid "DB updates" -msgstr "Tietokannan päivitykset" - -#: mod/admin.php:191 mod/admin.php:753 -msgid "Inspect Queue" -msgstr "Tarkista jono" - -#: mod/admin.php:192 -msgid "Tools" -msgstr "Työkalut" - -#: mod/admin.php:193 -msgid "Contact Blocklist" -msgstr "Kontaktien estolista" - -#: mod/admin.php:194 mod/admin.php:362 -msgid "Server Blocklist" -msgstr "Palvelimien estolista" - -#: mod/admin.php:195 mod/admin.php:521 -msgid "Delete Item" -msgstr "Poista kohde" - -#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2305 -msgid "Logs" -msgstr "Lokit" - -#: mod/admin.php:198 mod/admin.php:2372 -msgid "View Logs" -msgstr "Katso lokit" - -#: mod/admin.php:200 -msgid "Diagnostics" -msgstr "Diagnostiikka" - -#: mod/admin.php:201 -msgid "PHP Info" -msgstr "PHP tietoja" - -#: mod/admin.php:202 -msgid "probe address" -msgstr "" - -#: mod/admin.php:203 -msgid "check webfinger" -msgstr "Tarkista webfinger" - -#: mod/admin.php:223 -msgid "Addon Features" -msgstr "Lisäosaominaisuudet" - -#: mod/admin.php:224 -msgid "User registrations waiting for confirmation" -msgstr "Käyttäjärekisteröinnit odottavat hyväksyntää" - -#: mod/admin.php:301 mod/admin.php:361 mod/admin.php:478 mod/admin.php:520 -#: mod/admin.php:717 mod/admin.php:752 mod/admin.php:848 mod/admin.php:1344 -#: mod/admin.php:1801 mod/admin.php:1917 mod/admin.php:1977 mod/admin.php:2186 -#: mod/admin.php:2230 mod/admin.php:2304 mod/admin.php:2371 -msgid "Administration" -msgstr "Ylläpito" - -#: mod/admin.php:303 -msgid "Display Terms of Service" -msgstr "Näytä käyttöehdot" - -#: mod/admin.php:303 -msgid "" -"Enable the Terms of Service page. If this is enabled a link to the terms " -"will be added to the registration form and the general information page." -msgstr "" - -#: mod/admin.php:304 -msgid "Display Privacy Statement" -msgstr "Näytä tietosuojalausunto" - -#: mod/admin.php:304 -#, php-format -msgid "" -"Show some informations regarding the needed information to operate the node " -"according e.g. to EU-GDPR." -msgstr "" - -#: mod/admin.php:305 -msgid "The Terms of Service" -msgstr "Käyttöehdot" - -#: mod/admin.php:305 -msgid "" -"Enter the Terms of Service for your node here. You can use BBCode. Headers " -"of sections should be [h2] and below." -msgstr "" - -#: mod/admin.php:353 -msgid "The blocked domain" -msgstr "Estetty verkkotunnus" - -#: mod/admin.php:354 mod/admin.php:367 -msgid "The reason why you blocked this domain." -msgstr "Verkkotunnuksen estosyy." - -#: mod/admin.php:355 -msgid "Delete domain" -msgstr "Poista verkkotunnus" - -#: mod/admin.php:355 -msgid "Check to delete this entry from the blocklist" -msgstr "Laita rasti poistaaksesi kohde estolistalta" - -#: mod/admin.php:363 -msgid "" -"This page can be used to define a black list of servers from the federated " -"network that are not allowed to interact with your node. For all entered " -"domains you should also give a reason why you have blocked the remote " -"server." -msgstr "" - -#: mod/admin.php:364 -msgid "" -"The list of blocked servers will be made publically available on the " -"/friendica page so that your users and people investigating communication " -"problems can find the reason easily." -msgstr "" - -#: mod/admin.php:365 -msgid "Add new entry to block list" -msgstr "Lisää uusi kohde estolistaan" - -#: mod/admin.php:366 -msgid "Server Domain" -msgstr "Palvelimen verkkotunnus" - -#: mod/admin.php:366 -msgid "" -"The domain of the new server to add to the block list. Do not include the " -"protocol." -msgstr "" - -#: mod/admin.php:367 -msgid "Block reason" -msgstr "Estosyy" - -#: mod/admin.php:368 -msgid "Add Entry" -msgstr "Lisää merkintä" - -#: mod/admin.php:369 -msgid "Save changes to the blocklist" -msgstr "Tallenna muutoksia estolistaan" - -#: mod/admin.php:370 -msgid "Current Entries in the Blocklist" -msgstr "Nykyinen estolista" - -#: mod/admin.php:373 -msgid "Delete entry from blocklist" -msgstr "Poista kohde estolistalta" - -#: mod/admin.php:376 -msgid "Delete entry from blocklist?" -msgstr "Poista kohde estolistalta?" - -#: mod/admin.php:402 -msgid "Server added to blocklist." -msgstr "Palvelin lisätty estolistalle" - -#: mod/admin.php:418 -msgid "Site blocklist updated." -msgstr "Sivuston estolista päivitetty." - -#: mod/admin.php:450 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "%s kontakti poistettu estolistalta" -msgstr[1] "%s kontaktia poistettu estolistalta" - -#: mod/admin.php:479 -msgid "Remote Contact Blocklist" -msgstr "Etäkontakti estolista" - -#: mod/admin.php:480 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "" - -#: mod/admin.php:481 -msgid "Block Remote Contact" -msgstr "Estä etäkontakti" - -#: mod/admin.php:482 mod/admin.php:1804 -msgid "select all" -msgstr "valitse kaikki" - -#: mod/admin.php:483 -msgid "select none" -msgstr "älä valitse mitään" - -#: mod/admin.php:484 mod/admin.php:1813 mod/contacts.php:637 -#: mod/contacts.php:827 mod/contacts.php:1011 -msgid "Block" -msgstr "Estä" - -#: mod/admin.php:485 mod/admin.php:1814 mod/contacts.php:637 -#: mod/contacts.php:827 mod/contacts.php:1011 -msgid "Unblock" -msgstr "Salli" - -#: mod/admin.php:486 -msgid "No remote contact is blocked from this node." -msgstr "" - -#: mod/admin.php:488 -msgid "Blocked Remote Contacts" -msgstr "Estetty etäkontaktit" - -#: mod/admin.php:489 -msgid "Block New Remote Contact" -msgstr "Estä uusi etäkontakti" - -#: mod/admin.php:490 -msgid "Photo" -msgstr "Kuva" - -#: mod/admin.php:490 mod/admin.php:500 mod/unfollow.php:122 -#: mod/notifications.php:258 mod/follow.php:166 mod/contacts.php:656 -msgid "Profile URL" -msgstr "Profiilin URL" - -#: mod/admin.php:498 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "Yhteensä %s estetty kontakti" -msgstr[1] "Yhteensä %s estettyjä kontakteja" - -#: mod/admin.php:500 -msgid "URL of the remote contact to block." -msgstr "Estettävän etäkontaktin URL-osoite" - -#: mod/admin.php:522 -msgid "Delete this Item" -msgstr "Poista tämä kohde" - -#: mod/admin.php:523 -msgid "" -"On this page you can delete an item from your node. If the item is a top " -"level posting, the entire thread will be deleted." -msgstr "" - -#: mod/admin.php:524 -msgid "" -"You need to know the GUID of the item. You can find it e.g. by looking at " -"the display URL. The last part of http://example.com/display/123456 is the " -"GUID, here 123456." -msgstr "" - -#: mod/admin.php:525 -msgid "GUID" -msgstr "GUID" - -#: mod/admin.php:525 -msgid "The GUID of the item you want to delete." -msgstr "Poistettavan kohteen GUID." - -#: mod/admin.php:564 -msgid "Item marked for deletion." -msgstr "Kohde merkitty poistettavaksi." - -#: mod/admin.php:635 -msgid "unknown" -msgstr "tuntematon" - -#: mod/admin.php:711 -msgid "" -"This page offers you some numbers to the known part of the federated social " -"network your Friendica node is part of. These numbers are not complete but " -"only reflect the part of the network your node is aware of." -msgstr "" - -#: mod/admin.php:712 -msgid "" -"The Auto Discovered Contact Directory feature is not enabled, it " -"will improve the data displayed here." -msgstr "" - -#: mod/admin.php:724 -#, php-format -msgid "" -"Currently this node is aware of %d nodes with %d registered users from the " -"following platforms:" -msgstr "Tällä hetkellä tämä solmu havaitsee %d muita solmuja joissa %d rekisteröityneitä käyttäjiä. Tarkemmat tiedot:" - -#: mod/admin.php:755 -msgid "ID" -msgstr "" - -#: mod/admin.php:756 -msgid "Recipient Name" -msgstr "Vastaanottajan nimi" - -#: mod/admin.php:757 -msgid "Recipient Profile" -msgstr "Vastaanottajan profiili" - -#: mod/admin.php:759 -msgid "Created" -msgstr "Luotu" - -#: mod/admin.php:760 -msgid "Last Tried" -msgstr "Viimeksi yritetty" - -#: mod/admin.php:761 -msgid "" -"This page lists the content of the queue for outgoing postings. These are " -"postings the initial delivery failed for. They will be resend later and " -"eventually deleted if the delivery fails permanently." -msgstr "" - -#: mod/admin.php:785 -#, php-format -msgid "" -"Your DB still runs with MyISAM tables. You should change the engine type to " -"InnoDB. As Friendica will use InnoDB only features in the future, you should" -" change this! See here for a guide that may be helpful " -"converting the table engines. You may also use the command php " -"bin/console.php dbstructure toinnodb of your Friendica installation for" -" an automatic conversion.
" -msgstr "" - -#: mod/admin.php:792 -#, php-format -msgid "" -"There is a new version of Friendica available for download. Your current " -"version is %1$s, upstream version is %2$s" -msgstr "" - -#: mod/admin.php:802 -msgid "" -"The database update failed. Please run \"php bin/console.php dbstructure " -"update\" from the command line and have a look at the errors that might " -"appear." -msgstr "Tietokannan päivitys epäonnistui. Suorita komento \"php bin/console.php dbstructure update\" komentoriviltä ja lue mahdolliset virheviestit." - -#: mod/admin.php:808 -msgid "The worker was never executed. Please check your database structure!" -msgstr "Workeriä ei ole otettu käyttöön. Tarkista tietokantasi rakenne!" - -#: mod/admin.php:811 -#, php-format -msgid "" -"The last worker execution was on %s UTC. This is older than one hour. Please" -" check your crontab settings." -msgstr "Viimeisin worker -käynnistys tapahtui klo %s UTC, eli yli tunti sitten. Tarkista crontab -asetukset." - -#: mod/admin.php:816 -msgid "Normal Account" -msgstr "Perustili" - -#: mod/admin.php:817 -msgid "Automatic Follower Account" -msgstr "Automaattinen seuraajatili" - -#: mod/admin.php:818 -msgid "Public Forum Account" -msgstr "Julkinen foorumitili" - -#: mod/admin.php:819 -msgid "Automatic Friend Account" -msgstr "Automaattinen kaveritili" - -#: mod/admin.php:820 -msgid "Blog Account" -msgstr "Blogitili" - -#: mod/admin.php:821 -msgid "Private Forum Account" -msgstr "Yksityinen foorumitili" - -#: mod/admin.php:843 -msgid "Message queues" -msgstr "Viestijonot" - -#: mod/admin.php:849 -msgid "Summary" -msgstr "Yhteenveto" - -#: mod/admin.php:851 -msgid "Registered users" -msgstr "Rekisteröityneet käyttäjät" - -#: mod/admin.php:853 -msgid "Pending registrations" -msgstr "Vireillä olevat rekisteröinnit" - -#: mod/admin.php:854 -msgid "Version" -msgstr "Versio" - -#: mod/admin.php:859 -msgid "Active addons" -msgstr "Käytössäolevat lisäosat" - -#: mod/admin.php:890 -msgid "Can not parse base url. Must have at least ://" -msgstr "Ei voitu jäsentää perusosoitetta. Täytyy sisältää ainakin ://" - -#: mod/admin.php:1209 -msgid "Site settings updated." -msgstr "Sivuston asetukset päivitettiin." - -#: mod/admin.php:1265 -msgid "No community page" -msgstr "Ei yhteisösivua" - -#: mod/admin.php:1266 -msgid "Public postings from users of this site" -msgstr "Julkiset julkaisut tämän sivuston käyttäjiltä" - -#: mod/admin.php:1267 -msgid "Public postings from the federated network" -msgstr "Julkiset julkaisut liittoutuneelta verkolta" - -#: mod/admin.php:1268 -msgid "Public postings from local users and the federated network" -msgstr "Julkiset julkaisut tältä sivustolta ja liittoutuneelta verkolta" - -#: mod/admin.php:1272 mod/admin.php:1435 mod/admin.php:1445 -#: mod/contacts.php:572 -msgid "Disabled" -msgstr "Pois käytöstä" - -#: mod/admin.php:1274 -msgid "Users, Global Contacts" -msgstr "Käyttäjät, maailmanlaajuiset kontaktit" - -#: mod/admin.php:1275 -msgid "Users, Global Contacts/fallback" -msgstr "" - -#: mod/admin.php:1279 -msgid "One month" -msgstr "Yksi kuukausi" - -#: mod/admin.php:1280 -msgid "Three months" -msgstr "Kolme kuukautta" - -#: mod/admin.php:1281 -msgid "Half a year" -msgstr "Puoli vuotta" - -#: mod/admin.php:1282 -msgid "One year" -msgstr "Yksi vuosi" - -#: mod/admin.php:1287 -msgid "Multi user instance" -msgstr "Monen käyttäjän instanssi" - -#: mod/admin.php:1310 -msgid "Closed" -msgstr "Suljettu" - -#: mod/admin.php:1311 -msgid "Requires approval" -msgstr "Edellyttää hyväksyntää" - -#: mod/admin.php:1312 -msgid "Open" -msgstr "Avoin" - -#: mod/admin.php:1316 -msgid "No SSL policy, links will track page SSL state" -msgstr "" - -#: mod/admin.php:1317 -msgid "Force all links to use SSL" -msgstr "Pakota kaikki linkit käyttämään SSL-yhteyttä" - -#: mod/admin.php:1318 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "" - -#: mod/admin.php:1322 -msgid "Don't check" -msgstr "Älä tarkista" - -#: mod/admin.php:1323 -msgid "check the stable version" -msgstr "" - -#: mod/admin.php:1324 -msgid "check the development version" -msgstr "" - -#: mod/admin.php:1347 -msgid "Republish users to directory" -msgstr "" - -#: mod/admin.php:1348 mod/register.php:264 -msgid "Registration" -msgstr "Rekisteröityminen" - -#: mod/admin.php:1349 -msgid "File upload" -msgstr "Tiedoston lataus" - -#: mod/admin.php:1350 -msgid "Policies" -msgstr "Käytännöt" - -#: mod/admin.php:1352 -msgid "Auto Discovered Contact Directory" -msgstr "" - -#: mod/admin.php:1353 -msgid "Performance" -msgstr "Suoritus" - -#: mod/admin.php:1354 -msgid "Worker" -msgstr "Worker" - -#: mod/admin.php:1355 -msgid "Message Relay" -msgstr "Viestirele" - -#: mod/admin.php:1356 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "" - -#: mod/admin.php:1359 -msgid "Site name" -msgstr "Sivuston nimi" - -#: mod/admin.php:1360 -msgid "Host name" -msgstr "Palvelimen nimi" - -#: mod/admin.php:1361 -msgid "Sender Email" -msgstr "Lähettäjän sähköposti" - -#: mod/admin.php:1361 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "Lähettäjän sähköpostiosoite palvelimen ilmoitussähköposteissa." - -#: mod/admin.php:1362 -msgid "Banner/Logo" -msgstr "Banneri/logo" - -#: mod/admin.php:1363 -msgid "Shortcut icon" -msgstr "Pikakuvake" - -#: mod/admin.php:1363 -msgid "Link to an icon that will be used for browsers." -msgstr "Linkki kuvakkeeseen jota selaimet saa käyttää." - -#: mod/admin.php:1364 -msgid "Touch icon" -msgstr "Kosketusnäyttökuvake" - -#: mod/admin.php:1364 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "Linkki kuvakkeeseen jota tabletit ja matkapuhelimet saa käyttää." - -#: mod/admin.php:1365 -msgid "Additional Info" -msgstr "Lisätietoja" - -#: mod/admin.php:1365 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/servers." -msgstr "" - -#: mod/admin.php:1366 -msgid "System language" -msgstr "Järjestelmän kieli" - -#: mod/admin.php:1367 -msgid "System theme" -msgstr "Järjestelmäteema" - -#: mod/admin.php:1367 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" - -#: mod/admin.php:1368 -msgid "Mobile system theme" -msgstr "Mobiili järjestelmäteema" - -#: mod/admin.php:1368 -msgid "Theme for mobile devices" -msgstr "Mobiiliteema" - -#: mod/admin.php:1369 -msgid "SSL link policy" -msgstr "SSL-linkkikäytäntö" - -#: mod/admin.php:1369 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Määrittää pakotetaanko tuotetut linkit käyttämään SSL-yhteyttä." - -#: mod/admin.php:1370 -msgid "Force SSL" -msgstr "Pakoita SSL-yhteyden käyttöä" - -#: mod/admin.php:1370 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "" - -#: mod/admin.php:1371 -msgid "Hide help entry from navigation menu" -msgstr "" - -#: mod/admin.php:1371 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "" - -#: mod/admin.php:1372 -msgid "Single user instance" -msgstr "Yksittäisen käyttäjän instanssi" - -#: mod/admin.php:1372 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "" - -#: mod/admin.php:1373 -msgid "Maximum image size" -msgstr "Suurin kuvakoko" - -#: mod/admin.php:1373 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Ladattavan kuvatiedoston enimmäiskoko tavuina. Oletusarvo on 0, eli ei enimmäiskokoa." - -#: mod/admin.php:1374 -msgid "Maximum image length" -msgstr "Suurin kuvapituus" - -#: mod/admin.php:1374 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Ladattavan kuvatiedoston enimmäispituus pikseleinä. Oletusarvo on -1, eli ei enimmäispituutta." - -#: mod/admin.php:1375 -msgid "JPEG image quality" -msgstr "JPEG-kuvanlaatu" - -#: mod/admin.php:1375 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "" - -#: mod/admin.php:1377 -msgid "Register policy" -msgstr "Rekisteröintipolitiikka" - -#: mod/admin.php:1378 -msgid "Maximum Daily Registrations" -msgstr "Päivittäinen rekisteröitymisraja" - -#: mod/admin.php:1378 -msgid "" -"If registration is permitted above, this sets the maximum number of new user" -" registrations to accept per day. If register is set to closed, this " -"setting has no effect." -msgstr "Mikäli rekisteröityminen on sallittu, tämä asettaa enimmäismäärä uusia rekisteröitymisiä päivässä. Jos reksiteröityminen ei ole sallittu, tällä asetuksella ei ole vaikutusta." - -#: mod/admin.php:1379 -msgid "Register text" -msgstr "Rekisteröitymisteksti" - -#: mod/admin.php:1379 -msgid "" -"Will be displayed prominently on the registration page. You can use BBCode " -"here." -msgstr "Näkyvästi esillä rekisteröitymissivulla. Voit käyttää BBCodeia." - -#: mod/admin.php:1380 -msgid "Accounts abandoned after x days" -msgstr "Käyttäjätilit hylätään X päivän jälkeen" - -#: mod/admin.php:1380 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "" - -#: mod/admin.php:1381 -msgid "Allowed friend domains" -msgstr "Sallittuja kaveri-verkkotunnuksia" - -#: mod/admin.php:1381 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "" - -#: mod/admin.php:1382 -msgid "Allowed email domains" -msgstr "Sallittuja sähköposti-verkkotunnuksia" - -#: mod/admin.php:1382 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "" - -#: mod/admin.php:1383 -msgid "No OEmbed rich content" -msgstr "" - -#: mod/admin.php:1383 -msgid "" -"Don't show the rich content (e.g. embedded PDF), except from the domains " -"listed below." -msgstr "" - -#: mod/admin.php:1384 -msgid "Allowed OEmbed domains" -msgstr "Sallittuja OEmbed -verkkotunnuksia" - -#: mod/admin.php:1384 -msgid "" -"Comma separated list of domains which oembed content is allowed to be " -"displayed. Wildcards are accepted." -msgstr "" - -#: mod/admin.php:1385 -msgid "Block public" -msgstr "Estä vierailijat" - -#: mod/admin.php:1385 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "" - -#: mod/admin.php:1386 -msgid "Force publish" -msgstr "" - -#: mod/admin.php:1386 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: mod/admin.php:1387 -msgid "Global directory URL" -msgstr "Maailmanlaajuisen hakemiston URL-osoite" - -#: mod/admin.php:1387 -msgid "" -"URL to the global directory. If this is not set, the global directory is " -"completely unavailable to the application." -msgstr "" - -#: mod/admin.php:1388 -msgid "Private posts by default for new users" -msgstr "" - -#: mod/admin.php:1388 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "" - -#: mod/admin.php:1389 -msgid "Don't include post content in email notifications" -msgstr "Älä lisää julkaisun sisältö sähköposti-ilmoitukseen" - -#: mod/admin.php:1389 -msgid "" -"Don't include the content of a post/comment/private message/etc. in the " -"email notifications that are sent out from this site, as a privacy measure." -msgstr "" - -#: mod/admin.php:1390 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "" - -#: mod/admin.php:1390 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "" - -#: mod/admin.php:1391 -msgid "Don't embed private images in posts" -msgstr "Älä upota yksityisiä kuvia julkaisuissa" - -#: mod/admin.php:1391 -msgid "" -"Don't replace locally-hosted private photos in posts with an embedded copy " -"of the image. This means that contacts who receive posts containing private " -"photos will have to authenticate and load each image, which may take a " -"while." -msgstr "" - -#: mod/admin.php:1392 -msgid "Allow Users to set remote_self" -msgstr "" - -#: mod/admin.php:1392 -msgid "" -"With checking this, every user is allowed to mark every contact as a " -"remote_self in the repair contact dialog. Setting this flag on a contact " -"causes mirroring every posting of that contact in the users stream." -msgstr "" - -#: mod/admin.php:1393 -msgid "Block multiple registrations" -msgstr "" - -#: mod/admin.php:1393 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "" - -#: mod/admin.php:1394 -msgid "OpenID support" -msgstr "OpenID-tuki" - -#: mod/admin.php:1394 -msgid "OpenID support for registration and logins." -msgstr "OpenID-tuki rekisteröitymiseen ja kirjautumiseen" - -#: mod/admin.php:1395 -msgid "Fullname check" -msgstr "Koko nimi tarkistus" - -#: mod/admin.php:1395 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "" - -#: mod/admin.php:1396 -msgid "Community pages for visitors" -msgstr "Yhteisösivu vieraille" - -#: mod/admin.php:1396 -msgid "" -"Which community pages should be available for visitors. Local users always " -"see both pages." -msgstr "" - -#: mod/admin.php:1397 -msgid "Posts per user on community page" -msgstr "" - -#: mod/admin.php:1397 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "Enimmäismäärä julkaisuja käyttäjää kohden yhteisösivulla. (Ei koske maailmanlaajuista yhteisösivua.)" - -#: mod/admin.php:1398 -msgid "Enable OStatus support" -msgstr "Salli OStatus-tuki" - -#: mod/admin.php:1398 -msgid "" -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "" - -#: mod/admin.php:1399 -msgid "Only import OStatus threads from our contacts" -msgstr "Ainoastaan tuo OStatus -ketjuja kontakteiltamme" - -#: mod/admin.php:1399 -msgid "" -"Normally we import every content from our OStatus contacts. With this option" -" we only store threads that are started by a contact that is known on our " -"system." -msgstr "" - -#: mod/admin.php:1400 -msgid "OStatus support can only be enabled if threading is enabled." -msgstr "OStatus-tuki voidaan ottaa käyttöön ainoastaan jos ketjuttaminen on jo otettu käyttöön." - -#: mod/admin.php:1402 -msgid "" -"Diaspora support can't be enabled because Friendica was installed into a sub" -" directory." -msgstr "Diaspora -tukea ei voitu ottaa käyttöön koska Friendica on asennettu alihakemistoon." - -#: mod/admin.php:1403 -msgid "Enable Diaspora support" -msgstr "Salli Diaspora-tuki" - -#: mod/admin.php:1403 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Ota käyttöön Diaspora-yhteensopivuus" - -#: mod/admin.php:1404 -msgid "Only allow Friendica contacts" -msgstr "Salli ainoastaan Friendica -kontakteja" - -#: mod/admin.php:1404 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Kaikkien kontaktien on käytettävä Friendica-protokollaa. Kaikki muut protokollat poistetaan käytöstä." - -#: mod/admin.php:1405 -msgid "Verify SSL" -msgstr "Vahvista SSL" - -#: mod/admin.php:1405 -msgid "" -"If you wish, you can turn on strict certificate checking. This will mean you" -" cannot connect (at all) to self-signed SSL sites." -msgstr "" - -#: mod/admin.php:1406 -msgid "Proxy user" -msgstr "Välityspalvelimen käyttäjä" - -#: mod/admin.php:1407 -msgid "Proxy URL" -msgstr "Välityspalvelimen osoite" - -#: mod/admin.php:1408 -msgid "Network timeout" -msgstr "Verkon aikakatkaisu" - -#: mod/admin.php:1408 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: mod/admin.php:1409 -msgid "Maximum Load Average" -msgstr "Kuorman enimmäiskeksiarvo" - -#: mod/admin.php:1409 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Järjestelmäkuormitus jolloin lähetys- ja kyselyprosessit lykätään (oletusarvo 50)." - -#: mod/admin.php:1410 -msgid "Maximum Load Average (Frontend)" -msgstr "Kuorman enimmäiskeskiarvo (Frontend)" - -#: mod/admin.php:1410 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "Järjestelmäkuormitus jolloin Frontend poistetaan käytöstä (oletusarvo 50)." - -#: mod/admin.php:1411 -msgid "Minimal Memory" -msgstr "" - -#: mod/admin.php:1411 -msgid "" -"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " -"default 0 (deactivated)." -msgstr "" - -#: mod/admin.php:1412 -msgid "Maximum table size for optimization" -msgstr "Taulukon enimmäiskoko optimointia varten" - -#: mod/admin.php:1412 -msgid "" -"Maximum table size (in MB) for the automatic optimization - default 100 MB. " -"Enter -1 to disable it." -msgstr "Taulukon enimmäiskoko (megatavuina) automaattista optimointia varten - oletusarvo 100 mt. Syötä -1 poistamaan optimointi käytöstä." - -#: mod/admin.php:1413 -msgid "Minimum level of fragmentation" -msgstr "" - -#: mod/admin.php:1413 -msgid "" -"Minimum fragmenation level to start the automatic optimization - default " -"value is 30%." -msgstr "" - -#: mod/admin.php:1415 -msgid "Periodical check of global contacts" -msgstr "" - -#: mod/admin.php:1415 -msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." -msgstr "" - -#: mod/admin.php:1416 -msgid "Days between requery" -msgstr "" - -#: mod/admin.php:1416 -msgid "Number of days after which a server is requeried for his contacts." -msgstr "" - -#: mod/admin.php:1417 -msgid "Discover contacts from other servers" -msgstr "Etsi kontakteja muilta palvelimilta" - -#: mod/admin.php:1417 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"'users': the users on the remote system, 'Global Contacts': active contacts " -"that are known on the system. The fallback is meant for Redmatrix servers " -"and older friendica servers, where global contacts weren't available. The " -"fallback increases the server load, so the recommened setting is 'Users, " -"Global Contacts'." -msgstr "" - -#: mod/admin.php:1418 -msgid "Timeframe for fetching global contacts" -msgstr "" - -#: mod/admin.php:1418 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." -msgstr "" - -#: mod/admin.php:1419 -msgid "Search the local directory" -msgstr "Paikallisluettelohaku" - -#: mod/admin.php:1419 -msgid "" -"Search the local directory instead of the global directory. When searching " -"locally, every search will be executed on the global directory in the " -"background. This improves the search results when the search is repeated." -msgstr "" - -#: mod/admin.php:1421 -msgid "Publish server information" -msgstr "Julkaise palvelintiedot" - -#: mod/admin.php:1421 -msgid "" -"If enabled, general server and usage data will be published. The data " -"contains the name and version of the server, number of users with public " -"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." -msgstr "" - -#: mod/admin.php:1423 -msgid "Check upstream version" -msgstr "" - -#: mod/admin.php:1423 -msgid "" -"Enables checking for new Friendica versions at github. If there is a new " -"version, you will be informed in the admin panel overview." -msgstr "" - -#: mod/admin.php:1424 -msgid "Suppress Tags" -msgstr "Piilota tunnisteet" - -#: mod/admin.php:1424 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "Piilota tunnistelista julkaisun lopussa." - -#: mod/admin.php:1425 -msgid "Path to item cache" -msgstr "" - -#: mod/admin.php:1425 -msgid "The item caches buffers generated bbcode and external images." -msgstr "" - -#: mod/admin.php:1426 -msgid "Cache duration in seconds" -msgstr "" - -#: mod/admin.php:1426 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day). To disable the item cache, set the value to -1." -msgstr "" - -#: mod/admin.php:1427 -msgid "Maximum numbers of comments per post" -msgstr "Julkaisun kommentiraja" - -#: mod/admin.php:1427 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "" - -#: mod/admin.php:1428 -msgid "Temp path" -msgstr "" - -#: mod/admin.php:1428 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "" - -#: mod/admin.php:1429 -msgid "Base path to installation" -msgstr "Asennuksen peruspolku" - -#: mod/admin.php:1429 -msgid "" -"If the system cannot detect the correct path to your installation, enter the" -" correct path here. This setting should only be set if you are using a " -"restricted system and symbolic links to your webroot." -msgstr "" - -#: mod/admin.php:1430 -msgid "Disable picture proxy" -msgstr "" - -#: mod/admin.php:1430 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "" - -#: mod/admin.php:1431 -msgid "Only search in tags" -msgstr "Tunnistehaku" - -#: mod/admin.php:1431 -msgid "On large systems the text search can slow down the system extremely." -msgstr "" - -#: mod/admin.php:1433 -msgid "New base url" -msgstr "Uusi perusosoite" - -#: mod/admin.php:1433 -msgid "" -"Change base url for this server. Sends relocate message to all Friendica and" -" Diaspora* contacts of all users." -msgstr "Vaihtaa tämän palvelimen perus-URL-osoitteen. Lähettää uudelleensijoitusviestit käyttäjien kaikille kontakteille Friendicassa ja Diasporassa*." - -#: mod/admin.php:1435 -msgid "RINO Encryption" -msgstr "RINO-salaus" - -#: mod/admin.php:1435 -msgid "Encryption layer between nodes." -msgstr "Salauskerros solmujen välillä." - -#: mod/admin.php:1435 -msgid "Enabled" -msgstr "Käytössä" - -#: mod/admin.php:1437 -msgid "Maximum number of parallel workers" -msgstr "Enimmäismäärä rinnakkaisia workereitä" - -#: mod/admin.php:1437 -msgid "" -"On shared hosters set this to 2. On larger systems, values of 10 are great. " -"Default value is 4." -msgstr "" - -#: mod/admin.php:1438 -msgid "Don't use 'proc_open' with the worker" -msgstr "" - -#: mod/admin.php:1438 -msgid "" -"Enable this if your system doesn't allow the use of 'proc_open'. This can " -"happen on shared hosters. If this is enabled you should increase the " -"frequency of worker calls in your crontab." -msgstr "" - -#: mod/admin.php:1439 -msgid "Enable fastlane" -msgstr "Käytä fastlane" - -#: mod/admin.php:1439 -msgid "" -"When enabed, the fastlane mechanism starts an additional worker if processes" -" with higher priority are blocked by processes of lower priority." -msgstr "" - -#: mod/admin.php:1440 -msgid "Enable frontend worker" -msgstr "Ota Frontend Worker käyttöön" - -#: mod/admin.php:1440 -#, php-format -msgid "" -"When enabled the Worker process is triggered when backend access is " -"performed \\x28e.g. messages being delivered\\x29. On smaller sites you " -"might want to call %s/worker on a regular basis via an external cron job. " -"You should only enable this option if you cannot utilize cron/scheduled jobs" -" on your server." -msgstr "" - -#: mod/admin.php:1442 -msgid "Subscribe to relay" -msgstr "Relen tilaus" - -#: mod/admin.php:1442 -msgid "" -"Enables the receiving of public posts from the relay. They will be included " -"in the search, subscribed tags and on the global community page." -msgstr "" - -#: mod/admin.php:1443 -msgid "Relay server" -msgstr "Relepalvelin" - -#: mod/admin.php:1443 -msgid "" -"Address of the relay server where public posts should be send to. For " -"example https://relay.diasp.org" -msgstr "" - -#: mod/admin.php:1444 -msgid "Direct relay transfer" -msgstr "Suora releen siirto" - -#: mod/admin.php:1444 -msgid "" -"Enables the direct transfer to other servers without using the relay servers" -msgstr "" - -#: mod/admin.php:1445 -msgid "Relay scope" -msgstr "Relen soveltamisala" - -#: mod/admin.php:1445 -msgid "" -"Can be 'all' or 'tags'. 'all' means that every public post should be " -"received. 'tags' means that only posts with selected tags should be " -"received." -msgstr "" - -#: mod/admin.php:1445 -msgid "all" -msgstr "kaikki" - -#: mod/admin.php:1445 -msgid "tags" -msgstr "tunnisteet" - -#: mod/admin.php:1446 -msgid "Server tags" -msgstr "palvelintunnisteet" - -#: mod/admin.php:1446 -msgid "Comma separated list of tags for the 'tags' subscription." -msgstr "Pilkulla erotettu tunnistelista tunnistetilausta varten." - -#: mod/admin.php:1447 -msgid "Allow user tags" -msgstr "Salli käyttäjien tunnisteet" - -#: mod/admin.php:1447 -msgid "" -"If enabled, the tags from the saved searches will used for the 'tags' " -"subscription in addition to the 'relay_server_tags'." -msgstr "Jos otettu käyttöön, tunnisteet tallennetuista hauista käytetään tunnistetilaukseen 'relay_server_tags'in lisäksi." - -#: mod/admin.php:1475 -msgid "Update has been marked successful" -msgstr "" - -#: mod/admin.php:1482 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Tietokannan rakenteen %s-päivitys onnistui." - -#: mod/admin.php:1485 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "Tietokannan rakennepäivitys %s epäonnistui virheviestillä %s" - -#: mod/admin.php:1498 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "" - -#: mod/admin.php:1500 -#, php-format -msgid "Update %s was successfully applied." -msgstr "%s-päivitys onnistui." - -#: mod/admin.php:1503 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" - -#: mod/admin.php:1506 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "" - -#: mod/admin.php:1526 -msgid "No failed updates." -msgstr "Ei epäonnistuineita päivityksiä." - -#: mod/admin.php:1527 -msgid "Check database structure" -msgstr "Tarkista tietokannan rakenne" - -#: mod/admin.php:1532 -msgid "Failed Updates" -msgstr "Epäonnistuineita päivityksiä" - -#: mod/admin.php:1533 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "" - -#: mod/admin.php:1534 -msgid "Mark success (if update was manually applied)" -msgstr "" - -#: mod/admin.php:1535 -msgid "Attempt to execute this update step automatically" -msgstr "" - -#: mod/admin.php:1574 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "" - -#: mod/admin.php:1577 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t\t%2$s\n" -"\t\t\tPassword:\t\t%3$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n" -"\n" -"\t\t\tThank you and welcome to %4$s." -msgstr "" - -#: mod/admin.php:1621 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s käyttäjä estetty / poistettu estolistalta" -msgstr[1] "%s käyttäjää estetty / poistettu estolistalta" - -#: mod/admin.php:1627 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s käyttäjä poistettu" -msgstr[1] "%s käyttäjää poistettu" - -#: mod/admin.php:1674 -#, php-format -msgid "User '%s' deleted" -msgstr "Käyttäjä '%s' poistettu" - -#: mod/admin.php:1682 -#, php-format -msgid "User '%s' unblocked" -msgstr "Käyttäjä '%s' poistettu estolistalta" - -#: mod/admin.php:1682 -#, php-format -msgid "User '%s' blocked" -msgstr "Käyttäjä '%s' estetty" - -#: mod/admin.php:1743 -msgid "Private Forum" -msgstr "" - -#: mod/admin.php:1796 mod/admin.php:1820 -msgid "Register date" -msgstr "Rekisteripäivämäärä" - -#: mod/admin.php:1796 mod/admin.php:1820 -msgid "Last login" -msgstr "Viimeisin kirjautuminen" - -#: mod/admin.php:1796 mod/admin.php:1820 -msgid "Last item" -msgstr "Viimeisin kohde" - -#: mod/admin.php:1796 -msgid "Type" -msgstr "" - -#: mod/admin.php:1803 -msgid "Add User" -msgstr "Lisää käyttäjä" - -#: mod/admin.php:1805 -msgid "User registrations waiting for confirm" -msgstr "" - -#: mod/admin.php:1806 -msgid "User waiting for permanent deletion" -msgstr "" - -#: mod/admin.php:1807 -msgid "Request date" -msgstr "Pyynnön päivämäärä" - -#: mod/admin.php:1808 -msgid "No registrations." -msgstr "Ei rekisteröintejä." - -#: mod/admin.php:1809 -msgid "Note from the user" -msgstr "" - -#: mod/admin.php:1810 mod/notifications.php:179 mod/notifications.php:264 -msgid "Approve" -msgstr "Hyväksy" - -#: mod/admin.php:1811 -msgid "Deny" -msgstr "Kieltäydy" - -#: mod/admin.php:1815 -msgid "Site admin" -msgstr "Sivuston ylläpito" - -#: mod/admin.php:1816 -msgid "Account expired" -msgstr "Tili vanhentunut" - -#: mod/admin.php:1819 -msgid "New User" -msgstr "Uusi käyttäjä" - -#: mod/admin.php:1820 -msgid "Deleted since" -msgstr "Poistettu" - -#: mod/admin.php:1825 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: mod/admin.php:1826 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: mod/admin.php:1836 -msgid "Name of the new user." -msgstr "Uuden käyttäjän nimi." - -#: mod/admin.php:1837 -msgid "Nickname" -msgstr "Lempinimi" - -#: mod/admin.php:1837 -msgid "Nickname of the new user." -msgstr "Uuden käyttäjän lempinimi" - -#: mod/admin.php:1838 -msgid "Email address of the new user." -msgstr "Uuden käyttäjän sähköpostiosoite." - -#: mod/admin.php:1880 -#, php-format -msgid "Addon %s disabled." -msgstr "Lisäosa %s poistettu käytöstä." - -#: mod/admin.php:1884 -#, php-format -msgid "Addon %s enabled." -msgstr "Lisäosa %s käytössä." - -#: mod/admin.php:1894 mod/admin.php:2143 -msgid "Disable" -msgstr "Poista käytöstä" - -#: mod/admin.php:1897 mod/admin.php:2146 -msgid "Enable" -msgstr "Ota käyttöön" - -#: mod/admin.php:1919 mod/admin.php:2188 -msgid "Toggle" -msgstr "Vaihda" - -#: mod/admin.php:1927 mod/admin.php:2197 -msgid "Author: " -msgstr "Tekijä" - -#: mod/admin.php:1928 mod/admin.php:2198 -msgid "Maintainer: " -msgstr "Ylläpitäjä:" - -#: mod/admin.php:1980 -msgid "Reload active addons" -msgstr "" - -#: mod/admin.php:1985 -#, php-format -msgid "" -"There are currently no addons available on your node. You can find the " -"official addon repository at %1$s and might find other interesting addons in" -" the open addon registry at %2$s" -msgstr "" - -#: mod/admin.php:2105 -msgid "No themes found." -msgstr "Teemoja ei löytynyt." - -#: mod/admin.php:2179 -msgid "Screenshot" -msgstr "Kuvakaappaus" - -#: mod/admin.php:2233 -msgid "Reload active themes" -msgstr "Lataa aktiiviset teemat uudelleen" - -#: mod/admin.php:2238 -#, php-format -msgid "No themes found on the system. They should be placed in %1$s" -msgstr "" - -#: mod/admin.php:2239 -msgid "[Experimental]" -msgstr "[Kokeellinen]" - -#: mod/admin.php:2240 -msgid "[Unsupported]" -msgstr "[Ei tueta]" - -#: mod/admin.php:2264 -msgid "Log settings updated." -msgstr "Lokiasetukset päivitetty." - -#: mod/admin.php:2296 -msgid "PHP log currently enabled." -msgstr "PHP-loki käytössä" - -#: mod/admin.php:2298 -msgid "PHP log currently disabled." -msgstr "PHP-loki pois käytöstä" - -#: mod/admin.php:2307 -msgid "Clear" -msgstr "Tyhjennä" - -#: mod/admin.php:2311 -msgid "Enable Debugging" -msgstr "Ota virheenkorjaustila käyttöön" - -#: mod/admin.php:2312 -msgid "Log file" -msgstr "Lokitiedosto" - -#: mod/admin.php:2312 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "" - -#: mod/admin.php:2313 -msgid "Log level" -msgstr "Lokitaso" - -#: mod/admin.php:2315 -msgid "PHP logging" -msgstr "PHP-loki" - -#: mod/admin.php:2316 -msgid "" -"To enable logging of PHP errors and warnings you can add the following to " -"the .htconfig.php file of your installation. The filename set in the " -"'error_log' line is relative to the friendica top-level directory and must " -"be writeable by the web server. The option '1' for 'log_errors' and " -"'display_errors' is to enable these options, set to '0' to disable them." -msgstr "" - -#: mod/admin.php:2347 -#, php-format -msgid "" -"Error trying to open %1$s log file.\\r\\n
Check to see " -"if file %1$s exist and is readable." -msgstr "" - -#: mod/admin.php:2351 -#, php-format -msgid "" -"Couldn't open %1$s log file.\\r\\n
Check to see if file" -" %1$s is readable." -msgstr "" - -#: mod/admin.php:2443 -#, php-format -msgid "Lock feature %s" -msgstr "Lukitse ominaisuus %s" - -#: mod/admin.php:2451 -msgid "Manage Additional Features" -msgstr "Hallitse lisäominaisuudet" - -#: mod/delegate.php:37 -msgid "Parent user not found." -msgstr "" - -#: mod/delegate.php:144 -msgid "No parent user" -msgstr "" - -#: mod/delegate.php:159 -msgid "Parent Password:" -msgstr "" - -#: mod/delegate.php:159 -msgid "" -"Please enter the password of the parent account to legitimize your request." -msgstr "" - -#: mod/delegate.php:164 -msgid "Parent User" -msgstr "" - -#: mod/delegate.php:167 -msgid "" -"Parent users have total control about this account, including the account " -"settings. Please double check whom you give this access." -msgstr "" - -#: mod/delegate.php:170 -msgid "Delegates" -msgstr "" - -#: mod/delegate.php:172 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "" - -#: mod/delegate.php:173 -msgid "Existing Page Delegates" -msgstr "" - -#: mod/delegate.php:175 -msgid "Potential Delegates" -msgstr "" - -#: mod/delegate.php:177 mod/tagrm.php:98 -msgid "Remove" -msgstr "Poista" - -#: mod/delegate.php:178 -msgid "Add" -msgstr "Lisää" - -#: mod/delegate.php:179 -msgid "No entries." -msgstr "" - -#: mod/photos.php:109 mod/photos.php:1713 -msgid "Recent Photos" -msgstr "Viimeaikaisia kuvia" - -#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715 -msgid "Upload New Photos" -msgstr "Lähetä uusia kuvia" - -#: mod/photos.php:184 -msgid "Contact information unavailable" -msgstr "Kontaktin tietoja ei saatavilla" - -#: mod/photos.php:204 -msgid "Album not found." -msgstr "Albumia ei ole." - -#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161 -msgid "Delete Album" -msgstr "Poista albumi" - -#: mod/photos.php:243 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Haluatko varmasti poistaa tämän albumin ja kaikki sen kuvat?" - -#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446 -msgid "Delete Photo" -msgstr "Poista valokuva" - -#: mod/photos.php:319 -msgid "Do you really want to delete this photo?" -msgstr "Haluatko varmasti poistaa kuvan?" - -#: mod/photos.php:667 -msgid "a photo" -msgstr "valokuva" - -#: mod/photos.php:667 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s merkattiin kuvaan %2$s ystävän %3$s toimesta" - -#: mod/photos.php:769 -msgid "Image upload didn't complete, please try again" -msgstr "Kuvan lataus ei onnistunut, yritä uudelleen" - -#: mod/photos.php:772 -msgid "Image file is missing" -msgstr "Kuvatiedosto puuttuu" - -#: mod/photos.php:777 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "" - -#: mod/photos.php:803 -msgid "Image file is empty." -msgstr "Kuvatiedosto on tyhjä." - -#: mod/photos.php:940 -msgid "No photos selected" -msgstr "Ei valittuja kuvia" - -#: mod/photos.php:1036 mod/videos.php:309 -msgid "Access to this item is restricted." -msgstr "Pääsy kohteeseen on rajoitettu." - -#: mod/photos.php:1090 -msgid "Upload Photos" -msgstr "Lähetä kuvia" - -#: mod/photos.php:1094 mod/photos.php:1156 -msgid "New album name: " -msgstr "Albumin uusi nimi: " - -#: mod/photos.php:1095 -msgid "or existing album name: " -msgstr "tai olemassaolevan albumin nimi: " - -#: mod/photos.php:1096 -msgid "Do not show a status post for this upload" -msgstr "Älä näytä tilaviestiä tälle lähetykselle" - -#: mod/photos.php:1167 -msgid "Edit Album" -msgstr "Muokkaa albumia" - -#: mod/photos.php:1172 -msgid "Show Newest First" -msgstr "Näytä uusin ensin" - -#: mod/photos.php:1174 -msgid "Show Oldest First" -msgstr "Näytä vanhin ensin" - -#: mod/photos.php:1195 mod/photos.php:1698 -msgid "View Photo" -msgstr "Näytä kuva" - -#: mod/photos.php:1236 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Estetty. Tämän kohteen käyttöä on saatettu rajoittaa." - -#: mod/photos.php:1238 -msgid "Photo not available" -msgstr "Kuva ei ole saatavilla" - -#: mod/photos.php:1301 -msgid "View photo" -msgstr "Näytä kuva" - -#: mod/photos.php:1301 -msgid "Edit photo" -msgstr "Muokkaa kuvaa" - -#: mod/photos.php:1302 -msgid "Use as profile photo" -msgstr "Käytä profiilikuvana" - -#: mod/photos.php:1327 -msgid "View Full Size" -msgstr "Näytä täysikokoisena" - -#: mod/photos.php:1414 -msgid "Tags: " -msgstr "Merkinnät:" - -#: mod/photos.php:1417 -msgid "[Remove any tag]" -msgstr "[Poista mikä tahansa merkintä]" - -#: mod/photos.php:1432 -msgid "New album name" -msgstr "Uusi nimi albumille" - -#: mod/photos.php:1433 -msgid "Caption" -msgstr "Kuvateksti" - -#: mod/photos.php:1434 -msgid "Add a Tag" -msgstr "Lisää merkintä" - -#: mod/photos.php:1434 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Esimerkki: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: mod/photos.php:1435 -msgid "Do not rotate" -msgstr "Älä kierrä" - -#: mod/photos.php:1436 -msgid "Rotate CW (right)" -msgstr "Käännä oikealle" - -#: mod/photos.php:1437 -msgid "Rotate CCW (left)" -msgstr "Käännä vasemmalle" - -#: mod/photos.php:1634 -msgid "Map" -msgstr "Kartta" - -#: mod/photos.php:1704 mod/videos.php:387 -msgid "View Album" -msgstr "Näytä albumi" - -#: mod/nogroup.php:43 mod/contacts.php:960 -msgid "Edit contact" -msgstr "Muokkaa kontaktia" - -#: mod/nogroup.php:63 -msgid "Contacts who are not members of a group" -msgstr "Kontaktit jotka eivät kuulu ryhmään" - -#: mod/community.php:46 -msgid "Community option not available." -msgstr "Yhteisö vaihtoehto ei saatavilla." - -#: mod/community.php:63 -msgid "Not available." -msgstr "Ei saatavilla." - -#: mod/community.php:76 -msgid "Local Community" -msgstr "Paikallinen yhteisö" - -#: mod/community.php:79 -msgid "Posts from local users on this server" -msgstr "Tämän palvelimen julkaisut" - -#: mod/community.php:87 -msgid "Global Community" -msgstr "Maailmanlaajuinen yhteisö" - -#: mod/community.php:90 -msgid "Posts from users of the whole federated network" -msgstr "Maailmanlaajuisen verkon julkaisut" - -#: mod/community.php:136 mod/search.php:228 -msgid "No results." -msgstr "Ei tuloksia." - -#: mod/community.php:180 -msgid "" -"This community stream shows all public posts received by this node. They may" -" not reflect the opinions of this node’s users." -msgstr "" - -#: mod/message.php:73 mod/wallmessage.php:57 -msgid "No recipient selected." -msgstr "Vastaanottaja puuttuu." - -#: mod/message.php:77 -msgid "Unable to locate contact information." -msgstr "Kontaktin tiedot ei löydy." - -#: mod/message.php:80 mod/wallmessage.php:63 -msgid "Message could not be sent." -msgstr "Viestiä ei voitu lähettää." - -#: mod/message.php:83 mod/wallmessage.php:66 -msgid "Message collection failure." -msgstr "Viestin noutaminen epäonnistui." - -#: mod/message.php:86 mod/wallmessage.php:69 -msgid "Message sent." -msgstr "Viesti lähetetty." - -#: mod/message.php:136 -msgid "Do you really want to delete this message?" -msgstr "Haluatko varmasti poistaa viestin?" - -#: mod/message.php:156 -msgid "Message deleted." -msgstr "Viesti poistettu." - -#: mod/message.php:185 -msgid "Conversation removed." -msgstr "Keskustelu poistettu." - -#: mod/message.php:250 mod/wallmessage.php:132 -msgid "Send Private Message" -msgstr "Lähetä yksityisviesti" - -#: mod/message.php:251 mod/message.php:421 mod/wallmessage.php:134 -msgid "To:" -msgstr "Vastaanottaja:" - -#: mod/message.php:255 mod/message.php:423 mod/wallmessage.php:135 -msgid "Subject:" -msgstr "Aihe:" - -#: mod/message.php:291 -msgid "No messages." -msgstr "Ei viestejä." - -#: mod/message.php:330 -msgid "Message not available." -msgstr "Viesti ei saatavilla." - -#: mod/message.php:397 -msgid "Delete message" -msgstr "Poista viesti" - -#: mod/message.php:399 mod/message.php:500 -msgid "D, d M Y - g:i A" -msgstr "" - -#: mod/message.php:414 mod/message.php:497 -msgid "Delete conversation" -msgstr "Poista keskustelu" - -#: mod/message.php:416 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: mod/message.php:420 -msgid "Send Reply" -msgstr "Lähetä vastaus" - -#: mod/message.php:471 -#, php-format -msgid "Unknown sender - %s" -msgstr "Tuntematon lähettäjä - %s" - -#: mod/message.php:473 -#, php-format -msgid "You and %s" -msgstr "Sinä ja %s" - -#: mod/message.php:475 -#, php-format -msgid "%s and You" -msgstr "%s ja sinä" - -#: mod/message.php:503 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d viesti" -msgstr[1] "%d viestiä" - -#: mod/videos.php:139 -msgid "Do you really want to delete this video?" -msgstr "Haluatko varmasti poistaa tämän videon?" - -#: mod/videos.php:144 -msgid "Delete Video" -msgstr "Poista video" - -#: mod/videos.php:207 -msgid "No videos selected" -msgstr "Ei videoita valittuna" - -#: mod/videos.php:396 -msgid "Recent Videos" -msgstr "Viimeisimmät videot" - -#: mod/videos.php:398 -msgid "Upload New Videos" -msgstr "Lataa uusia videoita" - -#: mod/credits.php:18 -msgid "Credits" -msgstr "Lopputekstit" - -#: mod/credits.php:19 -msgid "" -"Friendica is a community project, that would not be possible without the " -"help of many people. Here is a list of those who have contributed to the " -"code or the translation of Friendica. Thank you all!" -msgstr "" - -#: mod/unfollow.php:34 -msgid "Contact wasn't found or can't be unfollowed." -msgstr "" - -#: mod/unfollow.php:47 -msgid "Contact unfollowed" -msgstr "Kontaktia ei enää seurata" - -#: mod/unfollow.php:65 mod/dfrn_request.php:662 mod/follow.php:62 -msgid "Submit Request" -msgstr "Lähetä pyyntö" - -#: mod/unfollow.php:73 -msgid "You aren't a friend of this contact." -msgstr "Et ole kontaktin kaveri." - -#: mod/unfollow.php:79 -msgid "Unfollowing is currently not supported by your network." -msgstr "Seuraamisen lopettaminen ei tällä hetkellä tueta verkossasi." - -#: mod/unfollow.php:100 mod/contacts.php:599 -msgid "Disconnect/Unfollow" -msgstr "Katkaise / Lopeta seuraaminen" - -#: mod/unfollow.php:113 mod/dfrn_request.php:660 mod/follow.php:157 -msgid "Your Identity Address:" -msgstr "Identiteettisi osoite:" - -#: mod/wall_attach.php:24 mod/wall_attach.php:32 mod/wall_attach.php:83 -#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112 -#: mod/wall_upload.php:155 mod/wall_upload.php:158 -msgid "Invalid request." -msgstr "Virheellinen pyyntö." - -#: mod/wall_attach.php:101 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "" - -#: mod/wall_attach.php:101 -msgid "Or - did you try to upload an empty file?" -msgstr "Yrititkö ladata tyhjän tiedoston?" - -#: mod/wall_attach.php:112 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Tiedosto ylittää kokorajoituksen %s" - -#: mod/wall_attach.php:136 mod/wall_attach.php:152 -msgid "File upload failed." -msgstr "Tiedoston lähettäminen epäonnistui." - -#: mod/profile.php:194 -msgid "Tips for New Members" -msgstr "Vinkkejä uusille käyttäjille" - -#: mod/localtime.php:33 -msgid "Time Conversion" -msgstr "Aikamuunnos" - -#: mod/localtime.php:35 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "" - -#: mod/localtime.php:39 -#, php-format -msgid "UTC time: %s" -msgstr "UTC-aika: %s" - -#: mod/localtime.php:42 -#, php-format -msgid "Current timezone: %s" -msgstr "Aikavyöhyke: %s" - -#: mod/localtime.php:46 -#, php-format -msgid "Converted localtime: %s" -msgstr "Muunnettu paikallisaika: %s" - -#: mod/localtime.php:52 -msgid "Please select your timezone:" -msgstr "Valitse aikavyöhykkeesi:" - -#: mod/dfrn_request.php:94 -msgid "This introduction has already been accepted." -msgstr "Tämä esittely on jo hyväksytty." - -#: mod/dfrn_request.php:112 mod/dfrn_request.php:359 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Profiilin sijainti on viallinen tai se ei sisällä profiilitietoja." - -#: mod/dfrn_request.php:116 mod/dfrn_request.php:363 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Varoitus: profiilin sijainnissa ei ole tunnistettavaa omistajan nimeä." - -#: mod/dfrn_request.php:119 mod/dfrn_request.php:366 -msgid "Warning: profile location has no profile photo." -msgstr "Varoitus: profiilin sijainnissa ei ole profiilikuvaa." - -#: mod/dfrn_request.php:123 mod/dfrn_request.php:370 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "" -msgstr[1] "" - -#: mod/dfrn_request.php:162 -msgid "Introduction complete." -msgstr "Esittely valmis." - -#: mod/dfrn_request.php:199 -msgid "Unrecoverable protocol error." -msgstr "Vakava protokollavirhe." - -#: mod/dfrn_request.php:226 -msgid "Profile unavailable." -msgstr "Profiili ei saatavilla." - -#: mod/dfrn_request.php:248 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s on saanut liikaa yhteyspyyntöjä tänään." - -#: mod/dfrn_request.php:249 -msgid "Spam protection measures have been invoked." -msgstr "Roskapostisuojaukset otettu käyttöön." - -#: mod/dfrn_request.php:250 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Ystäviä suositellaan yrittämään uudelleen vuorokauden sisällä." - -#: mod/dfrn_request.php:280 -msgid "Invalid locator" -msgstr "Viallinen paikannin" - -#: mod/dfrn_request.php:316 -msgid "You have already introduced yourself here." -msgstr "Olet jo esitellyt itsesi täällä." - -#: mod/dfrn_request.php:319 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Ilmeisesti olet jo ystävystynyt henkilön %s kanssa." - -#: mod/dfrn_request.php:339 -msgid "Invalid profile URL." -msgstr "Viallinen profiiliosoite." - -#: mod/dfrn_request.php:419 mod/contacts.php:230 -msgid "Failed to update contact record." -msgstr "Kontaktitietojen päivitys epäonnistui." - -#: mod/dfrn_request.php:439 -msgid "Your introduction has been sent." -msgstr "Esittelysi lähetettiin." - -#: mod/dfrn_request.php:477 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "" - -#: mod/dfrn_request.php:493 -msgid "Please login to confirm introduction." -msgstr "Kirjaudu vahvistaaksesi esittelysi." - -#: mod/dfrn_request.php:501 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Väärä identiteetti kirjautuneena sisään. Kirjaudu tähän profiiliin." - -#: mod/dfrn_request.php:515 mod/dfrn_request.php:532 -msgid "Confirm" -msgstr "Vahvista" - -#: mod/dfrn_request.php:527 -msgid "Hide this contact" -msgstr "Piilota kontakti" - -#: mod/dfrn_request.php:530 -#, php-format -msgid "Welcome home %s." -msgstr "Tervetuloa kotiin %s." - -#: mod/dfrn_request.php:531 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Vahvista esittelysi/yhteyspyyntösi henkilölle %s." - -#: mod/dfrn_request.php:642 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Anna \"henkilöllisyysosoitteesi\" joissakin seuraavista tuetuista viestintäverkoista:" - -#: mod/dfrn_request.php:645 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow " -"this link to find a public Friendica site and join us today." -msgstr "" - -#: mod/dfrn_request.php:650 -msgid "Friend/Connection Request" -msgstr "Ystävä/yhteyspyyntö" - -#: mod/dfrn_request.php:651 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@gnusocial.de" -msgstr "Esim. jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de" - -#: mod/dfrn_request.php:652 mod/follow.php:149 -msgid "Please answer the following:" -msgstr "Vastaa seuraavaan:" - -#: mod/dfrn_request.php:653 mod/follow.php:150 -#, php-format -msgid "Does %s know you?" -msgstr "Tunteeko %s sinut?" - -#: mod/dfrn_request.php:654 mod/follow.php:151 -msgid "Add a personal note:" -msgstr "Lisää oma merkintä:" - -#: mod/dfrn_request.php:657 -msgid "GNU Social (Pleroma, Mastodon)" -msgstr "GNU Social (Pleroma, Mastodon)" - -#: mod/dfrn_request.php:658 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "Diaspora (Socialhome, Hubzilla)" - -#: mod/dfrn_request.php:659 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - älä käytä tätä lomaketta. Kirjoita sen sijaan %s Diaspora-hakupalkkiisi." - -#: mod/crepair.php:87 -msgid "Contact settings applied." -msgstr "Kontaktiasetukset tallennettu." - -#: mod/crepair.php:89 -msgid "Contact update failed." -msgstr "Kontaktipäivitys epäonnistui." - -#: mod/crepair.php:114 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "VAROITUS: Tämä on erittäin vaativaa ja jos kirjoitat virheellisiä tietoja, viestintäsi tämän henkilön kanssa voi lakata toimimasta." - -#: mod/crepair.php:115 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Ole hyvä ja paina selaimesi 'Takaisin'-painiketta nyt, jos olet epävarma tämän sivun toiminnoista." - -#: mod/crepair.php:129 mod/crepair.php:131 -msgid "No mirroring" -msgstr "Ei peilausta" - -#: mod/crepair.php:129 -msgid "Mirror as forwarded posting" -msgstr "Peilaa välitettynä julkaisuna" - -#: mod/crepair.php:129 mod/crepair.php:131 -msgid "Mirror as my own posting" -msgstr "Peilaa omana julkaisuna" - -#: mod/crepair.php:144 -msgid "Return to contact editor" -msgstr "Palaa kontaktin muokkaamiseen" - -#: mod/crepair.php:146 -msgid "Refetch contact data" -msgstr "" - -#: mod/crepair.php:149 -msgid "Remote Self" -msgstr "" - -#: mod/crepair.php:152 -msgid "Mirror postings from this contact" -msgstr "Peilaa tämän kontaktin julkaisut" - -#: mod/crepair.php:154 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "" - -#: mod/crepair.php:159 -msgid "Account Nickname" -msgstr "Tilin lempinimi" - -#: mod/crepair.php:160 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - ohittaa Nimen/Nimimerkin" - -#: mod/crepair.php:161 -msgid "Account URL" -msgstr "Tilin URL-osoite" - -#: mod/crepair.php:162 -msgid "Friend Request URL" -msgstr "URL kaveripyyntöä varten" - -#: mod/crepair.php:163 -msgid "Friend Confirm URL" -msgstr "URL kaverin vahvistusta varten" - -#: mod/crepair.php:164 -msgid "Notification Endpoint URL" -msgstr "URL huomautuksia varten" - -#: mod/crepair.php:165 -msgid "Poll/Feed URL" -msgstr "URL äänestyksiä/syötteitä varten" - -#: mod/crepair.php:166 -msgid "New photo from this URL" -msgstr "Uusi kuva osoitteesta" - -#: mod/home.php:39 -#, php-format -msgid "Welcome to %s" -msgstr "Tervetuloa %s" - -#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s toivottaa tervetulleeksi ystävän %2$s" - -#: mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Tökkää" - -#: mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "" - -#: mod/poke.php:194 -msgid "Recipient" -msgstr "Vastaanottaja" - -#: mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Valitse mitä haluat tehdä vastaanottajalle" - -#: mod/poke.php:198 -msgid "Make this post private" -msgstr "Muuta julkaisu yksityiseksi" - -#: mod/oexchange.php:30 -msgid "Post successful." -msgstr "Viestin lähetys onnistui." - -#: mod/viewsrc.php:12 -msgid "Access denied." -msgstr "Käyttö estetty." - -#: mod/notifications.php:37 -msgid "Invalid request identifier." -msgstr "Virheellinen pyyntötunniste." - -#: mod/notifications.php:46 mod/notifications.php:183 -#: mod/notifications.php:230 -msgid "Discard" -msgstr "Hylkää" - -#: mod/notifications.php:62 mod/notifications.php:182 -#: mod/notifications.php:266 mod/contacts.php:638 mod/contacts.php:828 -#: mod/contacts.php:1019 -msgid "Ignore" -msgstr "Jätä huomiotta" - -#: mod/notifications.php:107 -msgid "Network Notifications" -msgstr "Verkkoilmoitukset" - -#: mod/notifications.php:119 -msgid "Personal Notifications" -msgstr "Henkilökohtaiset ilmoitukset" - -#: mod/notifications.php:125 -msgid "Home Notifications" -msgstr "Koti-ilmoitukset" - -#: mod/notifications.php:155 -msgid "Show Ignored Requests" -msgstr "Näytä ohitetut pyynnöt" - -#: mod/notifications.php:155 -msgid "Hide Ignored Requests" -msgstr "Piilota ohitetut pyynnöt" - -#: mod/notifications.php:167 mod/notifications.php:237 -msgid "Notification type: " -msgstr "Ilmoitustyyppi:" - -#: mod/notifications.php:170 -#, php-format -msgid "suggested by %s" -msgstr "ehdottaa %s" - -#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646 -msgid "Hide this contact from others" -msgstr "Piilota kontakti muilta" - -#: mod/notifications.php:176 mod/notifications.php:255 -msgid "Post a new friend activity" -msgstr "" - -#: mod/notifications.php:176 mod/notifications.php:255 -msgid "if applicable" -msgstr "tarvittaessa" - -#: mod/notifications.php:198 -msgid "Claims to be known to you: " -msgstr "Väittää tuntevansa sinut:" - -#: mod/notifications.php:199 -msgid "yes" -msgstr "kyllä" - -#: mod/notifications.php:199 -msgid "no" -msgstr "ei" - -#: mod/notifications.php:200 mod/notifications.php:205 -msgid "Shall your connection be bidirectional or not?" -msgstr "Kaksisuuntainen yhteys?" - -#: mod/notifications.php:201 mod/notifications.php:206 -#, php-format -msgid "" -"Accepting %s as a friend allows %s to subscribe to your posts, and you will " -"also receive updates from them in your news feed." -msgstr "" - -#: mod/notifications.php:202 -#, php-format -msgid "" -"Accepting %s as a subscriber allows them to subscribe to your posts, but you" -" will not receive updates from them in your news feed." -msgstr "" - -#: mod/notifications.php:207 -#, php-format -msgid "" -"Accepting %s as a sharer allows them to subscribe to your posts, but you " -"will not receive updates from them in your news feed." -msgstr "" - -#: mod/notifications.php:218 -msgid "Friend" -msgstr "Kaveri" - -#: mod/notifications.php:219 -msgid "Sharer" -msgstr "Jakaja" - -#: mod/notifications.php:219 -msgid "Subscriber" -msgstr "Tilaaja" - -#: mod/notifications.php:275 -msgid "No introductions." -msgstr "Ei esittelyjä." - -#: mod/notifications.php:316 -msgid "Show unread" -msgstr "Näytä lukemattomat" - -#: mod/notifications.php:316 -msgid "Show all" -msgstr "Näytä kaikki" - -#: mod/notifications.php:322 -#, php-format -msgid "No more %s notifications." -msgstr "Ei muita %s ilmoituksia." - -#: mod/p.php:14 -msgid "Not Extended" -msgstr "Ei laajennettu" - -#: mod/p.php:21 mod/p.php:48 mod/p.php:57 mod/fetch.php:16 mod/fetch.php:52 -#: mod/fetch.php:65 mod/help.php:60 index.php:320 -msgid "Not Found" -msgstr "Ei löydetty" - -#: mod/follow.php:45 -msgid "The contact could not be added." -msgstr "Kontaktia ei voitu lisätä." - -#: mod/follow.php:73 -msgid "You already added this contact." -msgstr "Olet jo lisännyt tämän kontaktin." - -#: mod/follow.php:83 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "Diaspora -tuki ei ole käytössä. Kontaktia ei voi lisätä." - -#: mod/follow.php:90 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "OStatus -tuki ei ole käytössä. Kontaktia ei voi lisätä." - -#: mod/follow.php:97 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "Verkkotyyppiä ei voitu havaita. Kontaktia ei voitu lisätä." - -#: mod/cal.php:313 -msgid "This calendar format is not supported" -msgstr "Tätä kalenteriformaattia ei tueta" - -#: mod/cal.php:315 -msgid "No exportable data found" -msgstr "Vientikelpoista dataa ei löytynyt" - -#: mod/cal.php:332 -msgid "calendar" -msgstr "kalenteri" - -#: mod/contacts.php:157 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited." -msgstr[0] "%d kontakti muokattu" -msgstr[1] "%d kontakteja muokattu" - -#: mod/contacts.php:184 mod/contacts.php:400 -msgid "Could not access contact record." -msgstr "Yhteystietoon ei päästä käsiksi." - -#: mod/contacts.php:194 -msgid "Could not locate selected profile." -msgstr "Valittua profiilia ei löydy." - -#: mod/contacts.php:228 -msgid "Contact updated." -msgstr "Yhteystietopäivitys onnistui." - -#: mod/contacts.php:421 -msgid "Contact has been blocked" -msgstr "Henkilö on estetty" - -#: mod/contacts.php:421 -msgid "Contact has been unblocked" -msgstr "Henkilö on jälleen sallittu" - -#: mod/contacts.php:432 -msgid "Contact has been ignored" -msgstr "Henkilöä ei enää huomioida" - -#: mod/contacts.php:432 -msgid "Contact has been unignored" -msgstr "Henkilö on jälleen huomioituna." - -#: mod/contacts.php:443 -msgid "Contact has been archived" -msgstr "Henkilö on arkistoitu." - -#: mod/contacts.php:443 -msgid "Contact has been unarchived" -msgstr "Henkilö on otettu pois arkistosta." - -#: mod/contacts.php:467 -msgid "Drop contact" -msgstr "Poista kontakti" - -#: mod/contacts.php:470 mod/contacts.php:823 -msgid "Do you really want to delete this contact?" -msgstr "Haluatko todella poistaa tämän yhteystiedon?" - -#: mod/contacts.php:488 -msgid "Contact has been removed." -msgstr "Yhteystieto on poistettu." - -#: mod/contacts.php:519 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Olet kaveri %s kanssa." - -#: mod/contacts.php:523 -#, php-format -msgid "You are sharing with %s" -msgstr "Olet jakanut jotakin %s:n kanssa" - -#: mod/contacts.php:527 -#, php-format -msgid "%s is sharing with you" -msgstr "%s jakaa sinulle jotakin." - -#: mod/contacts.php:547 -msgid "Private communications are not available for this contact." -msgstr "Yksityiskeskustelu ei ole käytettävissä tälle henkilölle." - -#: mod/contacts.php:549 -msgid "Never" -msgstr "Ei koskaan" - -#: mod/contacts.php:552 -msgid "(Update was successful)" -msgstr "(Päivitys onnistui)" - -#: mod/contacts.php:552 -msgid "(Update was not successful)" -msgstr "(Päivitys epäonnistui)" - -#: mod/contacts.php:554 mod/contacts.php:992 -msgid "Suggest friends" -msgstr "Ehdota ystäviä" - -#: mod/contacts.php:558 -#, php-format -msgid "Network type: %s" -msgstr "Verkkotyyppi: %s" - -#: mod/contacts.php:563 -msgid "Communications lost with this contact!" -msgstr "Yhteys tähän henkilöön menetettiin!" - -#: mod/contacts.php:569 -msgid "Fetch further information for feeds" -msgstr "" - -#: mod/contacts.php:571 -msgid "" -"Fetch information like preview pictures, title and teaser from the feed " -"item. You can activate this if the feed doesn't contain much text. Keywords " -"are taken from the meta header in the feed item and are posted as hash tags." -msgstr "" - -#: mod/contacts.php:573 -msgid "Fetch information" -msgstr "Nouda tiedot" - -#: mod/contacts.php:574 -msgid "Fetch keywords" -msgstr "Nouda avainsanat" - -#: mod/contacts.php:575 -msgid "Fetch information and keywords" -msgstr "Nouda tiedot ja avainsanat" - -#: mod/contacts.php:608 -msgid "Contact" -msgstr "Kontakti" - -#: mod/contacts.php:611 -msgid "Profile Visibility" -msgstr "Profiilin näkyvyys" - -#: mod/contacts.php:612 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Valitse profiili, jonka haluat näyttää %s:lle, kun hän haluaa katsoa profiiliasi turvallisesti." - -#: mod/contacts.php:613 -msgid "Contact Information / Notes" -msgstr "Yhteystiedot / Muistiinpanot" - -#: mod/contacts.php:614 -msgid "Their personal note" -msgstr "" - -#: mod/contacts.php:616 -msgid "Edit contact notes" -msgstr "Muokkaa yhteystietojen muistiinpanoja" - -#: mod/contacts.php:620 -msgid "Block/Unblock contact" -msgstr "Estä/salli henkilö" - -#: mod/contacts.php:621 -msgid "Ignore contact" -msgstr "Jätä henkilö huomiotta" - -#: mod/contacts.php:622 -msgid "Repair URL settings" -msgstr "Korjaa URL-asetukset" - -#: mod/contacts.php:623 -msgid "View conversations" -msgstr "Katso keskusteluja" - -#: mod/contacts.php:628 -msgid "Last update:" -msgstr "Viimeksi päivitetty:" - -#: mod/contacts.php:630 -msgid "Update public posts" -msgstr "Päivitä julkiset postaukset" - -#: mod/contacts.php:632 mod/contacts.php:1002 -msgid "Update now" -msgstr "Päivitä nyt" - -#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019 -msgid "Unignore" -msgstr "Ota huomioon" - -#: mod/contacts.php:642 -msgid "Currently blocked" -msgstr "Estetty tällä hetkellä" - -#: mod/contacts.php:643 -msgid "Currently ignored" -msgstr "Jätetty huomiotta tällä hetkellä" - -#: mod/contacts.php:644 -msgid "Currently archived" -msgstr "Arkistoitu tällä hetkellä" - -#: mod/contacts.php:645 -msgid "Awaiting connection acknowledge" -msgstr "Odotetaan yhteyden kuittausta" - -#: mod/contacts.php:646 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "" - -#: mod/contacts.php:647 -msgid "Notification for new posts" -msgstr "Uusien postausten ilmoitus" - -#: mod/contacts.php:647 -msgid "Send a notification of every new post of this contact" -msgstr "Lähetä ilmoitus tälle henkilölle kaikista uusista postauksista" - -#: mod/contacts.php:650 -msgid "Blacklisted keywords" -msgstr "Kielletyt avainsanat" - -#: mod/contacts.php:650 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "" - -#: mod/contacts.php:667 -msgid "Actions" -msgstr "Toimenpiteet" - -#: mod/contacts.php:670 -msgid "Contact Settings" -msgstr "Yhteystietoasetukset" - -#: mod/contacts.php:711 -msgid "Suggestions" -msgstr "Ehdotukset" - -#: mod/contacts.php:714 -msgid "Suggest potential friends" -msgstr "Ehdota mahdollisille ystäville" - -#: mod/contacts.php:722 -msgid "Show all contacts" -msgstr "Näytä kaikki yhteystiedot" - -#: mod/contacts.php:727 -msgid "Unblocked" -msgstr "Sallittu" - -#: mod/contacts.php:730 -msgid "Only show unblocked contacts" -msgstr "Näytä vain sallitut henkilöt" - -#: mod/contacts.php:735 -msgid "Blocked" -msgstr "Estetty" - -#: mod/contacts.php:738 -msgid "Only show blocked contacts" -msgstr "Näytä vain estetyt henkilöt" - -#: mod/contacts.php:743 -msgid "Ignored" -msgstr "Jätetty huomiotta" - -#: mod/contacts.php:746 -msgid "Only show ignored contacts" -msgstr "Näytä vain henkilöt, jotka jätetty huomiotta" - -#: mod/contacts.php:751 -msgid "Archived" -msgstr "Arkistoitu" - -#: mod/contacts.php:754 -msgid "Only show archived contacts" -msgstr "Näytä vain arkistoidut henkilöt" - -#: mod/contacts.php:759 -msgid "Hidden" -msgstr "Piilotettu" - -#: mod/contacts.php:762 -msgid "Only show hidden contacts" -msgstr "Näytä vain piilotetut henkilöt" - -#: mod/contacts.php:818 -msgid "Search your contacts" -msgstr "Etsi henkilöitä" - -#: mod/contacts.php:819 mod/search.php:236 -#, php-format -msgid "Results for: %s" -msgstr "Tulokset haulla: %s" - -#: mod/contacts.php:829 mod/contacts.php:1027 -msgid "Archive" -msgstr "Arkistoi" - -#: mod/contacts.php:829 mod/contacts.php:1027 -msgid "Unarchive" -msgstr "Poista arkistosta" - -#: mod/contacts.php:832 -msgid "Batch Actions" -msgstr "" - -#: mod/contacts.php:878 -msgid "View all contacts" -msgstr "Näytä kaikki kontaktit" - -#: mod/contacts.php:886 mod/common.php:140 -msgid "Common Friends" -msgstr "Yhteisiä kavereita" - -#: mod/contacts.php:889 -msgid "View all common friends" -msgstr "Näytä kaikki yhteiset kaverit" - -#: mod/contacts.php:898 -msgid "Advanced Contact Settings" -msgstr "Kontakti-lisäasetukset" - -#: mod/contacts.php:930 -msgid "Mutual Friendship" -msgstr "Yhteinen kaveruus" - -#: mod/contacts.php:934 -msgid "is a fan of yours" -msgstr "on fanisi" - -#: mod/contacts.php:938 -msgid "you are a fan of" -msgstr "fanitat" - -#: mod/contacts.php:1013 -msgid "Toggle Blocked status" -msgstr "Estetty tila päälle/pois" - -#: mod/contacts.php:1021 -msgid "Toggle Ignored status" -msgstr "Sivuuta/seuraa" - -#: mod/contacts.php:1029 -msgid "Toggle Archive status" -msgstr "Arkistotila päälle/pois" - -#: mod/contacts.php:1037 -msgid "Delete contact" -msgstr "Poista kontakti" - -#: mod/bookmarklet.php:51 -msgid "The post was created" -msgstr "Julkaisu luotu" - -#: mod/lostpass.php:27 -msgid "No valid account found." -msgstr "Voimassa olevaa tiliä ei löytynyt." - -#: mod/lostpass.php:39 -msgid "Password reset request issued. Check your email." -msgstr "Salasanan nollauspyyntö lähetetty. Tarkista sähköpostisi." - -#: mod/lostpass.php:45 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" -"\t\tpassword. In order to confirm this request, please select the verification link\n" -"\t\tbelow or paste it into your web browser address bar.\n" -"\n" -"\t\tIf you did NOT request this change, please DO NOT follow the link\n" -"\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." -msgstr "" - -#: mod/lostpass.php:56 -#, php-format -msgid "" -"\n" -"\t\tFollow this link soon to verify your identity:\n" -"\n" -"\t\t%1$s\n" -"\n" -"\t\tYou will then receive a follow-up message containing the new password.\n" -"\t\tYou may change that password from your account settings page after logging in.\n" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%2$s\n" -"\t\tLogin Name:\t%3$s" -msgstr "" - -#: mod/lostpass.php:73 -#, php-format -msgid "Password reset requested at %s" -msgstr "Salasanan nollauspyyntö kohteessa %s" - -#: mod/lostpass.php:89 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Pyyntöä ei voitu vahvistaa. (Saatoit lähettää pyyntöä aikaisemmin.) Salasanan nollaus epäonnistui." - -#: mod/lostpass.php:102 -msgid "Request has expired, please make a new one." -msgstr "Pyyntö on vanhentunut, tehkää uusi pyyntö." - -#: mod/lostpass.php:117 -msgid "Forgot your Password?" -msgstr "Unohditko salasanasi?" - -#: mod/lostpass.php:118 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "" - -#: mod/lostpass.php:120 -msgid "Reset" -msgstr "Nollaus" - -#: mod/lostpass.php:137 -msgid "Your password has been reset as requested." -msgstr "Salasanasi on nollattu pyynnöstäsi." - -#: mod/lostpass.php:138 -msgid "Your new password is" -msgstr "Uusi salasanasi on" - -#: mod/lostpass.php:139 -msgid "Save or copy your new password - and then" -msgstr "Tallenna tai kopioi uusi salasanasi, ja sitten" - -#: mod/lostpass.php:140 -msgid "click here to login" -msgstr "kirjaudu klikkaamalla tästä" - -#: mod/lostpass.php:141 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Salsanaa voi vaihtaa asetussivulta kirjautumisen jälkeen." - -#: mod/lostpass.php:149 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\tinformation for your records (or change your password immediately to\n" -"\t\t\tsomething that you will remember).\n" -"\t\t" -msgstr "" - -#: mod/lostpass.php:155 -#, php-format -msgid "" -"\n" -"\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t%2$s\n" -"\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\tYou may change that password from your account settings page after logging in.\n" -"\t\t" -msgstr "\n\t\t\tKäyttäjätilisi tiedot:\n\n\t\t\tSivuston osoite:\t%1$s\n\t\t\tKäyttäjätunnus:\t%2$s\n\t\t\tSalasana:\t%3$s\n\n\t\t\tVoit vaihtaa salasanasi kirjautumisen jälkeen asetussivulta.\n\t\t" - -#: mod/lostpass.php:169 -#, php-format -msgid "Your password has been changed at %s" -msgstr "Salasanasi on vaihdettu sivustolla %s" - -#: mod/install.php:114 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica viestinnän palvelin - asetukset" - -#: mod/install.php:120 -msgid "Could not connect to database." -msgstr "Tietokantaan ei saada yhteyttä." - -#: mod/install.php:124 -msgid "Could not create table." -msgstr "Taulun luominen epäonnistui." - -#: mod/install.php:130 -msgid "Your Friendica site database has been installed." -msgstr "Friendica-sivustosi tietokanta on asennettu." - -#: mod/install.php:135 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Sinun on ehkä tuotava tiedosto \"database.sql\" manuaalisesti käyttämällä phpMyAdminia tai MySQL:ää." - -#: mod/install.php:136 mod/install.php:208 mod/install.php:558 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Lue tiedosto \"INSTALL.txt\"." - -#: mod/install.php:148 -msgid "Database already in use." -msgstr "Tietokanta on jo käytössä." - -#: mod/install.php:205 -msgid "System check" -msgstr "Järjestelmän tarkistus" - -#: mod/install.php:210 -msgid "Check again" -msgstr "Tarkista uudelleen" - -#: mod/install.php:230 -msgid "Database connection" -msgstr "Tietokantayhteys" - -#: mod/install.php:231 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Jotta voit asentaa Friendican, tarvitaan tieto siitä, miten tietokantaasi saa yhteyden." - -#: mod/install.php:232 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Ota yhteyttä web-palveluntarjoajaasi tai sivuston ylläpitäjään, jos sinulla on näihin asetuksiin liittyviä kysymyksiä." - -#: mod/install.php:233 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Alla määritetyn tietokannan tulisi olla jo olemassa. Jos se ei ole, luo se ennen kuin jatkat." - -#: mod/install.php:237 -msgid "Database Server Name" -msgstr "Tietokannan palvelimen nimi" - -#: mod/install.php:238 -msgid "Database Login Name" -msgstr "Tietokannan käyttäjän nimi" - -#: mod/install.php:239 -msgid "Database Login Password" -msgstr "Tietokannan käyttäjän salasana" - -#: mod/install.php:239 -msgid "For security reasons the password must not be empty" -msgstr "Turvallisuussyistä salasanakenttä ei saa olla tyhjä" - -#: mod/install.php:240 -msgid "Database Name" -msgstr "Tietokannan nimi" - -#: mod/install.php:241 mod/install.php:281 -msgid "Site administrator email address" -msgstr "Sivuston ylläpitäjän sähköpostiosoite" - -#: mod/install.php:241 mod/install.php:281 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Tilisi sähköpostiosoitteen on vastattava tätä, jotta voit käyttää ylläpitokäyttöliittymää." - -#: mod/install.php:245 mod/install.php:284 -msgid "Please select a default timezone for your website" -msgstr "Valitse oletusaikavyöhyke sivustollesi" - -#: mod/install.php:271 -msgid "Site settings" -msgstr "Sivuston asetukset" - -#: mod/install.php:285 -msgid "System Language:" -msgstr "Järjestelmän kieli:" - -#: mod/install.php:285 -msgid "" -"Set the default language for your Friendica installation interface and to " -"send emails." -msgstr "Valitse Friendica-sivustosi oletuskieli." - -#: mod/install.php:325 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Komentoriviversiota PHP:stä ei löytynyt web-palvelimen PATH:ista." - -#: mod/install.php:326 -msgid "" -"If you don't have a command line version of PHP installed on your server, " -"you will not be able to run the background processing. See 'Setup the worker'" -msgstr "" - -#: mod/install.php:330 -msgid "PHP executable path" -msgstr "Polku PHP-ohjelmaan" - -#: mod/install.php:330 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Kirjoita koko polku PHP-ohjelmaan. Voit jättää sen tyhjäksi, jos haluat jatkaa asennusta." - -#: mod/install.php:335 -msgid "Command line PHP" -msgstr "Komentorivi-PHP" - -#: mod/install.php:344 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "" - -#: mod/install.php:345 -msgid "Found PHP version: " -msgstr "PHP-versio löydetty:" - -#: mod/install.php:347 -msgid "PHP cli binary" -msgstr "PHP cli -binääritiedosto" - -#: mod/install.php:358 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Järjestelmäsi komentorivi-PHP:ssä ei ole käytössä asetusta \"register_argc_argv\"." - -#: mod/install.php:359 -msgid "This is required for message delivery to work." -msgstr "Asetus vaaditaan viestien lähettämiseen." - -#: mod/install.php:361 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: mod/install.php:384 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Virhe: järjestelmäsi \"openssl_pkey_new\" -funktio ei pysty generoimaan salausavaimia." - -#: mod/install.php:385 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Jos on kyse Windows-pavelimesta, katso \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: mod/install.php:387 -msgid "Generate encryption keys" -msgstr "Luo salausavaimet" - -#: mod/install.php:394 -msgid "libCurl PHP module" -msgstr "PHP-moduuli libCurl" - -#: mod/install.php:395 -msgid "GD graphics PHP module" -msgstr "PHP-moduuli GD graphics" - -#: mod/install.php:396 -msgid "OpenSSL PHP module" -msgstr "PHP-moduuli OpenSSL" - -#: mod/install.php:397 -msgid "PDO or MySQLi PHP module" -msgstr "PDO tai MySQLi PHP-moduuli" - -#: mod/install.php:398 -msgid "mb_string PHP module" -msgstr "PHP-moduuli mb_string" - -#: mod/install.php:399 -msgid "XML PHP module" -msgstr "XML PHP-moduuli" - -#: mod/install.php:400 -msgid "iconv PHP module" -msgstr "iconv PHP-moduuli" - -#: mod/install.php:401 -msgid "POSIX PHP module" -msgstr "POSIX PHP-moduuli" - -#: mod/install.php:405 mod/install.php:407 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite -moduuli" - -#: mod/install.php:405 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Virhe: Apache-palvelimen mod-rewrite -moduuli vaaditaan, mutta sitä ei ole asennettu." - -#: mod/install.php:413 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Virhe: libCURL PHP -moduuli vaaditaan, mutta sitä ei ole asennettu." - -#: mod/install.php:417 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Virhe: GD graphics PHP -moduuli JPEG-tuella vaaditaan, mutta sitä ei ole asennettu." - -#: mod/install.php:421 -msgid "Error: openssl PHP module required but not installed." -msgstr "Virhe: openssl PHP -moduuli vaaditaan, mutta sitä ei ole asennettu." - -#: mod/install.php:425 -msgid "Error: PDO or MySQLi PHP module required but not installed." -msgstr "Virhe: PDO tai MySQLi PHP-moduuli vaaditaan, mutta sitä ei ole asennettu." - -#: mod/install.php:429 -msgid "Error: The MySQL driver for PDO is not installed." -msgstr "Virhe: PDO:n MySQL-ajuri ei ole asennettu" - -#: mod/install.php:433 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Virhe: PHP-moduuli mb_string vaaditaan, mutta sitä ei ole asennettu." - -#: mod/install.php:437 -msgid "Error: iconv PHP module required but not installed." -msgstr "Virhe: iconv PHP-moduuli vaaditaan, mutta sitä ei ole asennettu." - -#: mod/install.php:441 -msgid "Error: POSIX PHP module required but not installed." -msgstr "Virhe: POSIX PHP-moduuli vaadittaan, mutta sitä ei ole asennettu." - -#: mod/install.php:451 -msgid "Error, XML PHP module required but not installed." -msgstr "Virhe: XML PHP-moduuli vaaditaan, mutta sitä ei ole asennettu." - -#: mod/install.php:463 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "Web-asennuksen pitäisi pystyä luomaan tiedosto nimeltä \".htconfig.php\" palvelimesi ylimpään kansioon, mutta se ei nyt onnistu." - -#: mod/install.php:464 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Tämä on yleensä käyttöoikeusasetus, jolloin web-palvelimesi ei pysty kirjoittamaan tiedostoja kansioosi, vaikka itse siihen pystyisit." - -#: mod/install.php:465 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "Tämän menettelyn lopussa annamme sinulle tekstin tallennettavaksi tiedostoon nimeltä .htconfig.php Friendican ylätason kansiossa." - -#: mod/install.php:466 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "" - -#: mod/install.php:469 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php on kirjoitettava" - -#: mod/install.php:479 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "" - -#: mod/install.php:480 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "" - -#: mod/install.php:481 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "" - -#: mod/install.php:482 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "" - -#: mod/install.php:485 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 on kirjoitettava" - -#: mod/install.php:501 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "URL-osoitteen uudelleenkirjoitus .htaccess-tiedostossa ei toimi. Tarkista palvelimen asetukset." - -#: mod/install.php:503 -msgid "Url rewrite is working" -msgstr "URL-osoitteen uudellenkirjoitus toimii" - -#: mod/install.php:522 -msgid "ImageMagick PHP extension is not installed" -msgstr "ImageMagick PHP-laajennus ei ole asetettu" - -#: mod/install.php:524 -msgid "ImageMagick PHP extension is installed" -msgstr "ImageMagick PHP-laajennus on asetettu" - -#: mod/install.php:526 -msgid "ImageMagick supports GIF" -msgstr "ImageMagik tukee GIF-formaattia" - -#: mod/install.php:533 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Tietokannan asetustiedostoa \".htconfig.php\" ei pystytty kirjoittamaan. Käytä mukaanliitettyä tekstiä luomaan asetustiedosto web-palvelimesi juureen." - -#: mod/install.php:556 -msgid "

What next

" -msgstr "

Mitä seuraavaksi

" - -#: mod/install.php:557 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"worker." -msgstr "TÄRKEÄÄ: Sinun pitää asettaa [manuaalisesti] ajastettu tehtävä Workerille." - -#: mod/install.php:560 -#, php-format -msgid "" -"Go to your new Friendica node registration page " -"and register as new user. Remember to use the same email you have entered as" -" administrator email. This will allow you to enter the site admin panel." -msgstr "" - -#: mod/babel.php:23 -msgid "Source input" -msgstr "" - -#: mod/babel.php:29 -msgid "BBCode::toPlaintext" -msgstr "" - -#: mod/babel.php:35 -msgid "BBCode::convert (raw HTML)" -msgstr "BBCode::convert (raaka HTML)" - -#: mod/babel.php:40 -msgid "BBCode::convert" -msgstr "BBCode::convert" - -#: mod/babel.php:46 -msgid "BBCode::convert => HTML::toBBCode" -msgstr "BBCode::convert => HTML::toBBCode" - -#: mod/babel.php:52 -msgid "BBCode::toMarkdown" -msgstr "BBCode::toMarkdown" - -#: mod/babel.php:58 -msgid "BBCode::toMarkdown => Markdown::convert" -msgstr "BBCode::toMarkdown => Markdown::convert" - -#: mod/babel.php:64 -msgid "BBCode::toMarkdown => Markdown::toBBCode" -msgstr "BBCode::toMarkdown => Markdown::toBBCode" - -#: mod/babel.php:70 -msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" - -#: mod/babel.php:77 -msgid "Source input \\x28Diaspora format\\x29" -msgstr "" - -#: mod/babel.php:83 -msgid "Markdown::toBBCode" -msgstr "Markdown::toBBCode" - -#: mod/babel.php:90 -msgid "Raw HTML input" -msgstr "Raaka HTML-syöte" - -#: mod/babel.php:95 -msgid "HTML Input" -msgstr "HTML-syöte" - -#: mod/babel.php:101 -msgid "HTML::toBBCode" -msgstr "HTML::toBBCode" - -#: mod/babel.php:107 -msgid "HTML::toPlaintext" -msgstr "HTML::toPlaintext" - -#: mod/babel.php:115 -msgid "Source text" -msgstr "Lähdeteksti" - -#: mod/babel.php:116 -msgid "BBCode" -msgstr "BBCode" - -#: mod/babel.php:117 -msgid "Markdown" -msgstr "Markdown" - -#: mod/babel.php:118 -msgid "HTML" -msgstr "HTML" - -#: mod/lockview.php:38 mod/lockview.php:46 -msgid "Remote privacy information not available." -msgstr "Yksityisyyden etätietoja ei saatavilla." - -#: mod/lockview.php:55 -msgid "Visible to:" -msgstr "Näkyvissä:" - -#: mod/wallmessage.php:49 mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "%s-käyttäjän päivittäinen seinäviestiraja ylitetty. Viestin lähettäminen epäonnistui." - -#: mod/wallmessage.php:60 -msgid "Unable to check your home location." -msgstr "Kotisijaintisi ei voitu tarkistaa." - -#: mod/wallmessage.php:86 mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Vastaanottaja puuttuu." - -#: mod/wallmessage.php:133 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "" - -#: mod/match.php:48 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Avainsanat puuttuu. Lisää avainsanoja oletusprofiiliisi." - -#: mod/match.php:104 -msgid "is interested in:" -msgstr "on kiinnostunut seuraavista aiheista:" - -#: mod/match.php:120 -msgid "Profile Match" -msgstr "Vastaavien profiilien haku" - -#: mod/maintenance.php:24 -msgid "System down for maintenance" -msgstr "Järjestelmä poiskytketty huoltoa varten" - -#: mod/tagrm.php:47 -msgid "Tag removed" -msgstr "Tägi poistettiin" - -#: mod/tagrm.php:85 -msgid "Remove Item Tag" -msgstr "Poista tägi" - -#: mod/tagrm.php:87 -msgid "Select a tag to remove: " -msgstr "Valitse tägi poistamista varten:" - -#: mod/feedtest.php:20 -msgid "You must be logged in to use this module" -msgstr "Sinun pitää kirjautua sisään, jotta voit käyttää tätä moduulia" - -#: mod/feedtest.php:48 -msgid "Source URL" -msgstr "Lähde URL" - -#: mod/search.php:105 -msgid "Only logged in users are permitted to perform a search." -msgstr "" - -#: mod/search.php:129 -msgid "Too Many Requests" -msgstr "Liian monta pyyntöä" - -#: mod/search.php:130 -msgid "Only one search per minute is permitted for not logged in users." -msgstr "" - -#: mod/search.php:234 -#, php-format -msgid "Items tagged with: %s" -msgstr "Kohteet joilla tunnisteet: %s" - -#: mod/uexport.php:44 -msgid "Export account" -msgstr "Vie tili" - -#: mod/uexport.php:44 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "Vie tilin tiedot ja yhteystiedot. Käytä tätä tilisi varmuuskopiointiin ja/tai siirtämiseen toiselle palvelimelle." - -#: mod/uexport.php:45 -msgid "Export all" -msgstr "Vie kaikki" - -#: mod/uexport.php:45 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "Vie tilin tiedot, yhteystiedot ja kaikki nimikkeesi json-muodossa. Saattaa luoda hyvin suuren tiedoston ja kestää todella pitkään. Tämän avulla voit ottaa täydellisen varmuuskopion tilistäsi (valokuvia ei viedä)" - -#: mod/newmember.php:11 -msgid "Welcome to Friendica" -msgstr "Tervetuloa Friendicaan" - -#: mod/newmember.php:12 -msgid "New Member Checklist" -msgstr "Uuden jäsenen tarkistuslista" - -#: mod/newmember.php:14 -msgid "" -"We would like to offer some tips and links to help make your experience " -"enjoyable. Click any item to visit the relevant page. A link to this page " -"will be visible from your home page for two weeks after your initial " -"registration and then will quietly disappear." -msgstr "" - -#: mod/newmember.php:15 -msgid "Getting Started" -msgstr "Ensiaskeleet" - -#: mod/newmember.php:17 -msgid "Friendica Walk-Through" -msgstr "Friendica -läpikäynti" - -#: mod/newmember.php:17 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to" -" join." -msgstr "" - -#: mod/newmember.php:21 -msgid "Go to Your Settings" -msgstr "Omat Asetukset" - -#: mod/newmember.php:21 -msgid "" -"On your Settings page - change your initial password. Also make a " -"note of your Identity Address. This looks just like an email address - and " -"will be useful in making friends on the free social web." -msgstr "" - -#: mod/newmember.php:22 -msgid "" -"Review the other settings, particularly the privacy settings. An unpublished" -" directory listing is like having an unlisted phone number. In general, you " -"should probably publish your listing - unless all of your friends and " -"potential friends know exactly how to find you." -msgstr "" - -#: mod/newmember.php:26 -msgid "" -"Upload a profile photo if you have not done so already. Studies have shown " -"that people with real photos of themselves are ten times more likely to make" -" friends than people who do not." -msgstr "" - -#: mod/newmember.php:27 -msgid "Edit Your Profile" -msgstr "Muokkaa profiilisi" - -#: mod/newmember.php:27 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown" -" visitors." -msgstr "" - -#: mod/newmember.php:28 -msgid "Profile Keywords" -msgstr "Profiilin avainsanat" - -#: mod/newmember.php:28 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "" - -#: mod/newmember.php:30 -msgid "Connecting" -msgstr "Yhdistetään" - -#: mod/newmember.php:36 -msgid "Importing Emails" -msgstr "Sähköpostin tuominen" - -#: mod/newmember.php:36 -msgid "" -"Enter your email access information on your Connector Settings page if you " -"wish to import and interact with friends or mailing lists from your email " -"INBOX" -msgstr "" - -#: mod/newmember.php:39 -msgid "Go to Your Contacts Page" -msgstr "Näytä minun kontaktit" - -#: mod/newmember.php:39 -msgid "" -"Your Contacts page is your gateway to managing friendships and connecting " -"with friends on other networks. Typically you enter their address or site " -"URL in the Add New Contact dialog." -msgstr "" - -#: mod/newmember.php:40 -msgid "Go to Your Site's Directory" -msgstr "Näytä oman sivuston luettelo" - -#: mod/newmember.php:40 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "" - -#: mod/newmember.php:41 -msgid "Finding New People" -msgstr "Kavereiden hankkiminen" - -#: mod/newmember.php:41 -msgid "" -"On the side panel of the Contacts page are several tools to find new " -"friends. We can match people by interest, look up people by name or " -"interest, and provide suggestions based on network relationships. On a brand" -" new site, friend suggestions will usually begin to be populated within 24 " -"hours." -msgstr "" - -#: mod/newmember.php:45 -msgid "Group Your Contacts" -msgstr "Järjestä kontaktit ryhmiin" - -#: mod/newmember.php:45 -msgid "" -"Once you have made some friends, organize them into private conversation " -"groups from the sidebar of your Contacts page and then you can interact with" -" each group privately on your Network page." -msgstr "" - -#: mod/newmember.php:48 -msgid "Why Aren't My Posts Public?" -msgstr "Miksi julkaisuni eivät ole julkisia?" - -#: mod/newmember.php:48 -msgid "" -"Friendica respects your privacy. By default, your posts will only show up to" -" people you've added as friends. For more information, see the help section " -"from the link above." -msgstr "" - -#: mod/newmember.php:52 -msgid "Getting Help" -msgstr "Avun saaminen" - -#: mod/newmember.php:54 -msgid "Go to the Help Section" -msgstr "Näytä ohjeet" - -#: mod/newmember.php:54 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "" - -#: mod/dfrn_confirm.php:132 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "" - -#: mod/dfrn_confirm.php:242 -msgid "Response from remote site was not understood." -msgstr "Etäsivuston vastaus oli epäselvä." - -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Odottamaton vastaus etäsivustolta:" - -#: mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Vahvistus onnistui." - -#: mod/dfrn_confirm.php:275 -msgid "Temporary failure. Please wait and try again." -msgstr "Tilapäinen vika. Yritä myöhemmin uudelleen." - -#: mod/dfrn_confirm.php:278 -msgid "Introduction failed or was revoked." -msgstr "Kaverikutsu epäonnistui tai oli peruutettu." - -#: mod/dfrn_confirm.php:283 -msgid "Remote site reported: " -msgstr "" - -#: mod/dfrn_confirm.php:396 -msgid "Unable to set contact photo." -msgstr "Kontaktin kuvaa ei voitu asettaa" - -#: mod/dfrn_confirm.php:498 -#, php-format -msgid "No user record found for '%s' " -msgstr "" - -#: mod/dfrn_confirm.php:508 -msgid "Our site encryption key is apparently messed up." -msgstr "Sivustomme salausavain on sekaisin." - -#: mod/dfrn_confirm.php:519 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "" - -#: mod/dfrn_confirm.php:535 -msgid "Contact record was not found for you on our site." -msgstr "" - -#: mod/dfrn_confirm.php:549 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "" - -#: mod/dfrn_confirm.php:565 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "" - -#: mod/dfrn_confirm.php:576 -msgid "Unable to set your contact credentials on our system." -msgstr "" - -#: mod/dfrn_confirm.php:631 -msgid "Unable to update your contact profile details on our system" -msgstr "" - -#: mod/dfrn_confirm.php:694 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s on liittynyt kohteeseen %2$s" - -#: mod/filer.php:34 -msgid "- select -" -msgstr "- valitse -" - -#: mod/register.php:99 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Rekisteröityminen onnistui. Saat kohta lisäohjeita sähköpostitse." - -#: mod/register.php:103 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." -msgstr "" - -#: mod/register.php:110 -msgid "Registration successful." -msgstr "Rekisteröityminen onnistui." - -#: mod/register.php:115 -msgid "Your registration can not be processed." -msgstr "Rekisteröintisi ei voida käsitellä." - -#: mod/register.php:162 -msgid "Your registration is pending approval by the site owner." -msgstr "Rekisteröintisi odottaa ylläpitäjän hyväksyntää." - -#: mod/register.php:220 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "" - -#: mod/register.php:221 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Jos OpenID ei ole tuttu, jätä kenttä tyhjäksi." - -#: mod/register.php:222 -msgid "Your OpenID (optional): " -msgstr "OpenID -tunnus (valinnainen):" - -#: mod/register.php:234 -msgid "Include your profile in member directory?" -msgstr "Lisää profiilisi jäsenluetteloon?" - -#: mod/register.php:259 -msgid "Note for the admin" -msgstr "Viesti ylläpidolle" - -#: mod/register.php:259 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "Kerro yllåpitäjälle miksi haluat liittyä tähän Friendica -sivustoon" - -#: mod/register.php:260 -msgid "Membership on this site is by invitation only." -msgstr "Tähän sivustoon voi liittyä vain kutsusta." - -#: mod/register.php:261 -msgid "Your invitation code: " -msgstr "Kutsukoodisi:" - -#: mod/register.php:270 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "Koko nimi (esim. Matti Meikäläinen, Aku Ankka):" - -#: mod/register.php:271 -msgid "" -"Your Email Address: (Initial information will be send there, so this has to " -"be an existing address.)" -msgstr "Sähköpostiosoite: (pitää olla toimiva osoite että rekisteröityminen onnistuu)" - -#: mod/register.php:273 -msgid "Leave empty for an auto generated password." -msgstr "Jätä tyhjäksi jos haluat automaattisesti luotu salasanan." - -#: mod/register.php:275 -#, php-format -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be 'nickname@%s'." -msgstr "" - -#: mod/register.php:276 -msgid "Choose a nickname: " -msgstr "Valitse lempinimi:" - -#: mod/register.php:286 -msgid "Import your profile to this friendica instance" -msgstr "Tuo profiilisi tähän Friendica -instanssiin." - -#: mod/common.php:91 -msgid "No contacts in common." -msgstr "Ei yhteisiä kontakteja." - -#: mod/probe.php:14 mod/webfinger.php:17 -msgid "Only logged in users are permitted to perform a probing." -msgstr "" - -#: mod/help.php:48 -msgid "Help:" -msgstr "Ohje:" - -#: mod/help.php:63 index.php:325 -msgid "Page not found." -msgstr "Sivua ei löytynyt." - -#: mod/profperm.php:34 mod/profperm.php:65 -msgid "Invalid profile identifier." -msgstr "Virheellinen profiilitunniste." - -#: mod/profperm.php:111 -msgid "Profile Visibility Editor" -msgstr "Profiilin näkyvyyden muokkaaminen" - -#: mod/profperm.php:124 -msgid "Visible To" -msgstr "Näkyvyys" - -#: mod/profperm.php:140 -msgid "All Contacts (with secure profile access)" -msgstr "" - -#: mod/item.php:114 -msgid "Unable to locate original post." -msgstr "Alkuperäinen julkaisu ei löydy." - -#: mod/item.php:274 -msgid "Empty post discarded." -msgstr "Tyhjä julkaisu hylätty." - -#: mod/item.php:799 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "" - -#: mod/item.php:801 -#, php-format -msgid "You may visit them online at %s" -msgstr "" - -#: mod/item.php:802 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "" - -#: mod/item.php:806 -#, php-format -msgid "%s posted an update." -msgstr "%s julkaisi päivityksen." - -#: mod/editpost.php:25 mod/editpost.php:35 -msgid "Item not found" -msgstr "Kohdetta ei löytynyt" - -#: mod/editpost.php:42 -msgid "Edit post" -msgstr "Muokkaa viestiä" - -#: view/theme/quattro/config.php:76 -msgid "Alignment" -msgstr "Kohdistaminen" - -#: view/theme/quattro/config.php:76 -msgid "Left" -msgstr "Vasemmalle" - -#: view/theme/quattro/config.php:76 -msgid "Center" -msgstr "Keskelle" - -#: view/theme/quattro/config.php:77 -msgid "Color scheme" -msgstr "Värimalli" - -#: view/theme/quattro/config.php:78 -msgid "Posts font size" -msgstr "Julkaisujen fonttikoko" - -#: view/theme/quattro/config.php:79 -msgid "Textareas font size" -msgstr "Tekstikenttien fonttikoko" - -#: view/theme/frio/php/Image.php:25 -msgid "Repeat the image" -msgstr "Toista kuva" - -#: view/theme/frio/php/Image.php:25 -msgid "Will repeat your image to fill the background." -msgstr "" - -#: view/theme/frio/php/Image.php:27 -msgid "Stretch" -msgstr "Venytä" - -#: view/theme/frio/php/Image.php:27 -msgid "Will stretch to width/height of the image." -msgstr "" - -#: view/theme/frio/php/Image.php:29 -msgid "Resize fill and-clip" -msgstr "" - -#: view/theme/frio/php/Image.php:29 -msgid "Resize to fill and retain aspect ratio." -msgstr "" - -#: view/theme/frio/php/Image.php:31 -msgid "Resize best fit" -msgstr "" - -#: view/theme/frio/php/Image.php:31 -msgid "Resize to best fit and retain aspect ratio." -msgstr "" - -#: view/theme/frio/config.php:97 -msgid "Default" -msgstr "Oletus" - -#: view/theme/frio/config.php:109 -msgid "Note" -msgstr "" - -#: view/theme/frio/config.php:109 -msgid "Check image permissions if all users are allowed to visit the image" -msgstr "" - -#: view/theme/frio/config.php:116 -msgid "Select scheme" -msgstr "Valitse malli" - -#: view/theme/frio/config.php:117 -msgid "Navigation bar background color" -msgstr "Navigointipalkin taustaväri" - -#: view/theme/frio/config.php:118 -msgid "Navigation bar icon color " -msgstr "Navigointipalkin kuvakkeiden väri" - -#: view/theme/frio/config.php:119 -msgid "Link color" -msgstr "Linkin väri" - -#: view/theme/frio/config.php:120 -msgid "Set the background color" -msgstr "Valitse taustaväri" - -#: view/theme/frio/config.php:121 -msgid "Content background opacity" -msgstr "Sisällön taustasameus" - -#: view/theme/frio/config.php:122 -msgid "Set the background image" -msgstr "Valitse taustakuva" - -#: view/theme/frio/config.php:127 -msgid "Login page background image" -msgstr "Sisäänkirjautumissivun taustakuva" - -#: view/theme/frio/config.php:130 -msgid "Login page background color" -msgstr "Sisäänkirjautumissivun taustaväri" - -#: view/theme/frio/config.php:130 -msgid "Leave background image and color empty for theme defaults" -msgstr "" - -#: view/theme/frio/theme.php:238 -msgid "Guest" -msgstr "Vieras" - -#: view/theme/frio/theme.php:243 -msgid "Visitor" -msgstr "Vierailija" - -#: view/theme/vier/config.php:75 -msgid "Comma separated list of helper forums" -msgstr "" - -#: view/theme/vier/config.php:122 -msgid "Set style" -msgstr "Aseta tyyli" - -#: view/theme/vier/config.php:123 -msgid "Community Pages" -msgstr "Yhteisösivut" - -#: view/theme/vier/config.php:124 view/theme/vier/theme.php:150 -msgid "Community Profiles" -msgstr "Yhteisöprofiilit" - -#: view/theme/vier/config.php:125 -msgid "Help or @NewHere ?" -msgstr "" - -#: view/theme/vier/config.php:126 view/theme/vier/theme.php:389 -msgid "Connect Services" -msgstr "Yhdistä palvelut" - -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:199 -msgid "Find Friends" -msgstr "Etsi kavereita" - -#: view/theme/vier/config.php:128 view/theme/vier/theme.php:181 -msgid "Last users" -msgstr "Viimeisimmät käyttäjät" - -#: view/theme/vier/theme.php:200 -msgid "Local Directory" -msgstr "Paikallinen hakemisto" - -#: view/theme/vier/theme.php:292 -msgid "Quick Start" -msgstr "Pika-aloitus" - -#: view/theme/duepuntozero/config.php:55 -msgid "greenzero" -msgstr "greenzero" - -#: view/theme/duepuntozero/config.php:56 -msgid "purplezero" -msgstr "purplezero" - -#: view/theme/duepuntozero/config.php:57 -msgid "easterbunny" -msgstr "easterbunny" - -#: view/theme/duepuntozero/config.php:58 -msgid "darkzero" -msgstr "darkzero" - -#: view/theme/duepuntozero/config.php:59 -msgid "comix" -msgstr "comix" - -#: view/theme/duepuntozero/config.php:60 -msgid "slackr" -msgstr "slackr" - -#: view/theme/duepuntozero/config.php:74 -msgid "Variations" -msgstr "Muunnelmat" +#: src/App.php:513 +msgid "show fewer" +msgstr "näytä vähemmän" #: index.php:472 msgid "toggle mobile" msgstr "Mobiilisivusto päälle/pois" + +#: boot.php:796 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "%s päivitys epäonnistui, katso virhelokit." diff --git a/view/lang/fi-fi/strings.php b/view/lang/fi-fi/strings.php index 89513a7e5..488c7cce1 100644 --- a/view/lang/fi-fi/strings.php +++ b/view/lang/fi-fi/strings.php @@ -5,7 +5,13 @@ function string_plural_select_fi_fi($n){ return ($n != 1);; }} ; -$a->strings["Update %s failed. See error logs."] = "%s päivitys epäonnistui, katso virhelokit."; +$a->strings["Item not found."] = "Kohdetta ei löytynyt."; +$a->strings["Do you really want to delete this item?"] = "Haluatko varmasti poistaa tämän kohteen?"; +$a->strings["Yes"] = "Kyllä"; +$a->strings["Cancel"] = "Peru"; +$a->strings["Permission denied."] = "Käyttöoikeus evätty."; +$a->strings["Archives"] = "Arkisto"; +$a->strings["show more"] = "näytä lisää"; $a->strings["Daily posting limit of %d post reached. The post was rejected."] = [ 0 => "Päivittäinen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty.", 1 => "Päivittäinen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty.", @@ -75,6 +81,10 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "O $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Olet vastaanottanut [url=%1\$s]rekisteröintipyynnön[/url] henkilöltä %2\$s."; $a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Koko nimi:\t%1\$s\\nSivusto:\t%2\$s\\nKäyttäjätunnus:\t%3\$s (%4\$s)"; $a->strings["Please visit %s to approve or reject the request."] = "Hyväksy tai hylkää pyyntö %s-sivustossa."; +$a->strings["Welcome "] = "Tervetuloa"; +$a->strings["Please upload a profile photo."] = "Lataa profiilikuva."; +$a->strings["Welcome back "] = "Tervetuloa takaisin"; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = ""; $a->strings["event"] = "tapahtuma"; $a->strings["status"] = "tila"; $a->strings["photo"] = "kuva"; @@ -162,7 +172,6 @@ $a->strings["Permission settings"] = "Käyttöoikeusasetukset"; $a->strings["permissions"] = "käyttöoikeudet"; $a->strings["Public post"] = "Julkinen viesti"; $a->strings["Preview"] = "Esikatselu"; -$a->strings["Cancel"] = "Peru"; $a->strings["Post to Groups"] = "Lähetä ryhmiin"; $a->strings["Post to Contacts"] = "Lähetä kontakteille"; $a->strings["Private post"] = "Yksityinen julkaisu"; @@ -186,10 +195,6 @@ $a->strings["Undecided"] = [ 1 => "En ole varma", ]; $a->strings["Cannot locate DNS info for database server '%s'"] = "'%s' tietokantapalvelimen DNS-tieto ei löydy"; -$a->strings["Welcome "] = "Tervetuloa"; -$a->strings["Please upload a profile photo."] = "Lataa profiilikuva."; -$a->strings["Welcome back "] = "Tervetuloa takaisin"; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = ""; $a->strings["newer"] = "uudempi"; $a->strings["older"] = "vanhempi"; $a->strings["first"] = "ensimmäinen"; @@ -274,567 +279,104 @@ $a->strings["comment"] = [ ]; $a->strings["post"] = "julkaisu"; $a->strings["Item filed"] = "Kohde arkistoitu"; -$a->strings["Item not found."] = "Kohdetta ei löytynyt."; -$a->strings["Do you really want to delete this item?"] = "Haluatko varmasti poistaa tämän kohteen?"; -$a->strings["Yes"] = "Kyllä"; -$a->strings["Permission denied."] = "Käyttöoikeus evätty."; -$a->strings["Archives"] = "Arkisto"; -$a->strings["show more"] = "näytä lisää"; -$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s osallistuu tapahtumaan %3\$s, jonka järjestää %2\$s"; -$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s ei osallistu tapahtumaan %3\$s, jonka järjestää %2\$s"; -$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s ehkä osallistuu tapahtumaan %3\$s, jonka järjestää %2\$s"; -$a->strings["Drop Contact"] = "Poista kontakti"; -$a->strings["Organisation"] = "Järjestö"; -$a->strings["News"] = "Uutiset"; -$a->strings["Forum"] = "Keskustelupalsta"; -$a->strings["Disallowed profile URL."] = "Kielletty profiiliosoite."; -$a->strings["Blocked domain"] = "Estetty verkkotunnus"; -$a->strings["Connect URL missing."] = "Yhteys URL-linkki puuttuu."; -$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = ""; -$a->strings["This site is not configured to allow communications with other networks."] = ""; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Yhteensopivia viestintäprotokolleja tai syötteitä ei löytynyt."; -$a->strings["The profile address specified does not provide adequate information."] = "Annettu profiiliosoite ei sisällä riittävästi tietoa."; -$a->strings["An author or name was not found."] = ""; -$a->strings["No browser URL could be matched to this address."] = ""; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = ""; -$a->strings["Use mailto: in front of address to force email check."] = ""; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = ""; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = ""; -$a->strings["Unable to retrieve contact information."] = "Kontaktin tietoja ei voitu hakea."; -$a->strings["[Name Withheld]"] = "[Nimi jätetty pois]"; -$a->strings["%s's birthday"] = "%s: syntymäpäivä"; -$a->strings["Happy Birthday %s"] = "Hyvää syntymäpäivää %s"; -$a->strings["[no subject]"] = "[ei aihetta]"; -$a->strings["Requested account is not available."] = "Pyydetty käyttäjätili ei ole saatavilla."; -$a->strings["Requested profile is not available."] = "Pyydettyä profiilia ei saatavilla."; -$a->strings["Edit profile"] = "Muokkaa profiilia"; +$a->strings["No friends to display."] = "Ei näytettäviä kavereita."; $a->strings["Connect"] = "Yhdistä"; -$a->strings["Atom feed"] = "Atom -syöte"; -$a->strings["Profiles"] = "Profiilit"; -$a->strings["Manage/edit profiles"] = "Hallitse/muokkaa profiilit"; -$a->strings["Change profile photo"] = "Vaihda profiilikuva"; -$a->strings["Create New Profile"] = "Luo uusi profiili"; -$a->strings["Profile Image"] = "Profiilikuva"; -$a->strings["visible to everybody"] = "näkyvissä kaikille"; -$a->strings["Edit visibility"] = "Muokkaa näkyvyyttä"; -$a->strings["Location:"] = "Sijainti:"; -$a->strings["Gender:"] = "Sukupuoli:"; -$a->strings["Status:"] = "Tila:"; -$a->strings["Homepage:"] = "Kotisivu:"; -$a->strings["About:"] = "Lisätietoja:"; -$a->strings["XMPP:"] = "XMPP:"; -$a->strings["Network:"] = "Verkko:"; -$a->strings["g A l F d"] = ""; -$a->strings["F d"] = ""; -$a->strings["[today]"] = "[tänään]"; -$a->strings["Birthday Reminders"] = "Syntymäpäivämuistutukset"; -$a->strings["Birthdays this week:"] = "Syntymäpäiviä tällä viikolla:"; -$a->strings["[No description]"] = "[Ei kuvausta]"; -$a->strings["Event Reminders"] = "Tapahtumamuistutukset"; -$a->strings["Events this week:"] = "Tapahtumia tällä viikolla:"; -$a->strings["Profile"] = "Profiili"; -$a->strings["Full Name:"] = "Koko nimi:"; -$a->strings["Member since:"] = "Liittymispäivämäärä:"; -$a->strings["j F, Y"] = ""; -$a->strings["j F"] = ""; -$a->strings["Birthday:"] = "Syntymäpäivä:"; -$a->strings["Age:"] = "Ikä:"; -$a->strings["for %1\$d %2\$s"] = ""; -$a->strings["Sexual Preference:"] = "Seksuaalinen suuntautuminen:"; -$a->strings["Hometown:"] = "Kotikaupunki:"; -$a->strings["Tags:"] = "Tunnisteet:"; -$a->strings["Political Views:"] = "Politiikka:"; -$a->strings["Religion:"] = "Uskonto:"; -$a->strings["Hobbies/Interests:"] = "Harrastukset:"; -$a->strings["Likes:"] = "Tykkäykset:"; -$a->strings["Dislikes:"] = "Ei tykkää:"; -$a->strings["Contact information and Social Networks:"] = "Yhteystiedot ja sosiaalinen media:"; -$a->strings["Musical interests:"] = "Musiikki:"; -$a->strings["Books, literature:"] = "Kirjat, kirjallisuus:"; -$a->strings["Television:"] = "Televisio:"; -$a->strings["Film/dance/culture/entertainment:"] = "Elokuvat/tanssit/kulttuuri/viihde:"; -$a->strings["Love/Romance:"] = "Rakkaus/romanssi:"; -$a->strings["Work/employment:"] = "Työ:"; -$a->strings["School/education:"] = "Koulutus:"; -$a->strings["Forums:"] = "Foorumit:"; -$a->strings["Basic"] = ""; -$a->strings["Advanced"] = ""; -$a->strings["Status"] = "Tila"; -$a->strings["Status Messages and Posts"] = "Statusviestit ja postaukset"; -$a->strings["Profile Details"] = "Profiilitiedot"; -$a->strings["Photos"] = "Kuvat"; -$a->strings["Photo Albums"] = "Valokuva-albumit"; -$a->strings["Videos"] = "Videot"; -$a->strings["Events"] = "Tapahtumat"; -$a->strings["Events and Calendar"] = "Tapahtumat ja kalenteri"; -$a->strings["Personal Notes"] = "Henkilökohtaiset tiedot"; -$a->strings["Only You Can See This"] = "Vain sinä näet tämän"; -$a->strings["l F d, Y \\@ g:i A"] = ""; -$a->strings["Starts:"] = "Alkaa:"; -$a->strings["Finishes:"] = "Päättyy:"; -$a->strings["all-day"] = "koko päivä"; -$a->strings["Jun"] = "Kes."; -$a->strings["Sept"] = "Syy."; -$a->strings["today"] = "tänään"; -$a->strings["month"] = "kuukausi"; -$a->strings["week"] = "viikko"; -$a->strings["day"] = "päivä"; -$a->strings["No events to display"] = "Ei näytettäviä tapahtumia."; -$a->strings["l, F j"] = "l, F j"; -$a->strings["Edit event"] = "Muokkaa tapahtumaa"; -$a->strings["Duplicate event"] = "Monista tapahtuma"; -$a->strings["Delete event"] = "Poista tapahtuma"; -$a->strings["D g:i A"] = ""; -$a->strings["g:i A"] = ""; -$a->strings["Show map"] = "Näytä kartta"; -$a->strings["Hide map"] = "Piilota kartta"; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = ""; -$a->strings["Default privacy group for new contacts"] = "Oletusryhmä uusille kontakteille"; -$a->strings["Everybody"] = "Kaikki"; -$a->strings["edit"] = "muokkaa"; -$a->strings["add"] = "lisää"; -$a->strings["Groups"] = "Ryhmät"; -$a->strings["Edit group"] = "Muokkaa ryhmää"; -$a->strings["Contacts not in any group"] = "Kontaktit ilman ryhmää"; -$a->strings["Create a new group"] = "Luo uusi ryhmä"; -$a->strings["Group Name: "] = "Ryhmän nimi:"; -$a->strings["Edit groups"] = "Muokkaa ryhmiä"; -$a->strings["Contact Photos"] = "Kontaktin valokuvat"; -$a->strings["Login failed"] = "Kirjautuminen epäonnistui"; -$a->strings["Not enough information to authenticate"] = ""; -$a->strings["User not found"] = "Käyttäjää ei löydy"; -$a->strings["Passwords do not match. Password unchanged."] = "Salasanat eivät täsmää. Salasana ennallaan."; -$a->strings["An invitation is required."] = ""; -$a->strings["Invitation could not be verified."] = "Kutsua ei voitu vahvistaa."; -$a->strings["Invalid OpenID url"] = "Virheellinen OpenID url-osoite"; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; -$a->strings["The error message was:"] = "Virheviesti oli:"; -$a->strings["Please enter the required information."] = "Syötä tarvittavat tiedot."; -$a->strings["Please use a shorter name."] = "Käytä lyhyempää nimeä."; -$a->strings["Name too short."] = "Nimi on liian lyhyt."; -$a->strings["That doesn't appear to be your full (First Last) name."] = ""; -$a->strings["Your email domain is not among those allowed on this site."] = "Sähköpostiosoitteesi verkkotunnus on tämän sivuston estolistalla."; -$a->strings["Not a valid email address."] = "Virheellinen sähköpostiosoite."; -$a->strings["Cannot use that email."] = "Sähköpostiosoitetta ei voitu käyttää."; -$a->strings["Your nickname can only contain a-z, 0-9 and _."] = "Nimimerkki voi sisältää a-z, 0-9 ja _."; -$a->strings["Nickname is already registered. Please choose another."] = "Valitsemasi nimimerkki on jo käytössä. Valitse toinen nimimerkki."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "VAKAVA VIRHE: Salausavainten luominen epäonnistui."; -$a->strings["An error occurred during registration. Please try again."] = "Rekisteröityminen epäonnistui. Yritä uudelleen."; -$a->strings["default"] = "oletus"; -$a->strings["An error occurred creating your default profile. Please try again."] = "Oletusprofiilin luominen epäonnistui. Yritä uudelleen."; -$a->strings["An error occurred creating your self contact. Please try again."] = ""; -$a->strings["Friends"] = "Kaverit"; -$a->strings["An error occurred creating your default contact group. Please try again."] = ""; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t\t"] = ""; -$a->strings["Registration at %s"] = "Rekisteröityminen kohteessa %s"; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t"] = ""; -$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = ""; -$a->strings["Registration details for %s"] = ""; -$a->strings["view full size"] = "näytä täysikokoisena"; -$a->strings["Image/photo"] = "Kuva/valokuva"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["$1 wrote:"] = "$1 kirjoitti:"; -$a->strings["Encrypted content"] = "Salattu sisältö"; -$a->strings["Invalid source protocol"] = "Virheellinen lähdeprotokolla"; -$a->strings["Invalid link protocol"] = "Virheellinen linkkiprotokolla"; -$a->strings["General Features"] = "Yleiset ominaisuudet"; -$a->strings["Multiple Profiles"] = ""; -$a->strings["Ability to create multiple profiles"] = ""; -$a->strings["Photo Location"] = "Kuvan sijainti"; -$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = ""; -$a->strings["Export Public Calendar"] = "Vie julkinen kalenteri"; -$a->strings["Ability for visitors to download the public calendar"] = ""; -$a->strings["Post Composition Features"] = ""; -$a->strings["Post Preview"] = "Viestin esikatselu"; -$a->strings["Allow previewing posts and comments before publishing them"] = ""; -$a->strings["Auto-mention Forums"] = ""; -$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = ""; -$a->strings["Network Sidebar Widgets"] = ""; -$a->strings["Search by Date"] = "Päivämäärähaku"; -$a->strings["Ability to select posts by date ranges"] = ""; -$a->strings["List Forums"] = "Näytä foorumit"; -$a->strings["Enable widget to display the forums your are connected with"] = ""; -$a->strings["Group Filter"] = "Ryhmäsuodatin"; -$a->strings["Enable widget to display Network posts only from selected group"] = ""; -$a->strings["Network Filter"] = "Verkkosuodatin"; -$a->strings["Enable widget to display Network posts only from selected network"] = ""; -$a->strings["Saved Searches"] = "Tallennetut haut"; -$a->strings["Save search terms for re-use"] = "Tallenna hakutermit myöhempää käyttöä varten"; -$a->strings["Network Tabs"] = "Verkko välilehdet"; -$a->strings["Network Personal Tab"] = ""; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; -$a->strings["Network New Tab"] = ""; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = ""; -$a->strings["Network Shared Links Tab"] = ""; -$a->strings["Enable tab to display only Network posts with links in them"] = ""; -$a->strings["Post/Comment Tools"] = "Julkaisu/kommentti työkalut"; -$a->strings["Multiple Deletion"] = ""; -$a->strings["Select and delete multiple posts/comments at once"] = "Valitse ja poista monta julkaisua/kommentia yhtaikaa"; -$a->strings["Edit Sent Posts"] = "Muokkaa lähetetyt julkaisut"; -$a->strings["Edit and correct posts and comments after sending"] = "Muokkaa ja korjaa julkaisuja ja kommenteja julkaisun jälkeen"; -$a->strings["Tagging"] = "Tunnisteet"; -$a->strings["Ability to tag existing posts"] = "Saa merkitä olemassa olevia julkaisuja"; -$a->strings["Post Categories"] = "Julkaisuluokat"; -$a->strings["Add categories to your posts"] = "Luokittele julkaisusi"; -$a->strings["Saved Folders"] = "Tallennetut kansiot"; -$a->strings["Ability to file posts under folders"] = ""; -$a->strings["Dislike Posts"] = ""; -$a->strings["Ability to dislike posts/comments"] = ""; -$a->strings["Star Posts"] = "Tähtimerkityt julkaisut"; -$a->strings["Ability to mark special posts with a star indicator"] = "Salli julkaisujen tähtimerkintä"; -$a->strings["Mute Post Notifications"] = "Mykistä julkaisuilmoitukset"; -$a->strings["Ability to mute notifications for a thread"] = ""; -$a->strings["Advanced Profile Settings"] = "Profiilin lisäasetukset"; -$a->strings["Show visitors public community forums at the Advanced Profile Page"] = ""; -$a->strings["Tag Cloud"] = "Tunnistepilvi"; -$a->strings["Provide a personal tag cloud on your profile page"] = "Näytä henkilökohtainen tunnistepilvi profiilisivullasi"; -$a->strings["Display Membership Date"] = "Näytä liittymispäivämäärä"; -$a->strings["Display membership date in profile"] = "Näytä liittymispäivämäärä profiilissa"; -$a->strings["Export"] = "Vie"; -$a->strings["Export calendar as ical"] = "Vie kalenteri ical -tiedostona"; -$a->strings["Export calendar as csv"] = "Vie kalenteri csv-tiedostona"; -$a->strings["Add New Contact"] = "Lisää uusi kontakti"; -$a->strings["Enter address or web location"] = "Syötä verkko-osoite"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esimerkki: bob@example.com, http://example.com/barbara"; -$a->strings["%d invitation available"] = [ - 0 => "%d kutsu saatavilla", - 1 => "%d kutsuja saatavilla", -]; -$a->strings["Find People"] = "Löydä ihmisiä"; -$a->strings["Enter name or interest"] = "Syötä nimi tai harrastus"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esim. Matti Meikäläinen, kalastus yms."; -$a->strings["Find"] = "Etsi"; -$a->strings["Friend Suggestions"] = "Ystäväehdotukset"; -$a->strings["Similar Interests"] = "Yhteiset harrastukset"; -$a->strings["Random Profile"] = "Satunnainen profiili"; -$a->strings["Invite Friends"] = "Kutsu kavereita"; -$a->strings["View Global Directory"] = "Katso maailmanlaajuista luetteloa"; -$a->strings["Networks"] = "Verkot"; -$a->strings["All Networks"] = "Kaikki verkot"; -$a->strings["Everything"] = "Kaikki"; -$a->strings["Categories"] = "Luokat"; -$a->strings["%d contact in common"] = [ - 0 => "%d yhteinen kontakti", - 1 => "%d yhteistä kontaktia", -]; -$a->strings["Frequently"] = "Usein"; -$a->strings["Hourly"] = "Tunneittain"; -$a->strings["Twice daily"] = "Kahdesti päivässä"; -$a->strings["Daily"] = "Päivittäin"; -$a->strings["Weekly"] = "Viikottain"; -$a->strings["Monthly"] = "Kuukausittain"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "Sähköposti"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = "Google+"; -$a->strings["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Diaspora -liitin"; -$a->strings["GNU Social Connector"] = "GNU social -liitin"; -$a->strings["pnut"] = "pnut"; -$a->strings["App.net"] = "App.net"; -$a->strings["Male"] = "Mies"; -$a->strings["Female"] = "Nainen"; -$a->strings["Currently Male"] = "Tällä hetkellä mies"; -$a->strings["Currently Female"] = "Tällä hetkellä nainen"; -$a->strings["Mostly Male"] = "Enimmäkseen mies"; -$a->strings["Mostly Female"] = "Enimmäkseen nainen"; -$a->strings["Transgender"] = "Transsukupuolinen"; -$a->strings["Intersex"] = "Intersukupuolinen"; -$a->strings["Transsexual"] = "Transsukupuolinen"; -$a->strings["Hermaphrodite"] = "Hermafrodiitti"; -$a->strings["Neuter"] = "Neutri"; -$a->strings["Non-specific"] = "Ei-binäärinen"; -$a->strings["Other"] = "Toinen"; -$a->strings["Males"] = "Miehet"; -$a->strings["Females"] = "Naiset"; -$a->strings["Gay"] = "Homo"; -$a->strings["Lesbian"] = "Lesbo"; -$a->strings["No Preference"] = ""; -$a->strings["Bisexual"] = "Biseksuaali"; -$a->strings["Autosexual"] = ""; -$a->strings["Abstinent"] = "Selibaatissa elävä"; -$a->strings["Virgin"] = "Neitsyt"; -$a->strings["Deviant"] = ""; -$a->strings["Fetish"] = ""; -$a->strings["Oodles"] = ""; -$a->strings["Nonsexual"] = "Aseksuaali"; -$a->strings["Single"] = "Sinkku"; -$a->strings["Lonely"] = "Yksinäinen"; -$a->strings["Available"] = ""; -$a->strings["Unavailable"] = ""; -$a->strings["Has crush"] = "Ihastunut"; -$a->strings["Infatuated"] = "Hullaantunut"; -$a->strings["Dating"] = "Seurustelee"; -$a->strings["Unfaithful"] = ""; -$a->strings["Sex Addict"] = ""; -$a->strings["Friends/Benefits"] = ""; -$a->strings["Casual"] = ""; -$a->strings["Engaged"] = "Kihloissa"; -$a->strings["Married"] = "Naimisissa"; -$a->strings["Imaginarily married"] = ""; -$a->strings["Partners"] = "Kumppanit"; -$a->strings["Cohabiting"] = "Avoliitossa"; -$a->strings["Common law"] = "Avoliitossa"; -$a->strings["Happy"] = "Iloinen"; -$a->strings["Not looking"] = "Ei etsi"; -$a->strings["Swinger"] = ""; -$a->strings["Betrayed"] = "Petetty"; -$a->strings["Separated"] = ""; -$a->strings["Unstable"] = "Epävakaa"; -$a->strings["Divorced"] = "Eronnut"; -$a->strings["Imaginarily divorced"] = ""; -$a->strings["Widowed"] = "Leski"; -$a->strings["Uncertain"] = "Epävarma"; -$a->strings["It's complicated"] = "Se on monimutkaista"; -$a->strings["Don't care"] = "Ei ole väliä"; -$a->strings["Ask me"] = "Kysy minulta"; -$a->strings["Embedding disabled"] = "Upottaminen poistettu käytöstä"; -$a->strings["Embedded content"] = "Upotettu sisältö"; -$a->strings["External link to forum"] = "Ulkoinen linkki foorumiin"; -$a->strings["Nothing new here"] = ""; -$a->strings["Clear notifications"] = "Tyhjennä ilmoitukset"; -$a->strings["Logout"] = "Kirjaudu ulos"; -$a->strings["End this session"] = "Lopeta istunto"; -$a->strings["Your posts and conversations"] = "Omat julkaisut ja keskustelut"; -$a->strings["Your profile page"] = "Oma profiilisivu"; -$a->strings["Your photos"] = "Omat kuvat"; -$a->strings["Your videos"] = "Omat videot"; -$a->strings["Your events"] = "Omat tapahtumat"; -$a->strings["Personal notes"] = ""; -$a->strings["Your personal notes"] = ""; -$a->strings["Login"] = "Kirjaudu sisään"; -$a->strings["Sign in"] = "Kirjaudu sisään"; -$a->strings["Home"] = "Koti"; -$a->strings["Home Page"] = "Kotisivu"; -$a->strings["Register"] = "Rekisteröidy"; -$a->strings["Create an account"] = "Luo tili"; -$a->strings["Help"] = "Ohje"; -$a->strings["Help and documentation"] = "Ohjeet ja dokmentointi"; -$a->strings["Apps"] = "Sovellukset"; -$a->strings["Addon applications, utilities, games"] = "Lisäosa sovelluksia, apuohjelmia, pelejä"; -$a->strings["Search site content"] = "Sivustohaku"; -$a->strings["Community"] = "Yhteisö"; -$a->strings["Conversations on this and other servers"] = "Keskustelut täällä ja muilla palvelimilla"; -$a->strings["Directory"] = "Luettelo"; -$a->strings["People directory"] = "Henkilöluettelo"; -$a->strings["Information"] = "Tietoja"; -$a->strings["Information about this friendica instance"] = "Lisätietoja tästä Friendica -instanssista"; -$a->strings["Network"] = "Verkko"; -$a->strings["Conversations from your friends"] = "Kavereiden keskustelut"; -$a->strings["Network Reset"] = "Verkon nollaus"; -$a->strings["Load Network page with no filters"] = ""; -$a->strings["Introductions"] = "Esittelyt"; -$a->strings["Friend Requests"] = "Kaveripyynnöt"; -$a->strings["Notifications"] = "Huomautukset"; -$a->strings["See all notifications"] = "Näytä kaikki ilmoitukset"; -$a->strings["Mark as seen"] = "Merkitse luetuksi"; -$a->strings["Mark all system notifications seen"] = ""; -$a->strings["Messages"] = "Viestit"; -$a->strings["Private mail"] = "Yksityinen posti"; -$a->strings["Inbox"] = "Saapuneet"; -$a->strings["Outbox"] = "Lähtevät"; -$a->strings["New Message"] = "Uusi viesti"; -$a->strings["Manage"] = "Hallitse"; -$a->strings["Manage other pages"] = "Hallitse muita sivuja"; -$a->strings["Delegations"] = ""; -$a->strings["Delegate Page Management"] = ""; -$a->strings["Settings"] = "Asetukset"; -$a->strings["Account settings"] = "Tiliasetukset"; -$a->strings["Manage/Edit Profiles"] = "Hallitse/muokka profiilit"; -$a->strings["Manage/edit friends and contacts"] = "Hallitse/muokkaa kaverit ja kontaktit"; -$a->strings["Admin"] = "Ylläpitäjä"; -$a->strings["Site setup and configuration"] = "Sivuston asennus ja asetukset"; -$a->strings["Navigation"] = "Navigointi"; -$a->strings["Site map"] = "Sivustokartta"; -$a->strings["(no subject)"] = "(ei aihetta)"; -$a->strings["Delete this item?"] = "Poista tämä kohde?"; -$a->strings["show fewer"] = "näytä vähemmän"; -$a->strings["Login failed."] = "Kirjautuminen epäonnistui"; -$a->strings["Create a New Account"] = "Luo uusi käyttäjätili"; -$a->strings["Nickname or Email: "] = "Lempinimi tai sähköposti:"; -$a->strings["Password: "] = "Salasana:"; -$a->strings["Remember me"] = "Muista minut"; -$a->strings["Or login using OpenID: "] = "Kirjaudu sisään OpenID -tunnuksella:"; -$a->strings["Forgot your password?"] = "Unohditko salasanasi?"; -$a->strings["Password Reset"] = "Salasanan nollaus"; -$a->strings["Website Terms of Service"] = "Verkkosivun käyttöehdot"; -$a->strings["terms of service"] = "käyttöehdot"; -$a->strings["Website Privacy Policy"] = "Sivuston tietosuojakäytäntö"; -$a->strings["privacy policy"] = "tietosuojakäytäntö"; -$a->strings["Terms of Service"] = "Käyttöehdot"; -$a->strings["Privacy Statement"] = "Tietosuojalausunto"; -$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = ""; -$a->strings["This data is required for communication and is passed on to the nodes of the communication partners. Users can enter additional private data that may be transmitted to the communication partners accounts."] = ""; -$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent."] = ""; -$a->strings["Logged out."] = "Kirjautunut ulos."; -$a->strings["Wall Photos"] = "Seinäkuvat"; -$a->strings["This entry was edited"] = "Tämä kohde oli muokattu"; -$a->strings["Private Message"] = "Yksityisviesti"; -$a->strings["Edit"] = "Muokkaa"; -$a->strings["save to folder"] = "tallenna kansioon"; -$a->strings["I will attend"] = "Osallistun"; -$a->strings["I will not attend"] = "En aio osallistua"; -$a->strings["I might attend"] = "Ehkä osallistun"; -$a->strings["add star"] = "lisää tähti"; -$a->strings["remove star"] = "poista tähti"; -$a->strings["toggle star status"] = "Tähtitila päälle/pois"; -$a->strings["starred"] = "tähtimerkitty"; -$a->strings["ignore thread"] = "Sivuuta keskustelu"; -$a->strings["unignore thread"] = "Seuraa keskustelua"; -$a->strings["toggle ignore status"] = "Sivuuta/seuraa"; -$a->strings["ignored"] = "ohitettu"; -$a->strings["add tag"] = "lisää tägi"; -$a->strings["I like this (toggle)"] = "Tykkään tästä (vaihda)"; -$a->strings["like"] = "tykkää"; -$a->strings["I don't like this (toggle)"] = "En tykkää tästä (vaihda)"; -$a->strings["dislike"] = "en tykkää"; -$a->strings["Share this"] = "Jaa tämä"; -$a->strings["share"] = "jaa"; -$a->strings["to"] = ""; -$a->strings["via"] = "kautta"; -$a->strings["Wall-to-Wall"] = "Seinäjulkaisu"; -$a->strings["via Wall-To-Wall:"] = "seinäjulkaisun kautta"; -$a->strings["Comment"] = "Kommentti"; -$a->strings["%d comment"] = [ - 0 => "%d kommentti", - 1 => "%d kommentteja", -]; -$a->strings["This is you"] = "Tämä olet sinä"; +$a->strings["Authorize application connection"] = "Vahvista sovellusyhteys"; +$a->strings["Return to your app and insert this Securty Code:"] = "Palaa takaisin sovellukseen ja lisää tämä turvakoodi:"; +$a->strings["Please login to continue."] = "Ole hyvä ja kirjaudu jatkaaksesi."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Haluatko antaa tälle sovellukselle luvan hakea viestejäsi ja yhteystietojasi ja/tai luoda uusia viestejä?"; +$a->strings["No"] = "Ei"; +$a->strings["You must be logged in to use addons. "] = "Sinun pitää kirjautua sisään, jotta voit käyttää lisäosia"; +$a->strings["Applications"] = "Sovellukset"; +$a->strings["No installed applications."] = "Ei asennettuja sovelluksia."; +$a->strings["Item not available."] = "Kohde ei saatavilla."; +$a->strings["Item was not found."] = "Kohdetta ei löytynyt."; +$a->strings["No contacts in common."] = "Ei yhteisiä kontakteja."; +$a->strings["Common Friends"] = "Yhteisiä kavereita"; +$a->strings["Credits"] = "Lopputekstit"; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = ""; +$a->strings["Contact settings applied."] = "Kontaktiasetukset tallennettu."; +$a->strings["Contact update failed."] = "Kontaktipäivitys epäonnistui."; +$a->strings["Contact not found."] = "Kontaktia ei ole."; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "VAROITUS: Tämä on erittäin vaativaa ja jos kirjoitat virheellisiä tietoja, viestintäsi tämän henkilön kanssa voi lakata toimimasta."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Ole hyvä ja paina selaimesi 'Takaisin'-painiketta nyt, jos olet epävarma tämän sivun toiminnoista."; +$a->strings["No mirroring"] = "Ei peilausta"; +$a->strings["Mirror as forwarded posting"] = "Peilaa välitettynä julkaisuna"; +$a->strings["Mirror as my own posting"] = "Peilaa omana julkaisuna"; +$a->strings["Return to contact editor"] = "Palaa kontaktin muokkaamiseen"; +$a->strings["Refetch contact data"] = ""; $a->strings["Submit"] = "Lähetä"; -$a->strings["Bold"] = "Lihavoitu"; -$a->strings["Italic"] = "Kursivoitu"; -$a->strings["Underline"] = "Alleviivaus"; -$a->strings["Quote"] = "Lainaus"; -$a->strings["Code"] = "Koodi"; -$a->strings["Image"] = "Kuva"; -$a->strings["Link"] = "Linkki"; -$a->strings["Video"] = "Video"; -$a->strings["There are no tables on MyISAM."] = "MyISAMissa ei ole taulukoita."; -$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\t\tFriendican kehittäjät askettäin julkaisi %s-päivityksen,\n\t\t\t\tmutta asennuksessa jotain meni pahasti pieleen.\n\t\t\t\tTämä on korjattava pian, ja en voi korjata sitä itse. Ota yhteyttä\n\t\t\t\tFriendica -kehittäjään jos et voi auttaa. Tietokantani saattaa olla virheellinen."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "Virheviesti on\n[pre]%s[/pre]"; -$a->strings["\nError %d occurred during database update:\n%s\n"] = "\n%d virhe tapahtui tietokannan päivityksen aikana:\n%s\n"; -$a->strings["Errors encountered performing database changes: "] = "Tietokannan muokkauksessa tapahtui virheitä:"; -$a->strings[": Database update"] = ": Tietokannan päivitys"; -$a->strings["%s: updating %s table."] = "%s: päivitetään %s-taulukkoa."; -$a->strings["Error decoding account file"] = ""; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Virhe: tiedostosta puuttuu versiotiedot! Saattaa olla että tämä ei ole Friendica -tilitiedosto?"; -$a->strings["User '%s' already exists on this server!"] = "Käyttäjä '%s' on jo olemassa tällä palvelimella!"; -$a->strings["User creation error"] = "Virhe käyttäjän luomisessa"; -$a->strings["User profile creation error"] = "Virhe käyttäjäprofiilin luomisessa"; -$a->strings["%d contact not imported"] = [ - 0 => "%d kontakti ei tuotu", - 1 => "%d kontakteja ei tuotu", -]; -$a->strings["Done. You can now login with your username and password"] = "Suoritettu. Voit nyt kirjautua sisään käyttäjätunnuksellasi."; -$a->strings["The new password has been exposed in a public data dump, please choose another."] = ""; -$a->strings["Password update failed. Please try again."] = "Salasanan vaihto epäonnistui. Yritä uudelleen."; -$a->strings["Password changed."] = "Salasana vaihdettu."; -$a->strings["Could not find any contact entry for this URL (%s)"] = ""; -$a->strings["The contact has been blocked from the node"] = "Kontakti on estetty tällä solmulla"; -$a->strings["Post to Email"] = "Viesti sähköpostiin"; -$a->strings["Hide your profile details from unknown viewers?"] = "Piilota profiilitietosi tuntemattomilta?"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; -$a->strings["Visible to everybody"] = "Näkyvissä kaikille"; -$a->strings["show"] = "näytä"; -$a->strings["don't show"] = "älä näytä"; -$a->strings["CC: email addresses"] = "Kopio: sähköpostiosoitteet"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Esimerkki: bob@example.com, mary@example.com"; -$a->strings["Permissions"] = "Käyttöoikeudet"; -$a->strings["Close"] = "Sulje"; -$a->strings["System"] = "Järjestelmä"; -$a->strings["Personal"] = "Henkilökohtainen"; -$a->strings["%s commented on %s's post"] = "%s kommentoi julkaisuun jonka kirjoitti %s"; -$a->strings["%s created a new post"] = "%s loi uuden julkaisun"; -$a->strings["%s liked %s's post"] = "%s tykkäsi julkaisusta jonka kirjoitti %s"; -$a->strings["%s disliked %s's post"] = "%s ei tykännyt julkaisusta jonka kirjoitti %s"; -$a->strings["%s is attending %s's event"] = "%s osallistuu tapahtumaan jonka järjestää %s"; -$a->strings["%s is not attending %s's event"] = "%s ei osallistu tapahtumaan jonka järjestää %s"; -$a->strings["%s may attend %s's event"] = "%s ehkä osallistuu tapahtumaan jonka järjestää %s"; -$a->strings["%s is now friends with %s"] = "%s ja %s ovat kavereita"; -$a->strings["Friend Suggestion"] = "Kaveriehdotus"; -$a->strings["Friend/Connect Request"] = "Ystävä/yhteyspyyntö"; -$a->strings["New Follower"] = "Uusi seuraaja"; -$a->strings["Miscellaneous"] = "Sekalaista"; -$a->strings["Age: "] = "Ikä:"; -$a->strings["YYYY-MM-DD or MM-DD"] = "VVVV-KK-PP tai KK-PP"; -$a->strings["never"] = "ei ikinä"; -$a->strings["less than a second ago"] = "alle sekunti sitten"; -$a->strings["year"] = "vuosi"; -$a->strings["years"] = "vuotta"; -$a->strings["months"] = "kuukautta"; -$a->strings["weeks"] = "viikkoa"; -$a->strings["days"] = "päivää"; -$a->strings["hour"] = "tunti"; -$a->strings["hours"] = "tuntia"; -$a->strings["minute"] = "minuutti"; -$a->strings["minutes"] = "inuuttia"; -$a->strings["second"] = "sekunti"; -$a->strings["seconds"] = "sekuntia"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s sitten"; -$a->strings["%s's timeline"] = "%s: aikajana"; -$a->strings["%s's posts"] = "%s: julkaisut"; -$a->strings["%s's comments"] = "%s: kommentit"; -$a->strings["%s is now following %s."] = "%s seuraa %s."; -$a->strings["following"] = "seuraa"; -$a->strings["%s stopped following %s."] = "%s ei enää seuraa %s."; -$a->strings["stopped following"] = "ei enää seuraa"; -$a->strings["Sharing notification from Diaspora network"] = ""; -$a->strings["Attachments:"] = "Liitteitä:"; -$a->strings["Public access denied."] = "Julkinen käyttö estetty."; -$a->strings["Global Directory"] = "Maailmanlaajuinen hakemisto"; -$a->strings["Find on this site"] = ""; -$a->strings["Results for:"] = "Tulokset haulla:"; -$a->strings["Site Directory"] = "Sivuston luettelo"; -$a->strings["No entries (some entries may be hidden)."] = ""; -$a->strings["People Search - %s"] = "Käyttäjähaku - %s"; -$a->strings["Forum Search - %s"] = "Foorumihaku - %s"; -$a->strings["No matches"] = "Ei täsmääviä profiileja"; +$a->strings["Remote Self"] = ""; +$a->strings["Mirror postings from this contact"] = "Peilaa tämän kontaktin julkaisut"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = ""; +$a->strings["Name"] = "Nimi"; +$a->strings["Account Nickname"] = "Tilin lempinimi"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - ohittaa Nimen/Nimimerkin"; +$a->strings["Account URL"] = "Tilin URL-osoite"; +$a->strings["Friend Request URL"] = "URL kaveripyyntöä varten"; +$a->strings["Friend Confirm URL"] = "URL kaverin vahvistusta varten"; +$a->strings["Notification Endpoint URL"] = "URL huomautuksia varten"; +$a->strings["Poll/Feed URL"] = "URL äänestyksiä/syötteitä varten"; +$a->strings["New photo from this URL"] = "Uusi kuva osoitteesta"; +$a->strings["Photos"] = "Kuvat"; +$a->strings["Contact Photos"] = "Kontaktin valokuvat"; +$a->strings["Upload"] = "Lähetä"; +$a->strings["Files"] = "Tiedostot"; +$a->strings["Not Found"] = "Ei löydetty"; +$a->strings["No profile"] = "Ei profiilia"; +$a->strings["Help:"] = "Ohje:"; +$a->strings["Help"] = "Ohje"; +$a->strings["Page not found."] = "Sivua ei löytynyt."; +$a->strings["Welcome to %s"] = "Tervetuloa %s"; +$a->strings["Remote privacy information not available."] = "Yksityisyyden etätietoja ei saatavilla."; +$a->strings["Visible to:"] = "Näkyvissä:"; +$a->strings["System down for maintenance"] = "Järjestelmä poiskytketty huoltoa varten"; +$a->strings["Welcome to Friendica"] = "Tervetuloa Friendicaan"; +$a->strings["New Member Checklist"] = "Uuden jäsenen tarkistuslista"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = ""; +$a->strings["Getting Started"] = "Ensiaskeleet"; +$a->strings["Friendica Walk-Through"] = "Friendica -läpikäynti"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = ""; +$a->strings["Settings"] = "Asetukset"; +$a->strings["Go to Your Settings"] = "Omat Asetukset"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = ""; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = ""; +$a->strings["Profile"] = "Profiili"; +$a->strings["Upload Profile Photo"] = "Lataa profiilikuva"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = ""; +$a->strings["Edit Your Profile"] = "Muokkaa profiilisi"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = ""; +$a->strings["Profile Keywords"] = "Profiilin avainsanat"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = ""; +$a->strings["Connecting"] = "Yhdistetään"; +$a->strings["Importing Emails"] = "Sähköpostin tuominen"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = ""; +$a->strings["Go to Your Contacts Page"] = "Näytä minun kontaktit"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = ""; +$a->strings["Go to Your Site's Directory"] = "Näytä oman sivuston luettelo"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = ""; +$a->strings["Finding New People"] = "Kavereiden hankkiminen"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = ""; +$a->strings["Groups"] = "Ryhmät"; +$a->strings["Group Your Contacts"] = "Järjestä kontaktit ryhmiin"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = ""; +$a->strings["Why Aren't My Posts Public?"] = "Miksi julkaisuni eivät ole julkisia?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = ""; +$a->strings["Getting Help"] = "Avun saaminen"; +$a->strings["Go to the Help Section"] = "Näytä ohjeet"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = ""; +$a->strings["Visit %s's profile [%s]"] = "Näytä %s-käyttäjän profiili [%s]"; +$a->strings["Edit contact"] = "Muokkaa kontaktia"; +$a->strings["Contacts who are not members of a group"] = "Kontaktit jotka eivät kuulu ryhmään"; +$a->strings["Not Extended"] = "Ei laajennettu"; $a->strings["Resubscribing to OStatus contacts"] = ""; $a->strings["Error"] = "Virhe"; $a->strings["Done"] = "Valmis"; $a->strings["Keep this window open until done."] = "Pidä tämä ikkuna auki kunnes kaikki tehtävät on suoritettu."; -$a->strings["{0} wants to be your friend"] = "{0} lähetti kaveripyynnön"; -$a->strings["{0} sent you a message"] = "{0} lähetti sinulle viestin"; -$a->strings["{0} requested registration"] = "{0} jätti rekisteröintipyynnön"; $a->strings["Do you really want to delete this suggestion?"] = "Haluatko varmasti poistaa ehdotuksen?"; $a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Ehdotuksia ei löydy. Jos tämä on uusi sivusto, kokeile uudelleen vuorokauden kuluttua."; $a->strings["Ignore/Hide"] = "Jätä huomiotta/piilota"; -$a->strings["Access to this profile has been restricted."] = "Pääsy tähän profiiliin on rajoitettu"; -$a->strings["Image uploaded but image cropping failed."] = "Kuva ladattu mutta kuvan rajaus epäonnistui."; -$a->strings["Image size reduction [%s] failed."] = "Kuvan pienentäminen [%s] epäonnistui."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Jos kuva ei näy heti, lataa sivu uudelleen tai tyhjennä selaimen välimuisti."; -$a->strings["Unable to process image"] = "Kuvan käsitteleminen epäonnistui"; -$a->strings["Image exceeds size limit of %s"] = "Kuva ylittää kokorajoituksen %s"; -$a->strings["Unable to process image."] = "Kuvan käsitteleminen epäonnistui."; -$a->strings["Upload File:"] = "Lähetä tiedosto:"; -$a->strings["Select a profile:"] = "Valitse profiili:"; -$a->strings["Upload Profile Photo"] = "Lataa profiilikuva"; -$a->strings["Upload"] = "Lähetä"; -$a->strings["or"] = "tai"; -$a->strings["skip this step"] = "ohita tämä vaihe"; -$a->strings["select a photo from your photo albums"] = "valitse kuva albumeistasi"; -$a->strings["Crop Image"] = "Rajaa kuva"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Rajaa kuva sopivasti."; -$a->strings["Done Editing"] = "Lopeta muokkaus"; -$a->strings["Image uploaded successfully."] = "Kuvan lähettäminen onnistui."; -$a->strings["Image upload failed."] = "Kuvan lähettäminen epäonnistui."; -$a->strings["User deleted their account"] = "Käyttäjä poisti tilinsä"; -$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "Friendica -solmullasi käyttäjä poisti tilinsä. Varmista että hänen tiedot poistetaan myös varmuuskopioista."; -$a->strings["The user id is %d"] = ""; -$a->strings["Remove My Account"] = "Poista tilini"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Tämä poistaa käyttäjätilisi pysyvästi. Poistoa ei voi perua myöhemmin."; -$a->strings["Please enter your password for verification:"] = "Syötä salasanasi varmistusta varten:"; -$a->strings["Manage Identities and/or Pages"] = "Hallitse identiteetit ja/tai sivut"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = ""; -$a->strings["Select an identity to manage: "] = "Valitse identiteetti hallitavaksi:"; +$a->strings["Friend Suggestions"] = "Ystäväehdotukset"; $a->strings["[Embedded content - reload page to view]"] = "[Upotettu sisältö - näet sen päivittämällä sivun]"; $a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Sivuston päivittäinen rekisteröintiraja ylitetty. Yritä uudelleen huomenna."; $a->strings["Import"] = "Tuo"; @@ -844,70 +386,491 @@ $a->strings["You need to export your account from the old server and upload it h $a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Tämä on kokeellinen ominaisuus. Emme voi tuoda kontakteja OStatus-verkolta (GNU social/Statusnet) tai Diasporalta."; $a->strings["Account file"] = "Tilitiedosto"; $a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; -$a->strings["Total invitation limit exceeded."] = "Kutsuraja ylitetty."; -$a->strings["%s : Not a valid email address."] = "%s : Virheellinen sähköpostiosoite."; -$a->strings["Please join us on Friendica"] = "Tervetuloa Friendicaan"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Kutsuraja ylitetty. Ota yhteyttä ylläpitäjään."; -$a->strings["%s : Message delivery failed."] = "%s : Viestin toimitus epäonnistui."; -$a->strings["%d message sent."] = [ - 0 => "%d viesti lähetetty.", - 1 => "%d viestiä lähetetty.", -]; -$a->strings["You have no more invitations available"] = "Sinulla ei ole kutsuja jäljellä"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = ""; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = ""; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = ""; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = ""; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = ""; -$a->strings["To accept this invitation, please visit and register at %s."] = ""; -$a->strings["Send invitations"] = "Lähetä kutsut"; -$a->strings["Enter email addresses, one per line:"] = "Syötä sähköpostiosoitteet, yksi riviä kohden:"; -$a->strings["Your message:"] = "Viestisi:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = ""; -$a->strings["You will need to supply this invitation code: \$invite_code"] = ""; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Kun olet rekisteröitynyt, lähetä minulle kaverikutsun profiilisivuni kautta:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = ""; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s toivottaa tervetulleeksi ystävän %2\$s"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Avainsanat puuttuu. Lisää avainsanoja oletusprofiiliisi."; +$a->strings["is interested in:"] = "on kiinnostunut seuraavista aiheista:"; +$a->strings["Profile Match"] = "Vastaavien profiilien haku"; +$a->strings["No matches"] = "Ei täsmääviä profiileja"; +$a->strings["Invalid request identifier."] = "Virheellinen pyyntötunniste."; +$a->strings["Discard"] = "Hylkää"; +$a->strings["Ignore"] = "Jätä huomiotta"; +$a->strings["Notifications"] = "Huomautukset"; +$a->strings["Network Notifications"] = "Verkkoilmoitukset"; +$a->strings["System Notifications"] = "Järjestelmäilmoitukset"; +$a->strings["Personal Notifications"] = "Henkilökohtaiset ilmoitukset"; +$a->strings["Home Notifications"] = "Koti-ilmoitukset"; +$a->strings["Show Ignored Requests"] = "Näytä ohitetut pyynnöt"; +$a->strings["Hide Ignored Requests"] = "Piilota ohitetut pyynnöt"; +$a->strings["Notification type: "] = "Ilmoitustyyppi:"; +$a->strings["suggested by %s"] = "ehdottaa %s"; +$a->strings["Hide this contact from others"] = "Piilota kontakti muilta"; +$a->strings["Post a new friend activity"] = ""; +$a->strings["if applicable"] = "tarvittaessa"; +$a->strings["Approve"] = "Hyväksy"; +$a->strings["Claims to be known to you: "] = "Väittää tuntevansa sinut:"; +$a->strings["yes"] = "kyllä"; +$a->strings["no"] = "ei"; +$a->strings["Shall your connection be bidirectional or not?"] = "Kaksisuuntainen yhteys?"; +$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = ""; +$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = ""; +$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = ""; +$a->strings["Friend"] = "Kaveri"; +$a->strings["Sharer"] = "Jakaja"; +$a->strings["Subscriber"] = "Tilaaja"; +$a->strings["Location:"] = "Sijainti:"; +$a->strings["About:"] = "Lisätietoja:"; +$a->strings["Tags:"] = "Tunnisteet:"; +$a->strings["Gender:"] = "Sukupuoli:"; +$a->strings["Profile URL"] = "Profiilin URL"; +$a->strings["Network:"] = "Verkko:"; +$a->strings["No introductions."] = "Ei esittelyjä."; +$a->strings["Show unread"] = "Näytä lukemattomat"; +$a->strings["Show all"] = "Näytä kaikki"; +$a->strings["No more %s notifications."] = "Ei muita %s ilmoituksia."; $a->strings["OpenID protocol error. No ID returned."] = "OpenID -protokollavirhe. Tunnusta ei vastaanotettu."; $a->strings["Account not found and OpenID registration is not permitted on this site."] = "Käyttäjätiliä ei löytynyt. Rekisteröityminen OpenID:n kautta ei ole sallittua tällä sivustolla."; -$a->strings["No profile"] = "Ei profiilia"; -$a->strings["You must be logged in to use addons. "] = "Sinun pitää kirjautua sisään, jotta voit käyttää lisäosia"; -$a->strings["Applications"] = "Sovellukset"; -$a->strings["No installed applications."] = "Ei asennettuja sovelluksia."; -$a->strings["Remove term"] = "Poista kohde"; -$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [ +$a->strings["Login failed."] = "Kirjautuminen epäonnistui"; +$a->strings["Profile not found."] = "Profiilia ei löytynyt."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = ""; +$a->strings["Response from remote site was not understood."] = "Etäsivuston vastaus oli epäselvä."; +$a->strings["Unexpected response from remote site: "] = "Odottamaton vastaus etäsivustolta:"; +$a->strings["Confirmation completed successfully."] = "Vahvistus onnistui."; +$a->strings["Temporary failure. Please wait and try again."] = "Tilapäinen vika. Yritä myöhemmin uudelleen."; +$a->strings["Introduction failed or was revoked."] = "Kaverikutsu epäonnistui tai oli peruutettu."; +$a->strings["Remote site reported: "] = ""; +$a->strings["Unable to set contact photo."] = "Kontaktin kuvaa ei voitu asettaa"; +$a->strings["No user record found for '%s' "] = ""; +$a->strings["Our site encryption key is apparently messed up."] = "Sivustomme salausavain on sekaisin."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = ""; +$a->strings["Contact record was not found for you on our site."] = ""; +$a->strings["Site public key not available in contact record for URL %s."] = ""; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = ""; +$a->strings["Unable to set your contact credentials on our system."] = ""; +$a->strings["Unable to update your contact profile details on our system"] = ""; +$a->strings["[Name Withheld]"] = "[Nimi jätetty pois]"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s on liittynyt kohteeseen %2\$s"; +$a->strings["Manage Identities and/or Pages"] = "Hallitse identiteetit ja/tai sivut"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = ""; +$a->strings["Select an identity to manage: "] = "Valitse identiteetti hallitavaksi:"; +$a->strings["Invalid request."] = "Virheellinen pyyntö."; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = ""; +$a->strings["Or - did you try to upload an empty file?"] = "Yrititkö ladata tyhjän tiedoston?"; +$a->strings["File exceeds size limit of %s"] = "Tiedosto ylittää kokorajoituksen %s"; +$a->strings["File upload failed."] = "Tiedoston lähettäminen epäonnistui."; +$a->strings["This introduction has already been accepted."] = "Tämä esittely on jo hyväksytty."; +$a->strings["Profile location is not valid or does not contain profile information."] = "Profiilin sijainti on viallinen tai se ei sisällä profiilitietoja."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Varoitus: profiilin sijainnissa ei ole tunnistettavaa omistajan nimeä."; +$a->strings["Warning: profile location has no profile photo."] = "Varoitus: profiilin sijainnissa ei ole profiilikuvaa."; +$a->strings["%d required parameter was not found at the given location"] = [ 0 => "", 1 => "", ]; -$a->strings["Messages in this group won't be send to these receivers."] = ""; -$a->strings["No such group"] = "Ryhmä ei ole olemassa"; -$a->strings["Group is empty"] = "Ryhmä on tyhjä"; -$a->strings["Group: %s"] = "Ryhmä: %s"; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Yksityisviestit lähetetty tälle henkilölle saattaa näkyä muillekin."; -$a->strings["Invalid contact."] = "Virheellinen kontakti."; -$a->strings["Commented Order"] = "Järjestä viimeisimpien kommenttien mukaan"; -$a->strings["Sort by Comment Date"] = "Kommentit päivämäärän mukaan"; -$a->strings["Posted Order"] = "Järjestä julkaisupäivämäärän mukaan"; -$a->strings["Sort by Post Date"] = "Julkaisut päivämäärän mukaan"; -$a->strings["Posts that mention or involve you"] = "Julkaisut jotka liittyvät sinuun"; -$a->strings["New"] = "Uusi"; -$a->strings["Activity Stream - by date"] = ""; -$a->strings["Shared Links"] = "Jaetut linkit"; -$a->strings["Interesting Links"] = "Kiinnostavat linkit"; -$a->strings["Starred"] = "Tähtimerkitty"; -$a->strings["Favourite Posts"] = "Lempijulkaisut"; -$a->strings["This is Friendica, version"] = "Tämä on Friendica, versio"; -$a->strings["running at web location"] = "käynnissä osoitteessa"; -$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = "Vieraile osoitteessa Friendi.ca saadaksesi lisätietoja Friendica- projektista."; -$a->strings["Bug reports and issues: please visit"] = "Bugiraportit ja kysymykset: vieraile osoitteessa"; -$a->strings["the bugtracker at github"] = "githubin bugtrackeri"; -$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Ehdotukset ja palaute: lähetä sähköposti osoitteeseen \"info\" at \"friendi - piste - ca"; -$a->strings["Installed addons/apps:"] = "Asennettu lisäosat/sovellukset:"; -$a->strings["No installed addons/apps"] = "Ei asennettuja lisäosia/sovelluksia"; -$a->strings["Read about the Terms of Service of this node."] = "Lue tämän solmun käyttöehdot."; -$a->strings["On this server the following remote servers are blocked."] = "Tällä palvelimella seuraavat etäpalvelimet ovat estetty."; -$a->strings["Reason for the block"] = "Eston syy"; +$a->strings["Introduction complete."] = "Esittely valmis."; +$a->strings["Unrecoverable protocol error."] = "Vakava protokollavirhe."; +$a->strings["Profile unavailable."] = "Profiili ei saatavilla."; +$a->strings["%s has received too many connection requests today."] = "%s on saanut liikaa yhteyspyyntöjä tänään."; +$a->strings["Spam protection measures have been invoked."] = "Roskapostisuojaukset otettu käyttöön."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Ystäviä suositellaan yrittämään uudelleen vuorokauden sisällä."; +$a->strings["Invalid locator"] = "Viallinen paikannin"; +$a->strings["You have already introduced yourself here."] = "Olet jo esitellyt itsesi täällä."; +$a->strings["Apparently you are already friends with %s."] = "Ilmeisesti olet jo ystävystynyt henkilön %s kanssa."; +$a->strings["Invalid profile URL."] = "Viallinen profiiliosoite."; +$a->strings["Disallowed profile URL."] = "Kielletty profiiliosoite."; +$a->strings["Blocked domain"] = "Estetty verkkotunnus"; +$a->strings["Failed to update contact record."] = "Kontaktitietojen päivitys epäonnistui."; +$a->strings["Your introduction has been sent."] = "Esittelysi lähetettiin."; +$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = ""; +$a->strings["Please login to confirm introduction."] = "Kirjaudu vahvistaaksesi esittelysi."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Väärä identiteetti kirjautuneena sisään. Kirjaudu tähän profiiliin."; +$a->strings["Confirm"] = "Vahvista"; +$a->strings["Hide this contact"] = "Piilota kontakti"; +$a->strings["Welcome home %s."] = "Tervetuloa kotiin %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Vahvista esittelysi/yhteyspyyntösi henkilölle %s."; +$a->strings["Public access denied."] = "Julkinen käyttö estetty."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Anna \"henkilöllisyysosoitteesi\" joissakin seuraavista tuetuista viestintäverkoista:"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = ""; +$a->strings["Friend/Connection Request"] = "Ystävä/yhteyspyyntö"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"] = "Esim. jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"; +$a->strings["Please answer the following:"] = "Vastaa seuraavaan:"; +$a->strings["Does %s know you?"] = "Tunteeko %s sinut?"; +$a->strings["Add a personal note:"] = "Lisää oma merkintä:"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["GNU Social (Pleroma, Mastodon)"] = "GNU Social (Pleroma, Mastodon)"; +$a->strings["Diaspora (Socialhome, Hubzilla)"] = "Diaspora (Socialhome, Hubzilla)"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - älä käytä tätä lomaketta. Kirjoita sen sijaan %s Diaspora-hakupalkkiisi."; +$a->strings["Your Identity Address:"] = "Identiteettisi osoite:"; +$a->strings["Submit Request"] = "Lähetä pyyntö"; +$a->strings["- select -"] = "- valitse -"; +$a->strings["l F d, Y \\@ g:i A"] = ""; +$a->strings["Time Conversion"] = "Aikamuunnos"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = ""; +$a->strings["UTC time: %s"] = "UTC-aika: %s"; +$a->strings["Current timezone: %s"] = "Aikavyöhyke: %s"; +$a->strings["Converted localtime: %s"] = "Muunnettu paikallisaika: %s"; +$a->strings["Please select your timezone:"] = "Valitse aikavyöhykkeesi:"; +$a->strings["No more system notifications."] = "Ei enää järjestelmäilmoituksia."; +$a->strings["{0} wants to be your friend"] = "{0} lähetti kaveripyynnön"; +$a->strings["{0} sent you a message"] = "{0} lähetti sinulle viestin"; +$a->strings["{0} requested registration"] = "{0} jätti rekisteröintipyynnön"; +$a->strings["Poke/Prod"] = "Tökkää"; +$a->strings["poke, prod or do other things to somebody"] = ""; +$a->strings["Recipient"] = "Vastaanottaja"; +$a->strings["Choose what you wish to do to recipient"] = "Valitse mitä haluat tehdä vastaanottajalle"; +$a->strings["Make this post private"] = "Muuta julkaisu yksityiseksi"; +$a->strings["Only logged in users are permitted to perform a probing."] = ""; +$a->strings["Permission denied"] = "Käyttöoikeus evätty"; +$a->strings["Invalid profile identifier."] = "Virheellinen profiilitunniste."; +$a->strings["Profile Visibility Editor"] = "Profiilin näkyvyyden muokkaaminen"; +$a->strings["Click on a contact to add or remove."] = "Valitse kontakti, jota haluat poistaa tai lisätä."; +$a->strings["Visible To"] = "Näkyvyys"; +$a->strings["All Contacts (with secure profile access)"] = ""; +$a->strings["Account approved."] = "Tili hyväksytty."; +$a->strings["Registration revoked for %s"] = ""; +$a->strings["Please login."] = "Ole hyvä ja kirjaudu."; +$a->strings["Remove term"] = "Poista kohde"; +$a->strings["Saved Searches"] = "Tallennetut haut"; +$a->strings["Only logged in users are permitted to perform a search."] = ""; +$a->strings["Too Many Requests"] = "Liian monta pyyntöä"; +$a->strings["Only one search per minute is permitted for not logged in users."] = ""; +$a->strings["No results."] = "Ei tuloksia."; +$a->strings["Items tagged with: %s"] = "Kohteet joilla tunnisteet: %s"; +$a->strings["Results for: %s"] = "Tulokset haulla: %s"; $a->strings["%1\$s is following %2\$s's %3\$s"] = ""; -$a->strings["Profile not found."] = "Profiilia ei löytynyt."; +$a->strings["Tag removed"] = "Tägi poistettiin"; +$a->strings["Remove Item Tag"] = "Poista tägi"; +$a->strings["Select a tag to remove: "] = "Valitse tägi poistamista varten:"; +$a->strings["Remove"] = "Poista"; +$a->strings["Export account"] = "Vie tili"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Vie tilin tiedot ja yhteystiedot. Käytä tätä tilisi varmuuskopiointiin ja/tai siirtämiseen toiselle palvelimelle."; +$a->strings["Export all"] = "Vie kaikki"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Vie tilin tiedot, yhteystiedot ja kaikki nimikkeesi json-muodossa. Saattaa luoda hyvin suuren tiedoston ja kestää todella pitkään. Tämän avulla voit ottaa täydellisen varmuuskopion tilistäsi (valokuvia ei viedä)"; +$a->strings["Export personal data"] = "Vie henkilökohtaiset tiedot"; +$a->strings["No contacts."] = "Ei kontakteja."; +$a->strings["Access denied."] = "Käyttö estetty."; +$a->strings["Image exceeds size limit of %s"] = "Kuva ylittää kokorajoituksen %s"; +$a->strings["Unable to process image."] = "Kuvan käsitteleminen epäonnistui."; +$a->strings["Wall Photos"] = "Seinäkuvat"; +$a->strings["Image upload failed."] = "Kuvan lähettäminen epäonnistui."; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "%s-käyttäjän päivittäinen seinäviestiraja ylitetty. Viestin lähettäminen epäonnistui."; +$a->strings["No recipient selected."] = "Vastaanottaja puuttuu."; +$a->strings["Unable to check your home location."] = "Kotisijaintisi ei voitu tarkistaa."; +$a->strings["Message could not be sent."] = "Viestiä ei voitu lähettää."; +$a->strings["Message collection failure."] = "Viestin noutaminen epäonnistui."; +$a->strings["Message sent."] = "Viesti lähetetty."; +$a->strings["No recipient."] = "Vastaanottaja puuttuu."; +$a->strings["Send Private Message"] = "Lähetä yksityisviesti"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = ""; +$a->strings["To:"] = "Vastaanottaja:"; +$a->strings["Subject:"] = "Aihe:"; +$a->strings["Your message:"] = "Viestisi:"; +$a->strings["Login"] = "Kirjaudu sisään"; +$a->strings["The post was created"] = "Julkaisu luotu"; +$a->strings["Item not found"] = "Kohdetta ei löytynyt"; +$a->strings["Edit post"] = "Muokkaa viestiä"; +$a->strings["CC: email addresses"] = "Kopio: sähköpostiosoitteet"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Esimerkki: bob@example.com, mary@example.com"; +$a->strings["Friend suggestion sent."] = "Ystäväehdotus lähetettiin."; +$a->strings["Suggest Friends"] = "Ehdota ystäviä"; +$a->strings["Suggest a friend for %s"] = "Ehdota ystävää ystävälle %s"; +$a->strings["Group created."] = "Ryhmä luotu."; +$a->strings["Could not create group."] = "Ryhmää ei voitu luoda."; +$a->strings["Group not found."] = "Ryhmää ei löytynyt."; +$a->strings["Group name changed."] = "Ryhmän nimi muutettu."; +$a->strings["Save Group"] = "Tallenna ryhmä"; +$a->strings["Create a group of contacts/friends."] = "Luo kontakti/kaveriryhmä"; +$a->strings["Group Name: "] = "Ryhmän nimi:"; +$a->strings["Group removed."] = "Ryhmä poistettu."; +$a->strings["Unable to remove group."] = "Ryhmää ei voida poistaa."; +$a->strings["Delete Group"] = "Poista ryhmä"; +$a->strings["Group Editor"] = "Ryhmien muokkausta"; +$a->strings["Edit Group Name"] = "Muokkaa ryhmän nimeä"; +$a->strings["Members"] = "Jäsenet"; +$a->strings["All Contacts"] = "Kaikki yhteystiedot"; +$a->strings["Group is empty"] = "Ryhmä on tyhjä"; +$a->strings["Remove Contact"] = "Poista kontakti"; +$a->strings["Add Contact"] = "Lisää kontakti"; +$a->strings["New Message"] = "Uusi viesti"; +$a->strings["Unable to locate contact information."] = "Kontaktin tiedot ei löydy."; +$a->strings["Messages"] = "Viestit"; +$a->strings["Do you really want to delete this message?"] = "Haluatko varmasti poistaa viestin?"; +$a->strings["Message deleted."] = "Viesti poistettu."; +$a->strings["Conversation removed."] = "Keskustelu poistettu."; +$a->strings["No messages."] = "Ei viestejä."; +$a->strings["Message not available."] = "Viesti ei saatavilla."; +$a->strings["Delete message"] = "Poista viesti"; +$a->strings["D, d M Y - g:i A"] = ""; +$a->strings["Delete conversation"] = "Poista keskustelu"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; +$a->strings["Send Reply"] = "Lähetä vastaus"; +$a->strings["Unknown sender - %s"] = "Tuntematon lähettäjä - %s"; +$a->strings["You and %s"] = "Sinä ja %s"; +$a->strings["%s and You"] = "%s ja sinä"; +$a->strings["%d message"] = [ + 0 => "%d viesti", + 1 => "%d viestiä", +]; +$a->strings["Personal Notes"] = "Henkilökohtaiset tiedot"; +$a->strings["Photo Albums"] = "Valokuva-albumit"; +$a->strings["Recent Photos"] = "Viimeaikaisia kuvia"; +$a->strings["Upload New Photos"] = "Lähetä uusia kuvia"; +$a->strings["everybody"] = "kaikki"; +$a->strings["Contact information unavailable"] = "Kontaktin tietoja ei saatavilla"; +$a->strings["Album not found."] = "Albumia ei ole."; +$a->strings["Delete Album"] = "Poista albumi"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Haluatko varmasti poistaa tämän albumin ja kaikki sen kuvat?"; +$a->strings["Delete Photo"] = "Poista valokuva"; +$a->strings["Do you really want to delete this photo?"] = "Haluatko varmasti poistaa kuvan?"; +$a->strings["a photo"] = "valokuva"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s merkattiin kuvaan %2\$s ystävän %3\$s toimesta"; +$a->strings["Image upload didn't complete, please try again"] = "Kuvan lataus ei onnistunut, yritä uudelleen"; +$a->strings["Image file is missing"] = "Kuvatiedosto puuttuu"; +$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = ""; +$a->strings["Image file is empty."] = "Kuvatiedosto on tyhjä."; +$a->strings["No photos selected"] = "Ei valittuja kuvia"; +$a->strings["Access to this item is restricted."] = "Pääsy kohteeseen on rajoitettu."; +$a->strings["Upload Photos"] = "Lähetä kuvia"; +$a->strings["New album name: "] = "Albumin uusi nimi: "; +$a->strings["or existing album name: "] = "tai olemassaolevan albumin nimi: "; +$a->strings["Do not show a status post for this upload"] = "Älä näytä tilaviestiä tälle lähetykselle"; +$a->strings["Permissions"] = "Käyttöoikeudet"; +$a->strings["Show to Groups"] = "Näytä ryhmille"; +$a->strings["Show to Contacts"] = "Näytä kontakteille"; +$a->strings["Edit Album"] = "Muokkaa albumia"; +$a->strings["Show Newest First"] = "Näytä uusin ensin"; +$a->strings["Show Oldest First"] = "Näytä vanhin ensin"; +$a->strings["View Photo"] = "Näytä kuva"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Estetty. Tämän kohteen käyttöä on saatettu rajoittaa."; +$a->strings["Photo not available"] = "Kuva ei ole saatavilla"; +$a->strings["View photo"] = "Näytä kuva"; +$a->strings["Edit photo"] = "Muokkaa kuvaa"; +$a->strings["Use as profile photo"] = "Käytä profiilikuvana"; +$a->strings["Private Message"] = "Yksityisviesti"; +$a->strings["View Full Size"] = "Näytä täysikokoisena"; +$a->strings["Tags: "] = "Merkinnät:"; +$a->strings["[Remove any tag]"] = "[Poista mikä tahansa merkintä]"; +$a->strings["New album name"] = "Uusi nimi albumille"; +$a->strings["Caption"] = "Kuvateksti"; +$a->strings["Add a Tag"] = "Lisää merkintä"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Esimerkki: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Do not rotate"] = "Älä kierrä"; +$a->strings["Rotate CW (right)"] = "Käännä oikealle"; +$a->strings["Rotate CCW (left)"] = "Käännä vasemmalle"; +$a->strings["I like this (toggle)"] = "Tykkään tästä (vaihda)"; +$a->strings["I don't like this (toggle)"] = "En tykkää tästä (vaihda)"; +$a->strings["This is you"] = "Tämä olet sinä"; +$a->strings["Comment"] = "Kommentti"; +$a->strings["Map"] = "Kartta"; +$a->strings["View Album"] = "Näytä albumi"; +$a->strings["Do you really want to delete this video?"] = "Haluatko varmasti poistaa tämän videon?"; +$a->strings["Delete Video"] = "Poista video"; +$a->strings["No videos selected"] = "Ei videoita valittuna"; +$a->strings["Recent Videos"] = "Viimeisimmät videot"; +$a->strings["Upload New Videos"] = "Lataa uusia videoita"; +$a->strings["Access to this profile has been restricted."] = "Pääsy tähän profiiliin on rajoitettu"; +$a->strings["Events"] = "Tapahtumat"; +$a->strings["View"] = "Katso"; +$a->strings["Previous"] = "Edellinen"; +$a->strings["Next"] = "Seuraava"; +$a->strings["today"] = "tänään"; +$a->strings["month"] = "kuukausi"; +$a->strings["week"] = "viikko"; +$a->strings["day"] = "päivä"; +$a->strings["list"] = "luettelo"; +$a->strings["User not found"] = "Käyttäjää ei löydy"; +$a->strings["This calendar format is not supported"] = "Tätä kalenteriformaattia ei tueta"; +$a->strings["No exportable data found"] = "Vientikelpoista dataa ei löytynyt"; +$a->strings["calendar"] = "kalenteri"; +$a->strings["%d contact edited."] = [ + 0 => "%d kontakti muokattu", + 1 => "%d kontakteja muokattu", +]; +$a->strings["Could not access contact record."] = "Yhteystietoon ei päästä käsiksi."; +$a->strings["Could not locate selected profile."] = "Valittua profiilia ei löydy."; +$a->strings["Contact updated."] = "Yhteystietopäivitys onnistui."; +$a->strings["Contact has been blocked"] = "Henkilö on estetty"; +$a->strings["Contact has been unblocked"] = "Henkilö on jälleen sallittu"; +$a->strings["Contact has been ignored"] = "Henkilöä ei enää huomioida"; +$a->strings["Contact has been unignored"] = "Henkilö on jälleen huomioituna."; +$a->strings["Contact has been archived"] = "Henkilö on arkistoitu."; +$a->strings["Contact has been unarchived"] = "Henkilö on otettu pois arkistosta."; +$a->strings["Drop contact"] = "Poista kontakti"; +$a->strings["Do you really want to delete this contact?"] = "Haluatko todella poistaa tämän yhteystiedon?"; +$a->strings["Contact has been removed."] = "Yhteystieto on poistettu."; +$a->strings["You are mutual friends with %s"] = "Olet kaveri %s kanssa."; +$a->strings["You are sharing with %s"] = "Olet jakanut jotakin %s:n kanssa"; +$a->strings["%s is sharing with you"] = "%s jakaa sinulle jotakin."; +$a->strings["Private communications are not available for this contact."] = "Yksityiskeskustelu ei ole käytettävissä tälle henkilölle."; +$a->strings["Never"] = "Ei koskaan"; +$a->strings["(Update was successful)"] = "(Päivitys onnistui)"; +$a->strings["(Update was not successful)"] = "(Päivitys epäonnistui)"; +$a->strings["Suggest friends"] = "Ehdota ystäviä"; +$a->strings["Network type: %s"] = "Verkkotyyppi: %s"; +$a->strings["Communications lost with this contact!"] = "Yhteys tähän henkilöön menetettiin!"; +$a->strings["Fetch further information for feeds"] = ""; +$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = ""; +$a->strings["Disabled"] = "Pois käytöstä"; +$a->strings["Fetch information"] = "Nouda tiedot"; +$a->strings["Fetch keywords"] = "Nouda avainsanat"; +$a->strings["Fetch information and keywords"] = "Nouda tiedot ja avainsanat"; +$a->strings["Disconnect/Unfollow"] = "Katkaise / Lopeta seuraaminen"; +$a->strings["Contact"] = "Kontakti"; +$a->strings["Profile Visibility"] = "Profiilin näkyvyys"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Valitse profiili, jonka haluat näyttää %s:lle, kun hän haluaa katsoa profiiliasi turvallisesti."; +$a->strings["Contact Information / Notes"] = "Yhteystiedot / Muistiinpanot"; +$a->strings["Their personal note"] = ""; +$a->strings["Edit contact notes"] = "Muokkaa yhteystietojen muistiinpanoja"; +$a->strings["Block/Unblock contact"] = "Estä/salli henkilö"; +$a->strings["Ignore contact"] = "Jätä henkilö huomiotta"; +$a->strings["Repair URL settings"] = "Korjaa URL-asetukset"; +$a->strings["View conversations"] = "Katso keskusteluja"; +$a->strings["Last update:"] = "Viimeksi päivitetty:"; +$a->strings["Update public posts"] = "Päivitä julkiset postaukset"; +$a->strings["Update now"] = "Päivitä nyt"; +$a->strings["Unblock"] = "Salli"; +$a->strings["Block"] = "Estä"; +$a->strings["Unignore"] = "Ota huomioon"; +$a->strings["Currently blocked"] = "Estetty tällä hetkellä"; +$a->strings["Currently ignored"] = "Jätetty huomiotta tällä hetkellä"; +$a->strings["Currently archived"] = "Arkistoitu tällä hetkellä"; +$a->strings["Awaiting connection acknowledge"] = "Odotetaan yhteyden kuittausta"; +$a->strings["Replies/likes to your public posts may still be visible"] = ""; +$a->strings["Notification for new posts"] = "Uusien postausten ilmoitus"; +$a->strings["Send a notification of every new post of this contact"] = "Lähetä ilmoitus tälle henkilölle kaikista uusista postauksista"; +$a->strings["Blacklisted keywords"] = "Kielletyt avainsanat"; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = ""; +$a->strings["XMPP:"] = "XMPP:"; +$a->strings["Actions"] = "Toimenpiteet"; +$a->strings["Status"] = "Tila"; +$a->strings["Contact Settings"] = "Yhteystietoasetukset"; +$a->strings["Suggestions"] = "Ehdotukset"; +$a->strings["Suggest potential friends"] = "Ehdota mahdollisille ystäville"; +$a->strings["Show all contacts"] = "Näytä kaikki yhteystiedot"; +$a->strings["Unblocked"] = "Sallittu"; +$a->strings["Only show unblocked contacts"] = "Näytä vain sallitut henkilöt"; +$a->strings["Blocked"] = "Estetty"; +$a->strings["Only show blocked contacts"] = "Näytä vain estetyt henkilöt"; +$a->strings["Ignored"] = "Jätetty huomiotta"; +$a->strings["Only show ignored contacts"] = "Näytä vain henkilöt, jotka jätetty huomiotta"; +$a->strings["Archived"] = "Arkistoitu"; +$a->strings["Only show archived contacts"] = "Näytä vain arkistoidut henkilöt"; +$a->strings["Hidden"] = "Piilotettu"; +$a->strings["Only show hidden contacts"] = "Näytä vain piilotetut henkilöt"; +$a->strings["Search your contacts"] = "Etsi henkilöitä"; +$a->strings["Find"] = "Etsi"; +$a->strings["Update"] = "Päivitä"; +$a->strings["Archive"] = "Arkistoi"; +$a->strings["Unarchive"] = "Poista arkistosta"; +$a->strings["Batch Actions"] = ""; +$a->strings["Status Messages and Posts"] = "Statusviestit ja postaukset"; +$a->strings["Profile Details"] = "Profiilitiedot"; +$a->strings["View all contacts"] = "Näytä kaikki kontaktit"; +$a->strings["View all common friends"] = "Näytä kaikki yhteiset kaverit"; +$a->strings["Advanced"] = ""; +$a->strings["Advanced Contact Settings"] = "Kontakti-lisäasetukset"; +$a->strings["Mutual Friendship"] = "Yhteinen kaveruus"; +$a->strings["is a fan of yours"] = "on fanisi"; +$a->strings["you are a fan of"] = "fanitat"; +$a->strings["Toggle Blocked status"] = "Estetty tila päälle/pois"; +$a->strings["Toggle Ignored status"] = "Sivuuta/seuraa"; +$a->strings["Toggle Archive status"] = "Arkistotila päälle/pois"; +$a->strings["Delete contact"] = "Poista kontakti"; +$a->strings["Parent user not found."] = ""; +$a->strings["No parent user"] = ""; +$a->strings["Parent Password:"] = ""; +$a->strings["Please enter the password of the parent account to legitimize your request."] = ""; +$a->strings["Parent User"] = ""; +$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = ""; +$a->strings["Save Settings"] = "Tallenna asetukset"; +$a->strings["Delegate Page Management"] = ""; +$a->strings["Delegates"] = ""; +$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = ""; +$a->strings["Existing Page Delegates"] = ""; +$a->strings["Potential Delegates"] = ""; +$a->strings["Add"] = "Lisää"; +$a->strings["No entries."] = ""; +$a->strings["Event can not end before it has started."] = ""; +$a->strings["Event title and start time are required."] = "Tapahtuman nimi ja alkamisaika vaaditaan."; +$a->strings["Create New Event"] = "Luo uusi tapahtuma"; +$a->strings["Event details"] = "Tapahtuman tiedot"; +$a->strings["Starting date and Title are required."] = "Aloituspvm ja otsikko vaaditaan."; +$a->strings["Event Starts:"] = "Tapahtuma alkaa:"; +$a->strings["Required"] = "Vaaditaan"; +$a->strings["Finish date/time is not known or not relevant"] = "Päättymispvm ja kellonaika ei ole tiedossa tai niillä ei ole merkitystä"; +$a->strings["Event Finishes:"] = "Tapahtuma päättyy:"; +$a->strings["Adjust for viewer timezone"] = "Ota huomioon katsojan aikavyöhyke"; +$a->strings["Description:"] = "Kuvaus:"; +$a->strings["Title:"] = "Otsikko:"; +$a->strings["Share this event"] = "Jaa tämä tapahtuma"; +$a->strings["Basic"] = ""; +$a->strings["Failed to remove event"] = "Tapahtuman poisto epäonnistui"; +$a->strings["Event removed"] = "Tapahtuma poistettu"; +$a->strings["You must be logged in to use this module"] = "Sinun pitää kirjautua sisään, jotta voit käyttää tätä moduulia"; +$a->strings["Source URL"] = "Lähde URL"; +$a->strings["Unable to locate original post."] = "Alkuperäinen julkaisu ei löydy."; +$a->strings["Empty post discarded."] = "Tyhjä julkaisu hylätty."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = ""; +$a->strings["You may visit them online at %s"] = ""; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = ""; +$a->strings["%s posted an update."] = "%s julkaisi päivityksen."; +$a->strings["Post successful."] = "Viestin lähetys onnistui."; +$a->strings["Subscribing to OStatus contacts"] = "OStatus -kontaktien tilaaminen"; +$a->strings["No contact provided."] = "Kontakti puuttuu."; +$a->strings["Couldn't fetch information for contact."] = "Kontaktin tietoja ei voitu hakea."; +$a->strings["Couldn't fetch friends for contact."] = "Ei voitu hakea kontaktin kaverit."; +$a->strings["success"] = "onnistui"; +$a->strings["failed"] = "epäonnistui"; +$a->strings["ignored"] = "ohitettu"; +$a->strings["Image uploaded but image cropping failed."] = "Kuva ladattu mutta kuvan rajaus epäonnistui."; +$a->strings["Image size reduction [%s] failed."] = "Kuvan pienentäminen [%s] epäonnistui."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Jos kuva ei näy heti, lataa sivu uudelleen tai tyhjennä selaimen välimuisti."; +$a->strings["Unable to process image"] = "Kuvan käsitteleminen epäonnistui"; +$a->strings["Upload File:"] = "Lähetä tiedosto:"; +$a->strings["Select a profile:"] = "Valitse profiili:"; +$a->strings["or"] = "tai"; +$a->strings["skip this step"] = "ohita tämä vaihe"; +$a->strings["select a photo from your photo albums"] = "valitse kuva albumeistasi"; +$a->strings["Crop Image"] = "Rajaa kuva"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Rajaa kuva sopivasti."; +$a->strings["Done Editing"] = "Lopeta muokkaus"; +$a->strings["Image uploaded successfully."] = "Kuvan lähettäminen onnistui."; +$a->strings["Contact wasn't found or can't be unfollowed."] = ""; +$a->strings["Contact unfollowed"] = "Kontaktia ei enää seurata"; +$a->strings["You aren't a friend of this contact."] = "Et ole kontaktin kaveri."; +$a->strings["Unfollowing is currently not supported by your network."] = "Seuraamisen lopettaminen ei tällä hetkellä tueta verkossasi."; +$a->strings["Status:"] = "Tila:"; +$a->strings["Homepage:"] = "Kotisivu:"; +$a->strings["Global Directory"] = "Maailmanlaajuinen hakemisto"; +$a->strings["Find on this site"] = ""; +$a->strings["Results for:"] = "Tulokset haulla:"; +$a->strings["Site Directory"] = "Sivuston luettelo"; +$a->strings["No entries (some entries may be hidden)."] = ""; +$a->strings["People Search - %s"] = "Käyttäjähaku - %s"; +$a->strings["Forum Search - %s"] = "Foorumihaku - %s"; +$a->strings["The contact could not be added."] = "Kontaktia ei voitu lisätä."; +$a->strings["You already added this contact."] = "Olet jo lisännyt tämän kontaktin."; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora -tuki ei ole käytössä. Kontaktia ei voi lisätä."; +$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus -tuki ei ole käytössä. Kontaktia ei voi lisätä."; +$a->strings["The network type couldn't be detected. Contact can't be added."] = "Verkkotyyppiä ei voitu havaita. Kontaktia ei voitu lisätä."; +$a->strings["No valid account found."] = "Voimassa olevaa tiliä ei löytynyt."; +$a->strings["Password reset request issued. Check your email."] = "Salasanan nollauspyyntö lähetetty. Tarkista sähköpostisi."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = ""; +$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = ""; +$a->strings["Password reset requested at %s"] = "Salasanan nollauspyyntö kohteessa %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Pyyntöä ei voitu vahvistaa. (Saatoit lähettää pyyntöä aikaisemmin.) Salasanan nollaus epäonnistui."; +$a->strings["Request has expired, please make a new one."] = "Pyyntö on vanhentunut, tehkää uusi pyyntö."; +$a->strings["Forgot your Password?"] = "Unohditko salasanasi?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = ""; +$a->strings["Nickname or Email: "] = "Lempinimi tai sähköposti:"; +$a->strings["Reset"] = "Nollaus"; +$a->strings["Password Reset"] = "Salasanan nollaus"; +$a->strings["Your password has been reset as requested."] = "Salasanasi on nollattu pyynnöstäsi."; +$a->strings["Your new password is"] = "Uusi salasanasi on"; +$a->strings["Save or copy your new password - and then"] = "Tallenna tai kopioi uusi salasanasi, ja sitten"; +$a->strings["click here to login"] = "kirjaudu klikkaamalla tästä"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Salsanaa voi vaihtaa asetussivulta kirjautumisen jälkeen."; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = ""; +$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\n\t\t\tKäyttäjätilisi tiedot:\n\n\t\t\tSivuston osoite:\t%1\$s\n\t\t\tKäyttäjätunnus:\t%2\$s\n\t\t\tSalasana:\t%3\$s\n\n\t\t\tVoit vaihtaa salasanasi kirjautumisen jälkeen asetussivulta.\n\t\t"; +$a->strings["Your password has been changed at %s"] = "Salasanasi on vaihdettu sivustolla %s"; $a->strings["Profile deleted."] = "Profiili poistettiin."; $a->strings["Profile-"] = "Profiili-"; $a->strings["New profile created."] = "Uusi profiili luotu."; @@ -932,13 +895,13 @@ $a->strings["%1\$s changed %2\$s to “%3\$s”"] = ""; $a->strings[" - Visit %1\$s's %2\$s"] = ""; $a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; $a->strings["Hide contacts and friends:"] = "Piilota kontaktit ja kaverit:"; -$a->strings["No"] = "Ei"; $a->strings["Hide your contact/friend list from viewers of this profile?"] = "Piilota tämän profiilin kontakti/kaverilista?"; $a->strings["Show more profile fields:"] = "Näytä lisää profiilikenttiä:"; $a->strings["Profile Actions"] = ""; $a->strings["Edit Profile Details"] = "Muokkaa profiilin yksityiskohdat"; $a->strings["Change Profile Photo"] = "Vaihda profiilikuva"; $a->strings["View this profile"] = "Näytä profiilia"; +$a->strings["Edit visibility"] = "Muokkaa näkyvyyttä"; $a->strings["Create a new profile using these settings"] = "Luo uusi profiili näillä asetuksilla"; $a->strings["Clone this profile"] = "Kloonaa tämä profiili"; $a->strings["Delete this profile"] = "Poista tämä profiili"; @@ -947,12 +910,14 @@ $a->strings["Profile picture"] = "Profiilikuva"; $a->strings["Preferences"] = "Mieltymykset"; $a->strings["Status information"] = "Tilatiedot"; $a->strings["Additional information"] = "Lisätietoja"; +$a->strings["Personal"] = "Henkilökohtainen"; $a->strings["Relation"] = "Suhde"; +$a->strings["Miscellaneous"] = "Sekalaista"; $a->strings["Your Gender:"] = "Sukupuoli:"; $a->strings[" Marital Status:"] = " Siviilisääty:"; +$a->strings["Sexual Preference:"] = "Seksuaalinen suuntautuminen:"; $a->strings["Example: fishing photography software"] = "Esimerkki: kalastus valokuvaus ohjelmistot"; $a->strings["Profile Name:"] = "Profiilinimi:"; -$a->strings["Required"] = "Vaaditaan"; $a->strings["This is your public profile.
It may be visible to anybody using the internet."] = ""; $a->strings["Your Full Name:"] = "Koko nimi:"; $a->strings["Title/Description:"] = "Otsikko/kuvaus:"; @@ -961,6 +926,7 @@ $a->strings["Locality/City:"] = "Kaupunki:"; $a->strings["Region/State:"] = "Alue/osavaltio:"; $a->strings["Postal/Zip Code:"] = "Postinumero:"; $a->strings["Country:"] = "Maa:"; +$a->strings["Age: "] = "Ikä:"; $a->strings["Who: (if applicable)"] = "Kuka: (tarvittaessa)"; $a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Esimerkkejä: cathy123, Cathy Williams, cathy@example.com"; $a->strings["Since [date]:"] = "Lähtien [päivämäärä]:"; @@ -968,11 +934,15 @@ $a->strings["Tell us about yourself..."] = "Kerro vähän itsestäsi..."; $a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) osoite:"; $a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = ""; $a->strings["Homepage URL:"] = "Kotisivun URL-osoite:"; +$a->strings["Hometown:"] = "Kotikaupunki:"; +$a->strings["Political Views:"] = "Politiikka:"; $a->strings["Religious Views:"] = "Uskonto:"; $a->strings["Public Keywords:"] = "Julkiset avainsanat:"; $a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Käytetään kaveriehdotuksia varten, näkyy muille)"; $a->strings["Private Keywords:"] = "Yksityiset avainsanat:"; $a->strings["(Used for searching profiles, never shown to others)"] = "(Käytetään profiilihakua varten, ei näy muille)"; +$a->strings["Likes:"] = "Tykkäykset:"; +$a->strings["Dislikes:"] = "Ei tykkää:"; $a->strings["Musical interests"] = "Musiikki"; $a->strings["Books, literature"] = "Kirjat, kirjallisuus"; $a->strings["Television"] = "Televisio"; @@ -982,276 +952,51 @@ $a->strings["Love/romance"] = "Rakkaus/romanssi"; $a->strings["Work/employment"] = "Työ:"; $a->strings["School/education"] = "Koulutus:"; $a->strings["Contact information and Social Networks"] = "Yhteystiedot ja sosiaalinen media"; +$a->strings["Profile Image"] = "Profiilikuva"; +$a->strings["visible to everybody"] = "näkyvissä kaikille"; $a->strings["Edit/Manage Profiles"] = "Muokkaa/hallitse profiilit"; -$a->strings["Event can not end before it has started."] = ""; -$a->strings["Event title and start time are required."] = "Tapahtuman nimi ja alkamisaika vaaditaan."; -$a->strings["View"] = "Katso"; -$a->strings["Create New Event"] = "Luo uusi tapahtuma"; -$a->strings["Previous"] = "Edellinen"; -$a->strings["Next"] = "Seuraava"; -$a->strings["list"] = "luettelo"; -$a->strings["Event details"] = "Tapahtuman tiedot"; -$a->strings["Starting date and Title are required."] = "Aloituspvm ja otsikko vaaditaan."; -$a->strings["Event Starts:"] = "Tapahtuma alkaa:"; -$a->strings["Finish date/time is not known or not relevant"] = "Päättymispvm ja kellonaika ei ole tiedossa tai niillä ei ole merkitystä"; -$a->strings["Event Finishes:"] = "Tapahtuma päättyy:"; -$a->strings["Adjust for viewer timezone"] = "Ota huomioon katsojan aikavyöhyke"; -$a->strings["Description:"] = "Kuvaus:"; -$a->strings["Title:"] = "Otsikko:"; -$a->strings["Share this event"] = "Jaa tämä tapahtuma"; -$a->strings["Failed to remove event"] = "Tapahtuman poisto epäonnistui"; -$a->strings["Event removed"] = "Tapahtuma poistettu"; -$a->strings["No more system notifications."] = "Ei enää järjestelmäilmoituksia."; -$a->strings["System Notifications"] = "Järjestelmäilmoitukset"; -$a->strings["Contact not found."] = "Kontaktia ei ole."; -$a->strings["Friend suggestion sent."] = "Ystäväehdotus lähetettiin."; -$a->strings["Suggest Friends"] = "Ehdota ystäviä"; -$a->strings["Suggest a friend for %s"] = "Ehdota ystävää ystävälle %s"; -$a->strings["Item not available."] = "Kohde ei saatavilla."; -$a->strings["Item was not found."] = "Kohdetta ei löytynyt."; -$a->strings["No friends to display."] = "Ei näytettäviä kavereita."; -$a->strings["No contacts."] = "Ei kontakteja."; -$a->strings["Visit %s's profile [%s]"] = "Näytä %s-käyttäjän profiili [%s]"; -$a->strings["Subscribing to OStatus contacts"] = "OStatus -kontaktien tilaaminen"; -$a->strings["No contact provided."] = "Kontakti puuttuu."; -$a->strings["Couldn't fetch information for contact."] = "Kontaktin tietoja ei voitu hakea."; -$a->strings["Couldn't fetch friends for contact."] = "Ei voitu hakea kontaktin kaverit."; -$a->strings["success"] = "onnistui"; -$a->strings["failed"] = "epäonnistui"; -$a->strings["Authorize application connection"] = "Vahvista sovellusyhteys"; -$a->strings["Return to your app and insert this Securty Code:"] = "Palaa takaisin sovellukseen ja lisää tämä turvakoodi:"; -$a->strings["Please login to continue."] = "Ole hyvä ja kirjaudu jatkaaksesi."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Haluatko antaa tälle sovellukselle luvan hakea viestejäsi ja yhteystietojasi ja/tai luoda uusia viestejä?"; -$a->strings["everybody"] = "kaikki"; -$a->strings["Account"] = "Tili"; -$a->strings["Additional features"] = "Lisäominaisuuksia"; -$a->strings["Display"] = "Ulkonäkö"; -$a->strings["Social Networks"] = "Sosiaalinen media"; -$a->strings["Addons"] = "Lisäosat"; -$a->strings["Connected apps"] = "Yhdistetyt sovellukset"; -$a->strings["Export personal data"] = "Vie henkilökohtaiset tiedot"; -$a->strings["Remove account"] = "Poista tili"; -$a->strings["Missing some important data!"] = "Tärkeää dataa puuttuu!"; -$a->strings["Update"] = "Päivitä"; -$a->strings["Failed to connect with email account using the settings provided."] = ""; -$a->strings["Email settings updated."] = "Sähköpostin asetukset päivitettiin."; -$a->strings["Features updated"] = "Ominaisuudet päivitetty"; -$a->strings["Relocate message has been send to your contacts"] = ""; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Tyhjä salasanakenttä ei ole sallittu. Salasana ennallaan."; -$a->strings["Wrong password."] = "Väärä salasana."; -$a->strings[" Please use a shorter name."] = "Käytä lyhyempää nimeä."; -$a->strings[" Name too short."] = "Nimi on liian lyhyt."; -$a->strings["Wrong Password"] = "Väärä salasana"; -$a->strings["Invalid email."] = "Virheellinen sähköposti."; -$a->strings["Cannot change to that email."] = ""; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = ""; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = ""; -$a->strings["Settings updated."] = "Asetukset päivitetty."; -$a->strings["Add application"] = "Lisää sovellus"; -$a->strings["Save Settings"] = "Tallenna asetukset"; -$a->strings["Name"] = "Nimi"; -$a->strings["Consumer Key"] = "Kuluttajan avain"; -$a->strings["Consumer Secret"] = "Kuluttajasalaisuus"; -$a->strings["Redirect"] = "Uudelleenohjaus"; -$a->strings["Icon url"] = "Kuvakkeen URL-osoite"; -$a->strings["You can't edit this application."] = "Et voi muokata tätä sovellusta."; -$a->strings["Connected Apps"] = "Yhdistetyt sovellukset"; -$a->strings["Client key starts with"] = "Asiakasavain alkaa"; -$a->strings["No name"] = "Ei nimeä"; -$a->strings["Remove authorization"] = "Poista lupa"; -$a->strings["No Addon settings configured"] = "Lisäosa-asetukset puuttuvat"; -$a->strings["Addon Settings"] = "Lisäosa-asetukset"; -$a->strings["Off"] = "Pois päältä"; -$a->strings["On"] = "Päällä"; -$a->strings["Additional Features"] = "Lisäominaisuuksia"; -$a->strings["enabled"] = "käytössä"; -$a->strings["disabled"] = "pois käytöstä"; -$a->strings["Built-in support for %s connectivity is %s"] = ""; -$a->strings["GNU Social (OStatus)"] = "GNU Social (OStatus)"; -$a->strings["Email access is disabled on this site."] = ""; -$a->strings["General Social Media Settings"] = "Yleiset some asetukset"; -$a->strings["Disable Content Warning"] = "Poista sisältövaroitus käytöstä"; -$a->strings["Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This disables the automatic collapsing and sets the content warning as the post title. Doesn't affect any other content filtering you eventually set up."] = ""; -$a->strings["Disable intelligent shortening"] = ""; -$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = ""; -$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automaattisesti seuraa GNU social (OStatus) seuraajat/mainitsijat"; -$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = ""; -$a->strings["Default group for OStatus contacts"] = "Oletusryhmä OStatus kontakteille"; -$a->strings["Your legacy GNU Social account"] = "Vanha GNU social käyttäjätilisi"; -$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; -$a->strings["Repair OStatus subscriptions"] = "Korjaa OStatus tilaukset"; -$a->strings["Email/Mailbox Setup"] = "Sähköpostin asennus"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = ""; -$a->strings["Last successful email check:"] = "Viimeisin onnistunut sähköpostitarkistus:"; -$a->strings["IMAP server name:"] = "IMAP-palvelimen nimi:"; -$a->strings["IMAP port:"] = "IMAP-porttti:"; -$a->strings["Security:"] = "Turvallisuus:"; -$a->strings["None"] = "Ei mitään"; -$a->strings["Email login name:"] = "Sähköpostitilin käyttäjätunnus:"; -$a->strings["Email password:"] = "Sähköpostin salasana:"; -$a->strings["Reply-to address:"] = "Vastausosoite:"; -$a->strings["Send public posts to all email contacts:"] = "Lähetä julkiset julkaisut kaikille kontakteille:"; -$a->strings["Action after import:"] = "Toiminta tuonnin jälkeen:"; -$a->strings["Move to folder"] = "Siirrä kansioon"; -$a->strings["Move to folder:"] = "Siirrä kansioon:"; -$a->strings["No special theme for mobile devices"] = "Ei mobiiliteemaa"; -$a->strings["%s - (Unsupported)"] = "%s - (Ei tueta)"; -$a->strings["%s - (Experimental)"] = "%s - (Kokeellinen)"; -$a->strings["Display Settings"] = "Näyttöasetukset"; -$a->strings["Display Theme:"] = "Käyttöliittymän teema:"; -$a->strings["Mobile Theme:"] = "Mobiiliteema:"; -$a->strings["Suppress warning of insecure networks"] = ""; -$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = ""; -$a->strings["Update browser every xx seconds"] = "Päivitä selain xx sekunnin välein"; -$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Vähintään 10 sekuntia. -1 poistaa ominaisuuden käytöstä."; -$a->strings["Number of items to display per page:"] = ""; -$a->strings["Maximum of 100 items"] = "Enintään 100 kohdetta"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = ""; -$a->strings["Don't show emoticons"] = "Piilota hymiöt"; -$a->strings["Calendar"] = "Kalenteri"; -$a->strings["Beginning of week:"] = "Viikon alku:"; -$a->strings["Don't show notices"] = ""; -$a->strings["Infinite scroll"] = "Loputon selaaminen"; -$a->strings["Automatic updates only at the top of the network page"] = ""; -$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = ""; -$a->strings["Bandwith Saver Mode"] = "Kaistanleveyssäästömoodi"; -$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = ""; -$a->strings["Smart Threading"] = ""; -$a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = ""; -$a->strings["General Theme Settings"] = "Yleiset teeman asetukset"; -$a->strings["Custom Theme Settings"] = "Mukautetut teema-asetukset"; -$a->strings["Content Settings"] = "Sisältöasetukset"; -$a->strings["Theme settings"] = "Teeman asetukset"; -$a->strings["Unable to find your profile. Please contact your admin."] = "Profiilisi ei löytynyt. Ota yhteyttä ylläpitäjään."; -$a->strings["Account Types"] = "Tilityypit"; -$a->strings["Personal Page Subtypes"] = "Henkilökohtaisen sivun alatyypit"; -$a->strings["Community Forum Subtypes"] = "Yhteisöfoorumin alatyypit"; -$a->strings["Personal Page"] = "Henkilökohtainen sivu"; -$a->strings["Account for a personal profile."] = "Henkilökohtaisen profiilin käyttäjätili."; -$a->strings["Organisation Page"] = "Järjestön sivu"; -$a->strings["Account for an organisation that automatically approves contact requests as \"Followers\"."] = ""; -$a->strings["News Page"] = "Uutissivu"; -$a->strings["Account for a news reflector that automatically approves contact requests as \"Followers\"."] = ""; -$a->strings["Community Forum"] = "Yhteisöfoorumi"; -$a->strings["Account for community discussions."] = ""; -$a->strings["Normal Account Page"] = "Tavallinen käyttäjätili"; -$a->strings["Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"."] = ""; -$a->strings["Soapbox Page"] = "Saarnatuoli sivu"; -$a->strings["Account for a public profile that automatically approves contact requests as \"Followers\"."] = ""; -$a->strings["Public Forum"] = "Julkinen foorumi"; -$a->strings["Automatically approves all contact requests."] = "Automaattisesti hyväksyy kaikki kontaktipyynnöt"; -$a->strings["Automatic Friend Page"] = ""; -$a->strings["Account for a popular profile that automatically approves contact requests as \"Friends\"."] = ""; -$a->strings["Private Forum [Experimental]"] = "Yksityisfoorumi [kokeellinen]"; -$a->strings["Requires manual approval of contact requests."] = ""; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = ""; -$a->strings["Publish your default profile in your local site directory?"] = "Julkaise oletusprofiilisi tämän sivuston paikallisluettelossa?"; -$a->strings["Your profile will be published in the global friendica directories (e.g. %s). Your profile will be visible in public."] = ""; -$a->strings["Publish your default profile in the global social directory?"] = "Julkaise oletusprofiilisi maailmanlaajuisessa sosiaaliluettelossa?"; -$a->strings["Your profile will be published in this node's local directory. Your profile details may be publicly visible depending on the system settings."] = ""; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = ""; -$a->strings["Your contact list won't be shown in your default profile page. You can decide to show your contact list separately for each additional profile you create"] = ""; -$a->strings["Hide your profile details from anonymous viewers?"] = ""; -$a->strings["Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Disables posting public messages to Diaspora and other networks."] = ""; -$a->strings["Allow friends to post to your profile page?"] = "Anna kavereiden julkaista profiilisivullasi?"; -$a->strings["Your contacts may write posts on your profile wall. These posts will be distributed to your contacts"] = ""; -$a->strings["Allow friends to tag your posts?"] = "Anna kavereiden lisätä tunnisteita julkaisuusi?"; -$a->strings["Your contacts can add additional tags to your posts."] = "Kontaktisi voi lisätä ylimääräisiä tunnisteita julkaisuusi."; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = ""; -$a->strings["If you like, Friendica may suggest new members to add you as a contact."] = ""; -$a->strings["Permit unknown people to send you private mail?"] = "Salli yksityisviesit tuntemattomilta?"; -$a->strings["Friendica network users may send you private messages even if they are not in your contact list."] = ""; -$a->strings["Profile is not published."] = "Profiili ei ole julkaistu."; -$a->strings["Your Identity Address is '%s' or '%s'."] = "Identiteettisi osoite on '%s' tai '%s'."; -$a->strings["Automatically expire posts after this many days:"] = ""; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Jos kenttä jää tyhjäksi, julkaisut eivät vanhene. Vanhentuneet julkaisut poistetaan."; -$a->strings["Advanced expiration settings"] = ""; -$a->strings["Advanced Expiration"] = ""; -$a->strings["Expire posts:"] = "Julkaisujen vanheneminen:"; -$a->strings["Expire personal notes:"] = ""; -$a->strings["Expire starred posts:"] = "Tähtimerkityt julkaisut vanhenee:"; -$a->strings["Expire photos:"] = "Kuvat vanhenee:"; -$a->strings["Only expire posts by others:"] = ""; -$a->strings["Account Settings"] = "Tiliasetukset"; -$a->strings["Password Settings"] = "Salasana-asetukset"; +$a->strings["Change profile photo"] = "Vaihda profiilikuva"; +$a->strings["Create New Profile"] = "Luo uusi profiili"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Rekisteröityminen onnistui. Saat kohta lisäohjeita sähköpostitse."; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = ""; +$a->strings["Registration successful."] = "Rekisteröityminen onnistui."; +$a->strings["Your registration can not be processed."] = "Rekisteröintisi ei voida käsitellä."; +$a->strings["Your registration is pending approval by the site owner."] = "Rekisteröintisi odottaa ylläpitäjän hyväksyntää."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = ""; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Jos OpenID ei ole tuttu, jätä kenttä tyhjäksi."; +$a->strings["Your OpenID (optional): "] = "OpenID -tunnus (valinnainen):"; +$a->strings["Include your profile in member directory?"] = "Lisää profiilisi jäsenluetteloon?"; +$a->strings["Note for the admin"] = "Viesti ylläpidolle"; +$a->strings["Leave a message for the admin, why you want to join this node"] = "Kerro yllåpitäjälle miksi haluat liittyä tähän Friendica -sivustoon"; +$a->strings["Membership on this site is by invitation only."] = "Tähän sivustoon voi liittyä vain kutsusta."; +$a->strings["Your invitation code: "] = "Kutsukoodisi:"; +$a->strings["Registration"] = "Rekisteröityminen"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Koko nimi (esim. Matti Meikäläinen, Aku Ankka):"; +$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "Sähköpostiosoite: (pitää olla toimiva osoite että rekisteröityminen onnistuu)"; $a->strings["New Password:"] = "Uusi salasana:"; +$a->strings["Leave empty for an auto generated password."] = "Jätä tyhjäksi jos haluat automaattisesti luotu salasanan."; $a->strings["Confirm:"] = "Vahvista:"; -$a->strings["Leave password fields blank unless changing"] = "Jätä salasana kenttää tyhjäksi jos et halua vaihtaa salasanaa"; -$a->strings["Current Password:"] = "Nykyinen salasana:"; -$a->strings["Your current password to confirm the changes"] = ""; -$a->strings["Password:"] = "Salasana:"; -$a->strings["Basic Settings"] = "Perusasetukset"; -$a->strings["Email Address:"] = "Sähköpostiosoite:"; -$a->strings["Your Timezone:"] = "Aikavyöhyke:"; -$a->strings["Your Language:"] = "Kieli:"; -$a->strings["Set the language we use to show you friendica interface and to send you emails"] = ""; -$a->strings["Default Post Location:"] = "Julkaisun oletussijainti:"; -$a->strings["Use Browser Location:"] = "Käytä selaimen sijainti:"; -$a->strings["Security and Privacy Settings"] = "Turvallisuus ja tietosuoja-asetukset"; -$a->strings["Maximum Friend Requests/Day:"] = "Kaveripyyntöraja päivässä:"; -$a->strings["(to prevent spam abuse)"] = "(roskapostin estämiseksi)"; -$a->strings["Default Post Permissions"] = "Julkaisun oletuskäyttöoikeudet:"; -$a->strings["(click to open/close)"] = "(klikkaa auki/kiinni)"; -$a->strings["Show to Groups"] = "Näytä ryhmille"; -$a->strings["Show to Contacts"] = "Näytä kontakteille"; -$a->strings["Default Private Post"] = ""; -$a->strings["Default Public Post"] = ""; -$a->strings["Default Permissions for New Posts"] = "Uuden julkaisun oletuskäyttöoikeudet"; -$a->strings["Maximum private messages per day from unknown people:"] = "Enimmäismäärä yksityisviestejä päivässä tuntemattomilta henkilöiltä:"; -$a->strings["Notification Settings"] = "Huomautusasetukset"; -$a->strings["By default post a status message when:"] = "Oletuksena julkaise tilapäivitys kun:"; -$a->strings["accepting a friend request"] = "hyväksyt kaveripyynnön"; -$a->strings["joining a forum/community"] = "liityt foorumiin/yhteisöön"; -$a->strings["making an interesting profile change"] = "muokkaat kiinnostavalla tavalla profiiliasi"; -$a->strings["Send a notification email when:"] = "Lähetä sähköposti-ilmoitus kun:"; -$a->strings["You receive an introduction"] = "Vastaanotat kaverikutsun"; -$a->strings["Your introductions are confirmed"] = "Kaverikutsusi on hyväksytty"; -$a->strings["Someone writes on your profile wall"] = "Joku kirjoittaa profiiliseinällesi"; -$a->strings["Someone writes a followup comment"] = "Joku vastaa kommenttiin"; -$a->strings["You receive a private message"] = "Vastaanotat yksityisviestin"; -$a->strings["You receive a friend suggestion"] = "Vastaanotat kaveriehdotuksen"; -$a->strings["You are tagged in a post"] = "Sinut on merkitty julkaisuun"; -$a->strings["You are poked/prodded/etc. in a post"] = "sinut on tökätty tms. julkaisussa"; -$a->strings["Activate desktop notifications"] = "Ota työpöytäilmoitukset käyttöön"; -$a->strings["Show desktop popup on new notifications"] = "Näytä uudet ilmoitukset ponnahdusikkunassa"; -$a->strings["Text-only notification emails"] = "Ilmoitussähköposteissa vain tekstiä"; -$a->strings["Send text only notification emails, without the html part"] = "Lähetä ilmoitussähköposteissa vain tekstiä ilman HTML-koodia"; -$a->strings["Show detailled notifications"] = "Näytä yksityiskohtaiset ilmoitukset"; -$a->strings["Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed."] = ""; -$a->strings["Advanced Account/Page Type Settings"] = "Käyttäjätili/sivutyyppi lisäasetuksia"; -$a->strings["Change the behaviour of this account for special situations"] = ""; -$a->strings["Relocate"] = "Uudelleensijoitus"; -$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = ""; -$a->strings["Resend relocate message to contacts"] = ""; -$a->strings["Account approved."] = "Tili hyväksytty."; -$a->strings["Registration revoked for %s"] = ""; -$a->strings["Please login."] = "Ole hyvä ja kirjaudu."; -$a->strings["Group created."] = "Ryhmä luotu."; -$a->strings["Could not create group."] = "Ryhmää ei voitu luoda."; -$a->strings["Group not found."] = "Ryhmää ei löytynyt."; -$a->strings["Group name changed."] = "Ryhmän nimi muutettu."; -$a->strings["Permission denied"] = "Käyttöoikeus evätty"; -$a->strings["Save Group"] = "Tallenna ryhmä"; -$a->strings["Create a group of contacts/friends."] = "Luo kontakti/kaveriryhmä"; -$a->strings["Group removed."] = "Ryhmä poistettu."; -$a->strings["Unable to remove group."] = "Ryhmää ei voida poistaa."; -$a->strings["Delete Group"] = "Poista ryhmä"; -$a->strings["Group Editor"] = "Ryhmien muokkausta"; -$a->strings["Edit Group Name"] = "Muokkaa ryhmän nimeä"; -$a->strings["Members"] = "Jäsenet"; -$a->strings["All Contacts"] = "Kaikki yhteystiedot"; -$a->strings["Remove Contact"] = "Poista kontakti"; -$a->strings["Add Contact"] = "Lisää kontakti"; -$a->strings["Click on a contact to add or remove."] = "Valitse kontakti, jota haluat poistaa tai lisätä."; -$a->strings["Files"] = "Tiedostot"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@%s'."] = ""; +$a->strings["Choose a nickname: "] = "Valitse lempinimi:"; +$a->strings["Register"] = "Rekisteröidy"; +$a->strings["Import your profile to this friendica instance"] = "Tuo profiilisi tähän Friendica -instanssiin."; +$a->strings["Terms of Service"] = "Käyttöehdot"; +$a->strings["User deleted their account"] = "Käyttäjä poisti tilinsä"; +$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "Friendica -solmullasi käyttäjä poisti tilinsä. Varmista että hänen tiedot poistetaan myös varmuuskopioista."; +$a->strings["The user id is %d"] = ""; +$a->strings["Remove My Account"] = "Poista tilini"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Tämä poistaa käyttäjätilisi pysyvästi. Poistoa ei voi perua myöhemmin."; +$a->strings["Please enter your password for verification:"] = "Syötä salasanasi varmistusta varten:"; $a->strings["Theme settings updated."] = "Teeman asetukset päivitetty."; +$a->strings["Information"] = "Tietoja"; $a->strings["Overview"] = "Yleiskatsaus"; $a->strings["Federation Statistics"] = "Liiton tilastotiedot"; $a->strings["Configuration"] = "Kokoonpano"; $a->strings["Site"] = "Sivusto"; $a->strings["Users"] = "Käyttäjät"; +$a->strings["Addons"] = "Lisäosat"; $a->strings["Themes"] = "Teemat"; +$a->strings["Additional features"] = "Lisäominaisuuksia"; $a->strings["Database"] = "Tietokanta"; $a->strings["DB updates"] = "Tietokannan päivitykset"; $a->strings["Inspect Queue"] = "Tarkista jono"; @@ -1265,6 +1010,7 @@ $a->strings["Diagnostics"] = "Diagnostiikka"; $a->strings["PHP Info"] = "PHP tietoja"; $a->strings["probe address"] = ""; $a->strings["check webfinger"] = "Tarkista webfinger"; +$a->strings["Admin"] = "Ylläpitäjä"; $a->strings["Addon Features"] = "Lisäosaominaisuudet"; $a->strings["User registrations waiting for confirmation"] = "Käyttäjärekisteröinnit odottavat hyväksyntää"; $a->strings["Administration"] = "Ylläpito"; @@ -1275,6 +1021,7 @@ $a->strings["Show some informations regarding the needed information to operate $a->strings["The Terms of Service"] = "Käyttöehdot"; $a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = ""; $a->strings["The blocked domain"] = "Estetty verkkotunnus"; +$a->strings["Reason for the block"] = "Eston syy"; $a->strings["The reason why you blocked this domain."] = "Verkkotunnuksen estosyy."; $a->strings["Delete domain"] = "Poista verkkotunnus"; $a->strings["Check to delete this entry from the blocklist"] = "Laita rasti poistaaksesi kohde estolistalta"; @@ -1291,6 +1038,8 @@ $a->strings["Delete entry from blocklist"] = "Poista kohde estolistalta"; $a->strings["Delete entry from blocklist?"] = "Poista kohde estolistalta?"; $a->strings["Server added to blocklist."] = "Palvelin lisätty estolistalle"; $a->strings["Site blocklist updated."] = "Sivuston estolista päivitetty."; +$a->strings["The contact has been blocked from the node"] = "Kontakti on estetty tällä solmulla"; +$a->strings["Could not find any contact entry for this URL (%s)"] = ""; $a->strings["%s contact unblocked"] = [ 0 => "%s kontakti poistettu estolistalta", 1 => "%s kontaktia poistettu estolistalta", @@ -1300,13 +1049,10 @@ $a->strings["This page allows you to prevent any message from a remote contact t $a->strings["Block Remote Contact"] = "Estä etäkontakti"; $a->strings["select all"] = "valitse kaikki"; $a->strings["select none"] = "älä valitse mitään"; -$a->strings["Block"] = "Estä"; -$a->strings["Unblock"] = "Salli"; $a->strings["No remote contact is blocked from this node."] = ""; $a->strings["Blocked Remote Contacts"] = "Estetty etäkontaktit"; $a->strings["Block New Remote Contact"] = "Estä uusi etäkontakti"; $a->strings["Photo"] = "Kuva"; -$a->strings["Profile URL"] = "Profiilin URL"; $a->strings["%s total blocked contact"] = [ 0 => "Yhteensä %s estetty kontakti", 1 => "Yhteensä %s estettyjä kontakteja", @@ -1325,6 +1071,7 @@ $a->strings["Currently this node is aware of %d nodes with %d registered users f $a->strings["ID"] = ""; $a->strings["Recipient Name"] = "Vastaanottajan nimi"; $a->strings["Recipient Profile"] = "Vastaanottajan profiili"; +$a->strings["Network"] = "Verkko"; $a->strings["Created"] = "Luotu"; $a->strings["Last Tried"] = "Viimeksi yritetty"; $a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = ""; @@ -1347,11 +1094,12 @@ $a->strings["Version"] = "Versio"; $a->strings["Active addons"] = "Käytössäolevat lisäosat"; $a->strings["Can not parse base url. Must have at least ://"] = "Ei voitu jäsentää perusosoitetta. Täytyy sisältää ainakin ://"; $a->strings["Site settings updated."] = "Sivuston asetukset päivitettiin."; +$a->strings["No special theme for mobile devices"] = "Ei mobiiliteemaa"; +$a->strings["No community page for local users"] = ""; $a->strings["No community page"] = "Ei yhteisösivua"; $a->strings["Public postings from users of this site"] = "Julkiset julkaisut tämän sivuston käyttäjiltä"; $a->strings["Public postings from the federated network"] = "Julkiset julkaisut liittoutuneelta verkolta"; $a->strings["Public postings from local users and the federated network"] = "Julkiset julkaisut tältä sivustolta ja liittoutuneelta verkolta"; -$a->strings["Disabled"] = "Pois käytöstä"; $a->strings["Users, Global Contacts"] = "Käyttäjät, maailmanlaajuiset kontaktit"; $a->strings["Users, Global Contacts/fallback"] = ""; $a->strings["One month"] = "Yksi kuukausi"; @@ -1369,7 +1117,6 @@ $a->strings["Don't check"] = "Älä tarkista"; $a->strings["check the stable version"] = ""; $a->strings["check the development version"] = ""; $a->strings["Republish users to directory"] = ""; -$a->strings["Registration"] = "Rekisteröityminen"; $a->strings["File upload"] = "Tiedoston lataus"; $a->strings["Policies"] = "Käytännöt"; $a->strings["Auto Discovered Contact Directory"] = ""; @@ -1406,7 +1153,7 @@ $a->strings["Maximum size in bytes of uploaded images. Default is 0, which means $a->strings["Maximum image length"] = "Suurin kuvapituus"; $a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Ladattavan kuvatiedoston enimmäispituus pikseleinä. Oletusarvo on -1, eli ei enimmäispituutta."; $a->strings["JPEG image quality"] = "JPEG-kuvanlaatu"; -$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = ""; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Ladatut JPEG-kuvat tallennetaan tällä laatuasetuksella [0-100]. Oletus on 100, eli korkein laatu."; $a->strings["Register policy"] = "Rekisteröintipolitiikka"; $a->strings["Maximum Daily Registrations"] = "Päivittäinen rekisteröitymisraja"; $a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "Mikäli rekisteröityminen on sallittu, tämä asettaa enimmäismäärä uusia rekisteröitymisiä päivässä. Jos reksiteröityminen ei ole sallittu, tällä asetuksella ei ole vaikutusta."; @@ -1546,6 +1293,7 @@ $a->strings["Mark success (if update was manually applied)"] = ""; $a->strings["Attempt to execute this update step automatically"] = ""; $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = ""; $a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\t\tThank you and welcome to %4\$s."] = ""; +$a->strings["Registration details for %s"] = ""; $a->strings["%s user blocked/unblocked"] = [ 0 => "%s käyttäjä estetty / poistettu estolistalta", 1 => "%s käyttäjää estetty / poistettu estolistalta", @@ -1557,18 +1305,26 @@ $a->strings["%s user deleted"] = [ $a->strings["User '%s' deleted"] = "Käyttäjä '%s' poistettu"; $a->strings["User '%s' unblocked"] = "Käyttäjä '%s' poistettu estolistalta"; $a->strings["User '%s' blocked"] = "Käyttäjä '%s' estetty"; -$a->strings["Private Forum"] = ""; +$a->strings["Normal Account Page"] = "Tavallinen käyttäjätili"; +$a->strings["Soapbox Page"] = "Saarnatuoli sivu"; +$a->strings["Public Forum"] = "Julkinen foorumi"; +$a->strings["Automatic Friend Page"] = ""; +$a->strings["Private Forum"] = "Yksityisfoorumi"; +$a->strings["Personal Page"] = "Henkilökohtainen sivu"; +$a->strings["Organisation Page"] = "Järjestön sivu"; +$a->strings["News Page"] = "Uutissivu"; +$a->strings["Community Forum"] = "Yhteisöfoorumi"; +$a->strings["Email"] = "Sähköposti"; $a->strings["Register date"] = "Rekisteripäivämäärä"; $a->strings["Last login"] = "Viimeisin kirjautuminen"; $a->strings["Last item"] = "Viimeisin kohde"; -$a->strings["Type"] = ""; +$a->strings["Type"] = "Tyyppi"; $a->strings["Add User"] = "Lisää käyttäjä"; $a->strings["User registrations waiting for confirm"] = ""; $a->strings["User waiting for permanent deletion"] = ""; $a->strings["Request date"] = "Pyynnön päivämäärä"; $a->strings["No registrations."] = "Ei rekisteröintejä."; $a->strings["Note from the user"] = ""; -$a->strings["Approve"] = "Hyväksy"; $a->strings["Deny"] = "Kieltäydy"; $a->strings["Site admin"] = "Sivuston ylläpito"; $a->strings["Account expired"] = "Tili vanhentunut"; @@ -1607,330 +1363,46 @@ $a->strings["PHP logging"] = "PHP-loki"; $a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = ""; $a->strings["Error trying to open %1\$s log file.\\r\\n
Check to see if file %1\$s exist and is readable."] = ""; $a->strings["Couldn't open %1\$s log file.\\r\\n
Check to see if file %1\$s is readable."] = ""; +$a->strings["Off"] = "Pois päältä"; +$a->strings["On"] = "Päällä"; $a->strings["Lock feature %s"] = "Lukitse ominaisuus %s"; $a->strings["Manage Additional Features"] = "Hallitse lisäominaisuudet"; -$a->strings["Parent user not found."] = ""; -$a->strings["No parent user"] = ""; -$a->strings["Parent Password:"] = ""; -$a->strings["Please enter the password of the parent account to legitimize your request."] = ""; -$a->strings["Parent User"] = ""; -$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = ""; -$a->strings["Delegates"] = ""; -$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = ""; -$a->strings["Existing Page Delegates"] = ""; -$a->strings["Potential Delegates"] = ""; -$a->strings["Remove"] = "Poista"; -$a->strings["Add"] = "Lisää"; -$a->strings["No entries."] = ""; -$a->strings["Recent Photos"] = "Viimeaikaisia kuvia"; -$a->strings["Upload New Photos"] = "Lähetä uusia kuvia"; -$a->strings["Contact information unavailable"] = "Kontaktin tietoja ei saatavilla"; -$a->strings["Album not found."] = "Albumia ei ole."; -$a->strings["Delete Album"] = "Poista albumi"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Haluatko varmasti poistaa tämän albumin ja kaikki sen kuvat?"; -$a->strings["Delete Photo"] = "Poista valokuva"; -$a->strings["Do you really want to delete this photo?"] = "Haluatko varmasti poistaa kuvan?"; -$a->strings["a photo"] = "valokuva"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s merkattiin kuvaan %2\$s ystävän %3\$s toimesta"; -$a->strings["Image upload didn't complete, please try again"] = "Kuvan lataus ei onnistunut, yritä uudelleen"; -$a->strings["Image file is missing"] = "Kuvatiedosto puuttuu"; -$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = ""; -$a->strings["Image file is empty."] = "Kuvatiedosto on tyhjä."; -$a->strings["No photos selected"] = "Ei valittuja kuvia"; -$a->strings["Access to this item is restricted."] = "Pääsy kohteeseen on rajoitettu."; -$a->strings["Upload Photos"] = "Lähetä kuvia"; -$a->strings["New album name: "] = "Albumin uusi nimi: "; -$a->strings["or existing album name: "] = "tai olemassaolevan albumin nimi: "; -$a->strings["Do not show a status post for this upload"] = "Älä näytä tilaviestiä tälle lähetykselle"; -$a->strings["Edit Album"] = "Muokkaa albumia"; -$a->strings["Show Newest First"] = "Näytä uusin ensin"; -$a->strings["Show Oldest First"] = "Näytä vanhin ensin"; -$a->strings["View Photo"] = "Näytä kuva"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Estetty. Tämän kohteen käyttöä on saatettu rajoittaa."; -$a->strings["Photo not available"] = "Kuva ei ole saatavilla"; -$a->strings["View photo"] = "Näytä kuva"; -$a->strings["Edit photo"] = "Muokkaa kuvaa"; -$a->strings["Use as profile photo"] = "Käytä profiilikuvana"; -$a->strings["View Full Size"] = "Näytä täysikokoisena"; -$a->strings["Tags: "] = "Merkinnät:"; -$a->strings["[Remove any tag]"] = "[Poista mikä tahansa merkintä]"; -$a->strings["New album name"] = "Uusi nimi albumille"; -$a->strings["Caption"] = "Kuvateksti"; -$a->strings["Add a Tag"] = "Lisää merkintä"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Esimerkki: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Do not rotate"] = "Älä kierrä"; -$a->strings["Rotate CW (right)"] = "Käännä oikealle"; -$a->strings["Rotate CCW (left)"] = "Käännä vasemmalle"; -$a->strings["Map"] = "Kartta"; -$a->strings["View Album"] = "Näytä albumi"; -$a->strings["Edit contact"] = "Muokkaa kontaktia"; -$a->strings["Contacts who are not members of a group"] = "Kontaktit jotka eivät kuulu ryhmään"; +$a->strings["Source input"] = ""; +$a->strings["BBCode::toPlaintext"] = "BBCode::toPlaintext"; +$a->strings["BBCode::convert (raw HTML)"] = "BBCode::convert (raaka HTML)"; +$a->strings["BBCode::convert"] = "BBCode::convert"; +$a->strings["BBCode::convert => HTML::toBBCode"] = "BBCode::convert => HTML::toBBCode"; +$a->strings["BBCode::toMarkdown"] = "BBCode::toMarkdown"; +$a->strings["BBCode::toMarkdown => Markdown::convert"] = "BBCode::toMarkdown => Markdown::convert"; +$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = "BBCode::toMarkdown => Markdown::toBBCode"; +$a->strings["BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"] = "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"; +$a->strings["Source input \\x28Diaspora format\\x29"] = ""; +$a->strings["Markdown::toBBCode"] = "Markdown::toBBCode"; +$a->strings["Raw HTML input"] = "Raaka HTML-syöte"; +$a->strings["HTML Input"] = "HTML-syöte"; +$a->strings["HTML::toBBCode"] = "HTML::toBBCode"; +$a->strings["HTML::toPlaintext"] = "HTML::toPlaintext"; +$a->strings["Source text"] = "Lähdeteksti"; +$a->strings["BBCode"] = "BBCode"; +$a->strings["Markdown"] = "Markdown"; +$a->strings["HTML"] = "HTML"; $a->strings["Community option not available."] = "Yhteisö vaihtoehto ei saatavilla."; $a->strings["Not available."] = "Ei saatavilla."; $a->strings["Local Community"] = "Paikallinen yhteisö"; $a->strings["Posts from local users on this server"] = "Tämän palvelimen julkaisut"; $a->strings["Global Community"] = "Maailmanlaajuinen yhteisö"; $a->strings["Posts from users of the whole federated network"] = "Maailmanlaajuisen verkon julkaisut"; -$a->strings["No results."] = "Ei tuloksia."; $a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = ""; -$a->strings["No recipient selected."] = "Vastaanottaja puuttuu."; -$a->strings["Unable to locate contact information."] = "Kontaktin tiedot ei löydy."; -$a->strings["Message could not be sent."] = "Viestiä ei voitu lähettää."; -$a->strings["Message collection failure."] = "Viestin noutaminen epäonnistui."; -$a->strings["Message sent."] = "Viesti lähetetty."; -$a->strings["Do you really want to delete this message?"] = "Haluatko varmasti poistaa viestin?"; -$a->strings["Message deleted."] = "Viesti poistettu."; -$a->strings["Conversation removed."] = "Keskustelu poistettu."; -$a->strings["Send Private Message"] = "Lähetä yksityisviesti"; -$a->strings["To:"] = "Vastaanottaja:"; -$a->strings["Subject:"] = "Aihe:"; -$a->strings["No messages."] = "Ei viestejä."; -$a->strings["Message not available."] = "Viesti ei saatavilla."; -$a->strings["Delete message"] = "Poista viesti"; -$a->strings["D, d M Y - g:i A"] = ""; -$a->strings["Delete conversation"] = "Poista keskustelu"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; -$a->strings["Send Reply"] = "Lähetä vastaus"; -$a->strings["Unknown sender - %s"] = "Tuntematon lähettäjä - %s"; -$a->strings["You and %s"] = "Sinä ja %s"; -$a->strings["%s and You"] = "%s ja sinä"; -$a->strings["%d message"] = [ - 0 => "%d viesti", - 1 => "%d viestiä", -]; -$a->strings["Do you really want to delete this video?"] = "Haluatko varmasti poistaa tämän videon?"; -$a->strings["Delete Video"] = "Poista video"; -$a->strings["No videos selected"] = "Ei videoita valittuna"; -$a->strings["Recent Videos"] = "Viimeisimmät videot"; -$a->strings["Upload New Videos"] = "Lataa uusia videoita"; -$a->strings["Credits"] = "Lopputekstit"; -$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = ""; -$a->strings["Contact wasn't found or can't be unfollowed."] = ""; -$a->strings["Contact unfollowed"] = "Kontaktia ei enää seurata"; -$a->strings["Submit Request"] = "Lähetä pyyntö"; -$a->strings["You aren't a friend of this contact."] = "Et ole kontaktin kaveri."; -$a->strings["Unfollowing is currently not supported by your network."] = "Seuraamisen lopettaminen ei tällä hetkellä tueta verkossasi."; -$a->strings["Disconnect/Unfollow"] = "Katkaise / Lopeta seuraaminen"; -$a->strings["Your Identity Address:"] = "Identiteettisi osoite:"; -$a->strings["Invalid request."] = "Virheellinen pyyntö."; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = ""; -$a->strings["Or - did you try to upload an empty file?"] = "Yrititkö ladata tyhjän tiedoston?"; -$a->strings["File exceeds size limit of %s"] = "Tiedosto ylittää kokorajoituksen %s"; -$a->strings["File upload failed."] = "Tiedoston lähettäminen epäonnistui."; -$a->strings["Tips for New Members"] = "Vinkkejä uusille käyttäjille"; -$a->strings["Time Conversion"] = "Aikamuunnos"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = ""; -$a->strings["UTC time: %s"] = "UTC-aika: %s"; -$a->strings["Current timezone: %s"] = "Aikavyöhyke: %s"; -$a->strings["Converted localtime: %s"] = "Muunnettu paikallisaika: %s"; -$a->strings["Please select your timezone:"] = "Valitse aikavyöhykkeesi:"; -$a->strings["This introduction has already been accepted."] = "Tämä esittely on jo hyväksytty."; -$a->strings["Profile location is not valid or does not contain profile information."] = "Profiilin sijainti on viallinen tai se ei sisällä profiilitietoja."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Varoitus: profiilin sijainnissa ei ole tunnistettavaa omistajan nimeä."; -$a->strings["Warning: profile location has no profile photo."] = "Varoitus: profiilin sijainnissa ei ole profiilikuvaa."; -$a->strings["%d required parameter was not found at the given location"] = [ - 0 => "", - 1 => "", -]; -$a->strings["Introduction complete."] = "Esittely valmis."; -$a->strings["Unrecoverable protocol error."] = "Vakava protokollavirhe."; -$a->strings["Profile unavailable."] = "Profiili ei saatavilla."; -$a->strings["%s has received too many connection requests today."] = "%s on saanut liikaa yhteyspyyntöjä tänään."; -$a->strings["Spam protection measures have been invoked."] = "Roskapostisuojaukset otettu käyttöön."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Ystäviä suositellaan yrittämään uudelleen vuorokauden sisällä."; -$a->strings["Invalid locator"] = "Viallinen paikannin"; -$a->strings["You have already introduced yourself here."] = "Olet jo esitellyt itsesi täällä."; -$a->strings["Apparently you are already friends with %s."] = "Ilmeisesti olet jo ystävystynyt henkilön %s kanssa."; -$a->strings["Invalid profile URL."] = "Viallinen profiiliosoite."; -$a->strings["Failed to update contact record."] = "Kontaktitietojen päivitys epäonnistui."; -$a->strings["Your introduction has been sent."] = "Esittelysi lähetettiin."; -$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = ""; -$a->strings["Please login to confirm introduction."] = "Kirjaudu vahvistaaksesi esittelysi."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Väärä identiteetti kirjautuneena sisään. Kirjaudu tähän profiiliin."; -$a->strings["Confirm"] = "Vahvista"; -$a->strings["Hide this contact"] = "Piilota kontakti"; -$a->strings["Welcome home %s."] = "Tervetuloa kotiin %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Vahvista esittelysi/yhteyspyyntösi henkilölle %s."; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Anna \"henkilöllisyysosoitteesi\" joissakin seuraavista tuetuista viestintäverkoista:"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = ""; -$a->strings["Friend/Connection Request"] = "Ystävä/yhteyspyyntö"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"] = "Esim. jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"; -$a->strings["Please answer the following:"] = "Vastaa seuraavaan:"; -$a->strings["Does %s know you?"] = "Tunteeko %s sinut?"; -$a->strings["Add a personal note:"] = "Lisää oma merkintä:"; -$a->strings["GNU Social (Pleroma, Mastodon)"] = "GNU Social (Pleroma, Mastodon)"; -$a->strings["Diaspora (Socialhome, Hubzilla)"] = "Diaspora (Socialhome, Hubzilla)"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - älä käytä tätä lomaketta. Kirjoita sen sijaan %s Diaspora-hakupalkkiisi."; -$a->strings["Contact settings applied."] = "Kontaktiasetukset tallennettu."; -$a->strings["Contact update failed."] = "Kontaktipäivitys epäonnistui."; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "VAROITUS: Tämä on erittäin vaativaa ja jos kirjoitat virheellisiä tietoja, viestintäsi tämän henkilön kanssa voi lakata toimimasta."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Ole hyvä ja paina selaimesi 'Takaisin'-painiketta nyt, jos olet epävarma tämän sivun toiminnoista."; -$a->strings["No mirroring"] = "Ei peilausta"; -$a->strings["Mirror as forwarded posting"] = "Peilaa välitettynä julkaisuna"; -$a->strings["Mirror as my own posting"] = "Peilaa omana julkaisuna"; -$a->strings["Return to contact editor"] = "Palaa kontaktin muokkaamiseen"; -$a->strings["Refetch contact data"] = ""; -$a->strings["Remote Self"] = ""; -$a->strings["Mirror postings from this contact"] = "Peilaa tämän kontaktin julkaisut"; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = ""; -$a->strings["Account Nickname"] = "Tilin lempinimi"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - ohittaa Nimen/Nimimerkin"; -$a->strings["Account URL"] = "Tilin URL-osoite"; -$a->strings["Friend Request URL"] = "URL kaveripyyntöä varten"; -$a->strings["Friend Confirm URL"] = "URL kaverin vahvistusta varten"; -$a->strings["Notification Endpoint URL"] = "URL huomautuksia varten"; -$a->strings["Poll/Feed URL"] = "URL äänestyksiä/syötteitä varten"; -$a->strings["New photo from this URL"] = "Uusi kuva osoitteesta"; -$a->strings["Welcome to %s"] = "Tervetuloa %s"; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s toivottaa tervetulleeksi ystävän %2\$s"; -$a->strings["Poke/Prod"] = "Tökkää"; -$a->strings["poke, prod or do other things to somebody"] = ""; -$a->strings["Recipient"] = "Vastaanottaja"; -$a->strings["Choose what you wish to do to recipient"] = "Valitse mitä haluat tehdä vastaanottajalle"; -$a->strings["Make this post private"] = "Muuta julkaisu yksityiseksi"; -$a->strings["Post successful."] = "Viestin lähetys onnistui."; -$a->strings["Access denied."] = "Käyttö estetty."; -$a->strings["Invalid request identifier."] = "Virheellinen pyyntötunniste."; -$a->strings["Discard"] = "Hylkää"; -$a->strings["Ignore"] = "Jätä huomiotta"; -$a->strings["Network Notifications"] = "Verkkoilmoitukset"; -$a->strings["Personal Notifications"] = "Henkilökohtaiset ilmoitukset"; -$a->strings["Home Notifications"] = "Koti-ilmoitukset"; -$a->strings["Show Ignored Requests"] = "Näytä ohitetut pyynnöt"; -$a->strings["Hide Ignored Requests"] = "Piilota ohitetut pyynnöt"; -$a->strings["Notification type: "] = "Ilmoitustyyppi:"; -$a->strings["suggested by %s"] = "ehdottaa %s"; -$a->strings["Hide this contact from others"] = "Piilota kontakti muilta"; -$a->strings["Post a new friend activity"] = ""; -$a->strings["if applicable"] = "tarvittaessa"; -$a->strings["Claims to be known to you: "] = "Väittää tuntevansa sinut:"; -$a->strings["yes"] = "kyllä"; -$a->strings["no"] = "ei"; -$a->strings["Shall your connection be bidirectional or not?"] = "Kaksisuuntainen yhteys?"; -$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = ""; -$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = ""; -$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = ""; -$a->strings["Friend"] = "Kaveri"; -$a->strings["Sharer"] = "Jakaja"; -$a->strings["Subscriber"] = "Tilaaja"; -$a->strings["No introductions."] = "Ei esittelyjä."; -$a->strings["Show unread"] = "Näytä lukemattomat"; -$a->strings["Show all"] = "Näytä kaikki"; -$a->strings["No more %s notifications."] = "Ei muita %s ilmoituksia."; -$a->strings["Not Extended"] = "Ei laajennettu"; -$a->strings["Not Found"] = "Ei löydetty"; -$a->strings["The contact could not be added."] = "Kontaktia ei voitu lisätä."; -$a->strings["You already added this contact."] = "Olet jo lisännyt tämän kontaktin."; -$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora -tuki ei ole käytössä. Kontaktia ei voi lisätä."; -$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus -tuki ei ole käytössä. Kontaktia ei voi lisätä."; -$a->strings["The network type couldn't be detected. Contact can't be added."] = "Verkkotyyppiä ei voitu havaita. Kontaktia ei voitu lisätä."; -$a->strings["This calendar format is not supported"] = "Tätä kalenteriformaattia ei tueta"; -$a->strings["No exportable data found"] = "Vientikelpoista dataa ei löytynyt"; -$a->strings["calendar"] = "kalenteri"; -$a->strings["%d contact edited."] = [ - 0 => "%d kontakti muokattu", - 1 => "%d kontakteja muokattu", -]; -$a->strings["Could not access contact record."] = "Yhteystietoon ei päästä käsiksi."; -$a->strings["Could not locate selected profile."] = "Valittua profiilia ei löydy."; -$a->strings["Contact updated."] = "Yhteystietopäivitys onnistui."; -$a->strings["Contact has been blocked"] = "Henkilö on estetty"; -$a->strings["Contact has been unblocked"] = "Henkilö on jälleen sallittu"; -$a->strings["Contact has been ignored"] = "Henkilöä ei enää huomioida"; -$a->strings["Contact has been unignored"] = "Henkilö on jälleen huomioituna."; -$a->strings["Contact has been archived"] = "Henkilö on arkistoitu."; -$a->strings["Contact has been unarchived"] = "Henkilö on otettu pois arkistosta."; -$a->strings["Drop contact"] = "Poista kontakti"; -$a->strings["Do you really want to delete this contact?"] = "Haluatko todella poistaa tämän yhteystiedon?"; -$a->strings["Contact has been removed."] = "Yhteystieto on poistettu."; -$a->strings["You are mutual friends with %s"] = "Olet kaveri %s kanssa."; -$a->strings["You are sharing with %s"] = "Olet jakanut jotakin %s:n kanssa"; -$a->strings["%s is sharing with you"] = "%s jakaa sinulle jotakin."; -$a->strings["Private communications are not available for this contact."] = "Yksityiskeskustelu ei ole käytettävissä tälle henkilölle."; -$a->strings["Never"] = "Ei koskaan"; -$a->strings["(Update was successful)"] = "(Päivitys onnistui)"; -$a->strings["(Update was not successful)"] = "(Päivitys epäonnistui)"; -$a->strings["Suggest friends"] = "Ehdota ystäviä"; -$a->strings["Network type: %s"] = "Verkkotyyppi: %s"; -$a->strings["Communications lost with this contact!"] = "Yhteys tähän henkilöön menetettiin!"; -$a->strings["Fetch further information for feeds"] = ""; -$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = ""; -$a->strings["Fetch information"] = "Nouda tiedot"; -$a->strings["Fetch keywords"] = "Nouda avainsanat"; -$a->strings["Fetch information and keywords"] = "Nouda tiedot ja avainsanat"; -$a->strings["Contact"] = "Kontakti"; -$a->strings["Profile Visibility"] = "Profiilin näkyvyys"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Valitse profiili, jonka haluat näyttää %s:lle, kun hän haluaa katsoa profiiliasi turvallisesti."; -$a->strings["Contact Information / Notes"] = "Yhteystiedot / Muistiinpanot"; -$a->strings["Their personal note"] = ""; -$a->strings["Edit contact notes"] = "Muokkaa yhteystietojen muistiinpanoja"; -$a->strings["Block/Unblock contact"] = "Estä/salli henkilö"; -$a->strings["Ignore contact"] = "Jätä henkilö huomiotta"; -$a->strings["Repair URL settings"] = "Korjaa URL-asetukset"; -$a->strings["View conversations"] = "Katso keskusteluja"; -$a->strings["Last update:"] = "Viimeksi päivitetty:"; -$a->strings["Update public posts"] = "Päivitä julkiset postaukset"; -$a->strings["Update now"] = "Päivitä nyt"; -$a->strings["Unignore"] = "Ota huomioon"; -$a->strings["Currently blocked"] = "Estetty tällä hetkellä"; -$a->strings["Currently ignored"] = "Jätetty huomiotta tällä hetkellä"; -$a->strings["Currently archived"] = "Arkistoitu tällä hetkellä"; -$a->strings["Awaiting connection acknowledge"] = "Odotetaan yhteyden kuittausta"; -$a->strings["Replies/likes to your public posts may still be visible"] = ""; -$a->strings["Notification for new posts"] = "Uusien postausten ilmoitus"; -$a->strings["Send a notification of every new post of this contact"] = "Lähetä ilmoitus tälle henkilölle kaikista uusista postauksista"; -$a->strings["Blacklisted keywords"] = "Kielletyt avainsanat"; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = ""; -$a->strings["Actions"] = "Toimenpiteet"; -$a->strings["Contact Settings"] = "Yhteystietoasetukset"; -$a->strings["Suggestions"] = "Ehdotukset"; -$a->strings["Suggest potential friends"] = "Ehdota mahdollisille ystäville"; -$a->strings["Show all contacts"] = "Näytä kaikki yhteystiedot"; -$a->strings["Unblocked"] = "Sallittu"; -$a->strings["Only show unblocked contacts"] = "Näytä vain sallitut henkilöt"; -$a->strings["Blocked"] = "Estetty"; -$a->strings["Only show blocked contacts"] = "Näytä vain estetyt henkilöt"; -$a->strings["Ignored"] = "Jätetty huomiotta"; -$a->strings["Only show ignored contacts"] = "Näytä vain henkilöt, jotka jätetty huomiotta"; -$a->strings["Archived"] = "Arkistoitu"; -$a->strings["Only show archived contacts"] = "Näytä vain arkistoidut henkilöt"; -$a->strings["Hidden"] = "Piilotettu"; -$a->strings["Only show hidden contacts"] = "Näytä vain piilotetut henkilöt"; -$a->strings["Search your contacts"] = "Etsi henkilöitä"; -$a->strings["Results for: %s"] = "Tulokset haulla: %s"; -$a->strings["Archive"] = "Arkistoi"; -$a->strings["Unarchive"] = "Poista arkistosta"; -$a->strings["Batch Actions"] = ""; -$a->strings["View all contacts"] = "Näytä kaikki kontaktit"; -$a->strings["Common Friends"] = "Yhteisiä kavereita"; -$a->strings["View all common friends"] = "Näytä kaikki yhteiset kaverit"; -$a->strings["Advanced Contact Settings"] = "Kontakti-lisäasetukset"; -$a->strings["Mutual Friendship"] = "Yhteinen kaveruus"; -$a->strings["is a fan of yours"] = "on fanisi"; -$a->strings["you are a fan of"] = "fanitat"; -$a->strings["Toggle Blocked status"] = "Estetty tila päälle/pois"; -$a->strings["Toggle Ignored status"] = "Sivuuta/seuraa"; -$a->strings["Toggle Archive status"] = "Arkistotila päälle/pois"; -$a->strings["Delete contact"] = "Poista kontakti"; -$a->strings["The post was created"] = "Julkaisu luotu"; -$a->strings["No valid account found."] = "Voimassa olevaa tiliä ei löytynyt."; -$a->strings["Password reset request issued. Check your email."] = "Salasanan nollauspyyntö lähetetty. Tarkista sähköpostisi."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = ""; -$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = ""; -$a->strings["Password reset requested at %s"] = "Salasanan nollauspyyntö kohteessa %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Pyyntöä ei voitu vahvistaa. (Saatoit lähettää pyyntöä aikaisemmin.) Salasanan nollaus epäonnistui."; -$a->strings["Request has expired, please make a new one."] = "Pyyntö on vanhentunut, tehkää uusi pyyntö."; -$a->strings["Forgot your Password?"] = "Unohditko salasanasi?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = ""; -$a->strings["Reset"] = "Nollaus"; -$a->strings["Your password has been reset as requested."] = "Salasanasi on nollattu pyynnöstäsi."; -$a->strings["Your new password is"] = "Uusi salasanasi on"; -$a->strings["Save or copy your new password - and then"] = "Tallenna tai kopioi uusi salasanasi, ja sitten"; -$a->strings["click here to login"] = "kirjaudu klikkaamalla tästä"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Salsanaa voi vaihtaa asetussivulta kirjautumisen jälkeen."; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = ""; -$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\n\t\t\tKäyttäjätilisi tiedot:\n\n\t\t\tSivuston osoite:\t%1\$s\n\t\t\tKäyttäjätunnus:\t%2\$s\n\t\t\tSalasana:\t%3\$s\n\n\t\t\tVoit vaihtaa salasanasi kirjautumisen jälkeen asetussivulta.\n\t\t"; -$a->strings["Your password has been changed at %s"] = "Salasanasi on vaihdettu sivustolla %s"; +$a->strings["This is Friendica, version"] = "Tämä on Friendica, versio"; +$a->strings["running at web location"] = "käynnissä osoitteessa"; +$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = "Vieraile osoitteessa Friendi.ca saadaksesi lisätietoja Friendica- projektista."; +$a->strings["Bug reports and issues: please visit"] = "Bugiraportit ja kysymykset: vieraile osoitteessa"; +$a->strings["the bugtracker at github"] = "githubin bugtrackeri"; +$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Ehdotukset ja palaute: lähetä sähköposti osoitteeseen \"info\" at \"friendi - piste - ca"; +$a->strings["Installed addons/apps:"] = "Asennettu lisäosat/sovellukset:"; +$a->strings["No installed addons/apps"] = "Ei asennettuja lisäosia/sovelluksia"; +$a->strings["Read about the Terms of Service of this node."] = "Lue tämän solmun käyttöehdot."; +$a->strings["On this server the following remote servers are blocked."] = "Tällä palvelimella seuraavat etäpalvelimet ovat estetty."; $a->strings["Friendica Communications Server - Setup"] = "Friendica viestinnän palvelin - asetukset"; $a->strings["Could not connect to database."] = "Tietokantaan ei saada yhteyttä."; $a->strings["Could not create table."] = "Taulun luominen epäonnistui."; @@ -1999,6 +1471,7 @@ $a->strings["Please ensure that the user that your web server runs as (e.g. www- $a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = ""; $a->strings["view/smarty3 is writable"] = "view/smarty3 on kirjoitettava"; $a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL-osoitteen uudelleenkirjoitus .htaccess-tiedostossa ei toimi. Tarkista palvelimen asetukset."; +$a->strings["Error message from Curl when fetching"] = ""; $a->strings["Url rewrite is working"] = "URL-osoitteen uudellenkirjoitus toimii"; $a->strings["ImageMagick PHP extension is not installed"] = "ImageMagick PHP-laajennus ei ole asetettu"; $a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP-laajennus on asetettu"; @@ -2007,170 +1480,244 @@ $a->strings["The database configuration file \".htconfig.php\" could not be writ $a->strings["

What next

"] = "

Mitä seuraavaksi

"; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "TÄRKEÄÄ: Sinun pitää asettaa [manuaalisesti] ajastettu tehtävä Workerille."; $a->strings["Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = ""; -$a->strings["Source input"] = ""; -$a->strings["BBCode::toPlaintext"] = ""; -$a->strings["BBCode::convert (raw HTML)"] = "BBCode::convert (raaka HTML)"; -$a->strings["BBCode::convert"] = "BBCode::convert"; -$a->strings["BBCode::convert => HTML::toBBCode"] = "BBCode::convert => HTML::toBBCode"; -$a->strings["BBCode::toMarkdown"] = "BBCode::toMarkdown"; -$a->strings["BBCode::toMarkdown => Markdown::convert"] = "BBCode::toMarkdown => Markdown::convert"; -$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = "BBCode::toMarkdown => Markdown::toBBCode"; -$a->strings["BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"] = "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"; -$a->strings["Source input \\x28Diaspora format\\x29"] = ""; -$a->strings["Markdown::toBBCode"] = "Markdown::toBBCode"; -$a->strings["Raw HTML input"] = "Raaka HTML-syöte"; -$a->strings["HTML Input"] = "HTML-syöte"; -$a->strings["HTML::toBBCode"] = "HTML::toBBCode"; -$a->strings["HTML::toPlaintext"] = "HTML::toPlaintext"; -$a->strings["Source text"] = "Lähdeteksti"; -$a->strings["BBCode"] = "BBCode"; -$a->strings["Markdown"] = "Markdown"; -$a->strings["HTML"] = "HTML"; -$a->strings["Remote privacy information not available."] = "Yksityisyyden etätietoja ei saatavilla."; -$a->strings["Visible to:"] = "Näkyvissä:"; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "%s-käyttäjän päivittäinen seinäviestiraja ylitetty. Viestin lähettäminen epäonnistui."; -$a->strings["Unable to check your home location."] = "Kotisijaintisi ei voitu tarkistaa."; -$a->strings["No recipient."] = "Vastaanottaja puuttuu."; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = ""; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Avainsanat puuttuu. Lisää avainsanoja oletusprofiiliisi."; -$a->strings["is interested in:"] = "on kiinnostunut seuraavista aiheista:"; -$a->strings["Profile Match"] = "Vastaavien profiilien haku"; -$a->strings["System down for maintenance"] = "Järjestelmä poiskytketty huoltoa varten"; -$a->strings["Tag removed"] = "Tägi poistettiin"; -$a->strings["Remove Item Tag"] = "Poista tägi"; -$a->strings["Select a tag to remove: "] = "Valitse tägi poistamista varten:"; -$a->strings["You must be logged in to use this module"] = "Sinun pitää kirjautua sisään, jotta voit käyttää tätä moduulia"; -$a->strings["Source URL"] = "Lähde URL"; -$a->strings["Only logged in users are permitted to perform a search."] = ""; -$a->strings["Too Many Requests"] = "Liian monta pyyntöä"; -$a->strings["Only one search per minute is permitted for not logged in users."] = ""; -$a->strings["Items tagged with: %s"] = "Kohteet joilla tunnisteet: %s"; -$a->strings["Export account"] = "Vie tili"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Vie tilin tiedot ja yhteystiedot. Käytä tätä tilisi varmuuskopiointiin ja/tai siirtämiseen toiselle palvelimelle."; -$a->strings["Export all"] = "Vie kaikki"; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Vie tilin tiedot, yhteystiedot ja kaikki nimikkeesi json-muodossa. Saattaa luoda hyvin suuren tiedoston ja kestää todella pitkään. Tämän avulla voit ottaa täydellisen varmuuskopion tilistäsi (valokuvia ei viedä)"; -$a->strings["Welcome to Friendica"] = "Tervetuloa Friendicaan"; -$a->strings["New Member Checklist"] = "Uuden jäsenen tarkistuslista"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = ""; -$a->strings["Getting Started"] = "Ensiaskeleet"; -$a->strings["Friendica Walk-Through"] = "Friendica -läpikäynti"; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = ""; -$a->strings["Go to Your Settings"] = "Omat Asetukset"; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = ""; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = ""; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = ""; -$a->strings["Edit Your Profile"] = "Muokkaa profiilisi"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = ""; -$a->strings["Profile Keywords"] = "Profiilin avainsanat"; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = ""; -$a->strings["Connecting"] = "Yhdistetään"; -$a->strings["Importing Emails"] = "Sähköpostin tuominen"; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = ""; -$a->strings["Go to Your Contacts Page"] = "Näytä minun kontaktit"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = ""; -$a->strings["Go to Your Site's Directory"] = "Näytä oman sivuston luettelo"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = ""; -$a->strings["Finding New People"] = "Kavereiden hankkiminen"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = ""; -$a->strings["Group Your Contacts"] = "Järjestä kontaktit ryhmiin"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = ""; -$a->strings["Why Aren't My Posts Public?"] = "Miksi julkaisuni eivät ole julkisia?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = ""; -$a->strings["Getting Help"] = "Avun saaminen"; -$a->strings["Go to the Help Section"] = "Näytä ohjeet"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = ""; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = ""; -$a->strings["Response from remote site was not understood."] = "Etäsivuston vastaus oli epäselvä."; -$a->strings["Unexpected response from remote site: "] = "Odottamaton vastaus etäsivustolta:"; -$a->strings["Confirmation completed successfully."] = "Vahvistus onnistui."; -$a->strings["Temporary failure. Please wait and try again."] = "Tilapäinen vika. Yritä myöhemmin uudelleen."; -$a->strings["Introduction failed or was revoked."] = "Kaverikutsu epäonnistui tai oli peruutettu."; -$a->strings["Remote site reported: "] = ""; -$a->strings["Unable to set contact photo."] = "Kontaktin kuvaa ei voitu asettaa"; -$a->strings["No user record found for '%s' "] = ""; -$a->strings["Our site encryption key is apparently messed up."] = "Sivustomme salausavain on sekaisin."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = ""; -$a->strings["Contact record was not found for you on our site."] = ""; -$a->strings["Site public key not available in contact record for URL %s."] = ""; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = ""; -$a->strings["Unable to set your contact credentials on our system."] = ""; -$a->strings["Unable to update your contact profile details on our system"] = ""; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s on liittynyt kohteeseen %2\$s"; -$a->strings["- select -"] = "- valitse -"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Rekisteröityminen onnistui. Saat kohta lisäohjeita sähköpostitse."; -$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = ""; -$a->strings["Registration successful."] = "Rekisteröityminen onnistui."; -$a->strings["Your registration can not be processed."] = "Rekisteröintisi ei voida käsitellä."; -$a->strings["Your registration is pending approval by the site owner."] = "Rekisteröintisi odottaa ylläpitäjän hyväksyntää."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = ""; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Jos OpenID ei ole tuttu, jätä kenttä tyhjäksi."; -$a->strings["Your OpenID (optional): "] = "OpenID -tunnus (valinnainen):"; -$a->strings["Include your profile in member directory?"] = "Lisää profiilisi jäsenluetteloon?"; -$a->strings["Note for the admin"] = "Viesti ylläpidolle"; -$a->strings["Leave a message for the admin, why you want to join this node"] = "Kerro yllåpitäjälle miksi haluat liittyä tähän Friendica -sivustoon"; -$a->strings["Membership on this site is by invitation only."] = "Tähän sivustoon voi liittyä vain kutsusta."; -$a->strings["Your invitation code: "] = "Kutsukoodisi:"; -$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Koko nimi (esim. Matti Meikäläinen, Aku Ankka):"; -$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "Sähköpostiosoite: (pitää olla toimiva osoite että rekisteröityminen onnistuu)"; -$a->strings["Leave empty for an auto generated password."] = "Jätä tyhjäksi jos haluat automaattisesti luotu salasanan."; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@%s'."] = ""; -$a->strings["Choose a nickname: "] = "Valitse lempinimi:"; -$a->strings["Import your profile to this friendica instance"] = "Tuo profiilisi tähän Friendica -instanssiin."; -$a->strings["No contacts in common."] = "Ei yhteisiä kontakteja."; -$a->strings["Only logged in users are permitted to perform a probing."] = ""; -$a->strings["Help:"] = "Ohje:"; -$a->strings["Page not found."] = "Sivua ei löytynyt."; -$a->strings["Invalid profile identifier."] = "Virheellinen profiilitunniste."; -$a->strings["Profile Visibility Editor"] = "Profiilin näkyvyyden muokkaaminen"; -$a->strings["Visible To"] = "Näkyvyys"; -$a->strings["All Contacts (with secure profile access)"] = ""; -$a->strings["Unable to locate original post."] = "Alkuperäinen julkaisu ei löydy."; -$a->strings["Empty post discarded."] = "Tyhjä julkaisu hylätty."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = ""; -$a->strings["You may visit them online at %s"] = ""; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = ""; -$a->strings["%s posted an update."] = "%s julkaisi päivityksen."; -$a->strings["Item not found"] = "Kohdetta ei löytynyt"; -$a->strings["Edit post"] = "Muokkaa viestiä"; -$a->strings["Alignment"] = "Kohdistaminen"; -$a->strings["Left"] = "Vasemmalle"; -$a->strings["Center"] = "Keskelle"; -$a->strings["Color scheme"] = "Värimalli"; -$a->strings["Posts font size"] = "Julkaisujen fonttikoko"; -$a->strings["Textareas font size"] = "Tekstikenttien fonttikoko"; -$a->strings["Repeat the image"] = "Toista kuva"; -$a->strings["Will repeat your image to fill the background."] = ""; -$a->strings["Stretch"] = "Venytä"; -$a->strings["Will stretch to width/height of the image."] = ""; -$a->strings["Resize fill and-clip"] = ""; -$a->strings["Resize to fill and retain aspect ratio."] = ""; -$a->strings["Resize best fit"] = ""; -$a->strings["Resize to best fit and retain aspect ratio."] = ""; -$a->strings["Default"] = "Oletus"; -$a->strings["Note"] = ""; -$a->strings["Check image permissions if all users are allowed to visit the image"] = ""; -$a->strings["Select scheme"] = "Valitse malli"; -$a->strings["Navigation bar background color"] = "Navigointipalkin taustaväri"; -$a->strings["Navigation bar icon color "] = "Navigointipalkin kuvakkeiden väri"; -$a->strings["Link color"] = "Linkin väri"; -$a->strings["Set the background color"] = "Valitse taustaväri"; -$a->strings["Content background opacity"] = "Sisällön taustasameus"; -$a->strings["Set the background image"] = "Valitse taustakuva"; -$a->strings["Login page background image"] = "Sisäänkirjautumissivun taustakuva"; -$a->strings["Login page background color"] = "Sisäänkirjautumissivun taustaväri"; -$a->strings["Leave background image and color empty for theme defaults"] = ""; -$a->strings["Guest"] = "Vieras"; -$a->strings["Visitor"] = "Vierailija"; -$a->strings["Comma separated list of helper forums"] = ""; -$a->strings["Set style"] = "Aseta tyyli"; -$a->strings["Community Pages"] = "Yhteisösivut"; -$a->strings["Community Profiles"] = "Yhteisöprofiilit"; -$a->strings["Help or @NewHere ?"] = ""; -$a->strings["Connect Services"] = "Yhdistä palvelut"; -$a->strings["Find Friends"] = "Etsi kavereita"; -$a->strings["Last users"] = "Viimeisimmät käyttäjät"; -$a->strings["Local Directory"] = "Paikallinen hakemisto"; -$a->strings["Quick Start"] = "Pika-aloitus"; +$a->strings["Total invitation limit exceeded."] = "Kutsuraja ylitetty."; +$a->strings["%s : Not a valid email address."] = "%s : Virheellinen sähköpostiosoite."; +$a->strings["Please join us on Friendica"] = "Tervetuloa Friendicaan"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Kutsuraja ylitetty. Ota yhteyttä ylläpitäjään."; +$a->strings["%s : Message delivery failed."] = "%s : Viestin toimitus epäonnistui."; +$a->strings["%d message sent."] = [ + 0 => "%d viesti lähetetty.", + 1 => "%d viestiä lähetetty.", +]; +$a->strings["You have no more invitations available"] = "Sinulla ei ole kutsuja jäljellä"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = ""; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = ""; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = ""; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = ""; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = ""; +$a->strings["To accept this invitation, please visit and register at %s."] = ""; +$a->strings["Send invitations"] = "Lähetä kutsut"; +$a->strings["Enter email addresses, one per line:"] = "Syötä sähköpostiosoitteet, yksi riviä kohden:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = ""; +$a->strings["You will need to supply this invitation code: \$invite_code"] = ""; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Kun olet rekisteröitynyt, lähetä minulle kaverikutsun profiilisivuni kautta:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = ""; +$a->strings["add"] = "lisää"; +$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [ + 0 => "", + 1 => "", +]; +$a->strings["Messages in this group won't be send to these receivers."] = ""; +$a->strings["No such group"] = "Ryhmä ei ole olemassa"; +$a->strings["Group: %s"] = "Ryhmä: %s"; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Yksityisviestit lähetetty tälle henkilölle saattaa näkyä muillekin."; +$a->strings["Invalid contact."] = "Virheellinen kontakti."; +$a->strings["Commented Order"] = "Järjestä viimeisimpien kommenttien mukaan"; +$a->strings["Sort by Comment Date"] = "Kommentit päivämäärän mukaan"; +$a->strings["Posted Order"] = "Järjestä julkaisupäivämäärän mukaan"; +$a->strings["Sort by Post Date"] = "Julkaisut päivämäärän mukaan"; +$a->strings["Posts that mention or involve you"] = "Julkaisut jotka liittyvät sinuun"; +$a->strings["New"] = "Uusi"; +$a->strings["Activity Stream - by date"] = ""; +$a->strings["Shared Links"] = "Jaetut linkit"; +$a->strings["Interesting Links"] = "Kiinnostavat linkit"; +$a->strings["Starred"] = "Tähtimerkitty"; +$a->strings["Favourite Posts"] = "Lempijulkaisut"; +$a->strings["Requested profile is not available."] = "Pyydettyä profiilia ei saatavilla."; +$a->strings["%s's posts"] = "%s: julkaisut"; +$a->strings["%s's comments"] = "%s: kommentit"; +$a->strings["%s's timeline"] = "%s: aikajana"; +$a->strings["Tips for New Members"] = "Vinkkejä uusille käyttäjille"; +$a->strings["Account"] = "Tili"; +$a->strings["Display"] = "Ulkonäkö"; +$a->strings["Social Networks"] = "Sosiaalinen media"; +$a->strings["Delegations"] = ""; +$a->strings["Connected apps"] = "Yhdistetyt sovellukset"; +$a->strings["Remove account"] = "Poista tili"; +$a->strings["Missing some important data!"] = "Tärkeää dataa puuttuu!"; +$a->strings["Failed to connect with email account using the settings provided."] = ""; +$a->strings["Email settings updated."] = "Sähköpostin asetukset päivitettiin."; +$a->strings["Features updated"] = "Ominaisuudet päivitetty"; +$a->strings["Relocate message has been send to your contacts"] = ""; +$a->strings["Passwords do not match. Password unchanged."] = "Salasanat eivät täsmää. Salasana ennallaan."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Tyhjä salasanakenttä ei ole sallittu. Salasana ennallaan."; +$a->strings["The new password has been exposed in a public data dump, please choose another."] = ""; +$a->strings["Wrong password."] = "Väärä salasana."; +$a->strings["Password changed."] = "Salasana vaihdettu."; +$a->strings["Password update failed. Please try again."] = "Salasanan vaihto epäonnistui. Yritä uudelleen."; +$a->strings[" Please use a shorter name."] = "Käytä lyhyempää nimeä."; +$a->strings[" Name too short."] = "Nimi on liian lyhyt."; +$a->strings["Wrong Password"] = "Väärä salasana"; +$a->strings["Invalid email."] = "Virheellinen sähköposti."; +$a->strings["Cannot change to that email."] = ""; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = ""; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = ""; +$a->strings["Settings updated."] = "Asetukset päivitetty."; +$a->strings["Add application"] = "Lisää sovellus"; +$a->strings["Consumer Key"] = "Kuluttajan avain"; +$a->strings["Consumer Secret"] = "Kuluttajasalaisuus"; +$a->strings["Redirect"] = "Uudelleenohjaus"; +$a->strings["Icon url"] = "Kuvakkeen URL-osoite"; +$a->strings["You can't edit this application."] = "Et voi muokata tätä sovellusta."; +$a->strings["Connected Apps"] = "Yhdistetyt sovellukset"; +$a->strings["Edit"] = "Muokkaa"; +$a->strings["Client key starts with"] = "Asiakasavain alkaa"; +$a->strings["No name"] = "Ei nimeä"; +$a->strings["Remove authorization"] = "Poista lupa"; +$a->strings["No Addon settings configured"] = "Lisäosa-asetukset puuttuvat"; +$a->strings["Addon Settings"] = "Lisäosa-asetukset"; +$a->strings["Additional Features"] = "Lisäominaisuuksia"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["enabled"] = "käytössä"; +$a->strings["disabled"] = "pois käytöstä"; +$a->strings["Built-in support for %s connectivity is %s"] = ""; +$a->strings["GNU Social (OStatus)"] = "GNU Social (OStatus)"; +$a->strings["Email access is disabled on this site."] = ""; +$a->strings["General Social Media Settings"] = "Yleiset some asetukset"; +$a->strings["Disable Content Warning"] = "Poista sisältövaroitus käytöstä"; +$a->strings["Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This disables the automatic collapsing and sets the content warning as the post title. Doesn't affect any other content filtering you eventually set up."] = ""; +$a->strings["Disable intelligent shortening"] = ""; +$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = ""; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automaattisesti seuraa GNU social (OStatus) seuraajat/mainitsijat"; +$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = ""; +$a->strings["Default group for OStatus contacts"] = "Oletusryhmä OStatus kontakteille"; +$a->strings["Your legacy GNU Social account"] = "Vanha GNU social käyttäjätilisi"; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; +$a->strings["Repair OStatus subscriptions"] = "Korjaa OStatus tilaukset"; +$a->strings["Email/Mailbox Setup"] = "Sähköpostin asennus"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = ""; +$a->strings["Last successful email check:"] = "Viimeisin onnistunut sähköpostitarkistus:"; +$a->strings["IMAP server name:"] = "IMAP-palvelimen nimi:"; +$a->strings["IMAP port:"] = "IMAP-porttti:"; +$a->strings["Security:"] = "Turvallisuus:"; +$a->strings["None"] = "Ei mitään"; +$a->strings["Email login name:"] = "Sähköpostitilin käyttäjätunnus:"; +$a->strings["Email password:"] = "Sähköpostin salasana:"; +$a->strings["Reply-to address:"] = "Vastausosoite:"; +$a->strings["Send public posts to all email contacts:"] = "Lähetä julkiset julkaisut kaikille kontakteille:"; +$a->strings["Action after import:"] = "Toiminta tuonnin jälkeen:"; +$a->strings["Mark as seen"] = "Merkitse luetuksi"; +$a->strings["Move to folder"] = "Siirrä kansioon"; +$a->strings["Move to folder:"] = "Siirrä kansioon:"; +$a->strings["%s - (Unsupported)"] = "%s - (Ei tueta)"; +$a->strings["%s - (Experimental)"] = "%s - (Kokeellinen)"; +$a->strings["Display Settings"] = "Näyttöasetukset"; +$a->strings["Display Theme:"] = "Käyttöliittymän teema:"; +$a->strings["Mobile Theme:"] = "Mobiiliteema:"; +$a->strings["Suppress warning of insecure networks"] = ""; +$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = ""; +$a->strings["Update browser every xx seconds"] = "Päivitä selain xx sekunnin välein"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Vähintään 10 sekuntia. -1 poistaa ominaisuuden käytöstä."; +$a->strings["Number of items to display per page:"] = ""; +$a->strings["Maximum of 100 items"] = "Enintään 100 kohdetta"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = ""; +$a->strings["Don't show emoticons"] = "Piilota hymiöt"; +$a->strings["Calendar"] = "Kalenteri"; +$a->strings["Beginning of week:"] = "Viikon alku:"; +$a->strings["Don't show notices"] = ""; +$a->strings["Infinite scroll"] = "Loputon selaaminen"; +$a->strings["Automatic updates only at the top of the network page"] = ""; +$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = ""; +$a->strings["Bandwith Saver Mode"] = "Kaistanleveyssäästömoodi"; +$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = ""; +$a->strings["Smart Threading"] = ""; +$a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = ""; +$a->strings["General Theme Settings"] = "Yleiset teeman asetukset"; +$a->strings["Custom Theme Settings"] = "Mukautetut teema-asetukset"; +$a->strings["Content Settings"] = "Sisältöasetukset"; +$a->strings["Theme settings"] = "Teeman asetukset"; +$a->strings["Unable to find your profile. Please contact your admin."] = "Profiilisi ei löytynyt. Ota yhteyttä ylläpitäjään."; +$a->strings["Account Types"] = "Tilityypit"; +$a->strings["Personal Page Subtypes"] = "Henkilökohtaisen sivun alatyypit"; +$a->strings["Community Forum Subtypes"] = "Yhteisöfoorumin alatyypit"; +$a->strings["Account for a personal profile."] = "Henkilökohtaisen profiilin käyttäjätili."; +$a->strings["Account for an organisation that automatically approves contact requests as \"Followers\"."] = ""; +$a->strings["Account for a news reflector that automatically approves contact requests as \"Followers\"."] = ""; +$a->strings["Account for community discussions."] = ""; +$a->strings["Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"."] = ""; +$a->strings["Account for a public profile that automatically approves contact requests as \"Followers\"."] = ""; +$a->strings["Automatically approves all contact requests."] = "Automaattisesti hyväksyy kaikki kontaktipyynnöt"; +$a->strings["Account for a popular profile that automatically approves contact requests as \"Friends\"."] = ""; +$a->strings["Private Forum [Experimental]"] = "Yksityisfoorumi [kokeellinen]"; +$a->strings["Requires manual approval of contact requests."] = ""; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = ""; +$a->strings["Publish your default profile in your local site directory?"] = "Julkaise oletusprofiilisi tämän sivuston paikallisluettelossa?"; +$a->strings["Your profile will be published in the global friendica directories (e.g. %s). Your profile will be visible in public."] = ""; +$a->strings["Publish your default profile in the global social directory?"] = "Julkaise oletusprofiilisi maailmanlaajuisessa sosiaaliluettelossa?"; +$a->strings["Your profile will be published in this node's local directory. Your profile details may be publicly visible depending on the system settings."] = ""; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = ""; +$a->strings["Your contact list won't be shown in your default profile page. You can decide to show your contact list separately for each additional profile you create"] = ""; +$a->strings["Hide your profile details from anonymous viewers?"] = ""; +$a->strings["Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Disables posting public messages to Diaspora and other networks."] = ""; +$a->strings["Allow friends to post to your profile page?"] = "Anna kavereiden julkaista profiilisivullasi?"; +$a->strings["Your contacts may write posts on your profile wall. These posts will be distributed to your contacts"] = ""; +$a->strings["Allow friends to tag your posts?"] = "Anna kavereiden lisätä tunnisteita julkaisuusi?"; +$a->strings["Your contacts can add additional tags to your posts."] = "Kontaktisi voi lisätä ylimääräisiä tunnisteita julkaisuusi."; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = ""; +$a->strings["If you like, Friendica may suggest new members to add you as a contact."] = ""; +$a->strings["Permit unknown people to send you private mail?"] = "Salli yksityisviesit tuntemattomilta?"; +$a->strings["Friendica network users may send you private messages even if they are not in your contact list."] = ""; +$a->strings["Profile is not published."] = "Profiili ei ole julkaistu."; +$a->strings["Your Identity Address is '%s' or '%s'."] = "Identiteettisi osoite on '%s' tai '%s'."; +$a->strings["Automatically expire posts after this many days:"] = ""; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Jos kenttä jää tyhjäksi, julkaisut eivät vanhene. Vanhentuneet julkaisut poistetaan."; +$a->strings["Advanced expiration settings"] = ""; +$a->strings["Advanced Expiration"] = ""; +$a->strings["Expire posts:"] = "Julkaisujen vanheneminen:"; +$a->strings["Expire personal notes:"] = ""; +$a->strings["Expire starred posts:"] = "Tähtimerkityt julkaisut vanhenee:"; +$a->strings["Expire photos:"] = "Kuvat vanhenee:"; +$a->strings["Only expire posts by others:"] = ""; +$a->strings["Account Settings"] = "Tiliasetukset"; +$a->strings["Password Settings"] = "Salasana-asetukset"; +$a->strings["Leave password fields blank unless changing"] = "Jätä salasana kenttää tyhjäksi jos et halua vaihtaa salasanaa"; +$a->strings["Current Password:"] = "Nykyinen salasana:"; +$a->strings["Your current password to confirm the changes"] = ""; +$a->strings["Password:"] = "Salasana:"; +$a->strings["Basic Settings"] = "Perusasetukset"; +$a->strings["Full Name:"] = "Koko nimi:"; +$a->strings["Email Address:"] = "Sähköpostiosoite:"; +$a->strings["Your Timezone:"] = "Aikavyöhyke:"; +$a->strings["Your Language:"] = "Kieli:"; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = ""; +$a->strings["Default Post Location:"] = "Julkaisun oletussijainti:"; +$a->strings["Use Browser Location:"] = "Käytä selaimen sijainti:"; +$a->strings["Security and Privacy Settings"] = "Turvallisuus ja tietosuoja-asetukset"; +$a->strings["Maximum Friend Requests/Day:"] = "Kaveripyyntöraja päivässä:"; +$a->strings["(to prevent spam abuse)"] = "(roskapostin estämiseksi)"; +$a->strings["Default Post Permissions"] = "Julkaisun oletuskäyttöoikeudet:"; +$a->strings["(click to open/close)"] = "(klikkaa auki/kiinni)"; +$a->strings["Default Private Post"] = ""; +$a->strings["Default Public Post"] = ""; +$a->strings["Default Permissions for New Posts"] = "Uuden julkaisun oletuskäyttöoikeudet"; +$a->strings["Maximum private messages per day from unknown people:"] = "Enimmäismäärä yksityisviestejä päivässä tuntemattomilta henkilöiltä:"; +$a->strings["Notification Settings"] = "Huomautusasetukset"; +$a->strings["By default post a status message when:"] = "Oletuksena julkaise tilapäivitys kun:"; +$a->strings["accepting a friend request"] = "hyväksyt kaveripyynnön"; +$a->strings["joining a forum/community"] = "liityt foorumiin/yhteisöön"; +$a->strings["making an interesting profile change"] = "muokkaat kiinnostavalla tavalla profiiliasi"; +$a->strings["Send a notification email when:"] = "Lähetä sähköposti-ilmoitus kun:"; +$a->strings["You receive an introduction"] = "Vastaanotat kaverikutsun"; +$a->strings["Your introductions are confirmed"] = "Kaverikutsusi on hyväksytty"; +$a->strings["Someone writes on your profile wall"] = "Joku kirjoittaa profiiliseinällesi"; +$a->strings["Someone writes a followup comment"] = "Joku vastaa kommenttiin"; +$a->strings["You receive a private message"] = "Vastaanotat yksityisviestin"; +$a->strings["You receive a friend suggestion"] = "Vastaanotat kaveriehdotuksen"; +$a->strings["You are tagged in a post"] = "Sinut on merkitty julkaisuun"; +$a->strings["You are poked/prodded/etc. in a post"] = "sinut on tökätty tms. julkaisussa"; +$a->strings["Activate desktop notifications"] = "Ota työpöytäilmoitukset käyttöön"; +$a->strings["Show desktop popup on new notifications"] = "Näytä uudet ilmoitukset ponnahdusikkunassa"; +$a->strings["Text-only notification emails"] = "Ilmoitussähköposteissa vain tekstiä"; +$a->strings["Send text only notification emails, without the html part"] = "Lähetä ilmoitussähköposteissa vain tekstiä ilman HTML-koodia"; +$a->strings["Show detailled notifications"] = "Näytä yksityiskohtaiset ilmoitukset"; +$a->strings["Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed."] = ""; +$a->strings["Advanced Account/Page Type Settings"] = "Käyttäjätili/sivutyyppi lisäasetuksia"; +$a->strings["Change the behaviour of this account for special situations"] = ""; +$a->strings["Relocate"] = "Uudelleensijoitus"; +$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = ""; +$a->strings["Resend relocate message to contacts"] = ""; +$a->strings["default"] = "oletus"; $a->strings["greenzero"] = "greenzero"; $a->strings["purplezero"] = "purplezero"; $a->strings["easterbunny"] = "easterbunny"; @@ -2178,4 +1725,463 @@ $a->strings["darkzero"] = "darkzero"; $a->strings["comix"] = "comix"; $a->strings["slackr"] = "slackr"; $a->strings["Variations"] = "Muunnelmat"; +$a->strings["Top Banner"] = ""; +$a->strings["Resize image to the width of the screen and show background color below on long pages."] = ""; +$a->strings["Full screen"] = ""; +$a->strings["Resize image to fill entire screen, clipping either the right or the bottom."] = ""; +$a->strings["Single row mosaic"] = ""; +$a->strings["Resize image to repeat it on a single row, either vertical or horizontal."] = ""; +$a->strings["Mosaic"] = ""; +$a->strings["Repeat image to fill the screen."] = ""; +$a->strings["Custom"] = ""; +$a->strings["Note"] = ""; +$a->strings["Check image permissions if all users are allowed to see the image"] = ""; +$a->strings["Select color scheme"] = ""; +$a->strings["Navigation bar background color"] = "Navigointipalkin taustaväri"; +$a->strings["Navigation bar icon color "] = "Navigointipalkin kuvakkeiden väri"; +$a->strings["Link color"] = "Linkin väri"; +$a->strings["Set the background color"] = "Valitse taustaväri"; +$a->strings["Content background opacity"] = "Sisällön taustasameus"; +$a->strings["Set the background image"] = "Valitse taustakuva"; +$a->strings["Background image style"] = ""; +$a->strings["Login page background image"] = "Sisäänkirjautumissivun taustakuva"; +$a->strings["Login page background color"] = "Sisäänkirjautumissivun taustaväri"; +$a->strings["Leave background image and color empty for theme defaults"] = ""; +$a->strings["Guest"] = "Vieras"; +$a->strings["Visitor"] = "Vierailija"; +$a->strings["Logout"] = "Kirjaudu ulos"; +$a->strings["End this session"] = "Lopeta istunto"; +$a->strings["Your posts and conversations"] = "Omat julkaisut ja keskustelut"; +$a->strings["Your profile page"] = "Oma profiilisivu"; +$a->strings["Your photos"] = "Omat kuvat"; +$a->strings["Videos"] = "Videot"; +$a->strings["Your videos"] = "Omat videot"; +$a->strings["Your events"] = "Omat tapahtumat"; +$a->strings["Conversations from your friends"] = "Kavereiden keskustelut"; +$a->strings["Events and Calendar"] = "Tapahtumat ja kalenteri"; +$a->strings["Private mail"] = "Yksityinen posti"; +$a->strings["Account settings"] = "Tiliasetukset"; +$a->strings["Manage/edit friends and contacts"] = "Hallitse/muokkaa kaverit ja kontaktit"; +$a->strings["Alignment"] = "Kohdistaminen"; +$a->strings["Left"] = "Vasemmalle"; +$a->strings["Center"] = "Keskelle"; +$a->strings["Color scheme"] = "Värimalli"; +$a->strings["Posts font size"] = "Julkaisujen fonttikoko"; +$a->strings["Textareas font size"] = "Tekstikenttien fonttikoko"; +$a->strings["Comma separated list of helper forums"] = ""; +$a->strings["don't show"] = "älä näytä"; +$a->strings["show"] = "näytä"; +$a->strings["Set style"] = "Aseta tyyli"; +$a->strings["Community Pages"] = "Yhteisösivut"; +$a->strings["Community Profiles"] = "Yhteisöprofiilit"; +$a->strings["Help or @NewHere ?"] = ""; +$a->strings["Connect Services"] = "Yhdistä palvelut"; +$a->strings["Find Friends"] = "Etsi kavereita"; +$a->strings["Last users"] = "Viimeisimmät käyttäjät"; +$a->strings["Find People"] = "Löydä ihmisiä"; +$a->strings["Enter name or interest"] = "Syötä nimi tai harrastus"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esim. Matti Meikäläinen, kalastus yms."; +$a->strings["Similar Interests"] = "Yhteiset harrastukset"; +$a->strings["Random Profile"] = "Satunnainen profiili"; +$a->strings["Invite Friends"] = "Kutsu kavereita"; +$a->strings["Local Directory"] = "Paikallinen hakemisto"; +$a->strings["External link to forum"] = "Ulkoinen linkki foorumiin"; +$a->strings["Quick Start"] = "Pika-aloitus"; +$a->strings["Error decoding account file"] = ""; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Virhe: tiedostosta puuttuu versiotiedot! Saattaa olla että tämä ei ole Friendica -tilitiedosto?"; +$a->strings["User '%s' already exists on this server!"] = "Käyttäjä '%s' on jo olemassa tällä palvelimella!"; +$a->strings["User creation error"] = "Virhe käyttäjän luomisessa"; +$a->strings["User profile creation error"] = "Virhe käyttäjäprofiilin luomisessa"; +$a->strings["%d contact not imported"] = [ + 0 => "%d kontakti ei tuotu", + 1 => "%d kontakteja ei tuotu", +]; +$a->strings["Done. You can now login with your username and password"] = "Suoritettu. Voit nyt kirjautua sisään käyttäjätunnuksellasi."; +$a->strings["Post to Email"] = "Viesti sähköpostiin"; +$a->strings["Hide your profile details from unknown viewers?"] = "Piilota profiilitietosi tuntemattomilta?"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; +$a->strings["Visible to everybody"] = "Näkyvissä kaikille"; +$a->strings["Close"] = "Sulje"; +$a->strings["Enter new password: "] = ""; +$a->strings["Password can't be empty"] = ""; +$a->strings["Could not find any unarchived contact entry for this URL (%s)"] = ""; +$a->strings["The contact entries have been archived"] = ""; +$a->strings["System"] = "Järjestelmä"; +$a->strings["Home"] = "Koti"; +$a->strings["Introductions"] = "Esittelyt"; +$a->strings["%s commented on %s's post"] = "%s kommentoi julkaisuun jonka kirjoitti %s"; +$a->strings["%s created a new post"] = "%s loi uuden julkaisun"; +$a->strings["%s liked %s's post"] = "%s tykkäsi julkaisusta jonka kirjoitti %s"; +$a->strings["%s disliked %s's post"] = "%s ei tykännyt julkaisusta jonka kirjoitti %s"; +$a->strings["%s is attending %s's event"] = "%s osallistuu tapahtumaan jonka järjestää %s"; +$a->strings["%s is not attending %s's event"] = "%s ei osallistu tapahtumaan jonka järjestää %s"; +$a->strings["%s may attend %s's event"] = "%s ehkä osallistuu tapahtumaan jonka järjestää %s"; +$a->strings["%s is now friends with %s"] = "%s ja %s ovat kavereita"; +$a->strings["Friend Suggestion"] = "Kaveriehdotus"; +$a->strings["Friend/Connect Request"] = "Ystävä/yhteyspyyntö"; +$a->strings["New Follower"] = "Uusi seuraaja"; +$a->strings["Birthday:"] = "Syntymäpäivä:"; +$a->strings["YYYY-MM-DD or MM-DD"] = "VVVV-KK-PP tai KK-PP"; +$a->strings["never"] = "ei ikinä"; +$a->strings["less than a second ago"] = "alle sekunti sitten"; +$a->strings["year"] = "vuosi"; +$a->strings["years"] = "vuotta"; +$a->strings["months"] = "kuukautta"; +$a->strings["weeks"] = "viikkoa"; +$a->strings["days"] = "päivää"; +$a->strings["hour"] = "tunti"; +$a->strings["hours"] = "tuntia"; +$a->strings["minute"] = "minuutti"; +$a->strings["minutes"] = "inuuttia"; +$a->strings["second"] = "sekunti"; +$a->strings["seconds"] = "sekuntia"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s sitten"; +$a->strings["view full size"] = "näytä täysikokoisena"; +$a->strings["Image/photo"] = "Kuva/valokuva"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["$1 wrote:"] = "$1 kirjoitti:"; +$a->strings["Encrypted content"] = "Salattu sisältö"; +$a->strings["Invalid source protocol"] = "Virheellinen lähdeprotokolla"; +$a->strings["Invalid link protocol"] = "Virheellinen linkkiprotokolla"; +$a->strings["General Features"] = "Yleiset ominaisuudet"; +$a->strings["Multiple Profiles"] = ""; +$a->strings["Ability to create multiple profiles"] = ""; +$a->strings["Photo Location"] = "Kuvan sijainti"; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = ""; +$a->strings["Export Public Calendar"] = "Vie julkinen kalenteri"; +$a->strings["Ability for visitors to download the public calendar"] = ""; +$a->strings["Post Composition Features"] = ""; +$a->strings["Post Preview"] = "Viestin esikatselu"; +$a->strings["Allow previewing posts and comments before publishing them"] = ""; +$a->strings["Auto-mention Forums"] = ""; +$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = ""; +$a->strings["Network Sidebar Widgets"] = ""; +$a->strings["Search by Date"] = "Päivämäärähaku"; +$a->strings["Ability to select posts by date ranges"] = ""; +$a->strings["List Forums"] = "Näytä foorumit"; +$a->strings["Enable widget to display the forums your are connected with"] = ""; +$a->strings["Group Filter"] = "Ryhmäsuodatin"; +$a->strings["Enable widget to display Network posts only from selected group"] = ""; +$a->strings["Network Filter"] = "Verkkosuodatin"; +$a->strings["Enable widget to display Network posts only from selected network"] = ""; +$a->strings["Save search terms for re-use"] = "Tallenna hakutermit myöhempää käyttöä varten"; +$a->strings["Network Tabs"] = "Verkko välilehdet"; +$a->strings["Network Personal Tab"] = ""; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; +$a->strings["Network New Tab"] = ""; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = ""; +$a->strings["Network Shared Links Tab"] = ""; +$a->strings["Enable tab to display only Network posts with links in them"] = ""; +$a->strings["Post/Comment Tools"] = "Julkaisu/kommentti työkalut"; +$a->strings["Multiple Deletion"] = ""; +$a->strings["Select and delete multiple posts/comments at once"] = "Valitse ja poista monta julkaisua/kommentia yhtaikaa"; +$a->strings["Edit Sent Posts"] = "Muokkaa lähetetyt julkaisut"; +$a->strings["Edit and correct posts and comments after sending"] = "Muokkaa ja korjaa julkaisuja ja kommenteja julkaisun jälkeen"; +$a->strings["Tagging"] = "Tunnisteet"; +$a->strings["Ability to tag existing posts"] = "Saa merkitä olemassa olevia julkaisuja"; +$a->strings["Post Categories"] = "Julkaisuluokat"; +$a->strings["Add categories to your posts"] = "Luokittele julkaisusi"; +$a->strings["Saved Folders"] = "Tallennetut kansiot"; +$a->strings["Ability to file posts under folders"] = ""; +$a->strings["Dislike Posts"] = ""; +$a->strings["Ability to dislike posts/comments"] = ""; +$a->strings["Star Posts"] = "Tähtimerkityt julkaisut"; +$a->strings["Ability to mark special posts with a star indicator"] = "Salli julkaisujen tähtimerkintä"; +$a->strings["Mute Post Notifications"] = "Mykistä julkaisuilmoitukset"; +$a->strings["Ability to mute notifications for a thread"] = ""; +$a->strings["Advanced Profile Settings"] = "Profiilin lisäasetukset"; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = ""; +$a->strings["Tag Cloud"] = "Tunnistepilvi"; +$a->strings["Provide a personal tag cloud on your profile page"] = "Näytä henkilökohtainen tunnistepilvi profiilisivullasi"; +$a->strings["Display Membership Date"] = "Näytä liittymispäivämäärä"; +$a->strings["Display membership date in profile"] = "Näytä liittymispäivämäärä profiilissa"; +$a->strings["Embedding disabled"] = "Upottaminen poistettu käytöstä"; +$a->strings["Embedded content"] = "Upotettu sisältö"; +$a->strings["Export"] = "Vie"; +$a->strings["Export calendar as ical"] = "Vie kalenteri ical -tiedostona"; +$a->strings["Export calendar as csv"] = "Vie kalenteri csv-tiedostona"; +$a->strings["Frequently"] = "Usein"; +$a->strings["Hourly"] = "Tunneittain"; +$a->strings["Twice daily"] = "Kahdesti päivässä"; +$a->strings["Daily"] = "Päivittäin"; +$a->strings["Weekly"] = "Viikottain"; +$a->strings["Monthly"] = "Kuukausittain"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Diaspora -liitin"; +$a->strings["GNU Social Connector"] = "GNU social -liitin"; +$a->strings["pnut"] = "pnut"; +$a->strings["App.net"] = "App.net"; +$a->strings["Male"] = "Mies"; +$a->strings["Female"] = "Nainen"; +$a->strings["Currently Male"] = "Tällä hetkellä mies"; +$a->strings["Currently Female"] = "Tällä hetkellä nainen"; +$a->strings["Mostly Male"] = "Enimmäkseen mies"; +$a->strings["Mostly Female"] = "Enimmäkseen nainen"; +$a->strings["Transgender"] = "Transsukupuolinen"; +$a->strings["Intersex"] = "Intersukupuolinen"; +$a->strings["Transsexual"] = "Transsukupuolinen"; +$a->strings["Hermaphrodite"] = "Hermafrodiitti"; +$a->strings["Neuter"] = "Neutri"; +$a->strings["Non-specific"] = "Ei-binäärinen"; +$a->strings["Other"] = "Toinen"; +$a->strings["Males"] = "Miehet"; +$a->strings["Females"] = "Naiset"; +$a->strings["Gay"] = "Homo"; +$a->strings["Lesbian"] = "Lesbo"; +$a->strings["No Preference"] = ""; +$a->strings["Bisexual"] = "Biseksuaali"; +$a->strings["Autosexual"] = ""; +$a->strings["Abstinent"] = "Selibaatissa elävä"; +$a->strings["Virgin"] = "Neitsyt"; +$a->strings["Deviant"] = ""; +$a->strings["Fetish"] = ""; +$a->strings["Oodles"] = ""; +$a->strings["Nonsexual"] = "Aseksuaali"; +$a->strings["Single"] = "Sinkku"; +$a->strings["Lonely"] = "Yksinäinen"; +$a->strings["Available"] = ""; +$a->strings["Unavailable"] = ""; +$a->strings["Has crush"] = "Ihastunut"; +$a->strings["Infatuated"] = "Hullaantunut"; +$a->strings["Dating"] = "Seurustelee"; +$a->strings["Unfaithful"] = ""; +$a->strings["Sex Addict"] = ""; +$a->strings["Friends"] = "Kaverit"; +$a->strings["Friends/Benefits"] = ""; +$a->strings["Casual"] = ""; +$a->strings["Engaged"] = "Kihloissa"; +$a->strings["Married"] = "Naimisissa"; +$a->strings["Imaginarily married"] = ""; +$a->strings["Partners"] = "Kumppanit"; +$a->strings["Cohabiting"] = "Avoliitossa"; +$a->strings["Common law"] = "Avoliitossa"; +$a->strings["Happy"] = "Iloinen"; +$a->strings["Not looking"] = "Ei etsi"; +$a->strings["Swinger"] = ""; +$a->strings["Betrayed"] = "Petetty"; +$a->strings["Separated"] = ""; +$a->strings["Unstable"] = "Epävakaa"; +$a->strings["Divorced"] = "Eronnut"; +$a->strings["Imaginarily divorced"] = ""; +$a->strings["Widowed"] = "Leski"; +$a->strings["Uncertain"] = "Epävarma"; +$a->strings["It's complicated"] = "Se on monimutkaista"; +$a->strings["Don't care"] = "Ei ole väliä"; +$a->strings["Ask me"] = "Kysy minulta"; +$a->strings["Nothing new here"] = ""; +$a->strings["Clear notifications"] = "Tyhjennä ilmoitukset"; +$a->strings["Personal notes"] = ""; +$a->strings["Your personal notes"] = ""; +$a->strings["Sign in"] = "Kirjaudu sisään"; +$a->strings["Home Page"] = "Kotisivu"; +$a->strings["Create an account"] = "Luo tili"; +$a->strings["Help and documentation"] = "Ohjeet ja dokmentointi"; +$a->strings["Apps"] = "Sovellukset"; +$a->strings["Addon applications, utilities, games"] = "Lisäosa sovelluksia, apuohjelmia, pelejä"; +$a->strings["Search site content"] = "Sivustohaku"; +$a->strings["Community"] = "Yhteisö"; +$a->strings["Conversations on this and other servers"] = "Keskustelut täällä ja muilla palvelimilla"; +$a->strings["Directory"] = "Luettelo"; +$a->strings["People directory"] = "Henkilöluettelo"; +$a->strings["Information about this friendica instance"] = "Lisätietoja tästä Friendica -instanssista"; +$a->strings["Network Reset"] = "Verkon nollaus"; +$a->strings["Load Network page with no filters"] = ""; +$a->strings["Friend Requests"] = "Kaveripyynnöt"; +$a->strings["See all notifications"] = "Näytä kaikki ilmoitukset"; +$a->strings["Mark all system notifications seen"] = ""; +$a->strings["Inbox"] = "Saapuneet"; +$a->strings["Outbox"] = "Lähtevät"; +$a->strings["Manage"] = "Hallitse"; +$a->strings["Manage other pages"] = "Hallitse muita sivuja"; +$a->strings["Profiles"] = "Profiilit"; +$a->strings["Manage/Edit Profiles"] = "Hallitse/muokka profiilit"; +$a->strings["Site setup and configuration"] = "Sivuston asennus ja asetukset"; +$a->strings["Navigation"] = "Navigointi"; +$a->strings["Site map"] = "Sivustokartta"; +$a->strings["Add New Contact"] = "Lisää uusi kontakti"; +$a->strings["Enter address or web location"] = "Syötä verkko-osoite"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esimerkki: bob@example.com, http://example.com/barbara"; +$a->strings["%d invitation available"] = [ + 0 => "%d kutsu saatavilla", + 1 => "%d kutsuja saatavilla", +]; +$a->strings["Networks"] = "Verkot"; +$a->strings["All Networks"] = "Kaikki verkot"; +$a->strings["Everything"] = "Kaikki"; +$a->strings["Categories"] = "Luokat"; +$a->strings["%d contact in common"] = [ + 0 => "%d yhteinen kontakti", + 1 => "%d yhteistä kontaktia", +]; +$a->strings["There are no tables on MyISAM."] = "MyISAMissa ei ole taulukoita."; +$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\t\tFriendican kehittäjät askettäin julkaisi %s-päivityksen,\n\t\t\t\tmutta asennuksessa jotain meni pahasti pieleen.\n\t\t\t\tTämä on korjattava pian, ja en voi korjata sitä itse. Ota yhteyttä\n\t\t\t\tFriendica -kehittäjään jos et voi auttaa. Tietokantani saattaa olla virheellinen."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "Virheviesti on\n[pre]%s[/pre]"; +$a->strings["\nError %d occurred during database update:\n%s\n"] = "\n%d virhe tapahtui tietokannan päivityksen aikana:\n%s\n"; +$a->strings["Errors encountered performing database changes: "] = "Tietokannan muokkauksessa tapahtui virheitä:"; +$a->strings[": Database update"] = ": Tietokannan päivitys"; +$a->strings["%s: updating %s table."] = "%s: päivitetään %s-taulukkoa."; +$a->strings["[no subject]"] = "[ei aihetta]"; +$a->strings["Starts:"] = "Alkaa:"; +$a->strings["Finishes:"] = "Päättyy:"; +$a->strings["all-day"] = "koko päivä"; +$a->strings["Jun"] = "Kes."; +$a->strings["Sept"] = "Syy."; +$a->strings["No events to display"] = "Ei näytettäviä tapahtumia."; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Muokkaa tapahtumaa"; +$a->strings["Duplicate event"] = "Monista tapahtuma"; +$a->strings["Delete event"] = "Poista tapahtuma"; +$a->strings["D g:i A"] = ""; +$a->strings["g:i A"] = ""; +$a->strings["Show map"] = "Näytä kartta"; +$a->strings["Hide map"] = "Piilota kartta"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = ""; +$a->strings["Default privacy group for new contacts"] = "Oletusryhmä uusille kontakteille"; +$a->strings["Everybody"] = "Kaikki"; +$a->strings["edit"] = "muokkaa"; +$a->strings["Edit group"] = "Muokkaa ryhmää"; +$a->strings["Contacts not in any group"] = "Kontaktit ilman ryhmää"; +$a->strings["Create a new group"] = "Luo uusi ryhmä"; +$a->strings["Edit groups"] = "Muokkaa ryhmiä"; +$a->strings["Login failed"] = "Kirjautuminen epäonnistui"; +$a->strings["Not enough information to authenticate"] = ""; +$a->strings["An invitation is required."] = ""; +$a->strings["Invitation could not be verified."] = "Kutsua ei voitu vahvistaa."; +$a->strings["Invalid OpenID url"] = "Virheellinen OpenID url-osoite"; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; +$a->strings["The error message was:"] = "Virheviesti oli:"; +$a->strings["Please enter the required information."] = "Syötä tarvittavat tiedot."; +$a->strings["Please use a shorter name."] = "Käytä lyhyempää nimeä."; +$a->strings["Name too short."] = "Nimi on liian lyhyt."; +$a->strings["That doesn't appear to be your full (First Last) name."] = ""; +$a->strings["Your email domain is not among those allowed on this site."] = "Sähköpostiosoitteesi verkkotunnus on tämän sivuston estolistalla."; +$a->strings["Not a valid email address."] = "Virheellinen sähköpostiosoite."; +$a->strings["Cannot use that email."] = "Sähköpostiosoitetta ei voitu käyttää."; +$a->strings["Your nickname can only contain a-z, 0-9 and _."] = "Nimimerkki voi sisältää a-z, 0-9 ja _."; +$a->strings["Nickname is already registered. Please choose another."] = "Valitsemasi nimimerkki on jo käytössä. Valitse toinen nimimerkki."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "VAKAVA VIRHE: Salausavainten luominen epäonnistui."; +$a->strings["An error occurred during registration. Please try again."] = "Rekisteröityminen epäonnistui. Yritä uudelleen."; +$a->strings["An error occurred creating your default profile. Please try again."] = "Oletusprofiilin luominen epäonnistui. Yritä uudelleen."; +$a->strings["An error occurred creating your self contact. Please try again."] = ""; +$a->strings["An error occurred creating your default contact group. Please try again."] = ""; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t\t"] = ""; +$a->strings["Registration at %s"] = "Rekisteröityminen kohteessa %s"; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t"] = ""; +$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = ""; +$a->strings["Drop Contact"] = "Poista kontakti"; +$a->strings["Organisation"] = "Järjestö"; +$a->strings["News"] = "Uutiset"; +$a->strings["Forum"] = "Keskustelupalsta"; +$a->strings["Connect URL missing."] = "Yhteys URL-linkki puuttuu."; +$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = ""; +$a->strings["This site is not configured to allow communications with other networks."] = ""; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Yhteensopivia viestintäprotokolleja tai syötteitä ei löytynyt."; +$a->strings["The profile address specified does not provide adequate information."] = "Annettu profiiliosoite ei sisällä riittävästi tietoa."; +$a->strings["An author or name was not found."] = ""; +$a->strings["No browser URL could be matched to this address."] = ""; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = ""; +$a->strings["Use mailto: in front of address to force email check."] = ""; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = ""; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = ""; +$a->strings["Unable to retrieve contact information."] = "Kontaktin tietoja ei voitu hakea."; +$a->strings["%s's birthday"] = "%s: syntymäpäivä"; +$a->strings["Happy Birthday %s"] = "Hyvää syntymäpäivää %s"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s osallistuu tapahtumaan %3\$s, jonka järjestää %2\$s"; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s ei osallistu tapahtumaan %3\$s, jonka järjestää %2\$s"; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s ehkä osallistuu tapahtumaan %3\$s, jonka järjestää %2\$s"; +$a->strings["Requested account is not available."] = "Pyydetty käyttäjätili ei ole saatavilla."; +$a->strings["Edit profile"] = "Muokkaa profiilia"; +$a->strings["Atom feed"] = "Atom -syöte"; +$a->strings["Manage/edit profiles"] = "Hallitse/muokkaa profiilit"; +$a->strings["g A l F d"] = ""; +$a->strings["F d"] = ""; +$a->strings["[today]"] = "[tänään]"; +$a->strings["Birthday Reminders"] = "Syntymäpäivämuistutukset"; +$a->strings["Birthdays this week:"] = "Syntymäpäiviä tällä viikolla:"; +$a->strings["[No description]"] = "[Ei kuvausta]"; +$a->strings["Event Reminders"] = "Tapahtumamuistutukset"; +$a->strings["Events this week:"] = "Tapahtumia tällä viikolla:"; +$a->strings["Member since:"] = "Liittymispäivämäärä:"; +$a->strings["j F, Y"] = ""; +$a->strings["j F"] = ""; +$a->strings["Age:"] = "Ikä:"; +$a->strings["for %1\$d %2\$s"] = ""; +$a->strings["Religion:"] = "Uskonto:"; +$a->strings["Hobbies/Interests:"] = "Harrastukset:"; +$a->strings["Contact information and Social Networks:"] = "Yhteystiedot ja sosiaalinen media:"; +$a->strings["Musical interests:"] = "Musiikki:"; +$a->strings["Books, literature:"] = "Kirjat, kirjallisuus:"; +$a->strings["Television:"] = "Televisio:"; +$a->strings["Film/dance/culture/entertainment:"] = "Elokuvat/tanssit/kulttuuri/viihde:"; +$a->strings["Love/Romance:"] = "Rakkaus/romanssi:"; +$a->strings["Work/employment:"] = "Työ:"; +$a->strings["School/education:"] = "Koulutus:"; +$a->strings["Forums:"] = "Foorumit:"; +$a->strings["Only You Can See This"] = "Vain sinä näet tämän"; +$a->strings["%s is now following %s."] = "%s seuraa %s."; +$a->strings["following"] = "seuraa"; +$a->strings["%s stopped following %s."] = "%s ei enää seuraa %s."; +$a->strings["stopped following"] = "ei enää seuraa"; +$a->strings["Sharing notification from Diaspora network"] = ""; +$a->strings["Attachments:"] = "Liitteitä:"; +$a->strings["(no subject)"] = "(ei aihetta)"; +$a->strings["Create a New Account"] = "Luo uusi käyttäjätili"; +$a->strings["Password: "] = "Salasana:"; +$a->strings["Remember me"] = "Muista minut"; +$a->strings["Or login using OpenID: "] = "Kirjaudu sisään OpenID -tunnuksella:"; +$a->strings["Forgot your password?"] = "Unohditko salasanasi?"; +$a->strings["Website Terms of Service"] = "Verkkosivun käyttöehdot"; +$a->strings["terms of service"] = "käyttöehdot"; +$a->strings["Website Privacy Policy"] = "Sivuston tietosuojakäytäntö"; +$a->strings["privacy policy"] = "tietosuojakäytäntö"; +$a->strings["Logged out."] = "Kirjautunut ulos."; +$a->strings["Privacy Statement"] = "Tietosuojalausunto"; +$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = ""; +$a->strings["This data is required for communication and is passed on to the nodes of the communication partners. Users can enter additional private data that may be transmitted to the communication partners accounts."] = ""; +$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent."] = ""; +$a->strings["This entry was edited"] = "Tämä kohde oli muokattu"; +$a->strings["save to folder"] = "tallenna kansioon"; +$a->strings["I will attend"] = "Osallistun"; +$a->strings["I will not attend"] = "En aio osallistua"; +$a->strings["I might attend"] = "Ehkä osallistun"; +$a->strings["add star"] = "lisää tähti"; +$a->strings["remove star"] = "poista tähti"; +$a->strings["toggle star status"] = "Tähtitila päälle/pois"; +$a->strings["starred"] = "tähtimerkitty"; +$a->strings["ignore thread"] = "Sivuuta keskustelu"; +$a->strings["unignore thread"] = "Seuraa keskustelua"; +$a->strings["toggle ignore status"] = "Sivuuta/seuraa"; +$a->strings["add tag"] = "lisää tägi"; +$a->strings["like"] = "tykkää"; +$a->strings["dislike"] = "en tykkää"; +$a->strings["Share this"] = "Jaa tämä"; +$a->strings["share"] = "jaa"; +$a->strings["to"] = ""; +$a->strings["via"] = "kautta"; +$a->strings["Wall-to-Wall"] = "Seinäjulkaisu"; +$a->strings["via Wall-To-Wall:"] = "seinäjulkaisun kautta"; +$a->strings["%d comment"] = [ + 0 => "%d kommentti", + 1 => "%d kommentteja", +]; +$a->strings["Bold"] = "Lihavoitu"; +$a->strings["Italic"] = "Kursivoitu"; +$a->strings["Underline"] = "Alleviivaus"; +$a->strings["Quote"] = "Lainaus"; +$a->strings["Code"] = "Koodi"; +$a->strings["Image"] = "Kuva"; +$a->strings["Link"] = "Linkki"; +$a->strings["Video"] = "Video"; +$a->strings["Delete this item?"] = "Poista tämä kohde?"; +$a->strings["show fewer"] = "näytä vähemmän"; $a->strings["toggle mobile"] = "Mobiilisivusto päälle/pois"; +$a->strings["Update %s failed. See error logs."] = "%s päivitys epäonnistui, katso virhelokit."; diff --git a/view/lang/pl/messages.po b/view/lang/pl/messages.po index a09bd6a28..eecbfba40 100644 --- a/view/lang/pl/messages.po +++ b/view/lang/pl/messages.po @@ -38,8 +38,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-04-20 09:30+0200\n" -"PO-Revision-Date: 2018-04-20 20:52+0000\n" +"POT-Creation-Date: 2018-04-22 11:15+0200\n" +"PO-Revision-Date: 2018-04-27 20:47+0000\n" "Last-Translator: Waldemar Stoczkowski \n" "Language-Team: Polish (http://www.transifex.com/Friendica/friendica/language/pl/)\n" "MIME-Version: 1.0\n" @@ -48,67 +48,10 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: include/items.php:342 mod/notice.php:22 mod/viewsrc.php:21 -#: mod/display.php:72 mod/display.php:252 mod/display.php:354 -#: mod/admin.php:276 mod/admin.php:1854 mod/admin.php:2102 -msgid "Item not found." -msgstr "Element nie znaleziony." - -#: include/items.php:382 -msgid "Do you really want to delete this item?" -msgstr "Czy na pewno chcesz usunąć ten element?" - -#: include/items.php:384 mod/api.php:110 mod/suggest.php:38 -#: mod/dfrn_request.php:653 mod/message.php:138 mod/contacts.php:472 -#: mod/follow.php:150 mod/profiles.php:636 mod/profiles.php:639 -#: mod/profiles.php:661 mod/register.php:237 mod/settings.php:1105 -#: mod/settings.php:1111 mod/settings.php:1118 mod/settings.php:1122 -#: mod/settings.php:1126 mod/settings.php:1130 mod/settings.php:1134 -#: mod/settings.php:1138 mod/settings.php:1158 mod/settings.php:1159 -#: mod/settings.php:1160 mod/settings.php:1161 mod/settings.php:1162 -msgid "Yes" -msgstr "Tak" - -#: include/items.php:387 include/conversation.php:1352 mod/fbrowser.php:103 -#: mod/fbrowser.php:134 mod/suggest.php:41 mod/dfrn_request.php:663 -#: mod/tagrm.php:19 mod/tagrm.php:99 mod/editpost.php:149 mod/message.php:141 -#: mod/photos.php:248 mod/photos.php:324 mod/videos.php:147 -#: mod/contacts.php:475 mod/unfollow.php:117 mod/follow.php:161 -#: mod/settings.php:676 mod/settings.php:702 -msgid "Cancel" -msgstr "Anuluj" - -#: include/items.php:401 mod/allfriends.php:21 mod/api.php:35 mod/api.php:40 -#: mod/attach.php:38 mod/common.php:26 mod/crepair.php:98 mod/nogroup.php:28 -#: mod/repair_ostatus.php:13 mod/suggest.php:60 mod/uimport.php:28 -#: mod/notifications.php:73 mod/dfrn_confirm.php:68 mod/manage.php:131 -#: mod/wall_attach.php:74 mod/wall_attach.php:77 mod/poke.php:150 -#: mod/regmod.php:108 mod/viewcontacts.php:57 mod/wall_upload.php:103 -#: mod/wall_upload.php:106 mod/wallmessage.php:16 mod/wallmessage.php:40 -#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/editpost.php:18 -#: mod/fsuggest.php:80 mod/group.php:26 mod/message.php:59 mod/message.php:104 -#: mod/notes.php:30 mod/photos.php:174 mod/photos.php:1051 mod/cal.php:304 -#: mod/contacts.php:386 mod/delegate.php:25 mod/delegate.php:43 -#: mod/delegate.php:54 mod/events.php:194 mod/item.php:160 -#: mod/ostatus_subscribe.php:16 mod/profile_photo.php:30 -#: mod/profile_photo.php:176 mod/profile_photo.php:187 -#: mod/profile_photo.php:200 mod/unfollow.php:15 mod/unfollow.php:57 -#: mod/unfollow.php:90 mod/dirfind.php:25 mod/follow.php:17 mod/follow.php:54 -#: mod/follow.php:118 mod/invite.php:20 mod/invite.php:111 mod/network.php:32 -#: mod/profiles.php:182 mod/profiles.php:606 mod/register.php:53 -#: mod/settings.php:42 mod/settings.php:141 mod/settings.php:665 index.php:444 -msgid "Permission denied." -msgstr "Brak uprawnień." - -#: include/items.php:471 -msgid "Archives" -msgstr "Archiwum" - -#: include/items.php:477 view/theme/vier/theme.php:259 -#: src/Content/ForumManager.php:130 src/Content/Widget.php:312 -#: src/Object/Post.php:430 src/App.php:512 -msgid "show more" -msgstr "Pokaż więcej" +#: boot.php:795 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Aktualizacja %s nie powiodła się. Zobacz dziennik błędów." #: include/api.php:1202 #, php-format @@ -134,470 +77,15 @@ msgstr[3] "" msgid "Monthly posting limit of %d post reached. The post was rejected." msgstr "Miesięczny limit %d wysyłania postów. Post został odrzucony." -#: include/api.php:4523 mod/photos.php:88 mod/photos.php:194 -#: mod/photos.php:722 mod/photos.php:1149 mod/photos.php:1166 -#: mod/photos.php:1684 mod/profile_photo.php:85 mod/profile_photo.php:93 +#: include/api.php:4523 src/Model/User.php:549 src/Model/User.php:557 +#: src/Model/User.php:565 mod/profile_photo.php:85 mod/profile_photo.php:93 #: mod/profile_photo.php:101 mod/profile_photo.php:211 -#: mod/profile_photo.php:302 mod/profile_photo.php:312 src/Model/User.php:553 -#: src/Model/User.php:561 src/Model/User.php:569 +#: mod/profile_photo.php:302 mod/profile_photo.php:312 mod/photos.php:88 +#: mod/photos.php:194 mod/photos.php:722 mod/photos.php:1149 +#: mod/photos.php:1166 mod/photos.php:1684 msgid "Profile Photos" msgstr "Zdjęcie profilowe" -#: include/conversation.php:144 include/conversation.php:282 -#: include/text.php:1753 src/Model/Item.php:1795 -msgid "event" -msgstr "wydarzenie" - -#: include/conversation.php:147 include/conversation.php:157 -#: include/conversation.php:285 include/conversation.php:294 -#: mod/subthread.php:97 mod/tagger.php:72 src/Model/Item.php:1793 -#: src/Protocol/Diaspora.php:2039 -msgid "status" -msgstr "status" - -#: include/conversation.php:152 include/conversation.php:290 -#: include/text.php:1755 mod/subthread.php:97 mod/tagger.php:72 -#: src/Model/Item.php:1793 -msgid "photo" -msgstr "zdjęcie" - -#: include/conversation.php:164 src/Model/Item.php:1666 -#: src/Protocol/Diaspora.php:2035 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s lubi to %2$s's %3$s" - -#: include/conversation.php:167 src/Model/Item.php:1671 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s nie lubi %2$s's %3$s" - -#: include/conversation.php:170 -#, php-format -msgid "%1$s attends %2$s's %3$s" -msgstr "%1$sbierze udział w %2$s's%3$s " - -#: include/conversation.php:173 -#, php-format -msgid "%1$s doesn't attend %2$s's %3$s" -msgstr "%1$s nie uczestniczy %2$s 's %3$s" - -#: include/conversation.php:176 -#, php-format -msgid "%1$s attends maybe %2$s's %3$s" -msgstr "%1$s może uczęszcza %2$s 's %3$s" - -#: include/conversation.php:209 mod/dfrn_confirm.php:431 -#: src/Protocol/Diaspora.php:2510 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s jest teraz znajomym z %2$s" - -#: include/conversation.php:250 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s zaczepił Cię %2$s" - -#: include/conversation.php:304 mod/tagger.php:110 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s zaznaczył %2$s'go %3$s przy użyciu %4$s" - -#: include/conversation.php:331 -msgid "post/item" -msgstr "stanowisko/pozycja" - -#: include/conversation.php:332 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s oznacz %2$s's %3$s jako ulubione" - -#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:355 -msgid "Likes" -msgstr "Lubię to" - -#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:359 -msgid "Dislikes" -msgstr "Nie lubię tego" - -#: include/conversation.php:606 include/conversation.php:1661 -#: mod/photos.php:1502 -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: include/conversation.php:606 mod/photos.php:1502 -msgid "Not attending" -msgstr "Nie uczestniczyłem" - -#: include/conversation.php:606 mod/photos.php:1502 -msgid "Might attend" -msgstr "Może wziąć udział" - -#: include/conversation.php:718 mod/photos.php:1569 src/Object/Post.php:178 -msgid "Select" -msgstr "Wybierz" - -#: include/conversation.php:719 mod/photos.php:1570 mod/contacts.php:830 -#: mod/contacts.php:1035 mod/admin.php:1798 mod/settings.php:738 -#: src/Object/Post.php:179 -msgid "Delete" -msgstr "Usuń" - -#: include/conversation.php:757 src/Object/Post.php:363 -#: src/Object/Post.php:364 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Pokaż %s's profil @ %s" - -#: include/conversation.php:769 src/Object/Post.php:351 -msgid "Categories:" -msgstr "Kategorie:" - -#: include/conversation.php:770 src/Object/Post.php:352 -msgid "Filed under:" -msgstr "Zapisano w:" - -#: include/conversation.php:777 src/Object/Post.php:377 -#, php-format -msgid "%s from %s" -msgstr "%s od %s" - -#: include/conversation.php:792 -msgid "View in context" -msgstr "Zobacz w kontekście" - -#: include/conversation.php:794 include/conversation.php:1334 -#: mod/wallmessage.php:145 mod/editpost.php:125 mod/message.php:264 -#: mod/message.php:433 mod/photos.php:1473 src/Object/Post.php:402 -msgid "Please wait" -msgstr "Proszę czekać" - -#: include/conversation.php:865 -msgid "remove" -msgstr "usuń" - -#: include/conversation.php:869 -msgid "Delete Selected Items" -msgstr "Usuń zaznaczone elementy" - -#: include/conversation.php:1039 view/theme/frio/theme.php:352 -msgid "Follow Thread" -msgstr "Śledź wątek" - -#: include/conversation.php:1040 src/Model/Contact.php:652 -msgid "View Status" -msgstr "Zobacz status" - -#: include/conversation.php:1041 include/conversation.php:1057 -#: mod/allfriends.php:73 mod/suggest.php:82 mod/match.php:89 -#: mod/directory.php:159 mod/dirfind.php:217 src/Model/Contact.php:592 -#: src/Model/Contact.php:605 src/Model/Contact.php:653 -msgid "View Profile" -msgstr "Zobacz profil" - -#: include/conversation.php:1042 src/Model/Contact.php:654 -msgid "View Photos" -msgstr "Zobacz zdjęcia" - -#: include/conversation.php:1043 src/Model/Contact.php:655 -msgid "Network Posts" -msgstr "Wiadomości sieciowe" - -#: include/conversation.php:1044 src/Model/Contact.php:656 -msgid "View Contact" -msgstr "Pokaż kontakt" - -#: include/conversation.php:1045 src/Model/Contact.php:658 -msgid "Send PM" -msgstr "Wyślij prywatną wiadomość" - -#: include/conversation.php:1049 src/Model/Contact.php:659 -msgid "Poke" -msgstr "Zaczepka" - -#: include/conversation.php:1054 mod/allfriends.php:74 mod/suggest.php:83 -#: mod/match.php:90 mod/contacts.php:596 mod/dirfind.php:218 -#: mod/follow.php:143 src/Content/Widget.php:61 src/Model/Contact.php:606 -msgid "Connect/Follow" -msgstr "Połącz/Obserwuj" - -#: include/conversation.php:1173 -#, php-format -msgid "%s likes this." -msgstr "%s lubi to." - -#: include/conversation.php:1176 -#, php-format -msgid "%s doesn't like this." -msgstr "%s nie lubi tego." - -#: include/conversation.php:1179 -#, php-format -msgid "%s attends." -msgstr "%s uczestniczy." - -#: include/conversation.php:1182 -#, php-format -msgid "%s doesn't attend." -msgstr "%s nie uczestniczy." - -#: include/conversation.php:1185 -#, php-format -msgid "%s attends maybe." -msgstr "%s może uczęszcza." - -#: include/conversation.php:1196 -msgid "and" -msgstr "i" - -#: include/conversation.php:1202 -#, php-format -msgid "and %d other people" -msgstr "i %d inni ludzie" - -#: include/conversation.php:1211 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d ludzi lubi to" - -#: include/conversation.php:1212 -#, php-format -msgid "%s like this." -msgstr "%s lubię to." - -#: include/conversation.php:1215 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d ludzi nie lubi tego " - -#: include/conversation.php:1216 -#, php-format -msgid "%s don't like this." -msgstr "%s nie lubię tego." - -#: include/conversation.php:1219 -#, php-format -msgid "%2$d people attend" -msgstr "%2$dosoby uczestniczą" - -#: include/conversation.php:1220 -#, php-format -msgid "%s attend." -msgstr "%suczestniczy" - -#: include/conversation.php:1223 -#, php-format -msgid "%2$d people don't attend" -msgstr "%2$dludzie nie uczestniczą" - -#: include/conversation.php:1224 -#, php-format -msgid "%s don't attend." -msgstr "%s nie uczestnicz" - -#: include/conversation.php:1227 -#, php-format -msgid "%2$d people attend maybe" -msgstr "%2$dprzyjacielemogą uczestniczyć " - -#: include/conversation.php:1228 -#, php-format -msgid "%s attend maybe." -msgstr "%sbyć może uczestniczyć. " - -#: include/conversation.php:1258 include/conversation.php:1274 -msgid "Visible to everybody" -msgstr "Widoczne dla wszystkich" - -#: include/conversation.php:1259 include/conversation.php:1275 -#: mod/wallmessage.php:120 mod/wallmessage.php:127 mod/message.php:200 -#: mod/message.php:207 mod/message.php:343 mod/message.php:350 -msgid "Please enter a link URL:" -msgstr "Proszę wpisać adres URL:" - -#: include/conversation.php:1260 include/conversation.php:1276 -msgid "Please enter a video link/URL:" -msgstr "Podaj link do filmu" - -#: include/conversation.php:1261 include/conversation.php:1277 -msgid "Please enter an audio link/URL:" -msgstr "Podaj link do muzyki" - -#: include/conversation.php:1262 include/conversation.php:1278 -msgid "Tag term:" -msgstr "Termin tagu:" - -#: include/conversation.php:1263 include/conversation.php:1279 -#: mod/filer.php:34 -msgid "Save to Folder:" -msgstr "Zapisz w folderze:" - -#: include/conversation.php:1264 include/conversation.php:1280 -msgid "Where are you right now?" -msgstr "Gdzie teraz jesteś?" - -#: include/conversation.php:1265 -msgid "Delete item(s)?" -msgstr "Usunąć pozycję (pozycje)?" - -#: include/conversation.php:1312 -msgid "New Post" -msgstr "Nowy Post" - -#: include/conversation.php:1315 -msgid "Share" -msgstr "Podziel się" - -#: include/conversation.php:1316 mod/wallmessage.php:143 mod/editpost.php:111 -#: mod/message.php:262 mod/message.php:430 -msgid "Upload photo" -msgstr "Wyślij zdjęcie" - -#: include/conversation.php:1317 mod/editpost.php:112 -msgid "upload photo" -msgstr "dodaj zdjęcie" - -#: include/conversation.php:1318 mod/editpost.php:113 -msgid "Attach file" -msgstr "Załącz plik" - -#: include/conversation.php:1319 mod/editpost.php:114 -msgid "attach file" -msgstr "załącz plik" - -#: include/conversation.php:1320 mod/wallmessage.php:144 mod/editpost.php:115 -#: mod/message.php:263 mod/message.php:431 -msgid "Insert web link" -msgstr "Wstaw link" - -#: include/conversation.php:1321 mod/editpost.php:116 -msgid "web link" -msgstr "Adres www" - -#: include/conversation.php:1322 mod/editpost.php:117 -msgid "Insert video link" -msgstr "Wstaw link do filmu" - -#: include/conversation.php:1323 mod/editpost.php:118 -msgid "video link" -msgstr "link do filmu" - -#: include/conversation.php:1324 mod/editpost.php:119 -msgid "Insert audio link" -msgstr "Wstaw link do audio" - -#: include/conversation.php:1325 mod/editpost.php:120 -msgid "audio link" -msgstr "Link do nagrania audio" - -#: include/conversation.php:1326 mod/editpost.php:121 -msgid "Set your location" -msgstr "Ustaw swoją lokalizację" - -#: include/conversation.php:1327 mod/editpost.php:122 -msgid "set location" -msgstr "wybierz lokalizację" - -#: include/conversation.php:1328 mod/editpost.php:123 -msgid "Clear browser location" -msgstr "Wyczyść lokalizację przeglądarki" - -#: include/conversation.php:1329 mod/editpost.php:124 -msgid "clear location" -msgstr "wyczyść lokalizację" - -#: include/conversation.php:1331 mod/editpost.php:138 -msgid "Set title" -msgstr "Ustaw tytuł" - -#: include/conversation.php:1333 mod/editpost.php:140 -msgid "Categories (comma-separated list)" -msgstr "Kategorie (lista słów oddzielonych przecinkiem)" - -#: include/conversation.php:1335 mod/editpost.php:126 -msgid "Permission settings" -msgstr "Ustawienia uprawnień" - -#: include/conversation.php:1336 mod/editpost.php:155 -msgid "permissions" -msgstr "zezwolenia" - -#: include/conversation.php:1344 mod/editpost.php:135 -msgid "Public post" -msgstr "Publiczny post" - -#: include/conversation.php:1348 mod/editpost.php:146 mod/photos.php:1492 -#: mod/photos.php:1531 mod/photos.php:1604 mod/events.php:528 -#: src/Object/Post.php:805 -msgid "Preview" -msgstr "Podgląd" - -#: include/conversation.php:1357 -msgid "Post to Groups" -msgstr "Opublikuj w grupach" - -#: include/conversation.php:1358 -msgid "Post to Contacts" -msgstr "Wstaw do kontaktów" - -#: include/conversation.php:1359 -msgid "Private post" -msgstr "Prywatne posty" - -#: include/conversation.php:1364 mod/editpost.php:153 -#: src/Model/Profile.php:342 -msgid "Message" -msgstr "Wiadomość" - -#: include/conversation.php:1365 mod/editpost.php:154 -msgid "Browser" -msgstr "Przeglądarka" - -#: include/conversation.php:1632 -msgid "View all" -msgstr "Pokaż wszystkie" - -#: include/conversation.php:1655 -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: include/conversation.php:1658 -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: include/conversation.php:1664 -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: include/conversation.php:1667 src/Content/ContactSelector.php:125 -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: include/dba.php:58 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Nie można zlokalizować serwera DNS dla bazy danych '%s'" - #: include/enotify.php:31 msgid "Friendica Notification" msgstr "Powiadomienia Friendica" @@ -684,7 +172,7 @@ msgstr "%1$sopublikowano na ścianie profilu w %2$s " #: include/enotify.php:183 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s wysłano do [url =%2$s]twojej ściany[/url] " +msgstr "%1$s wysłano do [url =%2$s]twojej strony[/url] " #: include/enotify.php:195 #, php-format @@ -758,7 +246,7 @@ msgstr "Otrzymałeś wstęp od '%1$s' z %2$s" #: include/enotify.php:262 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Otrzymałeś [url=%1$s] wprowadzenie [/ url] z %2$s." +msgstr "Zostałeś [url=%1$s] przyjęty [/ url] z %2$s." #: include/enotify.php:267 include/enotify.php:313 #, php-format @@ -890,6 +378,471 @@ msgstr "Pełna nazwa:\t%1$s \\Lokalizacja nSite:\t%2$s\\ nNazwa Użytkownika: \t msgid "Please visit %s to approve or reject the request." msgstr "Odwiedź stronę %s, aby zatwierdzić lub odrzucić wniosek." +#: include/conversation.php:144 include/conversation.php:282 +#: include/text.php:1753 src/Model/Item.php:1796 +msgid "event" +msgstr "wydarzenie" + +#: include/conversation.php:147 include/conversation.php:157 +#: include/conversation.php:285 include/conversation.php:294 +#: src/Model/Item.php:1794 src/Protocol/Diaspora.php:2039 mod/subthread.php:97 +#: mod/tagger.php:72 +msgid "status" +msgstr "status" + +#: include/conversation.php:152 include/conversation.php:290 +#: include/text.php:1755 src/Model/Item.php:1794 mod/subthread.php:97 +#: mod/tagger.php:72 +msgid "photo" +msgstr "zdjęcie" + +#: include/conversation.php:164 src/Model/Item.php:1667 +#: src/Protocol/Diaspora.php:2035 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s lubi to %2$s's %3$s" + +#: include/conversation.php:167 src/Model/Item.php:1672 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s nie lubi %2$s's %3$s" + +#: include/conversation.php:170 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "%1$sbierze udział w %2$s's%3$s " + +#: include/conversation.php:173 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "%1$s nie uczestniczy %2$s 's %3$s" + +#: include/conversation.php:176 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "%1$s może uczęszcza %2$s 's %3$s" + +#: include/conversation.php:209 src/Protocol/Diaspora.php:2510 +#: mod/dfrn_confirm.php:431 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s jest teraz znajomym z %2$s" + +#: include/conversation.php:250 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s zaczepił Cię %2$s" + +#: include/conversation.php:304 mod/tagger.php:110 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s zaznaczył %2$s'go %3$s przy użyciu %4$s" + +#: include/conversation.php:331 +msgid "post/item" +msgstr "stanowisko/pozycja" + +#: include/conversation.php:332 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s oznacz %2$s's %3$s jako ulubione" + +#: include/conversation.php:605 mod/profiles.php:355 mod/photos.php:1501 +msgid "Likes" +msgstr "Lubię to" + +#: include/conversation.php:605 mod/profiles.php:359 mod/photos.php:1501 +msgid "Dislikes" +msgstr "Nie lubię tego" + +#: include/conversation.php:606 include/conversation.php:1661 +#: mod/photos.php:1502 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: include/conversation.php:606 mod/photos.php:1502 +msgid "Not attending" +msgstr "Nie uczestniczyłem" + +#: include/conversation.php:606 mod/photos.php:1502 +msgid "Might attend" +msgstr "Może wziąć udział" + +#: include/conversation.php:718 src/Object/Post.php:178 mod/photos.php:1569 +msgid "Select" +msgstr "Wybierz" + +#: include/conversation.php:719 src/Object/Post.php:179 mod/settings.php:738 +#: mod/admin.php:1812 mod/photos.php:1570 mod/contacts.php:830 +#: mod/contacts.php:1035 +msgid "Delete" +msgstr "Usuń" + +#: include/conversation.php:757 src/Object/Post.php:363 +#: src/Object/Post.php:364 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Pokaż %s's profil @ %s" + +#: include/conversation.php:769 src/Object/Post.php:351 +msgid "Categories:" +msgstr "Kategorie:" + +#: include/conversation.php:770 src/Object/Post.php:352 +msgid "Filed under:" +msgstr "Zapisano w:" + +#: include/conversation.php:777 src/Object/Post.php:377 +#, php-format +msgid "%s from %s" +msgstr "%s od %s" + +#: include/conversation.php:792 +msgid "View in context" +msgstr "Zobacz w kontekście" + +#: include/conversation.php:794 include/conversation.php:1334 +#: src/Object/Post.php:402 mod/photos.php:1473 mod/message.php:264 +#: mod/message.php:433 mod/wallmessage.php:145 mod/editpost.php:125 +msgid "Please wait" +msgstr "Proszę czekać" + +#: include/conversation.php:865 +msgid "remove" +msgstr "usuń" + +#: include/conversation.php:869 +msgid "Delete Selected Items" +msgstr "Usuń zaznaczone elementy" + +#: include/conversation.php:1039 view/theme/frio/theme.php:352 +msgid "Follow Thread" +msgstr "Śledź wątek" + +#: include/conversation.php:1040 src/Model/Contact.php:652 +msgid "View Status" +msgstr "Zobacz status" + +#: include/conversation.php:1041 include/conversation.php:1057 +#: src/Model/Contact.php:592 src/Model/Contact.php:605 +#: src/Model/Contact.php:653 mod/directory.php:159 mod/dirfind.php:217 +#: mod/suggest.php:82 mod/allfriends.php:73 mod/match.php:89 +msgid "View Profile" +msgstr "Zobacz profil" + +#: include/conversation.php:1042 src/Model/Contact.php:654 +msgid "View Photos" +msgstr "Zobacz zdjęcia" + +#: include/conversation.php:1043 src/Model/Contact.php:655 +msgid "Network Posts" +msgstr "Wiadomości sieciowe" + +#: include/conversation.php:1044 src/Model/Contact.php:656 +msgid "View Contact" +msgstr "Pokaż kontakt" + +#: include/conversation.php:1045 src/Model/Contact.php:658 +msgid "Send PM" +msgstr "Wyślij prywatną wiadomość" + +#: include/conversation.php:1049 src/Model/Contact.php:659 +msgid "Poke" +msgstr "Zaczepka" + +#: include/conversation.php:1054 src/Model/Contact.php:606 +#: src/Content/Widget.php:61 mod/dirfind.php:218 mod/suggest.php:83 +#: mod/allfriends.php:74 mod/follow.php:143 mod/contacts.php:596 +#: mod/match.php:90 +msgid "Connect/Follow" +msgstr "Połącz/Obserwuj" + +#: include/conversation.php:1173 +#, php-format +msgid "%s likes this." +msgstr "%s lubi to." + +#: include/conversation.php:1176 +#, php-format +msgid "%s doesn't like this." +msgstr "%s nie lubi tego." + +#: include/conversation.php:1179 +#, php-format +msgid "%s attends." +msgstr "%s uczestniczy." + +#: include/conversation.php:1182 +#, php-format +msgid "%s doesn't attend." +msgstr "%s nie uczestniczy." + +#: include/conversation.php:1185 +#, php-format +msgid "%s attends maybe." +msgstr "%s może uczęszcza." + +#: include/conversation.php:1196 +msgid "and" +msgstr "i" + +#: include/conversation.php:1202 +#, php-format +msgid "and %d other people" +msgstr "i %d inni ludzie" + +#: include/conversation.php:1211 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d ludzi lubi to" + +#: include/conversation.php:1212 +#, php-format +msgid "%s like this." +msgstr "%s lubię to." + +#: include/conversation.php:1215 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d ludzi nie lubi tego " + +#: include/conversation.php:1216 +#, php-format +msgid "%s don't like this." +msgstr "%s nie lubię tego." + +#: include/conversation.php:1219 +#, php-format +msgid "%2$d people attend" +msgstr "%2$dosoby uczestniczą" + +#: include/conversation.php:1220 +#, php-format +msgid "%s attend." +msgstr "%suczestniczy" + +#: include/conversation.php:1223 +#, php-format +msgid "%2$d people don't attend" +msgstr "%2$dludzie nie uczestniczą" + +#: include/conversation.php:1224 +#, php-format +msgid "%s don't attend." +msgstr "%s nie uczestnicz" + +#: include/conversation.php:1227 +#, php-format +msgid "%2$d people attend maybe" +msgstr "%2$dprzyjacielemogą uczestniczyć " + +#: include/conversation.php:1228 +#, php-format +msgid "%s attend maybe." +msgstr "%sbyć może uczestniczyć. " + +#: include/conversation.php:1258 include/conversation.php:1274 +msgid "Visible to everybody" +msgstr "Widoczne dla wszystkich" + +#: include/conversation.php:1259 include/conversation.php:1275 +#: mod/message.php:200 mod/message.php:207 mod/message.php:343 +#: mod/message.php:350 mod/wallmessage.php:120 mod/wallmessage.php:127 +msgid "Please enter a link URL:" +msgstr "Proszę wpisać adres URL:" + +#: include/conversation.php:1260 include/conversation.php:1276 +msgid "Please enter a video link/URL:" +msgstr "Podaj link do filmu" + +#: include/conversation.php:1261 include/conversation.php:1277 +msgid "Please enter an audio link/URL:" +msgstr "Podaj link do muzyki" + +#: include/conversation.php:1262 include/conversation.php:1278 +msgid "Tag term:" +msgstr "Termin tagu:" + +#: include/conversation.php:1263 include/conversation.php:1279 +#: mod/filer.php:34 +msgid "Save to Folder:" +msgstr "Zapisz w folderze:" + +#: include/conversation.php:1264 include/conversation.php:1280 +msgid "Where are you right now?" +msgstr "Gdzie teraz jesteś?" + +#: include/conversation.php:1265 +msgid "Delete item(s)?" +msgstr "Usunąć pozycję (pozycje)?" + +#: include/conversation.php:1312 +msgid "New Post" +msgstr "Nowy Post" + +#: include/conversation.php:1315 +msgid "Share" +msgstr "Podziel się" + +#: include/conversation.php:1316 mod/message.php:262 mod/message.php:430 +#: mod/wallmessage.php:143 mod/editpost.php:111 +msgid "Upload photo" +msgstr "Wyślij zdjęcie" + +#: include/conversation.php:1317 mod/editpost.php:112 +msgid "upload photo" +msgstr "dodaj zdjęcie" + +#: include/conversation.php:1318 mod/editpost.php:113 +msgid "Attach file" +msgstr "Załącz plik" + +#: include/conversation.php:1319 mod/editpost.php:114 +msgid "attach file" +msgstr "załącz plik" + +#: include/conversation.php:1320 mod/message.php:263 mod/message.php:431 +#: mod/wallmessage.php:144 mod/editpost.php:115 +msgid "Insert web link" +msgstr "Wstaw link" + +#: include/conversation.php:1321 mod/editpost.php:116 +msgid "web link" +msgstr "Adres www" + +#: include/conversation.php:1322 mod/editpost.php:117 +msgid "Insert video link" +msgstr "Wstaw link do filmu" + +#: include/conversation.php:1323 mod/editpost.php:118 +msgid "video link" +msgstr "link do filmu" + +#: include/conversation.php:1324 mod/editpost.php:119 +msgid "Insert audio link" +msgstr "Wstaw link do audio" + +#: include/conversation.php:1325 mod/editpost.php:120 +msgid "audio link" +msgstr "Link do nagrania audio" + +#: include/conversation.php:1326 mod/editpost.php:121 +msgid "Set your location" +msgstr "Ustaw swoją lokalizację" + +#: include/conversation.php:1327 mod/editpost.php:122 +msgid "set location" +msgstr "wybierz lokalizację" + +#: include/conversation.php:1328 mod/editpost.php:123 +msgid "Clear browser location" +msgstr "Wyczyść lokalizację przeglądarki" + +#: include/conversation.php:1329 mod/editpost.php:124 +msgid "clear location" +msgstr "wyczyść lokalizację" + +#: include/conversation.php:1331 mod/editpost.php:138 +msgid "Set title" +msgstr "Ustaw tytuł" + +#: include/conversation.php:1333 mod/editpost.php:140 +msgid "Categories (comma-separated list)" +msgstr "Kategorie (lista słów oddzielonych przecinkiem)" + +#: include/conversation.php:1335 mod/editpost.php:126 +msgid "Permission settings" +msgstr "Ustawienia uprawnień" + +#: include/conversation.php:1336 mod/editpost.php:155 +msgid "permissions" +msgstr "zezwolenia" + +#: include/conversation.php:1344 mod/editpost.php:135 +msgid "Public post" +msgstr "Publiczny post" + +#: include/conversation.php:1348 src/Object/Post.php:805 mod/events.php:528 +#: mod/photos.php:1492 mod/photos.php:1531 mod/photos.php:1604 +#: mod/editpost.php:146 +msgid "Preview" +msgstr "Podgląd" + +#: include/conversation.php:1352 include/items.php:387 mod/suggest.php:41 +#: mod/settings.php:676 mod/settings.php:702 mod/fbrowser.php:103 +#: mod/fbrowser.php:134 mod/photos.php:248 mod/photos.php:324 +#: mod/message.php:141 mod/videos.php:147 mod/unfollow.php:117 +#: mod/dfrn_request.php:663 mod/follow.php:161 mod/contacts.php:475 +#: mod/tagrm.php:19 mod/tagrm.php:99 mod/editpost.php:149 +msgid "Cancel" +msgstr "Anuluj" + +#: include/conversation.php:1357 +msgid "Post to Groups" +msgstr "Opublikuj w grupach" + +#: include/conversation.php:1358 +msgid "Post to Contacts" +msgstr "Wstaw do kontaktów" + +#: include/conversation.php:1359 +msgid "Private post" +msgstr "Prywatne posty" + +#: include/conversation.php:1364 src/Model/Profile.php:342 +#: mod/editpost.php:153 +msgid "Message" +msgstr "Wiadomość" + +#: include/conversation.php:1365 mod/editpost.php:154 +msgid "Browser" +msgstr "Przeglądarka" + +#: include/conversation.php:1632 +msgid "View all" +msgstr "Pokaż wszystkie" + +#: include/conversation.php:1655 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: include/conversation.php:1658 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: include/conversation.php:1664 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: include/conversation.php:1667 src/Content/ContactSelector.php:125 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: include/dba.php:58 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Nie można zlokalizować serwera DNS dla bazy danych '%s'" + #: include/security.php:81 msgid "Welcome " msgstr "Witaj " @@ -957,8 +910,8 @@ msgstr[3] "%d Kontakty" msgid "View Contacts" msgstr "Widok kontaktów" -#: include/text.php:1010 mod/filer.php:35 mod/editpost.php:110 -#: mod/notes.php:67 +#: include/text.php:1010 mod/notes.php:67 mod/filer.php:35 +#: mod/editpost.php:110 msgid "Save" msgstr "Zapisz" @@ -966,7 +919,7 @@ msgstr "Zapisz" msgid "Follow" msgstr "Śledzić" -#: include/text.php:1016 mod/search.php:155 src/Content/Nav.php:142 +#: include/text.php:1016 src/Content/Nav.php:142 mod/search.php:155 msgid "Search" msgstr "Szukaj" @@ -978,19 +931,19 @@ msgstr "@imię, !forum, #tagi, treść" msgid "Full Text" msgstr "Pełny tekst" -#: include/text.php:1026 src/Content/Nav.php:146 -#: src/Content/Widget/TagCloud.php:54 +#: include/text.php:1026 src/Content/Widget/TagCloud.php:54 +#: src/Content/Nav.php:146 msgid "Tags" msgstr "Tagi" -#: include/text.php:1027 mod/viewcontacts.php:131 mod/contacts.php:814 -#: mod/contacts.php:875 view/theme/frio/theme.php:270 src/Content/Nav.php:147 -#: src/Content/Nav.php:212 src/Model/Profile.php:959 src/Model/Profile.php:962 +#: include/text.php:1027 src/Model/Profile.php:961 src/Model/Profile.php:964 +#: src/Content/Nav.php:147 src/Content/Nav.php:208 mod/viewcontacts.php:131 +#: mod/contacts.php:814 mod/contacts.php:875 view/theme/frio/theme.php:270 msgid "Contacts" msgstr "Kontakty" -#: include/text.php:1030 view/theme/vier/theme.php:254 -#: src/Content/ForumManager.php:125 src/Content/Nav.php:151 +#: include/text.php:1030 src/Content/ForumManager.php:125 +#: src/Content/Nav.php:151 view/theme/vier/theme.php:254 msgid "Forums" msgstr "Fora" @@ -1012,11 +965,11 @@ msgstr "napięcia" #: include/text.php:1076 msgid "prod" -msgstr "" +msgstr "zaczep" #: include/text.php:1076 msgid "prodded" -msgstr "" +msgstr "zaczepiać" #: include/text.php:1077 msgid "slap" @@ -1042,7 +995,7 @@ msgstr "odrzuć" msgid "rebuffed" msgstr "odrzucony" -#: include/text.php:1093 mod/settings.php:943 src/Model/Event.php:379 +#: include/text.php:1093 src/Model/Event.php:379 mod/settings.php:943 msgid "Monday" msgstr "Poniedziałek" @@ -1066,7 +1019,7 @@ msgstr "Piątek" msgid "Saturday" msgstr "Sobota" -#: include/text.php:1093 mod/settings.php:943 src/Model/Event.php:378 +#: include/text.php:1093 src/Model/Event.php:378 mod/settings.php:943 msgid "Sunday" msgstr "Niedziela" @@ -1236,451 +1189,2269 @@ msgstr "post" msgid "Item filed" msgstr "Element złożony" -#: mod/allfriends.php:51 -msgid "No friends to display." -msgstr "Brak znajomych do wyświetlenia" +#: include/items.php:342 mod/display.php:72 mod/display.php:252 +#: mod/display.php:354 mod/admin.php:276 mod/admin.php:1868 mod/admin.php:2116 +#: mod/viewsrc.php:21 mod/notice.php:22 +msgid "Item not found." +msgstr "Element nie znaleziony." -#: mod/allfriends.php:90 mod/suggest.php:101 mod/match.php:105 -#: mod/dirfind.php:215 src/Content/Widget.php:37 src/Model/Profile.php:297 +#: include/items.php:382 +msgid "Do you really want to delete this item?" +msgstr "Czy na pewno chcesz usunąć ten element?" + +#: include/items.php:384 mod/suggest.php:38 mod/profiles.php:636 +#: mod/profiles.php:639 mod/profiles.php:661 mod/api.php:110 +#: mod/settings.php:1105 mod/settings.php:1111 mod/settings.php:1118 +#: mod/settings.php:1122 mod/settings.php:1126 mod/settings.php:1130 +#: mod/settings.php:1134 mod/settings.php:1138 mod/settings.php:1158 +#: mod/settings.php:1159 mod/settings.php:1160 mod/settings.php:1161 +#: mod/settings.php:1162 mod/message.php:138 mod/dfrn_request.php:653 +#: mod/follow.php:150 mod/contacts.php:472 mod/register.php:237 +msgid "Yes" +msgstr "Tak" + +#: include/items.php:401 mod/dirfind.php:25 mod/repair_ostatus.php:13 +#: mod/suggest.php:60 mod/profile_photo.php:30 mod/profile_photo.php:176 +#: mod/profile_photo.php:187 mod/profile_photo.php:200 mod/manage.php:131 +#: mod/uimport.php:28 mod/invite.php:20 mod/invite.php:111 mod/network.php:32 +#: mod/profiles.php:182 mod/profiles.php:606 mod/events.php:194 +#: mod/fsuggest.php:80 mod/attach.php:38 mod/allfriends.php:21 +#: mod/viewcontacts.php:57 mod/ostatus_subscribe.php:16 mod/api.php:35 +#: mod/api.php:40 mod/settings.php:42 mod/settings.php:141 +#: mod/settings.php:665 mod/regmod.php:108 mod/group.php:26 +#: mod/delegate.php:25 mod/delegate.php:43 mod/delegate.php:54 +#: mod/photos.php:174 mod/photos.php:1051 mod/nogroup.php:28 +#: mod/message.php:59 mod/message.php:104 mod/unfollow.php:15 +#: mod/unfollow.php:57 mod/unfollow.php:90 mod/wall_attach.php:74 +#: mod/wall_attach.php:77 mod/notes.php:30 mod/crepair.php:98 mod/poke.php:150 +#: mod/notifications.php:73 mod/follow.php:17 mod/follow.php:54 +#: mod/follow.php:118 mod/cal.php:304 mod/contacts.php:386 +#: mod/wallmessage.php:16 mod/wallmessage.php:40 mod/wallmessage.php:79 +#: mod/wallmessage.php:103 mod/dfrn_confirm.php:68 mod/wall_upload.php:103 +#: mod/wall_upload.php:106 mod/register.php:53 mod/common.php:26 +#: mod/item.php:160 mod/editpost.php:18 index.php:444 +msgid "Permission denied." +msgstr "Brak uprawnień." + +#: include/items.php:471 +msgid "Archives" +msgstr "Archiwum" + +#: include/items.php:477 src/Content/Widget.php:312 +#: src/Content/ForumManager.php:130 src/App.php:512 src/Object/Post.php:430 +#: view/theme/vier/theme.php:259 +msgid "show more" +msgstr "Pokaż więcej" + +#: src/Model/Item.php:1677 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$suczestniczy %2$s's %3$s " + +#: src/Model/Item.php:1682 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$snie uczestniczy %2$s's %3$s " + +#: src/Model/Item.php:1687 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$smogą uczestniczyć %2$s's %3$s " + +#: src/Model/Contact.php:657 +msgid "Drop Contact" +msgstr "Upuść kontakt" + +#: src/Model/Contact.php:1060 +msgid "Organisation" +msgstr "Organizacja" + +#: src/Model/Contact.php:1063 +msgid "News" +msgstr "Aktualności" + +#: src/Model/Contact.php:1066 +msgid "Forum" +msgstr "Forum" + +#: src/Model/Contact.php:1235 mod/dfrn_request.php:345 +msgid "Disallowed profile URL." +msgstr "Nie dozwolony adres URL profilu." + +#: src/Model/Contact.php:1240 mod/friendica.php:128 mod/admin.php:353 +#: mod/admin.php:371 mod/dfrn_request.php:351 +msgid "Blocked domain" +msgstr "Zablokowana domena" + +#: src/Model/Contact.php:1245 +msgid "Connect URL missing." +msgstr "Brak adresu URL połączenia." + +#: src/Model/Contact.php:1254 +msgid "" +"The contact could not be added. Please check the relevant network " +"credentials in your Settings -> Social Networks page." +msgstr "Nie można dodać kontaktu. Sprawdź odpowiednie poświadczenia sieciowe na stronie Ustawienia -> Sieci społecznościowe." + +#: src/Model/Contact.php:1301 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami" + +#: src/Model/Contact.php:1302 src/Model/Contact.php:1316 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Nie znaleziono żadnych kompatybilnych protokołów komunikacyjnych ani źródeł." + +#: src/Model/Contact.php:1314 +msgid "The profile address specified does not provide adequate information." +msgstr "Dany adres profilu nie dostarcza odpowiednich informacji." + +#: src/Model/Contact.php:1319 +msgid "An author or name was not found." +msgstr "Autor lub nazwa nie zostało znalezione." + +#: src/Model/Contact.php:1322 +msgid "No browser URL could be matched to this address." +msgstr "Przeglądarka WWW nie może odnaleźć podanego adresu" + +#: src/Model/Contact.php:1325 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Nie można dopasować @-stylu Adres identyfikacyjny ze znanym protokołem lub kontaktem e-mail." + +#: src/Model/Contact.php:1326 +msgid "Use mailto: in front of address to force email check." +msgstr "Użyj mailto: przed adresem, aby wymusić sprawdzanie poczty e-mail." + +#: src/Model/Contact.php:1332 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Określony adres profilu należy do sieci, która została wyłączona na tej stronie." + +#: src/Model/Contact.php:1337 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie." + +#: src/Model/Contact.php:1388 +msgid "Unable to retrieve contact information." +msgstr "Nie można otrzymać informacji kontaktowych" + +#: src/Model/Contact.php:1537 mod/dfrn_request.php:568 +#: mod/dfrn_confirm.php:661 +msgid "[Name Withheld]" +msgstr "[Nazwa zastrzeżona]" + +#: src/Model/Contact.php:1605 src/Protocol/DFRN.php:1482 +#, php-format +msgid "%s's birthday" +msgstr "Urodziny %s" + +#: src/Model/Contact.php:1606 src/Protocol/DFRN.php:1483 +#, php-format +msgid "Happy Birthday %s" +msgstr "Urodziny %s" + +#: src/Model/Mail.php:40 src/Model/Mail.php:174 +msgid "[no subject]" +msgstr "[bez tematu]" + +#: src/Model/Profile.php:97 +msgid "Requested account is not available." +msgstr "Żądane konto jest niedostępne." + +#: src/Model/Profile.php:118 mod/profile.php:37 +msgid "Requested profile is not available." +msgstr "Żądany profil jest niedostępny" + +#: src/Model/Profile.php:168 src/Model/Profile.php:399 +#: src/Model/Profile.php:863 +msgid "Edit profile" +msgstr "Edytuj profil" + +#: src/Model/Profile.php:297 src/Content/Widget.php:37 mod/dirfind.php:215 +#: mod/suggest.php:101 mod/allfriends.php:90 mod/match.php:105 msgid "Connect" msgstr "Połącz" -#: mod/api.php:85 mod/api.php:107 -msgid "Authorize application connection" -msgstr "Autoryzacja połączenia aplikacji" +#: src/Model/Profile.php:336 +msgid "Atom feed" +msgstr "Kanał Atom" -#: mod/api.php:86 -msgid "Return to your app and insert this Securty Code:" -msgstr "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:" +#: src/Model/Profile.php:372 src/Content/Nav.php:205 +msgid "Profiles" +msgstr "Profile" -#: mod/api.php:95 -msgid "Please login to continue." -msgstr "Zaloguj się aby kontynuować." +#: src/Model/Profile.php:372 +msgid "Manage/edit profiles" +msgstr "Zarządzaj profilami" -#: mod/api.php:109 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Czy chcesz zezwolić tej aplikacji na dostęp do swoich postów i kontaktów i/lub tworzenie nowych postów?" +#: src/Model/Profile.php:379 src/Model/Profile.php:401 mod/profiles.php:777 +msgid "Change profile photo" +msgstr "Zmień zdjęcie profilowe" -#: mod/api.php:111 mod/dfrn_request.php:653 mod/follow.php:150 -#: mod/profiles.php:636 mod/profiles.php:640 mod/profiles.php:661 -#: mod/register.php:238 mod/settings.php:1105 mod/settings.php:1111 -#: mod/settings.php:1118 mod/settings.php:1122 mod/settings.php:1126 -#: mod/settings.php:1130 mod/settings.php:1134 mod/settings.php:1138 -#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160 -#: mod/settings.php:1161 mod/settings.php:1162 -msgid "No" -msgstr "Nie" +#: src/Model/Profile.php:380 mod/profiles.php:778 +msgid "Create New Profile" +msgstr "Utwórz nowy profil" -#: mod/apps.php:14 index.php:273 -msgid "You must be logged in to use addons. " -msgstr "Musisz być zalogowany, aby korzystać z dodatków." +#: src/Model/Profile.php:389 mod/profiles.php:767 +msgid "Profile Image" +msgstr "Zdjęcie profilowe" -#: mod/apps.php:19 -msgid "Applications" -msgstr "Aplikacje" +#: src/Model/Profile.php:392 mod/profiles.php:769 +msgid "visible to everybody" +msgstr "widoczne dla wszystkich" -#: mod/apps.php:22 -msgid "No installed applications." -msgstr "Brak zainstalowanych aplikacji." +#: src/Model/Profile.php:393 mod/profiles.php:675 mod/profiles.php:770 +msgid "Edit visibility" +msgstr "Edytuj widoczność" -#: mod/attach.php:15 -msgid "Item not available." -msgstr "Element niedostępny." +#: src/Model/Profile.php:417 src/Model/Event.php:60 src/Model/Event.php:85 +#: src/Model/Event.php:421 src/Model/Event.php:900 mod/directory.php:148 +#: mod/events.php:518 mod/notifications.php:247 mod/contacts.php:660 +msgid "Location:" +msgstr "Lokalizacja" -#: mod/attach.php:25 -msgid "Item was not found." -msgstr "Element nie znaleziony." +#: src/Model/Profile.php:420 src/Model/Profile.php:749 mod/directory.php:151 +#: mod/notifications.php:253 +msgid "Gender:" +msgstr "Płeć:" -#: mod/common.php:91 -msgid "No contacts in common." -msgstr "Brak wspólnych kontaktów." +#: src/Model/Profile.php:421 src/Model/Profile.php:773 mod/directory.php:152 +msgid "Status:" +msgstr "Status:" -#: mod/common.php:140 mod/contacts.php:886 -msgid "Common Friends" -msgstr "Wspólni znajomi" +#: src/Model/Profile.php:422 src/Model/Profile.php:790 mod/directory.php:153 +msgid "Homepage:" +msgstr "Strona główna:" -#: mod/credits.php:18 -msgid "Credits" -msgstr "Zaufany" +#: src/Model/Profile.php:423 src/Model/Profile.php:810 mod/directory.php:154 +#: mod/notifications.php:249 mod/contacts.php:664 +msgid "About:" +msgstr "O:" -#: mod/credits.php:19 -msgid "" -"Friendica is a community project, that would not be possible without the " -"help of many people. Here is a list of those who have contributed to the " -"code or the translation of Friendica. Thank you all!" -msgstr "Friendica to projekt społecznościowy, który nie byłby możliwy bez pomocy wielu osób. Oto lista osób, które przyczyniły się do tworzenia kodu lub tłumaczenia Friendica. Dziękuję wam wszystkim!" +#: src/Model/Profile.php:424 mod/contacts.php:662 +msgid "XMPP:" +msgstr "XMPP:" -#: mod/crepair.php:87 -msgid "Contact settings applied." -msgstr "Ustawienia kontaktu zaktualizowane." +#: src/Model/Profile.php:520 mod/notifications.php:261 mod/contacts.php:71 +msgid "Network:" +msgstr "Sieć:" -#: mod/crepair.php:89 -msgid "Contact update failed." -msgstr "Nie udało się zaktualizować kontaktu." +#: src/Model/Profile.php:550 src/Model/Profile.php:643 +msgid "g A l F d" +msgstr "g A I F d" -#: mod/crepair.php:110 mod/dfrn_confirm.php:131 mod/fsuggest.php:30 -#: mod/fsuggest.php:96 -msgid "Contact not found." -msgstr "Kontakt nie znaleziony" +#: src/Model/Profile.php:551 +msgid "F d" +msgstr "" -#: mod/crepair.php:114 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "OSTRZEŻENIE: Jest to bardzo zaawansowane i jeśli wprowadzisz niepoprawne informacje, twoja komunikacja z tym kontaktem może przestać działać." +#: src/Model/Profile.php:608 src/Model/Profile.php:707 +msgid "[today]" +msgstr "[dziś]" -#: mod/crepair.php:115 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj teraz przycisku 'powrót' na swojej przeglądarce." +#: src/Model/Profile.php:619 +msgid "Birthday Reminders" +msgstr "Przypomnienia o urodzinach" -#: mod/crepair.php:129 mod/crepair.php:131 -msgid "No mirroring" -msgstr "Bez dublowania" +#: src/Model/Profile.php:620 +msgid "Birthdays this week:" +msgstr "Urodziny w tym tygodniu:" -#: mod/crepair.php:129 -msgid "Mirror as forwarded posting" -msgstr "Przesłany lustrzany post" +#: src/Model/Profile.php:694 +msgid "[No description]" +msgstr "[Brak opisu]" -#: mod/crepair.php:129 mod/crepair.php:131 -msgid "Mirror as my own posting" -msgstr "Lustro mojego własnego komentarza" +#: src/Model/Profile.php:721 +msgid "Event Reminders" +msgstr "Przypominacze wydarzeń" -#: mod/crepair.php:144 -msgid "Return to contact editor" -msgstr "Wróć do edytora kontaktów" +#: src/Model/Profile.php:722 +msgid "Events this week:" +msgstr "Wydarzenia w tym tygodniu:" -#: mod/crepair.php:146 -msgid "Refetch contact data" -msgstr "Odśwież dane kontaktowe" - -#: mod/crepair.php:148 mod/manage.php:184 mod/localtime.php:56 -#: mod/poke.php:199 mod/fsuggest.php:114 mod/message.php:265 -#: mod/message.php:432 mod/photos.php:1080 mod/photos.php:1160 -#: mod/photos.php:1445 mod/photos.php:1491 mod/photos.php:1530 -#: mod/photos.php:1603 mod/contacts.php:610 mod/events.php:530 -#: mod/install.php:251 mod/install.php:290 mod/invite.php:155 -#: mod/profiles.php:672 view/theme/duepuntozero/config.php:71 -#: view/theme/frio/config.php:113 view/theme/quattro/config.php:73 -#: view/theme/vier/config.php:119 src/Object/Post.php:796 -msgid "Submit" -msgstr "Potwierdź" - -#: mod/crepair.php:149 -msgid "Remote Self" -msgstr "Zdalny Self" - -#: mod/crepair.php:152 -msgid "Mirror postings from this contact" -msgstr "Publikacje lustrzane od tego kontaktu" - -#: mod/crepair.php:154 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Oznacz ten kontakt jako remote_self, spowoduje to, że friendica odeśle nowe wpisy z tego kontaktu." - -#: mod/crepair.php:158 mod/admin.php:490 mod/admin.php:1781 mod/admin.php:1793 -#: mod/admin.php:1806 mod/admin.php:1822 mod/settings.php:677 -#: mod/settings.php:703 -msgid "Name" -msgstr "Nazwa" - -#: mod/crepair.php:159 -msgid "Account Nickname" -msgstr "Nazwa konta" - -#: mod/crepair.php:160 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Zmienna - zastępuje Imię/Pseudonim" - -#: mod/crepair.php:161 -msgid "Account URL" -msgstr "URL konta" - -#: mod/crepair.php:162 -msgid "Friend Request URL" -msgstr "URL żądajacy znajomości" - -#: mod/crepair.php:163 -msgid "Friend Confirm URL" -msgstr "URL potwierdzający znajomość" - -#: mod/crepair.php:164 -msgid "Notification Endpoint URL" -msgstr "Zgłoszenie Punktu Końcowego URL" - -#: mod/crepair.php:165 -msgid "Poll/Feed URL" -msgstr "Adres Ankiety/RSS" - -#: mod/crepair.php:166 -msgid "New photo from this URL" -msgstr "Nowe zdjęcie z tego adresu URL" - -#: mod/fbrowser.php:34 view/theme/frio/theme.php:261 src/Content/Nav.php:102 -#: src/Model/Profile.php:906 -msgid "Photos" -msgstr "Zdjęcia" - -#: mod/fbrowser.php:43 mod/fbrowser.php:68 mod/photos.php:194 -#: mod/photos.php:1062 mod/photos.php:1149 mod/photos.php:1166 -#: mod/photos.php:1659 mod/photos.php:1673 src/Model/Photo.php:244 -#: src/Model/Photo.php:253 -msgid "Contact Photos" -msgstr "Zdjęcia kontaktu" - -#: mod/fbrowser.php:105 mod/fbrowser.php:136 mod/profile_photo.php:250 -msgid "Upload" -msgstr "Załaduj" - -#: mod/fbrowser.php:131 -msgid "Files" -msgstr "Pliki" - -#: mod/fetch.php:16 mod/fetch.php:52 mod/fetch.php:65 mod/help.php:60 -#: mod/p.php:21 mod/p.php:48 mod/p.php:57 index.php:320 -msgid "Not Found" -msgstr "Nie znaleziono" - -#: mod/hcard.php:18 -msgid "No profile" -msgstr "Brak profilu" - -#: mod/help.php:48 -msgid "Help:" -msgstr "Pomoc:" - -#: mod/help.php:54 view/theme/vier/theme.php:298 src/Content/Nav.php:134 -msgid "Help" -msgstr "Pomoc" - -#: mod/help.php:63 index.php:325 -msgid "Page not found." -msgstr "Strona nie znaleziona." - -#: mod/home.php:39 -#, php-format -msgid "Welcome to %s" -msgstr "Witamy w %s" - -#: mod/lockview.php:38 mod/lockview.php:46 -msgid "Remote privacy information not available." -msgstr "Dane prywatne nie są zdalnie dostępne" - -#: mod/lockview.php:55 -msgid "Visible to:" -msgstr "Widoczne dla:" - -#: mod/maintenance.php:24 -msgid "System down for maintenance" -msgstr "System wyłączony w celu konserwacji" - -#: mod/newmember.php:11 -msgid "Welcome to Friendica" -msgstr "Witamy na Friendica" - -#: mod/newmember.php:12 -msgid "New Member Checklist" -msgstr "Lista nowych członków" - -#: mod/newmember.php:14 -msgid "" -"We would like to offer some tips and links to help make your experience " -"enjoyable. Click any item to visit the relevant page. A link to this page " -"will be visible from your home page for two weeks after your initial " -"registration and then will quietly disappear." -msgstr "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie." - -#: mod/newmember.php:15 -msgid "Getting Started" -msgstr "Pierwsze kroki" - -#: mod/newmember.php:17 -msgid "Friendica Walk-Through" -msgstr "Friendica Przejdź-Przez" - -#: mod/newmember.php:17 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to" -" join." -msgstr "Na stronie Szybki start - znajdź krótkie wprowadzenie do swojego profilu i kart sieciowych, stwórz nowe połączenia i znajdź kilka grup do przyłączenia się." - -#: mod/newmember.php:19 mod/admin.php:1906 mod/admin.php:2175 -#: mod/settings.php:123 view/theme/frio/theme.php:269 src/Content/Nav.php:206 -msgid "Settings" -msgstr "Ustawienia" - -#: mod/newmember.php:21 -msgid "Go to Your Settings" -msgstr "Idź do swoich ustawień" - -#: mod/newmember.php:21 -msgid "" -"On your Settings page - change your initial password. Also make a " -"note of your Identity Address. This looks just like an email address - and " -"will be useful in making friends on the free social web." -msgstr "Na stronie Ustawienia - zmień swoje początkowe hasło. Zanotuj także swój adres tożsamości. Wygląda to jak adres e-mail - i będzie przydatny w nawiązywaniu znajomości w bezpłatnej sieci społecznościowej." - -#: mod/newmember.php:22 -msgid "" -"Review the other settings, particularly the privacy settings. An unpublished" -" directory listing is like having an unlisted phone number. In general, you " -"should probably publish your listing - unless all of your friends and " -"potential friends know exactly how to find you." -msgstr "Przejrzyj pozostałe ustawienia, w szczególności ustawienia prywatności. Niepublikowany wykaz katalogów jest podobny do niepublicznego numeru telefonu. Ogólnie rzecz biorąc, powinieneś opublikować swój wpis - chyba, że wszyscy twoi znajomi i potencjalni znajomi dokładnie wiedzą, jak Cię znaleźć." - -#: mod/newmember.php:24 mod/profperm.php:113 mod/contacts.php:671 -#: mod/contacts.php:863 view/theme/frio/theme.php:260 src/Content/Nav.php:101 -#: src/Model/Profile.php:732 src/Model/Profile.php:865 -#: src/Model/Profile.php:898 +#: src/Model/Profile.php:734 src/Model/Profile.php:867 +#: src/Model/Profile.php:900 src/Content/Nav.php:101 mod/contacts.php:671 +#: mod/contacts.php:863 mod/newmember.php:24 mod/profperm.php:113 +#: view/theme/frio/theme.php:260 msgid "Profile" msgstr "Profil użytkownika" -#: mod/newmember.php:26 mod/profile_photo.php:249 mod/profiles.php:691 -msgid "Upload Profile Photo" -msgstr "Wyślij zdjęcie profilowe" +#: src/Model/Profile.php:742 mod/settings.php:1209 +msgid "Full Name:" +msgstr "Imię i Nazwisko:" -#: mod/newmember.php:26 +#: src/Model/Profile.php:745 +msgid "Member since:" +msgstr "Członek od:" + +#: src/Model/Profile.php:753 +msgid "j F, Y" +msgstr "d M, R" + +#: src/Model/Profile.php:754 +msgid "j F" +msgstr "d M" + +#: src/Model/Profile.php:762 src/Util/Temporal.php:147 +msgid "Birthday:" +msgstr "Urodziny:" + +#: src/Model/Profile.php:769 +msgid "Age:" +msgstr "Wiek:" + +#: src/Model/Profile.php:782 +#, php-format +msgid "for %1$d %2$s" +msgstr "od %1$d %2$s" + +#: src/Model/Profile.php:786 mod/profiles.php:694 +msgid "Sexual Preference:" +msgstr "Preferencje seksualne:" + +#: src/Model/Profile.php:794 mod/profiles.php:721 +msgid "Hometown:" +msgstr "Miasto rodzinne:" + +#: src/Model/Profile.php:798 mod/notifications.php:251 mod/follow.php:174 +#: mod/contacts.php:666 +msgid "Tags:" +msgstr "Tagi:" + +#: src/Model/Profile.php:802 mod/profiles.php:722 +msgid "Political Views:" +msgstr "Poglądy polityczne:" + +#: src/Model/Profile.php:806 +msgid "Religion:" +msgstr "Religia:" + +#: src/Model/Profile.php:814 +msgid "Hobbies/Interests:" +msgstr "Hobby/Zainteresowania:" + +#: src/Model/Profile.php:818 mod/profiles.php:726 +msgid "Likes:" +msgstr "Lubią to:" + +#: src/Model/Profile.php:822 mod/profiles.php:727 +msgid "Dislikes:" +msgstr "Nie lubię tego:" + +#: src/Model/Profile.php:826 +msgid "Contact information and Social Networks:" +msgstr "Informacje kontaktowe i sieci społeczne" + +#: src/Model/Profile.php:830 +msgid "Musical interests:" +msgstr "Zainteresowania muzyczne:" + +#: src/Model/Profile.php:834 +msgid "Books, literature:" +msgstr "Książki, literatura:" + +#: src/Model/Profile.php:838 +msgid "Television:" +msgstr "Telewizja:" + +#: src/Model/Profile.php:842 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/taniec/kultura/rozrywka" + +#: src/Model/Profile.php:846 +msgid "Love/Romance:" +msgstr "Miłość/Romans:" + +#: src/Model/Profile.php:850 +msgid "Work/employment:" +msgstr "Praca/zatrudnienie:" + +#: src/Model/Profile.php:854 +msgid "School/education:" +msgstr "Szkoła/edukacja:" + +#: src/Model/Profile.php:859 +msgid "Forums:" +msgstr "Fora:" + +#: src/Model/Profile.php:868 mod/events.php:531 +msgid "Basic" +msgstr "Podstawowy" + +#: src/Model/Profile.php:869 mod/events.php:532 mod/admin.php:1351 +#: mod/contacts.php:895 +msgid "Advanced" +msgstr "Zaawansowany" + +#: src/Model/Profile.php:892 src/Content/Nav.php:100 mod/contacts.php:669 +#: mod/contacts.php:855 view/theme/frio/theme.php:259 +msgid "Status" +msgstr "Status" + +#: src/Model/Profile.php:895 mod/unfollow.php:132 mod/follow.php:186 +#: mod/contacts.php:858 +msgid "Status Messages and Posts" +msgstr "Status wiadomości i postów" + +#: src/Model/Profile.php:903 mod/contacts.php:866 +msgid "Profile Details" +msgstr "Szczegóły profilu" + +#: src/Model/Profile.php:908 src/Content/Nav.php:102 mod/fbrowser.php:34 +#: view/theme/frio/theme.php:261 +msgid "Photos" +msgstr "Zdjęcia" + +#: src/Model/Profile.php:911 mod/photos.php:108 +msgid "Photo Albums" +msgstr "Albumy zdjęć" + +#: src/Model/Profile.php:916 src/Model/Profile.php:919 src/Content/Nav.php:103 +#: view/theme/frio/theme.php:262 +msgid "Videos" +msgstr "Filmy" + +#: src/Model/Profile.php:928 src/Model/Profile.php:939 src/Content/Nav.php:104 +#: src/Content/Nav.php:169 mod/events.php:391 mod/cal.php:274 +#: view/theme/frio/theme.php:263 view/theme/frio/theme.php:267 +msgid "Events" +msgstr "Wydarzenia" + +#: src/Model/Profile.php:931 src/Model/Profile.php:942 src/Content/Nav.php:169 +#: view/theme/frio/theme.php:267 +msgid "Events and Calendar" +msgstr "Wydarzenia i kalendarz" + +#: src/Model/Profile.php:950 mod/notes.php:52 +msgid "Personal Notes" +msgstr "Notatki" + +#: src/Model/Profile.php:953 +msgid "Only You Can See This" +msgstr "Tylko ty możesz to zobaczyć" + +#: src/Model/Event.php:36 src/Model/Event.php:814 mod/localtime.php:19 +msgid "l F d, Y \\@ g:i A" +msgstr "" + +#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419 +#: src/Model/Event.php:882 +msgid "Starts:" +msgstr "Rozpoczęcie:" + +#: src/Model/Event.php:56 src/Model/Event.php:76 src/Model/Event.php:420 +#: src/Model/Event.php:886 +msgid "Finishes:" +msgstr "Zakończenie:" + +#: src/Model/Event.php:368 +msgid "all-day" +msgstr "cały dzień" + +#: src/Model/Event.php:391 +msgid "Jun" +msgstr "cze" + +#: src/Model/Event.php:394 +msgid "Sept" +msgstr "wrz" + +#: src/Model/Event.php:412 mod/events.php:400 mod/cal.php:280 +msgid "today" +msgstr "dzisiaj" + +#: src/Model/Event.php:413 src/Util/Temporal.php:304 mod/events.php:401 +#: mod/cal.php:281 +msgid "month" +msgstr "miesiąc" + +#: src/Model/Event.php:414 src/Util/Temporal.php:305 mod/events.php:402 +#: mod/cal.php:282 +msgid "week" +msgstr "tydzień" + +#: src/Model/Event.php:415 src/Util/Temporal.php:306 mod/events.php:403 +#: mod/cal.php:283 +msgid "day" +msgstr "dzień" + +#: src/Model/Event.php:417 +msgid "No events to display" +msgstr "Brak wydarzeń do wyświetlenia" + +#: src/Model/Event.php:543 +msgid "l, F j" +msgstr "d, M d " + +#: src/Model/Event.php:566 +msgid "Edit event" +msgstr "Edytuj wydarzenie" + +#: src/Model/Event.php:567 +msgid "Duplicate event" +msgstr "Zduplikowane zdarzenie" + +#: src/Model/Event.php:568 +msgid "Delete event" +msgstr "Usuń wydarzenie" + +#: src/Model/Event.php:815 +msgid "D g:i A" +msgstr "" + +#: src/Model/Event.php:816 +msgid "g:i A" +msgstr "" + +#: src/Model/Event.php:901 src/Model/Event.php:903 +msgid "Show map" +msgstr "Pokaż mapę" + +#: src/Model/Event.php:902 +msgid "Hide map" +msgstr "Ukryj mapę" + +#: src/Model/Group.php:44 msgid "" -"Upload a profile photo if you have not done so already. Studies have shown " -"that people with real photos of themselves are ten times more likely to make" -" friends than people who do not." -msgstr "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty." +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Skasowana grupa o tej nazwie została przywrócona. Istniejące uprawnienia do pozycji mogą dotyczyć tej grupy i wszystkich przyszłych członków. Jeśli nie jest to zamierzone, utwórz inną grupę o innej nazwie." -#: mod/newmember.php:27 -msgid "Edit Your Profile" -msgstr "Edytuj własny profil" +#: src/Model/Group.php:341 +msgid "Default privacy group for new contacts" +msgstr "Domyślne ustawienia prywatności dla nowych kontaktów" -#: mod/newmember.php:27 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown" -" visitors." -msgstr "Edytuj swój domyślny profil do swoich potrzeb. Przejrzyj ustawienia ukrywania listy znajomych i ukrywania profilu przed nieznanymi użytkownikami." +#: src/Model/Group.php:374 +msgid "Everybody" +msgstr "Wszyscy" -#: mod/newmember.php:28 -msgid "Profile Keywords" -msgstr "Słowa kluczowe profilu" +#: src/Model/Group.php:394 +msgid "edit" +msgstr "edytuj" -#: mod/newmember.php:28 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "Ustaw kilka publicznych słów kluczowych dla swojego domyślnego profilu, które opisują Twoje zainteresowania. Możemy znaleźć inne osoby o podobnych zainteresowaniach i zaproponować przyjaźnie." +#: src/Model/Group.php:413 mod/network.php:202 +msgid "add" +msgstr "dodaj" -#: mod/newmember.php:30 -msgid "Connecting" -msgstr "Łączę się..." - -#: mod/newmember.php:36 -msgid "Importing Emails" -msgstr "Importuję emaile..." - -#: mod/newmember.php:36 -msgid "" -"Enter your email access information on your Connector Settings page if you " -"wish to import and interact with friends or mailing lists from your email " -"INBOX" -msgstr "Wprowadź informacje dotyczące dostępu do poczty e-mail na stronie Ustawienia oprogramowania, jeśli chcesz importować i wchodzić w interakcje z przyjaciółmi lub listami adresowymi z poziomu konta e-mail INBOX" - -#: mod/newmember.php:39 -msgid "Go to Your Contacts Page" -msgstr "Idź do strony z Twoimi kontaktami" - -#: mod/newmember.php:39 -msgid "" -"Your Contacts page is your gateway to managing friendships and connecting " -"with friends on other networks. Typically you enter their address or site " -"URL in the Add New Contact dialog." -msgstr "Strona Kontakty jest twoją bramą do zarządzania przyjaciółmi i łączenia się z przyjaciółmi w innych sieciach. Zazwyczaj podaje się adres lub adres URL strony w oknie dialogowym Dodaj nowy kontakt." - -#: mod/newmember.php:40 -msgid "Go to Your Site's Directory" -msgstr "Idż do twojej strony" - -#: mod/newmember.php:40 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "Strona Katalog umożliwia znalezienie innych osób w tej sieci lub innych witrynach stowarzyszonych. Poszukaj łącza Połącz lub Śledź na stronie profilu. Jeśli chcesz, podaj swój własny adres tożsamości." - -#: mod/newmember.php:41 -msgid "Finding New People" -msgstr "Znajdowanie nowych osób" - -#: mod/newmember.php:41 -msgid "" -"On the side panel of the Contacts page are several tools to find new " -"friends. We can match people by interest, look up people by name or " -"interest, and provide suggestions based on network relationships. On a brand" -" new site, friend suggestions will usually begin to be populated within 24 " -"hours." -msgstr "Na bocznym panelu strony Kontaktów znajduje się kilka narzędzi do znajdowania nowych przyjaciół. Możemy dopasować osoby według zainteresowań, wyszukiwać osoby według nazwisk i zainteresowań oraz dostarczać sugestie oparte na relacjach sieciowych. Na zupełnie nowej stronie sugestie znajomych zwykle zaczynają być wypełniane w ciągu 24 godzin" - -#: mod/newmember.php:43 src/Model/Group.php:414 +#: src/Model/Group.php:414 mod/newmember.php:43 msgid "Groups" msgstr "Grupy" -#: mod/newmember.php:45 -msgid "Group Your Contacts" -msgstr "Grupuj Swoje kontakty" +#: src/Model/Group.php:418 +msgid "Edit group" +msgstr "Edytuj grupy" -#: mod/newmember.php:45 +#: src/Model/Group.php:419 +msgid "Contacts not in any group" +msgstr "Kontakt nie jest w żadnej grupie" + +#: src/Model/Group.php:420 +msgid "Create a new group" +msgstr "Stwórz nową grupę" + +#: src/Model/Group.php:421 mod/group.php:103 mod/group.php:199 +msgid "Group Name: " +msgstr "Nazwa grupy: " + +#: src/Model/Group.php:422 +msgid "Edit groups" +msgstr "Edytuj grupy" + +#: src/Model/Photo.php:244 src/Model/Photo.php:253 mod/fbrowser.php:43 +#: mod/fbrowser.php:68 mod/photos.php:194 mod/photos.php:1062 +#: mod/photos.php:1149 mod/photos.php:1166 mod/photos.php:1659 +#: mod/photos.php:1673 +msgid "Contact Photos" +msgstr "Zdjęcia kontaktu" + +#: src/Model/User.php:154 +msgid "Login failed" +msgstr "Logowanie nieudane" + +#: src/Model/User.php:185 +msgid "Not enough information to authenticate" +msgstr "Za mało informacji do uwierzytelnienia" + +#: src/Model/User.php:214 src/Core/Console/NewPassword.php:74 mod/cal.php:297 +msgid "User not found" +msgstr "Użytkownik nie znaleziony" + +#: src/Model/User.php:335 mod/settings.php:384 +msgid "Passwords do not match. Password unchanged." +msgstr "Hasła nie pasują do siebie. Hasło niezmienione." + +#: src/Model/User.php:342 +msgid "An invitation is required." +msgstr "Wymagane zaproszenie." + +#: src/Model/User.php:346 +msgid "Invitation could not be verified." +msgstr "Zaproszenie niezweryfikowane." + +#: src/Model/User.php:353 +msgid "Invalid OpenID url" +msgstr "Nieprawidłowy adres url OpenID" + +#: src/Model/User.php:366 src/Module/Login.php:100 msgid "" -"Once you have made some friends, organize them into private conversation " -"groups from the sidebar of your Contacts page and then you can interact with" -" each group privately on your Network page." -msgstr "Gdy zaprzyjaźnisz się z przyjaciółmi, uporządkuj je w prywatne grupy konwersacji na pasku bocznym na stronie Kontakty, a następnie możesz wchodzić w interakcje z każdą grupą prywatnie na stronie Sieć." +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Napotkaliśmy problem podczas logowania z podanym przez nas identyfikatorem OpenID. Sprawdź poprawną pisownię identyfikatora." -#: mod/newmember.php:48 -msgid "Why Aren't My Posts Public?" -msgstr "Dlaczego moje posty nie są publiczne?" +#: src/Model/User.php:366 src/Module/Login.php:100 +msgid "The error message was:" +msgstr "Komunikat o błędzie:" -#: mod/newmember.php:48 +#: src/Model/User.php:372 +msgid "Please enter the required information." +msgstr "Wprowadź wymagane informacje" + +#: src/Model/User.php:385 +msgid "Please use a shorter name." +msgstr "Użyj dłuższej nazwy." + +#: src/Model/User.php:388 +msgid "Name too short." +msgstr "Nazwa jest za krótka." + +#: src/Model/User.php:396 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Wydaje mi się, że to nie jest twoje pełne imię (pierwsze imię) i nazwisko." + +#: src/Model/User.php:401 +msgid "Your email domain is not among those allowed on this site." +msgstr "Twoja domena internetowa nie jest obsługiwana na tej stronie." + +#: src/Model/User.php:405 +msgid "Not a valid email address." +msgstr "Niepoprawny adres e mail.." + +#: src/Model/User.php:409 src/Model/User.php:417 +msgid "Cannot use that email." +msgstr "Nie możesz użyć tego e-maila. " + +#: src/Model/User.php:424 +msgid "Your nickname can only contain a-z, 0-9 and _." +msgstr "Twój pseudonim może zawierać tylko a-z, 0-9 i _." + +#: src/Model/User.php:431 src/Model/User.php:487 +msgid "Nickname is already registered. Please choose another." +msgstr "Ten login jest zajęty. Wybierz inny." + +#: src/Model/User.php:441 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń." + +#: src/Model/User.php:474 src/Model/User.php:478 +msgid "An error occurred during registration. Please try again." +msgstr "Wystąpił bład podczas rejestracji, Spróbuj ponownie." + +#: src/Model/User.php:498 view/theme/duepuntozero/config.php:54 +msgid "default" +msgstr "standardowe" + +#: src/Model/User.php:503 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie." + +#: src/Model/User.php:510 +msgid "An error occurred creating your self contact. Please try again." +msgstr "Wystąpił błąd podczas tworzenia własnego kontaktu. Proszę spróbuj ponownie." + +#: src/Model/User.php:515 src/Content/ContactSelector.php:169 +msgid "Friends" +msgstr "Przyjaciele" + +#: src/Model/User.php:519 msgid "" -"Friendica respects your privacy. By default, your posts will only show up to" -" people you've added as friends. For more information, see the help section " -"from the link above." -msgstr "Friendica szanuje Twoją prywatność. Domyślnie Twoje wpisy będą wyświetlane tylko osobom, które dodałeś jako znajomi. Aby uzyskać więcej informacji, zobacz sekcję pomocy na powyższym łączu." +"An error occurred creating your default contact group. Please try again." +msgstr "Wystąpił błąd podczas tworzenia domyślnej grupy kontaktów. Proszę spróbuj ponownie." -#: mod/newmember.php:52 -msgid "Getting Help" -msgstr "Otrzymaj pomoc" - -#: mod/newmember.php:54 -msgid "Go to the Help Section" -msgstr "Przejdź do sekcji pomocy" - -#: mod/newmember.php:54 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Na naszych stronach pomocy można znaleźć szczegółowe informacje na temat innych funkcji programu i zasobów." - -#: mod/nogroup.php:42 mod/viewcontacts.php:112 mod/contacts.php:619 -#: mod/contacts.php:959 +#: src/Model/User.php:593 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "Obejrzyj %s's profil [%s]" +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\t\t" +msgstr "\n\t\t\tDrodzy %1$s, \n\t\t\t\tDziękujemy za rejestrację na stronie %2$s. Twoje konto czeka na zatwierdzenie przez administratora." -#: mod/nogroup.php:43 mod/contacts.php:960 -msgid "Edit contact" -msgstr "Edytuj kontakt" +#: src/Model/User.php:603 +#, php-format +msgid "Registration at %s" +msgstr "Rejestracja w %s" -#: mod/nogroup.php:63 -msgid "Contacts who are not members of a group" -msgstr "Kontakty spoza członków grupy" +#: src/Model/User.php:621 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t\t" +msgstr "\n\t\t\tDrodzy %1$s, \n\t\t\t\tDziękujemy za rejestrację na stronie %2$s. Twoje konto zostało utworzone." -#: mod/p.php:14 -msgid "Not Extended" -msgstr "Nie przedłużony" +#: src/Model/User.php:625 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t\t%1$s\n" +"\t\t\tPassword:\t\t%5$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n" +"\n" +"\t\t\tThank you and welcome to %2$s." +msgstr "\n\t\t\tDane logowania są następuje:\n\t\t\tLokalizacja witryny:\t%3$s\n\t\t\tNazwa użytkownika:\t\t%1$s\n\t\t\tHasło:\t\t%5$s\n\n\t\t\tPo zalogowaniu możesz zmienić hasło do swojego konta na stronie \"Ustawienia\"\n \t\t\tProszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie.\n\n\t\t\tMożesz również dodać podstawowe informacje do swojego domyślnego profilu\n\t\t\t(na stronie \"Profil\"), aby inne osoby mogły łatwo Cię znaleźć.\n\n\t\t\tZalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego,\n\t\t\tdodanie niektórych \"słów kluczowych\" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) - i\n\t\t\tbyć może w jakim kraju mieszkasz; jeśli nie chcesz być bardziej szczegółowy.\n\n\t\t\tW pełni szanujemy Twoje prawo do prywatności i żaden z tych elementów nie jest konieczny.\n\t\t\tJeśli jesteś nowy i nie znasz tutaj nikogo, oni mogą ci pomóc\n\t\t\tmożesz zdobyć nowych interesujących przyjaciół\n\n\t\t\tJeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić w %3$s/Usuń konto\n\n\t\t\tDziękujemy i Zapraszamy do %2$s." + +#: src/Model/User.php:659 mod/admin.php:1611 +#, php-format +msgid "Registration details for %s" +msgstr "Szczegóły rejestracji dla %s" + +#: src/Content/Text/BBCode.php:416 +msgid "view full size" +msgstr "Zobacz w pełnym wymiarze" + +#: src/Content/Text/BBCode.php:842 src/Content/Text/BBCode.php:1611 +#: src/Content/Text/BBCode.php:1612 +msgid "Image/photo" +msgstr "Obrazek/zdjęcie" + +#: src/Content/Text/BBCode.php:980 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s%3$s" + +#: src/Content/Text/BBCode.php:1538 src/Content/Text/BBCode.php:1560 +msgid "$1 wrote:" +msgstr "$1 napisał:" + +#: src/Content/Text/BBCode.php:1620 src/Content/Text/BBCode.php:1621 +msgid "Encrypted content" +msgstr "Szyfrowana treść" + +#: src/Content/Text/BBCode.php:1740 +msgid "Invalid source protocol" +msgstr "Nieprawidłowy protokół źródłowy" + +#: src/Content/Text/BBCode.php:1751 +msgid "Invalid link protocol" +msgstr "Niepoprawny link protokołu" + +#: src/Content/Feature.php:79 +msgid "General Features" +msgstr "Funkcje ogólne" + +#: src/Content/Feature.php:81 +msgid "Multiple Profiles" +msgstr "Wiele profili" + +#: src/Content/Feature.php:81 +msgid "Ability to create multiple profiles" +msgstr "Umożliwienie tworzenia wielu profili" + +#: src/Content/Feature.php:82 +msgid "Photo Location" +msgstr "Lokalizacja zdjęcia" + +#: src/Content/Feature.php:82 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "Metadane zdjęć są zwykle usuwane. Wyodrębnia to położenie (jeśli jest obecne) przed usunięciem metadanych i łączy je z mapą." + +#: src/Content/Feature.php:83 +msgid "Export Public Calendar" +msgstr "Eksportowanie publicznego kalendarza" + +#: src/Content/Feature.php:83 +msgid "Ability for visitors to download the public calendar" +msgstr "Umożliwienie pobierania kalendarza publicznego przez odwiedzających" + +#: src/Content/Feature.php:88 +msgid "Post Composition Features" +msgstr "Ustawienia funkcji postów" + +#: src/Content/Feature.php:89 +msgid "Post Preview" +msgstr "Podgląd posta" + +#: src/Content/Feature.php:89 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Zezwalaj na podgląd postów i komentarzy przed ich opublikowaniem" + +#: src/Content/Feature.php:90 +msgid "Auto-mention Forums" +msgstr "Automatyczne wymienianie forów" + +#: src/Content/Feature.php:90 +msgid "" +"Add/remove mention when a forum page is selected/deselected in ACL window." +msgstr "Dodaj/usuń wzmiankę, gdy strona forum zostanie wybrana/cofnięta w oknie ACL." + +#: src/Content/Feature.php:95 +msgid "Network Sidebar Widgets" +msgstr "Widgety paska bocznego sieci" + +#: src/Content/Feature.php:96 +msgid "Search by Date" +msgstr "Szukanie wg daty" + +#: src/Content/Feature.php:96 +msgid "Ability to select posts by date ranges" +msgstr "Wybierz wpisy według zakresów dat" + +#: src/Content/Feature.php:97 src/Content/Feature.php:127 +msgid "List Forums" +msgstr "Lista forów" + +#: src/Content/Feature.php:97 +msgid "Enable widget to display the forums your are connected with" +msgstr "Włącz widżet, aby wyświetlić fora, z którymi jesteś połączony" + +#: src/Content/Feature.php:98 +msgid "Group Filter" +msgstr "Filtr grupowy" + +#: src/Content/Feature.php:98 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Włącz widżet, aby wyświetlać posty sieciowe tylko z wybranej grupy" + +#: src/Content/Feature.php:99 +msgid "Network Filter" +msgstr "Filtr sieciowy" + +#: src/Content/Feature.php:99 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Włącz widżet, aby wyświetlać posty sieciowe tylko z wybranej sieci" + +#: src/Content/Feature.php:100 mod/network.php:201 mod/search.php:46 +msgid "Saved Searches" +msgstr "Zapisywanie wyszukiwania" + +#: src/Content/Feature.php:100 +msgid "Save search terms for re-use" +msgstr "Zapisz wyszukiwane hasła do ponownego użycia" + +#: src/Content/Feature.php:105 +msgid "Network Tabs" +msgstr "Etykiety sieciowe" + +#: src/Content/Feature.php:106 +msgid "Network Personal Tab" +msgstr "Etykieta Sieć Osobista" + +#: src/Content/Feature.php:106 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Włącz etykietę, by wyświetlać posty tylko z sieci, z którymi współpracujesz" + +#: src/Content/Feature.php:107 +msgid "Network New Tab" +msgstr "Etykieta Nowe Posty Sieciowe" + +#: src/Content/Feature.php:107 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Włącz etykietę, aby wyświetlić tylko nowe posty sieciowe (z ostatnich 12 godzin)" + +#: src/Content/Feature.php:108 +msgid "Network Shared Links Tab" +msgstr "Etykieta Udostępnianie Łącz Sieciowych" + +#: src/Content/Feature.php:108 +msgid "Enable tab to display only Network posts with links in them" +msgstr "Włącz etykietę, aby wyświetlić tylko posty sieciowe z łączami do nich" + +#: src/Content/Feature.php:113 +msgid "Post/Comment Tools" +msgstr "Narzędzia post/komentarz" + +#: src/Content/Feature.php:114 +msgid "Multiple Deletion" +msgstr "Wielokrotne Usuwanie" + +#: src/Content/Feature.php:114 +msgid "Select and delete multiple posts/comments at once" +msgstr "Wybierz i usuń wiele postów/komentarzy jednocześnie" + +#: src/Content/Feature.php:115 +msgid "Edit Sent Posts" +msgstr "Edytuj wysłane posty" + +#: src/Content/Feature.php:115 +msgid "Edit and correct posts and comments after sending" +msgstr "Edycja i poprawianie wpisów i komentarzy po wysłaniu" + +#: src/Content/Feature.php:116 +msgid "Tagging" +msgstr "Tagowanie" + +#: src/Content/Feature.php:116 +msgid "Ability to tag existing posts" +msgstr "Umożliwienie oznaczania istniejących postów" + +#: src/Content/Feature.php:117 +msgid "Post Categories" +msgstr "Kategorie postów" + +#: src/Content/Feature.php:117 +msgid "Add categories to your posts" +msgstr "Dodaj kategorie do twoich postów" + +#: src/Content/Feature.php:118 src/Content/Widget.php:200 +msgid "Saved Folders" +msgstr "Zapisane foldery" + +#: src/Content/Feature.php:118 +msgid "Ability to file posts under folders" +msgstr "Umożliwienie przesyłania postów do folderów" + +#: src/Content/Feature.php:119 +msgid "Dislike Posts" +msgstr "Nie lubię Postów" + +#: src/Content/Feature.php:119 +msgid "Ability to dislike posts/comments" +msgstr "Możliwa niechęć do postów/komentarzy" + +#: src/Content/Feature.php:120 +msgid "Star Posts" +msgstr "Oznacz posty gwiazdką" + +#: src/Content/Feature.php:120 +msgid "Ability to mark special posts with a star indicator" +msgstr "Oznacz specjalne posty gwiazdką" + +#: src/Content/Feature.php:121 +msgid "Mute Post Notifications" +msgstr "Ignoruj ​​powiadomienia pocztą" + +#: src/Content/Feature.php:121 +msgid "Ability to mute notifications for a thread" +msgstr "Ignoruj powiadomienia dla wątku" + +#: src/Content/Feature.php:126 +msgid "Advanced Profile Settings" +msgstr "Zaawansowane ustawienia profilu" + +#: src/Content/Feature.php:127 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "Wyświetlaj publiczne fora społeczności na stronie profilu zaawansowanego" + +#: src/Content/Feature.php:128 +msgid "Tag Cloud" +msgstr "Chmura tagów" + +#: src/Content/Feature.php:128 +msgid "Provide a personal tag cloud on your profile page" +msgstr "Podaj osobistą chmurę tagów na stronie profilu" + +#: src/Content/Feature.php:129 +msgid "Display Membership Date" +msgstr "Wyświetl datę członkostwa" + +#: src/Content/Feature.php:129 +msgid "Display membership date in profile" +msgstr "Wyświetl datę członkostwa w profilu" + +#: src/Content/Widget/CalendarExport.php:61 +msgid "Export" +msgstr "Eksport" + +#: src/Content/Widget/CalendarExport.php:62 +msgid "Export calendar as ical" +msgstr "Wyeksportuj kalendarz jako ical" + +#: src/Content/Widget/CalendarExport.php:63 +msgid "Export calendar as csv" +msgstr "Eksportuj kalendarz jako csv" + +#: src/Content/Widget.php:33 +msgid "Add New Contact" +msgstr "Dodaj nowy kontakt" + +#: src/Content/Widget.php:34 +msgid "Enter address or web location" +msgstr "Wpisz adres lub lokalizację sieciową" + +#: src/Content/Widget.php:35 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Przykład: bob@przykład.com, http://przykład.com/barbara" + +#: src/Content/Widget.php:53 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d zaproszenie dostępne" +msgstr[1] "%d zaproszeń dostępnych" +msgstr[2] "%d zaproszenia dostępne" +msgstr[3] "%d zaproszenia dostępne" + +#: src/Content/Widget.php:59 +msgid "Find People" +msgstr "Znajdź ludzi" + +#: src/Content/Widget.php:60 +msgid "Enter name or interest" +msgstr "Wpisz nazwę lub zainteresowanie" + +#: src/Content/Widget.php:62 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Przykład: Jan Kowalski, Wędkarstwo" + +#: src/Content/Widget.php:63 mod/directory.php:209 mod/contacts.php:820 +msgid "Find" +msgstr "Znajdź" + +#: src/Content/Widget.php:64 mod/suggest.php:114 view/theme/vier/theme.php:203 +msgid "Friend Suggestions" +msgstr "Osoby, które możesz znać" + +#: src/Content/Widget.php:65 view/theme/vier/theme.php:202 +msgid "Similar Interests" +msgstr "Podobne zainteresowania" + +#: src/Content/Widget.php:66 +msgid "Random Profile" +msgstr "Domyślny profil" + +#: src/Content/Widget.php:67 view/theme/vier/theme.php:204 +msgid "Invite Friends" +msgstr "Zaproś znajomych" + +#: src/Content/Widget.php:68 +msgid "View Global Directory" +msgstr "Wyświetl globalny katalog" + +#: src/Content/Widget.php:159 +msgid "Networks" +msgstr "Sieci" + +#: src/Content/Widget.php:162 +msgid "All Networks" +msgstr "Wszystkie Sieci" + +#: src/Content/Widget.php:203 src/Content/Widget.php:243 +msgid "Everything" +msgstr "Wszystko" + +#: src/Content/Widget.php:240 +msgid "Categories" +msgstr "Kategorie" + +#: src/Content/Widget.php:307 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: src/Content/ContactSelector.php:55 +msgid "Frequently" +msgstr "Często" + +#: src/Content/ContactSelector.php:56 +msgid "Hourly" +msgstr "Co godzinę" + +#: src/Content/ContactSelector.php:57 +msgid "Twice daily" +msgstr "Dwa razy dziennie" + +#: src/Content/ContactSelector.php:58 +msgid "Daily" +msgstr "Codziennie" + +#: src/Content/ContactSelector.php:59 +msgid "Weekly" +msgstr "Co tydzień" + +#: src/Content/ContactSelector.php:60 +msgid "Monthly" +msgstr "Miesięczne" + +#: src/Content/ContactSelector.php:79 mod/dfrn_request.php:656 +msgid "Friendica" +msgstr "Friendica" + +#: src/Content/ContactSelector.php:80 +msgid "OStatus" +msgstr "OStatus" + +#: src/Content/ContactSelector.php:81 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: src/Content/ContactSelector.php:82 mod/admin.php:1796 mod/admin.php:1807 +#: mod/admin.php:1820 mod/admin.php:1838 +msgid "Email" +msgstr "E-mail" + +#: src/Content/ContactSelector.php:83 mod/settings.php:805 +msgid "Diaspora" +msgstr "Diaspora" + +#: src/Content/ContactSelector.php:84 +msgid "Facebook" +msgstr "Facebook" + +#: src/Content/ContactSelector.php:85 +msgid "Zot!" +msgstr "Zot!" + +#: src/Content/ContactSelector.php:86 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: src/Content/ContactSelector.php:87 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: src/Content/ContactSelector.php:88 +msgid "MySpace" +msgstr "MySpace" + +#: src/Content/ContactSelector.php:89 +msgid "Google+" +msgstr "Google+" + +#: src/Content/ContactSelector.php:90 +msgid "pump.io" +msgstr "pump.io" + +#: src/Content/ContactSelector.php:91 +msgid "Twitter" +msgstr "Twitter" + +#: src/Content/ContactSelector.php:92 +msgid "Diaspora Connector" +msgstr "Łącze Diaspora" + +#: src/Content/ContactSelector.php:93 +msgid "GNU Social Connector" +msgstr "GNU Połączenie Społecznościowe" + +#: src/Content/ContactSelector.php:94 +msgid "pnut" +msgstr "orzech" + +#: src/Content/ContactSelector.php:95 +msgid "App.net" +msgstr "App.net" + +#: src/Content/ContactSelector.php:125 +msgid "Male" +msgstr "Mężczyzna" + +#: src/Content/ContactSelector.php:125 +msgid "Female" +msgstr "Kobieta" + +#: src/Content/ContactSelector.php:125 +msgid "Currently Male" +msgstr "Obecnie mężczyzna" + +#: src/Content/ContactSelector.php:125 +msgid "Currently Female" +msgstr "Obecnie Kobieta" + +#: src/Content/ContactSelector.php:125 +msgid "Mostly Male" +msgstr "Głównie mężczyzna" + +#: src/Content/ContactSelector.php:125 +msgid "Mostly Female" +msgstr "Głównie kobieta" + +#: src/Content/ContactSelector.php:125 +msgid "Transgender" +msgstr "Transseksualny" + +#: src/Content/ContactSelector.php:125 +msgid "Intersex" +msgstr "Interseksualne" + +#: src/Content/ContactSelector.php:125 +msgid "Transsexual" +msgstr "Transseksualny" + +#: src/Content/ContactSelector.php:125 +msgid "Hermaphrodite" +msgstr "Hermafrodyta" + +#: src/Content/ContactSelector.php:125 +msgid "Neuter" +msgstr "Rodzaj nijaki" + +#: src/Content/ContactSelector.php:125 +msgid "Non-specific" +msgstr "Niespecyficzne" + +#: src/Content/ContactSelector.php:125 +msgid "Other" +msgstr "Inne" + +#: src/Content/ContactSelector.php:147 +msgid "Males" +msgstr "Mężczyźni" + +#: src/Content/ContactSelector.php:147 +msgid "Females" +msgstr "Kobiety" + +#: src/Content/ContactSelector.php:147 +msgid "Gay" +msgstr "Gej" + +#: src/Content/ContactSelector.php:147 +msgid "Lesbian" +msgstr "Lesbijka" + +#: src/Content/ContactSelector.php:147 +msgid "No Preference" +msgstr "Brak preferencji" + +#: src/Content/ContactSelector.php:147 +msgid "Bisexual" +msgstr "Biseksualny" + +#: src/Content/ContactSelector.php:147 +msgid "Autosexual" +msgstr "Niezidentyfikowany" + +#: src/Content/ContactSelector.php:147 +msgid "Abstinent" +msgstr "Abstynent" + +#: src/Content/ContactSelector.php:147 +msgid "Virgin" +msgstr "Dziewica" + +#: src/Content/ContactSelector.php:147 +msgid "Deviant" +msgstr "Zboczeniec" + +#: src/Content/ContactSelector.php:147 +msgid "Fetish" +msgstr "Fetysz" + +#: src/Content/ContactSelector.php:147 +msgid "Oodles" +msgstr "Nadmiar" + +#: src/Content/ContactSelector.php:147 +msgid "Nonsexual" +msgstr "Nieseksualny" + +#: src/Content/ContactSelector.php:169 +msgid "Single" +msgstr "Singiel" + +#: src/Content/ContactSelector.php:169 +msgid "Lonely" +msgstr "Samotny" + +#: src/Content/ContactSelector.php:169 +msgid "Available" +msgstr "Dostępny" + +#: src/Content/ContactSelector.php:169 +msgid "Unavailable" +msgstr "Niedostępny" + +#: src/Content/ContactSelector.php:169 +msgid "Has crush" +msgstr "Ma sympatii" + +#: src/Content/ContactSelector.php:169 +msgid "Infatuated" +msgstr "Zakochany" + +#: src/Content/ContactSelector.php:169 +msgid "Dating" +msgstr "Randki" + +#: src/Content/ContactSelector.php:169 +msgid "Unfaithful" +msgstr "Niewierny" + +#: src/Content/ContactSelector.php:169 +msgid "Sex Addict" +msgstr "Uzależniony od seksu" + +#: src/Content/ContactSelector.php:169 +msgid "Friends/Benefits" +msgstr "Przyjaciele/Korzyści" + +#: src/Content/ContactSelector.php:169 +msgid "Casual" +msgstr "Przypadkowy" + +#: src/Content/ContactSelector.php:169 +msgid "Engaged" +msgstr "Zaręczeni" + +#: src/Content/ContactSelector.php:169 +msgid "Married" +msgstr "Małżeństwo" + +#: src/Content/ContactSelector.php:169 +msgid "Imaginarily married" +msgstr "Fikcyjnie w związku małżeńskim" + +#: src/Content/ContactSelector.php:169 +msgid "Partners" +msgstr "Partnerzy" + +#: src/Content/ContactSelector.php:169 +msgid "Cohabiting" +msgstr "Konkubinat" + +#: src/Content/ContactSelector.php:169 +msgid "Common law" +msgstr "Prawo zwyczajowe" + +#: src/Content/ContactSelector.php:169 +msgid "Happy" +msgstr "Szczęśliwy" + +#: src/Content/ContactSelector.php:169 +msgid "Not looking" +msgstr "Nie patrzę" + +#: src/Content/ContactSelector.php:169 +msgid "Swinger" +msgstr "Swinger" + +#: src/Content/ContactSelector.php:169 +msgid "Betrayed" +msgstr "Zdradzony" + +#: src/Content/ContactSelector.php:169 +msgid "Separated" +msgstr "W separacji" + +#: src/Content/ContactSelector.php:169 +msgid "Unstable" +msgstr "Niestabilny" + +#: src/Content/ContactSelector.php:169 +msgid "Divorced" +msgstr "Rozwiedzeni" + +#: src/Content/ContactSelector.php:169 +msgid "Imaginarily divorced" +msgstr "Fikcyjnie rozwiedziony/a" + +#: src/Content/ContactSelector.php:169 +msgid "Widowed" +msgstr "Wdowiec" + +#: src/Content/ContactSelector.php:169 +msgid "Uncertain" +msgstr "Nieokreślony" + +#: src/Content/ContactSelector.php:169 +msgid "It's complicated" +msgstr "To skomplikowane" + +#: src/Content/ContactSelector.php:169 +msgid "Don't care" +msgstr "Nie przejmuj się" + +#: src/Content/ContactSelector.php:169 +msgid "Ask me" +msgstr "Zapytaj mnie " + +#: src/Content/OEmbed.php:253 +msgid "Embedding disabled" +msgstr "Osadzanie wyłączone" + +#: src/Content/OEmbed.php:373 +msgid "Embedded content" +msgstr "Osadzona zawartość" + +#: src/Content/ForumManager.php:127 view/theme/vier/theme.php:256 +msgid "External link to forum" +msgstr "Zewnętrzny link do forum" + +#: src/Content/Nav.php:53 +msgid "Nothing new here" +msgstr "Brak nowych zdarzeń" + +#: src/Content/Nav.php:57 +msgid "Clear notifications" +msgstr "Wyczyść powiadomienia" + +#: src/Content/Nav.php:97 src/Module/Login.php:311 +#: view/theme/frio/theme.php:256 +msgid "Logout" +msgstr "Wyloguj się" + +#: src/Content/Nav.php:97 view/theme/frio/theme.php:256 +msgid "End this session" +msgstr "Zakończ sesję" + +#: src/Content/Nav.php:100 src/Content/Nav.php:181 +#: view/theme/frio/theme.php:259 +msgid "Your posts and conversations" +msgstr "Twoje posty i rozmowy" + +#: src/Content/Nav.php:101 view/theme/frio/theme.php:260 +msgid "Your profile page" +msgstr "Twoja strona profilowa" + +#: src/Content/Nav.php:102 view/theme/frio/theme.php:261 +msgid "Your photos" +msgstr "Twoje zdjęcia" + +#: src/Content/Nav.php:103 view/theme/frio/theme.php:262 +msgid "Your videos" +msgstr "Twoje filmy" + +#: src/Content/Nav.php:104 view/theme/frio/theme.php:263 +msgid "Your events" +msgstr "Twoje wydarzenia" + +#: src/Content/Nav.php:105 +msgid "Personal notes" +msgstr "Notatki" + +#: src/Content/Nav.php:105 +msgid "Your personal notes" +msgstr "Twoje prywatne notatki" + +#: src/Content/Nav.php:114 src/Module/Login.php:312 mod/bookmarklet.php:23 +msgid "Login" +msgstr "Zaloguj się" + +#: src/Content/Nav.php:114 +msgid "Sign in" +msgstr "Zaloguj się" + +#: src/Content/Nav.php:124 src/Content/Nav.php:181 +#: src/Core/NotificationsManager.php:192 +msgid "Home" +msgstr "Strona domowa" + +#: src/Content/Nav.php:124 +msgid "Home Page" +msgstr "Strona startowa" + +#: src/Content/Nav.php:128 src/Module/Login.php:283 mod/register.php:279 +msgid "Register" +msgstr "Zarejestruj" + +#: src/Content/Nav.php:128 +msgid "Create an account" +msgstr "Załóż konto" + +#: src/Content/Nav.php:134 mod/help.php:54 view/theme/vier/theme.php:298 +msgid "Help" +msgstr "Pomoc" + +#: src/Content/Nav.php:134 +msgid "Help and documentation" +msgstr "Pomoc i dokumentacja" + +#: src/Content/Nav.php:138 +msgid "Apps" +msgstr "Aplikacje" + +#: src/Content/Nav.php:138 +msgid "Addon applications, utilities, games" +msgstr "Wtyczki, aplikacje, narzędzia, gry" + +#: src/Content/Nav.php:142 +msgid "Search site content" +msgstr "Przeszukaj zawartość strony" + +#: src/Content/Nav.php:165 +msgid "Community" +msgstr "Społeczność" + +#: src/Content/Nav.php:165 +msgid "Conversations on this and other servers" +msgstr "Rozmowy na tym i innych serwerach" + +#: src/Content/Nav.php:172 +msgid "Directory" +msgstr "Katalog" + +#: src/Content/Nav.php:172 +msgid "People directory" +msgstr "Katalog osób" + +#: src/Content/Nav.php:174 mod/admin.php:179 +msgid "Information" +msgstr "Informacje" + +#: src/Content/Nav.php:174 +msgid "Information about this friendica instance" +msgstr "Informacje o tej instancji friendica" + +#: src/Content/Nav.php:178 src/Core/NotificationsManager.php:178 +#: mod/admin.php:758 view/theme/frio/theme.php:266 +msgid "Network" +msgstr "Sieć" + +#: src/Content/Nav.php:178 view/theme/frio/theme.php:266 +msgid "Conversations from your friends" +msgstr "Rozmowy Twoich przyjaciół" + +#: src/Content/Nav.php:179 +msgid "Network Reset" +msgstr "Resetowanie sieci" + +#: src/Content/Nav.php:179 +msgid "Load Network page with no filters" +msgstr "Załaduj stronę sieci bez filtrów" + +#: src/Content/Nav.php:185 src/Core/NotificationsManager.php:199 +msgid "Introductions" +msgstr "Zapoznanie" + +#: src/Content/Nav.php:185 +msgid "Friend Requests" +msgstr "Prośba o przyjęcie do grona znajomych" + +#: src/Content/Nav.php:186 mod/notifications.php:98 +msgid "Notifications" +msgstr "Powiadomienia" + +#: src/Content/Nav.php:187 +msgid "See all notifications" +msgstr "Zobacz wszystkie powiadomienia" + +#: src/Content/Nav.php:188 mod/settings.php:870 +msgid "Mark as seen" +msgstr "Oznacz jako przeczytane" + +#: src/Content/Nav.php:188 +msgid "Mark all system notifications seen" +msgstr "Oznacz wszystkie powiadomienia systemu jako przeczytane" + +#: src/Content/Nav.php:191 mod/message.php:112 view/theme/frio/theme.php:268 +msgid "Messages" +msgstr "Wiadomości" + +#: src/Content/Nav.php:191 view/theme/frio/theme.php:268 +msgid "Private mail" +msgstr "Prywatne maile" + +#: src/Content/Nav.php:192 +msgid "Inbox" +msgstr "Odebrane" + +#: src/Content/Nav.php:193 +msgid "Outbox" +msgstr "Wysłane" + +#: src/Content/Nav.php:194 mod/message.php:30 +msgid "New Message" +msgstr "Nowa wiadomość" + +#: src/Content/Nav.php:197 +msgid "Manage" +msgstr "Zarządzaj" + +#: src/Content/Nav.php:197 +msgid "Manage other pages" +msgstr "Zarządzaj innymi stronami" + +#: src/Content/Nav.php:200 mod/settings.php:93 +msgid "Delegations" +msgstr "Delegowanie" + +#: src/Content/Nav.php:200 mod/delegate.php:169 +msgid "Delegate Page Management" +msgstr "Deleguj zarządzanie stronami" + +#: src/Content/Nav.php:202 mod/settings.php:123 mod/admin.php:1920 +#: mod/admin.php:2189 mod/newmember.php:19 view/theme/frio/theme.php:269 +msgid "Settings" +msgstr "Ustawienia" + +#: src/Content/Nav.php:202 view/theme/frio/theme.php:269 +msgid "Account settings" +msgstr "Ustawienia konta" + +#: src/Content/Nav.php:205 +msgid "Manage/Edit Profiles" +msgstr "Zarządzaj/Edytuj profile" + +#: src/Content/Nav.php:208 view/theme/frio/theme.php:270 +msgid "Manage/edit friends and contacts" +msgstr "Zarządzaj listą przyjaciół i kontaktami" + +#: src/Content/Nav.php:213 mod/admin.php:222 +msgid "Admin" +msgstr "Administator" + +#: src/Content/Nav.php:213 +msgid "Site setup and configuration" +msgstr "Konfiguracja i ustawienia instancji" + +#: src/Content/Nav.php:216 +msgid "Navigation" +msgstr "Nawigacja" + +#: src/Content/Nav.php:216 +msgid "Site map" +msgstr "Mapa strony" + +#: src/Worker/Delivery.php:390 +msgid "(no subject)" +msgstr "(bez tematu)" + +#: src/App.php:511 +msgid "Delete this item?" +msgstr "Usunąć ten element?" + +#: src/App.php:513 +msgid "show fewer" +msgstr "Pokaż mniej" + +#: src/Module/Login.php:86 src/Module/Login.php:134 mod/openid.php:116 +msgid "Login failed." +msgstr "Logowanie nieudane." + +#: src/Module/Login.php:282 +msgid "Create a New Account" +msgstr "Załóż nowe konto" + +#: src/Module/Login.php:314 mod/lostpass.php:119 +msgid "Nickname or Email: " +msgstr "Pseudonim lub Email:" + +#: src/Module/Login.php:315 +msgid "Password: " +msgstr "Hasło:" + +#: src/Module/Login.php:316 +msgid "Remember me" +msgstr "Zapamiętaj mnie" + +#: src/Module/Login.php:319 +msgid "Or login using OpenID: " +msgstr "Lub zaloguj się korzystając z OpenID:" + +#: src/Module/Login.php:325 +msgid "Forgot your password?" +msgstr "Zapomniałeś swojego hasła?" + +#: src/Module/Login.php:326 mod/lostpass.php:136 +msgid "Password Reset" +msgstr "Zresetuj hasło" + +#: src/Module/Login.php:328 +msgid "Website Terms of Service" +msgstr "Warunki korzystania z witryny" + +#: src/Module/Login.php:329 +msgid "terms of service" +msgstr "warunki użytkowania" + +#: src/Module/Login.php:331 +msgid "Website Privacy Policy" +msgstr "Polityka Prywatności Witryny" + +#: src/Module/Login.php:332 +msgid "privacy policy" +msgstr "polityka prywatności" + +#: src/Module/Tos.php:48 mod/admin.php:188 mod/admin.php:302 +#: mod/register.php:288 +msgid "Terms of Service" +msgstr "Warunki usługi" + +#: src/Module/Tos.php:51 +msgid "Privacy Statement" +msgstr "Oświadczenie o prywatności" + +#: src/Module/Tos.php:52 +msgid "" +"At the time of registration, and for providing communications between the " +"user account and their contacts, the user has to provide a display name (pen" +" name), an username (nickname) and a working email address. The names will " +"be accessible on the profile page of the account by any visitor of the page," +" even if other profile details are not displayed. The email address will " +"only be used to send the user notifications about interactions, but wont be " +"visibly displayed. The listing of an account in the node's user directory or" +" the global user directory is optional and can be controlled in the user " +"settings, it is not necessary for communication." +msgstr "W momencie rejestracji oraz w celu zapewnienia komunikacji między kontem użytkownika, a jego kontaktami, użytkownik musi podać nazwę wyświetlaną (pseudonim), nazwę użytkownika (przydomek) i działający adres e-mail. Nazwy będą dostępne na stronie profilu konta dla każdego odwiedzającego stronę, nawet jeśli inne szczegóły profilu nie zostaną wyświetlone. Adres e-mail będzie używany tylko do wysyłania powiadomień użytkownika o interakcjach, ale nie będzie wyświetlany w widoczny sposób. Lista kont w katalogu użytkownika węzła lub globalnym katalogu użytkownika jest opcjonalna i może być kontrolowana w ustawieniach użytkownika, nie jest konieczna do komunikacji." + +#: src/Module/Tos.php:53 +msgid "" +"This data is required for communication and is passed on to the nodes of the" +" communication partners. Users can enter additional private data that may be" +" transmitted to the communication partners accounts." +msgstr "Te dane są wymagane do komunikacji i przekazywane do węzłów partnerów komunikacyjnych. Użytkownicy mogą wprowadzać dodatkowe prywatne dane, które mogą być przesyłane na konta partnerów komunikacyjnych." + +#: src/Module/Tos.php:54 +#, php-format +msgid "" +"At any point in time a logged in user can export their account data from the" +" account settings. If the user wants " +"to delete their account they can do so at %1$s/removeme. The deletion of the account will " +"be permanent." +msgstr "W dowolnym momencie zalogowany użytkownik może wyeksportować dane swojego konta z ustawień konta. Jeśli użytkownik chce usunąć swoje konto, może to zrobić w %1$s/usuń mnie. Usunięcie konta będzie trwałe." + +#: src/Module/Logout.php:28 +msgid "Logged out." +msgstr "Wyloguj" + +#: src/Object/Image.php:953 src/Object/Image.php:969 src/Object/Image.php:977 +#: src/Object/Image.php:1002 mod/wall_upload.php:231 mod/item.php:471 +msgid "Wall Photos" +msgstr "Tablica zdjęć" + +#: src/Object/Post.php:128 +msgid "This entry was edited" +msgstr "Ten wpis został zedytowany" + +#: src/Object/Post.php:149 mod/photos.php:1308 +msgid "Private Message" +msgstr "Wiadomość prywatna" + +#: src/Object/Post.php:155 src/Object/Post.php:157 mod/settings.php:737 +msgid "Edit" +msgstr "Edytuj" + +#: src/Object/Post.php:182 +msgid "save to folder" +msgstr "zapisz w folderze" + +#: src/Object/Post.php:235 +msgid "I will attend" +msgstr "Będę uczestniczyć" + +#: src/Object/Post.php:235 +msgid "I will not attend" +msgstr "Nie będę uczestniczyć" + +#: src/Object/Post.php:235 +msgid "I might attend" +msgstr "Mogę wziąć udział" + +#: src/Object/Post.php:263 +msgid "add star" +msgstr "dodaj gwiazdkę" + +#: src/Object/Post.php:264 +msgid "remove star" +msgstr "anuluj gwiazdkę" + +#: src/Object/Post.php:265 +msgid "toggle star status" +msgstr "włącz status gwiazdy" + +#: src/Object/Post.php:268 +msgid "starred" +msgstr "gwiazdką" + +#: src/Object/Post.php:274 +msgid "ignore thread" +msgstr "zignoruj ​​wątek" + +#: src/Object/Post.php:275 +msgid "unignore thread" +msgstr "odignoruj ​​wątek" + +#: src/Object/Post.php:276 +msgid "toggle ignore status" +msgstr "przełącz status ignorowania" + +#: src/Object/Post.php:279 mod/ostatus_subscribe.php:83 +msgid "ignored" +msgstr "Ignoruj" + +#: src/Object/Post.php:285 +msgid "add tag" +msgstr "dodaj tag" + +#: src/Object/Post.php:296 mod/photos.php:1471 +msgid "I like this (toggle)" +msgstr "Lubię to (zmień)" + +#: src/Object/Post.php:296 +msgid "like" +msgstr "lubię to" + +#: src/Object/Post.php:297 mod/photos.php:1472 +msgid "I don't like this (toggle)" +msgstr "Nie lubię tego (zmień)" + +#: src/Object/Post.php:297 +msgid "dislike" +msgstr "nie lubię tego" + +#: src/Object/Post.php:300 +msgid "Share this" +msgstr "Udostępnij to" + +#: src/Object/Post.php:300 +msgid "share" +msgstr "udostępnij" + +#: src/Object/Post.php:365 +msgid "to" +msgstr "do" + +#: src/Object/Post.php:366 +msgid "via" +msgstr "przez" + +#: src/Object/Post.php:367 +msgid "Wall-to-Wall" +msgstr "Wall-to-Wall" + +#: src/Object/Post.php:368 +msgid "via Wall-To-Wall:" +msgstr "via Wall-To-Wall:" + +#: src/Object/Post.php:399 src/Object/Post.php:795 mod/photos.php:1490 +#: mod/photos.php:1529 mod/photos.php:1602 +msgid "Comment" +msgstr "Komentarz" + +#: src/Object/Post.php:427 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] " %d komentarz" +msgstr[1] " %d komentarzy" +msgstr[2] " %d komentarzy" +msgstr[3] " %d komentarzy" + +#: src/Object/Post.php:793 mod/photos.php:1488 mod/photos.php:1527 +#: mod/photos.php:1600 mod/contacts.php:953 +msgid "This is you" +msgstr "To jesteś ty" + +#: src/Object/Post.php:796 mod/manage.php:184 mod/invite.php:155 +#: mod/profiles.php:672 mod/events.php:530 mod/fsuggest.php:114 +#: mod/photos.php:1080 mod/photos.php:1160 mod/photos.php:1445 +#: mod/photos.php:1491 mod/photos.php:1530 mod/photos.php:1603 +#: mod/message.php:265 mod/message.php:432 mod/localtime.php:56 +#: mod/crepair.php:148 mod/poke.php:199 mod/contacts.php:610 +#: mod/install.php:251 mod/install.php:290 view/theme/quattro/config.php:73 +#: view/theme/frio/config.php:113 view/theme/vier/config.php:119 +#: view/theme/duepuntozero/config.php:71 +msgid "Submit" +msgstr "Potwierdź" + +#: src/Object/Post.php:797 +msgid "Bold" +msgstr "Pogrubienie" + +#: src/Object/Post.php:798 +msgid "Italic" +msgstr "Kursywa" + +#: src/Object/Post.php:799 +msgid "Underline" +msgstr "Podkreślenie" + +#: src/Object/Post.php:800 +msgid "Quote" +msgstr "Cytat" + +#: src/Object/Post.php:801 +msgid "Code" +msgstr "Kod" + +#: src/Object/Post.php:802 +msgid "Image" +msgstr "Obraz" + +#: src/Object/Post.php:803 +msgid "Link" +msgstr "Link" + +#: src/Object/Post.php:804 +msgid "Video" +msgstr "Video" + +#: src/Database/DBStructure.php:32 +msgid "There are no tables on MyISAM." +msgstr "W MyISAM nie ma tabel." + +#: src/Database/DBStructure.php:75 +#, php-format +msgid "" +"\n" +"\t\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "\n\t\t\t\tDeweloperzy friendica wydali niedawno aktualizację %s,\n\t\t\t\tale podczas próby instalacji, coś poszło nie tak.\n\t\t\t\tZostanie to naprawione wkrótce i nie mogę tego zrobić sam. Proszę skontaktować się z \n\t\t\t\tprogramistami friendica, jeśli nie możesz mi pomóc na własną rękę. Moja baza danych może być nieprawidłowa." + +#: src/Database/DBStructure.php:80 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Komunikat o błędzie jest \n[pre]%s[/ pre]" + +#: src/Database/DBStructure.php:191 +#, php-format +msgid "" +"\n" +"Error %d occurred during database update:\n" +"%s\n" +msgstr "\nWystąpił błąd %d podczas aktualizacji bazy danych:\n%s\n" + +#: src/Database/DBStructure.php:194 +msgid "Errors encountered performing database changes: " +msgstr "Napotkane błędy powodujące zmiany w bazie danych:" + +#: src/Database/DBStructure.php:210 +msgid ": Database update" +msgstr ": Aktualizacja bazy danych" + +#: src/Database/DBStructure.php:460 +#, php-format +msgid "%s: updating %s table." +msgstr "%s: aktualizowanie %s tabeli." + +#: src/Core/UserImport.php:104 +msgid "Error decoding account file" +msgstr "Błąd podczas odczytu pliku konta" + +#: src/Core/UserImport.php:110 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Błąd! Brak danych wersji w pliku! To nie jest plik konta Friendica?" + +#: src/Core/UserImport.php:118 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Użytkownik '%s' już istnieje na tym serwerze!" + +#: src/Core/UserImport.php:151 +msgid "User creation error" +msgstr "Błąd tworzenia użytkownika" + +#: src/Core/UserImport.php:169 +msgid "User profile creation error" +msgstr "Błąd tworzenia profilu użytkownika" + +#: src/Core/UserImport.php:213 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "Nie zaimportowano %d kontaktu." +msgstr[1] "Nie zaimportowano %d kontaktów." +msgstr[2] "Nie zaimportowano %d kontaktów." +msgstr[3] "%dkontakty nie zostały zaimportowane " + +#: src/Core/UserImport.php:278 +msgid "Done. You can now login with your username and password" +msgstr "Gotowe. Możesz teraz zalogować się, podając swoją nazwę użytkownika i hasło." + +#: src/Core/Console/NewPassword.php:78 mod/settings.php:394 +msgid "" +"The new password has been exposed in a public data dump, please choose " +"another." +msgstr "Nowe hasło zostało ujawnione w publicznym zrzucie danych, wybierz inne." + +#: src/Core/Console/NewPassword.php:82 mod/settings.php:409 +msgid "Password update failed. Please try again." +msgstr "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie." + +#: src/Core/Console/NewPassword.php:85 mod/settings.php:407 +msgid "Password changed." +msgstr "Hasło zostało zmianione." + +#: src/Core/Console/GlobalCommunityBlock.php:69 mod/admin.php:443 +#, php-format +msgid "Could not find any contact entry for this URL (%s)" +msgstr "Nie można znaleźć żadnego kontaktu dla tego adresu URL (%s)" + +#: src/Core/Console/GlobalCommunityBlock.php:72 mod/admin.php:441 +msgid "The contact has been blocked from the node" +msgstr "Kontakt został zablokowany w węźle" + +#: src/Core/ACL.php:295 +msgid "Post to Email" +msgstr "Prześlij e-mailem" + +#: src/Core/ACL.php:301 +msgid "Hide your profile details from unknown viewers?" +msgstr "Ukryć szczegóły twojego profilu przed nieznajomymi?" + +#: src/Core/ACL.php:300 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Wtyczki są wyłączone, ponieważ \"%s\" jest włączone." + +#: src/Core/ACL.php:307 +msgid "Visible to everybody" +msgstr "Widoczny dla wszystkich" + +#: src/Core/ACL.php:308 view/theme/vier/config.php:115 +msgid "show" +msgstr "pokaż" + +#: src/Core/ACL.php:309 view/theme/vier/config.php:115 +msgid "don't show" +msgstr "nie pokazuj" + +#: src/Core/ACL.php:315 mod/editpost.php:134 +msgid "CC: email addresses" +msgstr "CC: adresy e-mail" + +#: src/Core/ACL.php:316 mod/editpost.php:141 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Przykład: bob@example.com, mary@example.com" + +#: src/Core/ACL.php:318 mod/events.php:533 mod/photos.php:1098 +#: mod/photos.php:1441 +msgid "Permissions" +msgstr "Uprawnienia" + +#: src/Core/ACL.php:319 +msgid "Close" +msgstr "Zamknij" + +#: src/Core/NotificationsManager.php:171 +msgid "System" +msgstr "System" + +#: src/Core/NotificationsManager.php:185 mod/network.php:955 +#: mod/profiles.php:687 +msgid "Personal" +msgstr "Osobiste" + +#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s skomentował wpis %s" + +#: src/Core/NotificationsManager.php:267 +#, php-format +msgid "%s created a new post" +msgstr "%s dodał nowy wpis" + +#: src/Core/NotificationsManager.php:281 +#, php-format +msgid "%s liked %s's post" +msgstr "%s polubił wpis %s" + +#: src/Core/NotificationsManager.php:294 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s nie lubi tych %s postów" + +#: src/Core/NotificationsManager.php:307 +#, php-format +msgid "%s is attending %s's event" +msgstr "%suczestniczy %sw wydarzeniu " + +#: src/Core/NotificationsManager.php:320 +#, php-format +msgid "%s is not attending %s's event" +msgstr "%snie uczestniczy %s w wydarzeniu " + +#: src/Core/NotificationsManager.php:333 +#, php-format +msgid "%s may attend %s's event" +msgstr "%smoże uczestniczyć %s w wydarzeniu" + +#: src/Core/NotificationsManager.php:350 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s jest teraz znajomym %s" + +#: src/Core/NotificationsManager.php:825 +msgid "Friend Suggestion" +msgstr "Propozycja znajomych" + +#: src/Core/NotificationsManager.php:851 +msgid "Friend/Connect Request" +msgstr "Prośba o dodanie do przyjaciół/powiązanych" + +#: src/Core/NotificationsManager.php:851 +msgid "New Follower" +msgstr "Nowy obserwujący" + +#: src/Util/Temporal.php:81 src/Util/Temporal.php:83 mod/profiles.php:689 +msgid "Miscellaneous" +msgstr "Różny" + +#: src/Util/Temporal.php:149 mod/profiles.php:712 +msgid "Age: " +msgstr "Wiek: " + +#: src/Util/Temporal.php:151 +msgid "YYYY-MM-DD or MM-DD" +msgstr "RRRR-MM-DD lub MM-DD" + +#: src/Util/Temporal.php:294 +msgid "never" +msgstr "nigdy" + +#: src/Util/Temporal.php:300 +msgid "less than a second ago" +msgstr "mniej niż sekundę temu" + +#: src/Util/Temporal.php:303 +msgid "year" +msgstr "rok" + +#: src/Util/Temporal.php:303 +msgid "years" +msgstr "lata" + +#: src/Util/Temporal.php:304 +msgid "months" +msgstr "miesiące" + +#: src/Util/Temporal.php:305 +msgid "weeks" +msgstr "tygodnie" + +#: src/Util/Temporal.php:306 +msgid "days" +msgstr "dni" + +#: src/Util/Temporal.php:307 +msgid "hour" +msgstr "godzina" + +#: src/Util/Temporal.php:307 +msgid "hours" +msgstr "godziny" + +#: src/Util/Temporal.php:308 +msgid "minute" +msgstr "minuta" + +#: src/Util/Temporal.php:308 +msgid "minutes" +msgstr "minuty" + +#: src/Util/Temporal.php:309 +msgid "second" +msgstr "sekunda" + +#: src/Util/Temporal.php:309 +msgid "seconds" +msgstr "sekundy" + +#: src/Util/Temporal.php:318 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s temu" + +#: src/Protocol/OStatus.php:1251 mod/profile.php:80 +#, php-format +msgid "%s's timeline" +msgstr "%s oś czasu " + +#: src/Protocol/OStatus.php:1252 mod/profile.php:78 +#, php-format +msgid "%s's posts" +msgstr "%s posty " + +#: src/Protocol/OStatus.php:1253 mod/profile.php:79 +#, php-format +msgid "%s's comments" +msgstr "%s komentarze " + +#: src/Protocol/OStatus.php:1799 +#, php-format +msgid "%s is now following %s." +msgstr "%sjest teraz następujące %s. " + +#: src/Protocol/OStatus.php:1800 +msgid "following" +msgstr "następujący" + +#: src/Protocol/OStatus.php:1803 +#, php-format +msgid "%s stopped following %s." +msgstr "%sprzestał śledzić %s. " + +#: src/Protocol/OStatus.php:1804 +msgid "stopped following" +msgstr "przestał śledzić" + +#: src/Protocol/Diaspora.php:2680 +msgid "Sharing notification from Diaspora network" +msgstr "Wspólne powiadomienie z sieci Diaspora" + +#: src/Protocol/Diaspora.php:3756 +msgid "Attachments:" +msgstr "Załączniki:" + +#: mod/directory.php:42 mod/display.php:203 mod/viewcontacts.php:45 +#: mod/photos.php:932 mod/community.php:27 mod/videos.php:199 +#: mod/dfrn_request.php:607 mod/search.php:98 mod/search.php:104 +#: mod/probe.php:13 mod/webfinger.php:16 +msgid "Public access denied." +msgstr "Publiczny dostęp zabroniony" + +#: mod/directory.php:202 view/theme/vier/theme.php:201 +msgid "Global Directory" +msgstr "Globalny Katalog" + +#: mod/directory.php:204 +msgid "Find on this site" +msgstr "Znajdź na tej stronie" + +#: mod/directory.php:206 +msgid "Results for:" +msgstr "Wyniki dla:" + +#: mod/directory.php:208 +msgid "Site Directory" +msgstr "Katalog Witryny" + +#: mod/directory.php:213 +msgid "No entries (some entries may be hidden)." +msgstr "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)." + +#: mod/dirfind.php:49 +#, php-format +msgid "People Search - %s" +msgstr "Szukaj osób - %s" + +#: mod/dirfind.php:60 +#, php-format +msgid "Forum Search - %s" +msgstr "Przeszukiwanie forum - %s" + +#: mod/dirfind.php:253 mod/match.php:125 +msgid "No matches" +msgstr "Brak wyników" #: mod/repair_ostatus.php:18 msgid "Resubscribing to OStatus contacts" @@ -1698,6 +3469,18 @@ msgstr "Gotowe" msgid "Keep this window open until done." msgstr "Pozostaw to okno otwarte, dopóki nie będzie gotowe." +#: mod/ping.php:292 +msgid "{0} wants to be your friend" +msgstr "{0} chce być Twoim znajomym" + +#: mod/ping.php:307 +msgid "{0} sent you a message" +msgstr "{0} wysłałem Ci wiadomość" + +#: mod/ping.php:322 +msgid "{0} requested registration" +msgstr "{0} wymagana rejestracja" + #: mod/suggest.php:36 msgid "Do you really want to delete this suggestion?" msgstr "Czy na pewno chcesz usunąć te sugestie ?" @@ -1712,12 +3495,134 @@ msgstr "Brak dostępnych sugestii. Jeśli jest to nowa witryna, spróbuj ponowni msgid "Ignore/Hide" msgstr "Ignoruj/Ukryj" -#: mod/suggest.php:114 view/theme/vier/theme.php:203 src/Content/Widget.php:64 -msgid "Friend Suggestions" -msgstr "Osoby, które możesz znać" +#: mod/display.php:313 mod/profile.php:173 mod/cal.php:142 +msgid "Access to this profile has been restricted." +msgstr "Dostęp do tego profilu został ograniczony." -#: mod/update_community.php:27 mod/update_display.php:27 -#: mod/update_notes.php:40 mod/update_profile.php:39 mod/update_network.php:33 +#: mod/profile_photo.php:55 +msgid "Image uploaded but image cropping failed." +msgstr "Zdjęcie zostało przesłane, ale przycinanie obrazu nie powiodło się." + +#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104 +#: mod/profile_photo.php:315 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Redukcja rozmiaru obrazka [%s] nie powiodła się." + +#: mod/profile_photo.php:125 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Ponownie załaduj stronę lub wyczyść pamięć podręczną przeglądarki, jeśli nowe zdjęcie nie pojawi się natychmiast." + +#: mod/profile_photo.php:134 +msgid "Unable to process image" +msgstr "Nie udało się przetworzyć obrazu." + +#: mod/profile_photo.php:153 mod/photos.php:763 mod/photos.php:766 +#: mod/photos.php:795 mod/wall_upload.php:186 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Obraz przekracza limit rozmiaru wynoszący %s" + +#: mod/profile_photo.php:162 mod/photos.php:818 mod/wall_upload.php:200 +msgid "Unable to process image." +msgstr "Przetwarzanie obrazu nie powiodło się." + +#: mod/profile_photo.php:247 +msgid "Upload File:" +msgstr "Wyślij plik:" + +#: mod/profile_photo.php:248 +msgid "Select a profile:" +msgstr "Wybierz profil:" + +#: mod/profile_photo.php:249 mod/profiles.php:691 mod/newmember.php:26 +msgid "Upload Profile Photo" +msgstr "Wyślij zdjęcie profilowe" + +#: mod/profile_photo.php:250 mod/fbrowser.php:105 mod/fbrowser.php:136 +msgid "Upload" +msgstr "Załaduj" + +#: mod/profile_photo.php:253 +msgid "or" +msgstr "lub" + +#: mod/profile_photo.php:253 +msgid "skip this step" +msgstr "pomiń ten krok" + +#: mod/profile_photo.php:253 +msgid "select a photo from your photo albums" +msgstr "wybierz zdjęcie z twojego albumu" + +#: mod/profile_photo.php:266 +msgid "Crop Image" +msgstr "Przytnij zdjęcie" + +#: mod/profile_photo.php:267 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Dostosuj kadrowanie obrazu, aby uzyskać optymalny obraz." + +#: mod/profile_photo.php:269 +msgid "Done Editing" +msgstr "Zakończono edycję" + +#: mod/profile_photo.php:305 +msgid "Image uploaded successfully." +msgstr "Zdjęcie wczytano pomyślnie " + +#: mod/profile_photo.php:307 mod/photos.php:847 mod/wall_upload.php:239 +msgid "Image upload failed." +msgstr "Przesyłanie obrazu nie powiodło się" + +#: mod/removeme.php:43 +msgid "User deleted their account" +msgstr "Użytkownik usunął swoje konto" + +#: mod/removeme.php:44 +msgid "" +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "W twoim węźle Friendica użytkownik usunął swoje konto. Upewnij się, że ich dane zostały usunięte z kopii zapasowych." + +#: mod/removeme.php:45 +#, php-format +msgid "The user id is %d" +msgstr "Identyfikatorem użytkownika jest %d" + +#: mod/removeme.php:76 mod/removeme.php:79 +msgid "Remove My Account" +msgstr "Usuń moje konto" + +#: mod/removeme.php:77 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Spowoduje to całkowite usunięcie Twojego konta. Po wykonaniu tej czynności nie można jej cofnąć." + +#: mod/removeme.php:78 +msgid "Please enter your password for verification:" +msgstr "Wprowadź hasło w celu weryfikacji." + +#: mod/manage.php:180 +msgid "Manage Identities and/or Pages" +msgstr "Zarządzaj Tożsamościami i/lub Stronami." + +#: mod/manage.php:181 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Przełącz między różnymi tożsamościami lub stronami społeczność/grupy, które udostępniają dane Twojego konta lub które otrzymałeś uprawnienia \"zarządzaj\"" + +#: mod/manage.php:182 +msgid "Select an identity to manage: " +msgstr "Wybierz tożsamość do zarządzania:" + +#: mod/update_notes.php:40 mod/update_display.php:27 +#: mod/update_community.php:27 mod/update_network.php:33 +#: mod/update_profile.php:39 msgid "[Embedded content - reload page to view]" msgstr "[Dodatkowa zawartość - odśwież stronę by zobaczyć]" @@ -1762,190 +3667,116 @@ msgid "" "select \"Export account\"" msgstr "Aby eksportować konto, wejdź w \"Ustawienia->Eksport danych osobistych\" i wybierz \"Eksportuj konto\"" -#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543 +#: mod/invite.php:33 +msgid "Total invitation limit exceeded." +msgstr "Przekroczono limit zaproszeń ogółem." + +#: mod/invite.php:55 #, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s witamy %2$s" +msgid "%s : Not a valid email address." +msgstr "%s : Nieprawidłowy adres e-mail." -#: mod/match.php:48 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Brak pasujących słów kluczowych. Dodaj słowa kluczowe do domyślnego profilu." +#: mod/invite.php:87 +msgid "Please join us on Friendica" +msgstr "Dołącz do nas na Friendica" -#: mod/match.php:104 -msgid "is interested in:" -msgstr "interesuje się:" +#: mod/invite.php:96 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Przekroczono limit zaproszeń. Skontaktuj się z administratorem witryny." -#: mod/match.php:120 -msgid "Profile Match" -msgstr "Dopasowanie profilu" - -#: mod/match.php:125 mod/dirfind.php:253 -msgid "No matches" -msgstr "Brak wyników" - -#: mod/notifications.php:37 -msgid "Invalid request identifier." -msgstr "Nieprawidłowe żądanie identyfikatora." - -#: mod/notifications.php:46 mod/notifications.php:183 -#: mod/notifications.php:230 -msgid "Discard" -msgstr "Odrzuć" - -#: mod/notifications.php:62 mod/notifications.php:182 -#: mod/notifications.php:266 mod/contacts.php:638 mod/contacts.php:828 -#: mod/contacts.php:1019 -msgid "Ignore" -msgstr "Ignoruj" - -#: mod/notifications.php:98 src/Content/Nav.php:189 -msgid "Notifications" -msgstr "Powiadomienia" - -#: mod/notifications.php:107 -msgid "Network Notifications" -msgstr "Powiadomienia sieciowe" - -#: mod/notifications.php:113 mod/notify.php:81 -msgid "System Notifications" -msgstr "Powiadomienia systemowe" - -#: mod/notifications.php:119 -msgid "Personal Notifications" -msgstr "Prywatne powiadomienia" - -#: mod/notifications.php:125 -msgid "Home Notifications" -msgstr "Powiadomienia domowe" - -#: mod/notifications.php:155 -msgid "Show Ignored Requests" -msgstr "Pokaż ignorowane żądania" - -#: mod/notifications.php:155 -msgid "Hide Ignored Requests" -msgstr "Ukryj zignorowane prośby" - -#: mod/notifications.php:167 mod/notifications.php:237 -msgid "Notification type: " -msgstr "Typ powiadomienia:" - -#: mod/notifications.php:170 +#: mod/invite.php:100 #, php-format -msgid "suggested by %s" -msgstr "zaproponowane przez %s" +msgid "%s : Message delivery failed." +msgstr "%s : Nie udało się dostarczyć wiadomości." -#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646 -msgid "Hide this contact from others" -msgstr "Ukryj ten kontakt przed innymi" +#: mod/invite.php:104 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d wiadomość wysłana." +msgstr[1] "%d wiadomości wysłane." +msgstr[2] "%d wysłano ." +msgstr[3] "%d wiadomość wysłano." -#: mod/notifications.php:176 mod/notifications.php:255 -msgid "Post a new friend activity" -msgstr "Opublikuj aktywność nowego znajomego" +#: mod/invite.php:122 +msgid "You have no more invitations available" +msgstr "Nie masz już dostępnych zaproszeń" -#: mod/notifications.php:176 mod/notifications.php:255 -msgid "if applicable" -msgstr "jeśli dotyczy" - -#: mod/notifications.php:179 mod/notifications.php:264 mod/admin.php:1796 -msgid "Approve" -msgstr "Zatwierdź" - -#: mod/notifications.php:198 -msgid "Claims to be known to you: " -msgstr "Twierdzi, że go znasz:" - -#: mod/notifications.php:199 -msgid "yes" -msgstr "tak" - -#: mod/notifications.php:199 -msgid "no" -msgstr "nie" - -#: mod/notifications.php:200 mod/notifications.php:205 -msgid "Shall your connection be bidirectional or not?" -msgstr "Czy twoje połączenie ma być dwukierunkowe, czy nie?" - -#: mod/notifications.php:201 mod/notifications.php:206 +#: mod/invite.php:130 #, php-format msgid "" -"Accepting %s as a friend allows %s to subscribe to your posts, and you will " -"also receive updates from them in your news feed." -msgstr "Przyjmowanie %s jako znajomego pozwala %s zasubskrybować twoje posty, a także otrzymywać od nich aktualizacje w swoim kanale wiadomości." +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "Odwiedź %s listę publicznych witryn, do których możesz dołączyć. Członkowie Friendica na innych stronach mogą łączyć się ze sobą, jak również z członkami wielu innych sieci społecznościowych." -#: mod/notifications.php:202 +#: mod/invite.php:132 #, php-format msgid "" -"Accepting %s as a subscriber allows them to subscribe to your posts, but you" -" will not receive updates from them in your news feed." -msgstr "Zaakceptowanie %s jako subskrybenta umożliwia im subskrybowanie Twoich postów, ale nie otrzymasz od nich aktualizacji w swoim kanale wiadomości." +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Aby zaakceptować to zaproszenie, odwiedź i zarejestruj się %s lub w dowolnej innej publicznej witrynie internetowej Friendica." -#: mod/notifications.php:207 +#: mod/invite.php:133 #, php-format msgid "" -"Accepting %s as a sharer allows them to subscribe to your posts, but you " -"will not receive updates from them in your news feed." -msgstr "Akceptowanie %s jako udostępniający pozwala im subskrybować twoje posty, ale nie otrzymasz od nich aktualizacji w swoim kanale wiadomości." +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "Strony Friendica łączą się ze sobą, tworząc ogromną sieć społecznościową o zwiększonej prywatności, która jest własnością i jest kontrolowana przez jej członków. Mogą również łączyć się z wieloma tradycyjnymi sieciami społecznościowymi. Zobacz %s listę alternatywnych witryn Friendica, do których możesz dołączyć." -#: mod/notifications.php:218 -msgid "Friend" -msgstr "Znajomy" +#: mod/invite.php:137 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Przepraszamy. System nie jest obecnie skonfigurowany do łączenia się z innymi publicznymi witrynami lub zapraszania członków." -#: mod/notifications.php:219 -msgid "Sharer" -msgstr "Udostępniający/a" +#: mod/invite.php:141 +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks." +msgstr "Strony Friendica łączą się ze sobą, tworząc ogromną sieć społecznościową o zwiększonej prywatności, która jest własnością i jest kontrolowana przez jej członków. Mogą również łączyć się z wieloma tradycyjnymi sieciami społecznościowymi." -#: mod/notifications.php:219 -msgid "Subscriber" -msgstr "Subskrybent" - -#: mod/notifications.php:247 mod/contacts.php:660 mod/events.php:518 -#: mod/directory.php:148 src/Model/Event.php:60 src/Model/Event.php:85 -#: src/Model/Event.php:421 src/Model/Event.php:900 src/Model/Profile.php:417 -msgid "Location:" -msgstr "Lokalizacja" - -#: mod/notifications.php:249 mod/contacts.php:664 mod/directory.php:154 -#: src/Model/Profile.php:423 src/Model/Profile.php:808 -msgid "About:" -msgstr "O:" - -#: mod/notifications.php:251 mod/contacts.php:666 mod/follow.php:174 -#: src/Model/Profile.php:796 -msgid "Tags:" -msgstr "Tagi:" - -#: mod/notifications.php:253 mod/directory.php:151 src/Model/Profile.php:420 -#: src/Model/Profile.php:747 -msgid "Gender:" -msgstr "Płeć:" - -#: mod/notifications.php:258 mod/contacts.php:656 mod/unfollow.php:122 -#: mod/admin.php:490 mod/admin.php:500 mod/follow.php:166 -msgid "Profile URL" -msgstr "Adres URL profilu" - -#: mod/notifications.php:261 mod/contacts.php:71 src/Model/Profile.php:520 -msgid "Network:" -msgstr "Sieć:" - -#: mod/notifications.php:275 -msgid "No introductions." -msgstr "Brak dostępu." - -#: mod/notifications.php:316 -msgid "Show unread" -msgstr "Pokaż nieprzeczytane" - -#: mod/notifications.php:316 -msgid "Show all" -msgstr "Pokaż wszystko" - -#: mod/notifications.php:322 +#: mod/invite.php:140 #, php-format -msgid "No more %s notifications." -msgstr "Nigdy więcej %s powiadomień." +msgid "To accept this invitation, please visit and register at %s." +msgstr "Aby zaakceptować to zaproszenie, odwiedź stronę i zarejestruj się na stronie %s." + +#: mod/invite.php:147 +msgid "Send invitations" +msgstr "Wyślij zaproszenie" + +#: mod/invite.php:148 +msgid "Enter email addresses, one per line:" +msgstr "Wprowadź adresy e-mail, po jednym w wierszu:" + +#: mod/invite.php:149 mod/message.php:259 mod/message.php:426 +#: mod/wallmessage.php:141 +msgid "Your message:" +msgstr "Twoja wiadomość:" + +#: mod/invite.php:150 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Serdecznie zapraszam do przyłączenia się do mnie i innych bliskich znajomych na stronie Friendica - i pomóż nam stworzyć lepszą sieć społecznościową." + +#: mod/invite.php:152 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Musisz podać ten kod zaproszenia: $invite_code" + +#: mod/invite.php:152 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Po rejestracji połącz się ze mną na stronie mojego profilu pod adresem:" + +#: mod/invite.php:154 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendi.ca" +msgstr "Aby uzyskać więcej informacji na temat projektu Friendica i dlaczego uważamy, że jest to ważne, odwiedź http://friendi.ca" #: mod/openid.php:29 msgid "OpenID protocol error. No ID returned." @@ -1956,647 +3787,562 @@ msgid "" "Account not found and OpenID registration is not permitted on this site." msgstr "Konto nie zostało znalezione, a rejestracja OpenID nie jest dozwolona na tej stronie." -#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:134 -msgid "Login failed." -msgstr "Logowanie nieudane." +#: mod/hcard.php:18 +msgid "No profile" +msgstr "Brak profilu" -#: mod/dfrn_confirm.php:74 mod/profiles.php:39 mod/profiles.php:149 -#: mod/profiles.php:196 mod/profiles.php:618 -msgid "Profile not found." -msgstr "Nie znaleziono profilu." +#: mod/apps.php:14 index.php:273 +msgid "You must be logged in to use addons. " +msgstr "Musisz być zalogowany, aby korzystać z dodatków." -#: mod/dfrn_confirm.php:132 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Może się to zdarzyć, gdy kontakt został zgłoszony przez obie osoby i został już zatwierdzony." +#: mod/apps.php:19 +msgid "Applications" +msgstr "Aplikacje" -#: mod/dfrn_confirm.php:242 -msgid "Response from remote site was not understood." -msgstr "Odpowiedź do zdalnej strony nie została zrozumiana" +#: mod/apps.php:22 +msgid "No installed applications." +msgstr "Brak zainstalowanych aplikacji." -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Nieoczekiwana odpowiedź od strony zdalnej:" - -#: mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Potwierdzenie zostało pomyślnie zakończone." - -#: mod/dfrn_confirm.php:275 -msgid "Temporary failure. Please wait and try again." -msgstr "Tymczasowa awaria. Proszę czekać i spróbuj ponownie." - -#: mod/dfrn_confirm.php:278 -msgid "Introduction failed or was revoked." -msgstr "Wprowadzenie nie powiodło się lub zostało odwołane." - -#: mod/dfrn_confirm.php:283 -msgid "Remote site reported: " -msgstr "Zdalna witryna zgłoszona:" - -#: mod/dfrn_confirm.php:396 -msgid "Unable to set contact photo." -msgstr "Nie można ustawić zdjęcia kontaktu." - -#: mod/dfrn_confirm.php:498 -#, php-format -msgid "No user record found for '%s' " -msgstr "Nie znaleziono użytkownika dla '%s'" - -#: mod/dfrn_confirm.php:508 -msgid "Our site encryption key is apparently messed up." -msgstr "Klucz kodujący jest najwyraźniej uszkodzony." - -#: mod/dfrn_confirm.php:519 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Został podany pusty adres URL witryny lub nie można go odszyfrować." - -#: mod/dfrn_confirm.php:535 -msgid "Contact record was not found for you on our site." -msgstr "Nie znaleziono kontaktu na naszej stronie" - -#: mod/dfrn_confirm.php:549 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Publiczny klucz witryny jest niedostępny w rekordzie kontaktu dla adresu URL %s" - -#: mod/dfrn_confirm.php:565 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "Identyfikator dostarczony przez Twój system jest duplikatem w naszym systemie. Powinien działać, jeśli spróbujesz ponownie." - -#: mod/dfrn_confirm.php:576 -msgid "Unable to set your contact credentials on our system." -msgstr "Nie można ustawić danych kontaktowych w naszym systemie." - -#: mod/dfrn_confirm.php:631 -msgid "Unable to update your contact profile details on our system" -msgstr "Nie można zaktualizować danych Twojego profilu kontaktowego w naszym systemie" - -#: mod/dfrn_confirm.php:661 mod/dfrn_request.php:568 -#: src/Model/Contact.php:1537 -msgid "[Name Withheld]" -msgstr "[Nazwa zastrzeżona]" - -#: mod/dfrn_confirm.php:694 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s dołączył/a do %2$s" - -#: mod/manage.php:180 -msgid "Manage Identities and/or Pages" -msgstr "Zarządzaj Tożsamościami i/lub Stronami." - -#: mod/manage.php:181 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Przełącz między różnymi tożsamościami lub stronami społeczność/grupy, które udostępniają dane Twojego konta lub które otrzymałeś uprawnienia \"zarządzaj\"" - -#: mod/manage.php:182 -msgid "Select an identity to manage: " -msgstr "Wybierz tożsamość do zarządzania:" - -#: mod/wall_attach.php:24 mod/wall_attach.php:32 mod/wall_attach.php:83 -#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112 -#: mod/wall_upload.php:155 mod/wall_upload.php:158 -msgid "Invalid request." -msgstr "Nieprawidłowe żądanie." - -#: mod/wall_attach.php:101 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Przepraszam, może twój przesyłany plik jest większy niż pozwala konfiguracja PHP" - -#: mod/wall_attach.php:101 -msgid "Or - did you try to upload an empty file?" -msgstr "Lub - czy próbowałeś załadować pusty plik?" - -#: mod/wall_attach.php:112 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Plik przekracza limit rozmiaru wynoszący %s" - -#: mod/wall_attach.php:136 mod/wall_attach.php:152 -msgid "File upload failed." -msgstr "Przesyłanie pliku nie powiodło się." - -#: mod/dfrn_request.php:94 -msgid "This introduction has already been accepted." -msgstr "To wprowadzenie zostało już zaakceptowane." - -#: mod/dfrn_request.php:112 mod/dfrn_request.php:359 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Lokalizacja profilu jest nieprawidłowa lub nie zawiera informacji o profilu." - -#: mod/dfrn_request.php:116 mod/dfrn_request.php:363 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik." - -#: mod/dfrn_request.php:119 mod/dfrn_request.php:366 -msgid "Warning: profile location has no profile photo." -msgstr "Ostrzeżenie: położenie profilu nie zawiera zdjęcia." - -#: mod/dfrn_request.php:123 mod/dfrn_request.php:370 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d wymagany parametr nie został znaleziony w podanej lokacji" -msgstr[1] "%d wymagane parametry nie zostały znalezione w podanej lokacji" -msgstr[2] "%d wymagany parametr nie został znaleziony w podanej lokacji" -msgstr[3] "%d wymagany parametr nie został znaleziony w podanej lokacji" - -#: mod/dfrn_request.php:162 -msgid "Introduction complete." -msgstr "Wprowadzanie zakończone." - -#: mod/dfrn_request.php:199 -msgid "Unrecoverable protocol error." -msgstr "Nieodwracalny błąd protokołu." - -#: mod/dfrn_request.php:226 -msgid "Profile unavailable." -msgstr "Profil niedostępny." - -#: mod/dfrn_request.php:248 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s otrzymał dziś zbyt wiele żądań połączeń." - -#: mod/dfrn_request.php:249 -msgid "Spam protection measures have been invoked." -msgstr "Wprowadzono zabezpieczenia przed spamem." - -#: mod/dfrn_request.php:250 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Przyjaciele namawiają do spróbowania za 24h." - -#: mod/dfrn_request.php:280 -msgid "Invalid locator" -msgstr "Nieprawidłowy lokalizator" - -#: mod/dfrn_request.php:316 -msgid "You have already introduced yourself here." -msgstr "Już się tu przedstawiłeś." - -#: mod/dfrn_request.php:319 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Wygląda na to, że już jesteście przyjaciółmi z %s" - -#: mod/dfrn_request.php:339 -msgid "Invalid profile URL." -msgstr "Nieprawidłowy URL profilu." - -#: mod/dfrn_request.php:345 src/Model/Contact.php:1235 -msgid "Disallowed profile URL." -msgstr "Nie dozwolony adres URL profilu." - -#: mod/dfrn_request.php:351 mod/admin.php:353 mod/admin.php:371 -#: mod/friendica.php:128 src/Model/Contact.php:1240 -msgid "Blocked domain" -msgstr "Zablokowana domena" - -#: mod/dfrn_request.php:419 mod/contacts.php:230 -msgid "Failed to update contact record." -msgstr "Aktualizacja rekordu kontaktu nie powiodła się." - -#: mod/dfrn_request.php:439 -msgid "Your introduction has been sent." -msgstr "Twoje dane zostały wysłane." - -#: mod/dfrn_request.php:477 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "Zdalnej subskrypcji nie można wykonać dla swojej sieci. Proszę zasubskrybuj bezpośrednio w swoim systemie." - -#: mod/dfrn_request.php:493 -msgid "Please login to confirm introduction." -msgstr "Zaloguj się, aby potwierdzić wprowadzenie." - -#: mod/dfrn_request.php:501 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego użytkownika. " - -#: mod/dfrn_request.php:515 mod/dfrn_request.php:532 -msgid "Confirm" -msgstr "Potwierdź" - -#: mod/dfrn_request.php:527 -msgid "Hide this contact" -msgstr "Ukryj kontakt" - -#: mod/dfrn_request.php:530 -#, php-format -msgid "Welcome home %s." -msgstr "Welcome home %s." - -#: mod/dfrn_request.php:531 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s." - -#: mod/dfrn_request.php:607 mod/probe.php:13 mod/search.php:98 -#: mod/search.php:104 mod/viewcontacts.php:45 mod/webfinger.php:16 -#: mod/community.php:27 mod/photos.php:932 mod/videos.php:199 -#: mod/display.php:203 mod/directory.php:42 -msgid "Public access denied." -msgstr "Publiczny dostęp zabroniony" - -#: mod/dfrn_request.php:642 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Wprowadź swój 'Adres tożsamości' z jednej z następujących obsługiwanych sieci komunikacyjnych:" - -#: mod/dfrn_request.php:645 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow " -"this link to find a public Friendica site and join us today." -msgstr "Jeśli nie jesteś jeszcze członkiem darmowej sieci społecznościowej, kliknij ten link, aby znaleźć publiczną witrynę Friendica i dołącz do nas już dziś." - -#: mod/dfrn_request.php:650 -msgid "Friend/Connection Request" -msgstr "Przyjaciel/Prośba o połączenie" - -#: mod/dfrn_request.php:651 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@gnusocial.de" -msgstr "Przykłady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de" - -#: mod/dfrn_request.php:652 mod/follow.php:149 -msgid "Please answer the following:" -msgstr "Proszę odpowiedzieć na następujące pytania:" - -#: mod/dfrn_request.php:653 mod/follow.php:150 -#, php-format -msgid "Does %s know you?" -msgstr "Czy %s Cię zna?" - -#: mod/dfrn_request.php:654 mod/follow.php:151 -msgid "Add a personal note:" -msgstr "Dodaj osobistą notkę:" - -#: mod/dfrn_request.php:656 src/Content/ContactSelector.php:79 -msgid "Friendica" -msgstr "Friendica" - -#: mod/dfrn_request.php:657 -msgid "GNU Social (Pleroma, Mastodon)" -msgstr "GNU Social (Pleroma, Mastodon)" - -#: mod/dfrn_request.php:658 -msgid "Diaspora (Socialhome, Hubzilla)" -msgstr "Diaspora (Socialhome, Hubzilla)" - -#: mod/dfrn_request.php:659 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr "- proszę nie używać tego formularza. Zamiast tego wpisz %s do paska wyszukiwania Diaspory." - -#: mod/dfrn_request.php:660 mod/unfollow.php:113 mod/follow.php:157 -msgid "Your Identity Address:" -msgstr "Twój adres tożsamości:" - -#: mod/dfrn_request.php:662 mod/unfollow.php:65 mod/follow.php:62 -msgid "Submit Request" -msgstr "Wyślij zgłoszenie" - -#: mod/filer.php:34 -msgid "- select -" -msgstr "- wybierz -" - -#: mod/localtime.php:19 src/Model/Event.php:36 src/Model/Event.php:814 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: mod/localtime.php:33 -msgid "Time Conversion" -msgstr "Zmiana czasu" - -#: mod/localtime.php:35 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica udostępnia tę usługę do udostępniania wydarzeń innym sieciom i znajomym w nieznanych strefach czasowych." - -#: mod/localtime.php:39 -#, php-format -msgid "UTC time: %s" -msgstr "Czas UTC %s" - -#: mod/localtime.php:42 -#, php-format -msgid "Current timezone: %s" -msgstr "Obecna strefa czasowa: %s" - -#: mod/localtime.php:46 -#, php-format -msgid "Converted localtime: %s" -msgstr "Zmień strefę czasową: %s" - -#: mod/localtime.php:52 -msgid "Please select your timezone:" -msgstr "Wybierz swoją strefę czasową:" - -#: mod/notify.php:77 -msgid "No more system notifications." -msgstr "Nie ma więcej powiadomień systemowych." - -#: mod/ping.php:292 -msgid "{0} wants to be your friend" -msgstr "{0} chce być Twoim znajomym" - -#: mod/ping.php:307 -msgid "{0} sent you a message" -msgstr "{0} wysłałem Ci wiadomość" - -#: mod/ping.php:322 -msgid "{0} requested registration" -msgstr "{0} wymagana rejestracja" - -#: mod/poke.php:192 -msgid "Poke/Prod" -msgstr "" - -#: mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "" - -#: mod/poke.php:194 -msgid "Recipient" -msgstr "Odbiorca" - -#: mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Wybierz, co chcesz zrobić" - -#: mod/poke.php:198 -msgid "Make this post private" -msgstr "Ustaw ten post jako prywatny" - -#: mod/probe.php:14 mod/webfinger.php:17 -msgid "Only logged in users are permitted to perform a probing." -msgstr "Tylko zalogowani użytkownicy mogą wykonywać sondowanie." - -#: mod/profperm.php:28 mod/group.php:83 index.php:443 -msgid "Permission denied" -msgstr "Odmowa dostępu" - -#: mod/profperm.php:34 mod/profperm.php:65 -msgid "Invalid profile identifier." -msgstr "Nieprawidłowa nazwa użytkownika." - -#: mod/profperm.php:111 -msgid "Profile Visibility Editor" -msgstr "Ustawienia widoczności profilu" - -#: mod/profperm.php:115 mod/group.php:265 -msgid "Click on a contact to add or remove." -msgstr "Kliknij na kontakt w celu dodania lub usunięcia." - -#: mod/profperm.php:124 -msgid "Visible To" -msgstr "Widoczne dla" - -#: mod/profperm.php:140 -msgid "All Contacts (with secure profile access)" -msgstr "Wszystkie kontakty (z bezpiecznym dostępem do profilu)" - -#: mod/regmod.php:68 -msgid "Account approved." -msgstr "Konto zatwierdzone." - -#: mod/regmod.php:93 -#, php-format -msgid "Registration revoked for %s" -msgstr "Rejestracja odwołana dla %s" - -#: mod/regmod.php:102 -msgid "Please login." -msgstr "Proszę się zalogować." - -#: mod/search.php:37 mod/network.php:194 +#: mod/network.php:194 mod/search.php:37 msgid "Remove term" msgstr "Usuń wpis" -#: mod/search.php:46 mod/network.php:201 src/Content/Feature.php:100 -msgid "Saved Searches" -msgstr "Zapisane wyszukiwania" - -#: mod/search.php:105 -msgid "Only logged in users are permitted to perform a search." -msgstr "Tylko zalogowani użytkownicy mogą wyszukiwać." - -#: mod/search.php:129 -msgid "Too Many Requests" -msgstr "Zbyt dużo próśb" - -#: mod/search.php:130 -msgid "Only one search per minute is permitted for not logged in users." -msgstr "Dla niezalogowanych użytkowników dozwolone jest tylko jedno wyszukiwanie na minutę." - -#: mod/search.php:228 mod/community.php:136 -msgid "No results." -msgstr "Brak wyników." - -#: mod/search.php:234 +#: mod/network.php:547 #, php-format -msgid "Items tagged with: %s" -msgstr "Przedmioty oznaczone tagiem: %s" +msgid "" +"Warning: This group contains %s member from a network that doesn't allow non" +" public messages." +msgid_plural "" +"Warning: This group contains %s members from a network that doesn't allow " +"non public messages." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: mod/search.php:236 mod/contacts.php:819 +#: mod/network.php:550 +msgid "Messages in this group won't be send to these receivers." +msgstr "Wiadomości z tej grupy nie będą wysyłane do tych odbiorców." + +#: mod/network.php:618 +msgid "No such group" +msgstr "Nie ma takiej grupy" + +#: mod/network.php:639 mod/group.php:216 +msgid "Group is empty" +msgstr "Grupa jest pusta" + +#: mod/network.php:643 #, php-format -msgid "Results for: %s" -msgstr "Wyniki dla: %s" +msgid "Group: %s" +msgstr "Grupa: %s" + +#: mod/network.php:669 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione " + +#: mod/network.php:672 +msgid "Invalid contact." +msgstr "Nieprawidłowy kontakt." + +#: mod/network.php:936 +msgid "Commented Order" +msgstr "Porządek według komentarzy" + +#: mod/network.php:939 +msgid "Sort by Comment Date" +msgstr "Sortuj według daty komentarza" + +#: mod/network.php:944 +msgid "Posted Order" +msgstr "Porządek według wpisów" + +#: mod/network.php:947 +msgid "Sort by Post Date" +msgstr "Sortuj według daty postów" + +#: mod/network.php:958 +msgid "Posts that mention or involve you" +msgstr "Posty, które wspominają lub angażują Ciebie" + +#: mod/network.php:966 +msgid "New" +msgstr "Nowy" + +#: mod/network.php:969 +msgid "Activity Stream - by date" +msgstr "Strumień aktywności - według daty" + +#: mod/network.php:977 +msgid "Shared Links" +msgstr "Udostępnione łącza" + +#: mod/network.php:980 +msgid "Interesting Links" +msgstr "Interesujące linki" + +#: mod/network.php:988 +msgid "Starred" +msgstr "Ulubione" + +#: mod/network.php:991 +msgid "Favourite Posts" +msgstr "Ulubione posty" + +#: mod/friendica.php:77 +msgid "This is Friendica, version" +msgstr "To jest Friendica, wersja" + +#: mod/friendica.php:78 +msgid "running at web location" +msgstr "otwierane na serwerze" + +#: mod/friendica.php:82 +msgid "" +"Please visit Friendi.ca to learn more " +"about the Friendica project." +msgstr "Odwiedź stronę Friendi.ca aby dowiedzieć się więcej o projekcie Friendica." + +#: mod/friendica.php:86 +msgid "Bug reports and issues: please visit" +msgstr "Raporty o błędach i problemy: odwiedź stronę" + +#: mod/friendica.php:86 +msgid "the bugtracker at github" +msgstr "bugtracker na github" + +#: mod/friendica.php:89 +msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" +msgstr "Sugestie, pochwały itp. - napisz e-mail \"info\" na \"friendi - kropka - ca" + +#: mod/friendica.php:103 +msgid "Installed addons/apps:" +msgstr "Zainstalowane dodatki/aplikacje:" + +#: mod/friendica.php:117 +msgid "No installed addons/apps" +msgstr "Brak zainstalowanych dodatków/aplikacji" + +#: mod/friendica.php:122 +#, php-format +msgid "Read about the Terms of Service of this node." +msgstr "Przeczytaj o Warunkach świadczenia usług tego węzła." + +#: mod/friendica.php:127 +msgid "On this server the following remote servers are blocked." +msgstr "Na tym serwerze następujące serwery zdalne są blokowane." + +#: mod/friendica.php:128 mod/admin.php:354 mod/admin.php:372 +msgid "Reason for the block" +msgstr "Powód blokowania" #: mod/subthread.php:113 #, php-format msgid "%1$s is following %2$s's %3$s" msgstr "%1$skolejny %2$s %3$s " -#: mod/tagrm.php:47 -msgid "Tag removed" -msgstr "Tag usunięty" +#: mod/profiles.php:39 mod/profiles.php:149 mod/profiles.php:196 +#: mod/profiles.php:618 mod/dfrn_confirm.php:74 +msgid "Profile not found." +msgstr "Nie znaleziono profilu." -#: mod/tagrm.php:85 -msgid "Remove Item Tag" -msgstr "Usuń pozycję Tag" +#: mod/profiles.php:58 +msgid "Profile deleted." +msgstr "Konto usunięte." -#: mod/tagrm.php:87 -msgid "Select a tag to remove: " -msgstr "Wybierz tag do usunięcia" +#: mod/profiles.php:74 mod/profiles.php:110 +msgid "Profile-" +msgstr "Profil-" -#: mod/tagrm.php:98 mod/delegate.php:177 -msgid "Remove" -msgstr "Usuń" +#: mod/profiles.php:93 mod/profiles.php:132 +msgid "New profile created." +msgstr "Utworzono nowy profil." -#: mod/uexport.php:44 -msgid "Export account" -msgstr "Eksportuj konto" +#: mod/profiles.php:116 +msgid "Profile unavailable to clone." +msgstr "Nie można powileić profilu " -#: mod/uexport.php:44 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "Eksportuj informacje o swoim koncie i kontaktach. Użyj tego do utworzenia kopii zapasowej konta i/lub przeniesienia go na inny serwer." +#: mod/profiles.php:206 +msgid "Profile Name is required." +msgstr "Nazwa Profilu jest wymagana" -#: mod/uexport.php:45 -msgid "Export all" -msgstr "Eksportuj wszystko" +#: mod/profiles.php:347 +msgid "Marital Status" +msgstr "Stan cywilny" -#: mod/uexport.php:45 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "Wyeksportuj informacje o koncie, kontaktach i wszystkie swoje pozycje jako json. Może to być bardzo duży plik i może zająć dużo czasu. Użyj tej opcji, aby utworzyć pełną kopię zapasową swojego konta (zdjęcia nie są eksportowane)" +#: mod/profiles.php:351 +msgid "Romantic Partner" +msgstr "Romantyczny partner" -#: mod/uexport.php:52 mod/settings.php:107 -msgid "Export personal data" -msgstr "Eksportuje dane personalne" +#: mod/profiles.php:363 +msgid "Work/Employment" +msgstr "Praca/Zatrudnienie" -#: mod/viewcontacts.php:87 -msgid "No contacts." -msgstr "brak kontaktów" +#: mod/profiles.php:366 +msgid "Religion" +msgstr "Religia" -#: mod/viewsrc.php:12 -msgid "Access denied." -msgstr "Brak dostępu" +#: mod/profiles.php:370 +msgid "Political Views" +msgstr "Poglądy polityczne" -#: mod/wall_upload.php:186 mod/photos.php:763 mod/photos.php:766 -#: mod/photos.php:795 mod/profile_photo.php:153 +#: mod/profiles.php:374 +msgid "Gender" +msgstr "Płeć" + +#: mod/profiles.php:378 +msgid "Sexual Preference" +msgstr "Orientacja seksualna" + +#: mod/profiles.php:382 +msgid "XMPP" +msgstr "XMPP" + +#: mod/profiles.php:386 +msgid "Homepage" +msgstr "Strona Główna" + +#: mod/profiles.php:390 mod/profiles.php:686 +msgid "Interests" +msgstr "Zainteresowania" + +#: mod/profiles.php:394 mod/admin.php:490 +msgid "Address" +msgstr "Adres" + +#: mod/profiles.php:401 mod/profiles.php:682 +msgid "Location" +msgstr "Lokalizacja" + +#: mod/profiles.php:486 +msgid "Profile updated." +msgstr "Profil zaktualizowany." + +#: mod/profiles.php:564 +msgid " and " +msgstr " i " + +#: mod/profiles.php:573 +msgid "public profile" +msgstr "profil publiczny" + +#: mod/profiles.php:576 #, php-format -msgid "Image exceeds size limit of %s" -msgstr "Obraz przekracza limit rozmiaru wynoszący %s" +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$szmienione %2$s na “%3$s”" -#: mod/wall_upload.php:200 mod/photos.php:818 mod/profile_photo.php:162 -msgid "Unable to process image." -msgstr "Przetwarzanie obrazu nie powiodło się." - -#: mod/wall_upload.php:231 mod/item.php:471 src/Object/Image.php:953 -#: src/Object/Image.php:969 src/Object/Image.php:977 src/Object/Image.php:1002 -msgid "Wall Photos" -msgstr "Tablica zdjęć" - -#: mod/wall_upload.php:239 mod/photos.php:847 mod/profile_photo.php:307 -msgid "Image upload failed." -msgstr "Przesyłanie obrazu nie powiodło się" - -#: mod/wallmessage.php:49 mod/wallmessage.php:112 +#: mod/profiles.php:577 #, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Dzienny limit wiadomości %s został przekroczony. Wiadomość została odrzucona." +msgid " - Visit %1$s's %2$s" +msgstr " - Odwiedź %1$s's %2$s" -#: mod/wallmessage.php:57 mod/message.php:73 -msgid "No recipient selected." -msgstr "Nie wybrano odbiorcy." - -#: mod/wallmessage.php:60 -msgid "Unable to check your home location." -msgstr "Nie można sprawdzić twojej lokalizacji." - -#: mod/wallmessage.php:63 mod/message.php:80 -msgid "Message could not be sent." -msgstr "Wiadomość nie może zostać wysłana" - -#: mod/wallmessage.php:66 mod/message.php:83 -msgid "Message collection failure." -msgstr "Błąd zbierania komunikatów." - -#: mod/wallmessage.php:69 mod/message.php:86 -msgid "Message sent." -msgstr "Wysłano." - -#: mod/wallmessage.php:86 mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Brak odbiorcy." - -#: mod/wallmessage.php:132 mod/message.php:250 -msgid "Send Private Message" -msgstr "Wyślij prywatną wiadomość" - -#: mod/wallmessage.php:133 +#: mod/profiles.php:579 #, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$sma zaktualizowany %2$s, zmiana%3$s." + +#: mod/profiles.php:633 +msgid "Hide contacts and friends:" +msgstr "Ukryj kontakty i znajomych:" + +#: mod/profiles.php:636 mod/profiles.php:640 mod/profiles.php:661 +#: mod/api.php:111 mod/settings.php:1105 mod/settings.php:1111 +#: mod/settings.php:1118 mod/settings.php:1122 mod/settings.php:1126 +#: mod/settings.php:1130 mod/settings.php:1134 mod/settings.php:1138 +#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160 +#: mod/settings.php:1161 mod/settings.php:1162 mod/dfrn_request.php:653 +#: mod/follow.php:150 mod/register.php:238 +msgid "No" +msgstr "Nie" + +#: mod/profiles.php:638 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Czy chcesz ukryć listę kontaktów dla przeglądających to konto?" + +#: mod/profiles.php:658 +msgid "Show more profile fields:" +msgstr "Pokaż więcej pól profilu:" + +#: mod/profiles.php:670 +msgid "Profile Actions" +msgstr "Akcje profilowe" + +#: mod/profiles.php:671 +msgid "Edit Profile Details" +msgstr "Edytuj profil." + +#: mod/profiles.php:673 +msgid "Change Profile Photo" +msgstr "Zmień zdjęcie profilowe" + +#: mod/profiles.php:674 +msgid "View this profile" +msgstr "Wyświetl ten profil" + +#: mod/profiles.php:676 +msgid "Create a new profile using these settings" +msgstr "Stwórz nowy profil wykorzystując te ustawienia" + +#: mod/profiles.php:677 +msgid "Clone this profile" +msgstr "Sklonuj ten profil" + +#: mod/profiles.php:678 +msgid "Delete this profile" +msgstr "Usuń ten profil" + +#: mod/profiles.php:680 +msgid "Basic information" +msgstr "Podstawowe informacje" + +#: mod/profiles.php:681 +msgid "Profile picture" +msgstr "Zdjęcie profilowe" + +#: mod/profiles.php:683 +msgid "Preferences" +msgstr "Preferencje" + +#: mod/profiles.php:684 +msgid "Status information" +msgstr "Informacje o stanie" + +#: mod/profiles.php:685 +msgid "Additional information" +msgstr "Dodatkowe informacje" + +#: mod/profiles.php:688 +msgid "Relation" +msgstr "Relacje" + +#: mod/profiles.php:692 +msgid "Your Gender:" +msgstr "Płeć:" + +#: mod/profiles.php:693 +msgid " Marital Status:" +msgstr " Stan cywilny:" + +#: mod/profiles.php:695 +msgid "Example: fishing photography software" +msgstr "Przykład: oprogramowanie do fotografowania ryb" + +#: mod/profiles.php:700 +msgid "Profile Name:" +msgstr "Nazwa profilu:" + +#: mod/profiles.php:700 mod/events.php:508 mod/events.php:520 +msgid "Required" +msgstr "Wymagany" + +#: mod/profiles.php:702 msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Jeśli chcesz %s odpowiedzieć, sprawdź, czy ustawienia prywatności w Twojej witrynie zezwalają na prywatne wiadomości od nieznanych nadawców." +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "To jest Twój publiczny profil.
Może zostać wyświetlony przez każdego kto używa internetu." -#: mod/wallmessage.php:134 mod/message.php:251 mod/message.php:421 -msgid "To:" -msgstr "Do:" +#: mod/profiles.php:703 +msgid "Your Full Name:" +msgstr "Imię i Nazwisko:" -#: mod/wallmessage.php:135 mod/message.php:255 mod/message.php:423 -msgid "Subject:" -msgstr "Temat:" +#: mod/profiles.php:704 +msgid "Title/Description:" +msgstr "Tytuł/Opis :" -#: mod/wallmessage.php:141 mod/message.php:259 mod/message.php:426 -#: mod/invite.php:149 -msgid "Your message:" -msgstr "Twoja wiadomość:" +#: mod/profiles.php:707 +msgid "Street Address:" +msgstr "Ulica:" -#: mod/bookmarklet.php:23 src/Content/Nav.php:114 src/Module/Login.php:312 -msgid "Login" -msgstr "Login" +#: mod/profiles.php:708 +msgid "Locality/City:" +msgstr "Miejscowość/Miasto:" -#: mod/bookmarklet.php:51 -msgid "The post was created" -msgstr "Post został utworzony" +#: mod/profiles.php:709 +msgid "Region/State:" +msgstr "Region/Państwo:" -#: mod/community.php:46 -msgid "Community option not available." -msgstr "Opcja wspólnotowa jest niedostępna." +#: mod/profiles.php:710 +msgid "Postal/Zip Code:" +msgstr "Kod Pocztowy:" -#: mod/community.php:63 -msgid "Not available." -msgstr "Niedostępne." +#: mod/profiles.php:711 +msgid "Country:" +msgstr "Kraj:" -#: mod/community.php:76 -msgid "Local Community" -msgstr "Lokalna społeczność" +#: mod/profiles.php:715 +msgid "Who: (if applicable)" +msgstr "Kto: (jeśli dotyczy)" -#: mod/community.php:79 -msgid "Posts from local users on this server" -msgstr "Wpisy od lokalnych użytkowników na tym serwerze" +#: mod/profiles.php:715 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Przykłady: cathy123, Cathy Williams, cathy@example.com" -#: mod/community.php:87 -msgid "Global Community" -msgstr "Globalna społeczność" +#: mod/profiles.php:716 +msgid "Since [date]:" +msgstr "Od [data]:" -#: mod/community.php:90 -msgid "Posts from users of the whole federated network" -msgstr "Wpisy od użytkowników całej sieci stowarzyszonej" +#: mod/profiles.php:718 +msgid "Tell us about yourself..." +msgstr "Napisz o sobie..." -#: mod/community.php:180 +#: mod/profiles.php:719 +msgid "XMPP (Jabber) address:" +msgstr "Adres XMPP (Jabber):" + +#: mod/profiles.php:719 msgid "" -"This community stream shows all public posts received by this node. They may" -" not reflect the opinions of this node’s users." -msgstr "Ten strumień społeczności pokazuje wszystkie publiczne posty otrzymane przez ten węzeł. Mogą nie odzwierciedlać opinii użytkowników tego węzła." +"The XMPP address will be propagated to your contacts so that they can follow" +" you." +msgstr "Adres XMPP będzie propagowany do Twoich kontaktów, aby mogli Cię śledzić." -#: mod/editpost.php:25 mod/editpost.php:35 -msgid "Item not found" -msgstr "Nie znaleziono elementu" +#: mod/profiles.php:720 +msgid "Homepage URL:" +msgstr "Adres URL strony domowej:" -#: mod/editpost.php:42 -msgid "Edit post" -msgstr "Edytuj post" +#: mod/profiles.php:723 +msgid "Religious Views:" +msgstr "Poglądy religijne:" -#: mod/editpost.php:134 src/Core/ACL.php:315 -msgid "CC: email addresses" -msgstr "CC: adresy e-mail" +#: mod/profiles.php:724 +msgid "Public Keywords:" +msgstr "Publiczne słowa kluczowe:" -#: mod/editpost.php:141 src/Core/ACL.php:316 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Przykład: bob@example.com, mary@example.com" +#: mod/profiles.php:724 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)" + +#: mod/profiles.php:725 +msgid "Private Keywords:" +msgstr "Prywatne słowa kluczowe:" + +#: mod/profiles.php:725 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Używany do wyszukiwania profili, niepokazywany innym)" + +#: mod/profiles.php:728 +msgid "Musical interests" +msgstr "Muzyka" + +#: mod/profiles.php:729 +msgid "Books, literature" +msgstr "Literatura" + +#: mod/profiles.php:730 +msgid "Television" +msgstr "Telewizja" + +#: mod/profiles.php:731 +msgid "Film/dance/culture/entertainment" +msgstr "Film/taniec/kultura/rozrywka" + +#: mod/profiles.php:732 +msgid "Hobbies/Interests" +msgstr "Zainteresowania" + +#: mod/profiles.php:733 +msgid "Love/romance" +msgstr "Miłość/romans" + +#: mod/profiles.php:734 +msgid "Work/employment" +msgstr "Praca/zatrudnienie" + +#: mod/profiles.php:735 +msgid "School/education" +msgstr "Szkoła/edukacja" + +#: mod/profiles.php:736 +msgid "Contact information and Social Networks" +msgstr "Dane kontaktowe i Sieci społecznościowe" + +#: mod/profiles.php:776 +msgid "Edit/Manage Profiles" +msgstr "Edycja/Zarządzanie profilami" + +#: mod/events.php:105 mod/events.php:107 +msgid "Event can not end before it has started." +msgstr "Wydarzenie nie może się zakończyć przed jego rozpoczęciem." + +#: mod/events.php:114 mod/events.php:116 +msgid "Event title and start time are required." +msgstr "Wymagany tytuł wydarzenia i czas rozpoczęcia." + +#: mod/events.php:392 mod/cal.php:275 +msgid "View" +msgstr "Widok" + +#: mod/events.php:393 +msgid "Create New Event" +msgstr "Stwórz nowe wydarzenie" + +#: mod/events.php:394 mod/cal.php:276 +msgid "Previous" +msgstr "Poprzedni" + +#: mod/events.php:395 mod/cal.php:277 mod/install.php:209 +msgid "Next" +msgstr "Następny" + +#: mod/events.php:404 mod/cal.php:284 +msgid "list" +msgstr "lista" + +#: mod/events.php:506 +msgid "Event details" +msgstr "Szczegóły wydarzenia" + +#: mod/events.php:507 +msgid "Starting date and Title are required." +msgstr "Data rozpoczęcia i tytuł są wymagane." + +#: mod/events.php:508 mod/events.php:509 +msgid "Event Starts:" +msgstr "Rozpoczęcie wydarzenia:" + +#: mod/events.php:510 mod/events.php:526 +msgid "Finish date/time is not known or not relevant" +msgstr "Data/czas zakończenia nie jest znana lub jest nieistotna" + +#: mod/events.php:512 mod/events.php:513 +msgid "Event Finishes:" +msgstr "Zakończenie wydarzenia:" + +#: mod/events.php:514 mod/events.php:527 +msgid "Adjust for viewer timezone" +msgstr "Dopasuj dla strefy czasowej widza" + +#: mod/events.php:516 +msgid "Description:" +msgstr "Opis:" + +#: mod/events.php:520 mod/events.php:522 +msgid "Title:" +msgstr "Tytuł:" + +#: mod/events.php:523 mod/events.php:524 +msgid "Share this event" +msgstr "Udostępnij te wydarzenie" + +#: mod/events.php:552 +msgid "Failed to remove event" +msgstr "Nie udało się usunąć wydarzenia" + +#: mod/events.php:554 +msgid "Event removed" +msgstr "Wydarzenie zostało usunięte" + +#: mod/notify.php:77 +msgid "No more system notifications." +msgstr "Nie ma więcej powiadomień systemowych." + +#: mod/notify.php:81 mod/notifications.php:113 +msgid "System Notifications" +msgstr "Powiadomienia systemowe" + +#: mod/fsuggest.php:30 mod/fsuggest.php:96 mod/crepair.php:110 +#: mod/dfrn_confirm.php:131 +msgid "Contact not found." +msgstr "Kontakt nie znaleziony" #: mod/fsuggest.php:72 msgid "Friend suggestion sent." @@ -2611,6 +4357,959 @@ msgstr "Proponuję znajomych" msgid "Suggest a friend for %s" msgstr "Zaproponuj znajomych dla %s" +#: mod/attach.php:15 +msgid "Item not available." +msgstr "Element niedostępny." + +#: mod/attach.php:25 +msgid "Item was not found." +msgstr "Element nie znaleziony." + +#: mod/allfriends.php:51 +msgid "No friends to display." +msgstr "Brak znajomych do wyświetlenia" + +#: mod/viewcontacts.php:87 +msgid "No contacts." +msgstr "brak kontaktów" + +#: mod/viewcontacts.php:112 mod/nogroup.php:42 mod/contacts.php:619 +#: mod/contacts.php:959 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Obejrzyj %s's profil [%s]" + +#: mod/ostatus_subscribe.php:21 +msgid "Subscribing to OStatus contacts" +msgstr "Subskrybowanie kontaktów OStatus" + +#: mod/ostatus_subscribe.php:33 +msgid "No contact provided." +msgstr "Brak kontaktu." + +#: mod/ostatus_subscribe.php:40 +msgid "Couldn't fetch information for contact." +msgstr "Nie można pobrać informacji o kontakcie." + +#: mod/ostatus_subscribe.php:50 +msgid "Couldn't fetch friends for contact." +msgstr "Nie można pobrać znajomych do kontaktu." + +#: mod/ostatus_subscribe.php:78 +msgid "success" +msgstr "powodzenie" + +#: mod/ostatus_subscribe.php:80 +msgid "failed" +msgstr "nie powiodło się" + +#: mod/api.php:85 mod/api.php:107 +msgid "Authorize application connection" +msgstr "Autoryzacja połączenia aplikacji" + +#: mod/api.php:86 +msgid "Return to your app and insert this Securty Code:" +msgstr "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:" + +#: mod/api.php:95 +msgid "Please login to continue." +msgstr "Zaloguj się aby kontynuować." + +#: mod/api.php:109 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Czy chcesz zezwolić tej aplikacji na dostęp do swoich postów i kontaktów i/lub tworzenie nowych postów?" + +#: mod/settings.php:50 mod/photos.php:126 +msgid "everybody" +msgstr "wszyscy" + +#: mod/settings.php:55 +msgid "Account" +msgstr "Konto" + +#: mod/settings.php:64 mod/admin.php:187 +msgid "Additional features" +msgstr "Dodatkowe funkcje" + +#: mod/settings.php:72 +msgid "Display" +msgstr "Wyświetlanie" + +#: mod/settings.php:79 mod/settings.php:842 +msgid "Social Networks" +msgstr "Portale społecznościowe" + +#: mod/settings.php:86 mod/admin.php:185 mod/admin.php:1918 mod/admin.php:1978 +msgid "Addons" +msgstr "Dodatki" + +#: mod/settings.php:100 +msgid "Connected apps" +msgstr "Powiązane aplikacje" + +#: mod/settings.php:107 mod/uexport.php:52 +msgid "Export personal data" +msgstr "Eksportuje dane personalne" + +#: mod/settings.php:114 +msgid "Remove account" +msgstr "Usuń konto" + +#: mod/settings.php:168 +msgid "Missing some important data!" +msgstr "Brakuje ważnych danych!" + +#: mod/settings.php:170 mod/settings.php:701 mod/contacts.php:826 +msgid "Update" +msgstr "Zaktualizuj" + +#: mod/settings.php:279 +msgid "Failed to connect with email account using the settings provided." +msgstr "Połączenie z kontem email używając wybranych ustawień nie powiodło się." + +#: mod/settings.php:284 +msgid "Email settings updated." +msgstr "Zaktualizowano ustawienia email." + +#: mod/settings.php:300 +msgid "Features updated" +msgstr "Funkcje zaktualizowane" + +#: mod/settings.php:372 +msgid "Relocate message has been send to your contacts" +msgstr "Przeniesienie wiadomości zostało wysłane do Twoich kontaktów" + +#: mod/settings.php:389 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Puste hasła są niedozwolone. Hasło niezmienione." + +#: mod/settings.php:400 +msgid "Wrong password." +msgstr "Złe hasło." + +#: mod/settings.php:496 +msgid " Please use a shorter name." +msgstr "Proszę użyć krótszej nazwy." + +#: mod/settings.php:499 +msgid " Name too short." +msgstr "Za krótka nazwa." + +#: mod/settings.php:507 +msgid "Wrong Password" +msgstr "Złe hasło" + +#: mod/settings.php:512 +msgid "Invalid email." +msgstr "Niepoprawny e-mail." + +#: mod/settings.php:519 +msgid "Cannot change to that email." +msgstr "Nie można zmienić tego e-maila." + +#: mod/settings.php:572 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Prywatne forum nie ma uprawnień do prywatności. Użyj domyślnej grupy prywatnej." + +#: mod/settings.php:575 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Prywatne forum nie ma uprawnień do prywatności ani domyślnej grupy prywatności." + +#: mod/settings.php:615 +msgid "Settings updated." +msgstr "Zaktualizowano ustawienia." + +#: mod/settings.php:674 mod/settings.php:700 mod/settings.php:736 +msgid "Add application" +msgstr "Dodaj aplikację" + +#: mod/settings.php:675 mod/settings.php:784 mod/settings.php:872 +#: mod/settings.php:961 mod/settings.php:1194 mod/admin.php:307 +#: mod/admin.php:1346 mod/admin.php:1979 mod/admin.php:2232 mod/admin.php:2306 +#: mod/admin.php:2453 mod/delegate.php:168 +msgid "Save Settings" +msgstr "Zapisz ustawienia" + +#: mod/settings.php:677 mod/settings.php:703 mod/admin.php:490 +#: mod/admin.php:1796 mod/admin.php:1807 mod/admin.php:1820 mod/admin.php:1836 +#: mod/crepair.php:158 +msgid "Name" +msgstr "Nazwa" + +#: mod/settings.php:678 mod/settings.php:704 +msgid "Consumer Key" +msgstr "Klucz klienta" + +#: mod/settings.php:679 mod/settings.php:705 +msgid "Consumer Secret" +msgstr "Tajny klucz klienta" + +#: mod/settings.php:680 mod/settings.php:706 +msgid "Redirect" +msgstr "Przekierowanie" + +#: mod/settings.php:681 mod/settings.php:707 +msgid "Icon url" +msgstr "Adres Url ikony" + +#: mod/settings.php:692 +msgid "You can't edit this application." +msgstr "Nie możesz edytować tej aplikacji." + +#: mod/settings.php:735 +msgid "Connected Apps" +msgstr "Powiązane aplikacje" + +#: mod/settings.php:739 +msgid "Client key starts with" +msgstr "Klucz klienta zaczyna się od" + +#: mod/settings.php:740 +msgid "No name" +msgstr "Bez nazwy" + +#: mod/settings.php:741 +msgid "Remove authorization" +msgstr "Odwołaj upoważnienie" + +#: mod/settings.php:752 +msgid "No Addon settings configured" +msgstr "Brak skonfigurowanych ustawień Dodatków" + +#: mod/settings.php:761 +msgid "Addon Settings" +msgstr "Ustawienia Dodatków" + +#: mod/settings.php:775 mod/admin.php:2442 mod/admin.php:2443 +msgid "Off" +msgstr "Wyłącz" + +#: mod/settings.php:775 mod/admin.php:2442 mod/admin.php:2443 +msgid "On" +msgstr "Włącz" + +#: mod/settings.php:782 +msgid "Additional Features" +msgstr "Dodatkowe funkcje" + +#: mod/settings.php:805 mod/settings.php:806 +msgid "enabled" +msgstr "włączony" + +#: mod/settings.php:805 mod/settings.php:806 +msgid "disabled" +msgstr "wyłączony" + +#: mod/settings.php:805 mod/settings.php:806 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Wbudowane wsparcie dla %s łączność jest %s" + +#: mod/settings.php:806 +msgid "GNU Social (OStatus)" +msgstr "GNU Społeczny (OStatus)" + +#: mod/settings.php:837 +msgid "Email access is disabled on this site." +msgstr "Dostęp do e-maila nie jest w pełni sprawny na tej stronie" + +#: mod/settings.php:847 +msgid "General Social Media Settings" +msgstr "Ogólne ustawienia mediów społecznościowych" + +#: mod/settings.php:848 +msgid "Disable Content Warning" +msgstr "Wyłącz ostrzeżenie o treści" + +#: mod/settings.php:848 +msgid "" +"Users on networks like Mastodon or Pleroma are able to set a content warning" +" field which collapse their post by default. This disables the automatic " +"collapsing and sets the content warning as the post title. Doesn't affect " +"any other content filtering you eventually set up." +msgstr "Użytkownicy w sieciach takich jak Mastodon lub Pleroma mogą ustawić pole ostrzeżenia o treści, które domyślnie zwijać będzie swój wpis. Powoduje wyłączenie automatycznego zwijania i ustawia ostrzeżenie o treści jako tytuł postu. Nie ma wpływu na żadne inne filtrowanie treści, które ostatecznie utworzyłeś." + +#: mod/settings.php:849 +msgid "Disable intelligent shortening" +msgstr "Wyłącz inteligentne skracanie" + +#: mod/settings.php:849 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "Zwykle system próbuje znaleźć najlepszy link do dodania do skróconych postów. Jeśli ta opcja jest włączona, każdy skrócony wpis zawsze wskazuje oryginalny post znajomej osoby." + +#: mod/settings.php:850 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "Automatycznie podążaj za wszystkimi obserwatorami/rzecznikami GNU Społeczności (OStatus)" + +#: mod/settings.php:850 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "Jeśli otrzymasz wiadomość od nieznanego użytkownika OStatus, ta opcja decyduje, co zrobić. Jeśli zostanie zaznaczone, dla każdego nieznanego użytkownika zostanie utworzony nowy kontakt." + +#: mod/settings.php:851 +msgid "Default group for OStatus contacts" +msgstr "Domyślna grupa dla kontaktów OStatus" + +#: mod/settings.php:852 +msgid "Your legacy GNU Social account" +msgstr "Twoje starsze konto społecznościowe GNU" + +#: mod/settings.php:852 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "Jeśli podasz swoją starą nazwę konta GNU Social/Statusnet tutaj (w formacie user@domain.tld), twoje kontakty zostaną dodane automatycznie. Pole zostanie opróżnione po zakończeniu." + +#: mod/settings.php:855 +msgid "Repair OStatus subscriptions" +msgstr "Napraw subskrypcje OStatus" + +#: mod/settings.php:859 +msgid "Email/Mailbox Setup" +msgstr "Ustawienia emaila/skrzynki mailowej" + +#: mod/settings.php:860 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Jeśli chcesz komunikować się z kontaktami e-mail za pomocą tej usługi (opcjonalnie), określ sposób łączenia się ze skrzynką pocztową." + +#: mod/settings.php:861 +msgid "Last successful email check:" +msgstr "Ostatni sprawdzony e-mail:" + +#: mod/settings.php:863 +msgid "IMAP server name:" +msgstr "Nazwa serwera IMAP:" + +#: mod/settings.php:864 +msgid "IMAP port:" +msgstr "Port IMAP:" + +#: mod/settings.php:865 +msgid "Security:" +msgstr "Ochrona:" + +#: mod/settings.php:865 mod/settings.php:870 +msgid "None" +msgstr "Brak" + +#: mod/settings.php:866 +msgid "Email login name:" +msgstr "Nazwa logowania e-mail:" + +#: mod/settings.php:867 +msgid "Email password:" +msgstr "E-mail hasło:" + +#: mod/settings.php:868 +msgid "Reply-to address:" +msgstr "Adres zwrotny:" + +#: mod/settings.php:869 +msgid "Send public posts to all email contacts:" +msgstr "Wyślij publiczny post do wszystkich kontaktów e-mail" + +#: mod/settings.php:870 +msgid "Action after import:" +msgstr "Akcja po zaimportowaniu:" + +#: mod/settings.php:870 +msgid "Move to folder" +msgstr "Przenieś do folderu" + +#: mod/settings.php:871 +msgid "Move to folder:" +msgstr "Przenieś do folderu:" + +#: mod/settings.php:905 mod/admin.php:1236 +msgid "No special theme for mobile devices" +msgstr "Brak specialnego motywu dla urządzeń mobilnych" + +#: mod/settings.php:914 +#, php-format +msgid "%s - (Unsupported)" +msgstr "%s - (Nieobsługiwane)" + +#: mod/settings.php:916 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s- (Eksperymentalne)" + +#: mod/settings.php:959 +msgid "Display Settings" +msgstr "Wyświetl ustawienia" + +#: mod/settings.php:965 mod/settings.php:989 +msgid "Display Theme:" +msgstr "Wyświetl motyw:" + +#: mod/settings.php:966 +msgid "Mobile Theme:" +msgstr "Motyw dla urządzeń mobilnych:" + +#: mod/settings.php:967 +msgid "Suppress warning of insecure networks" +msgstr "Ukryj ostrzeżenie przed niebezpiecznymi sieciami" + +#: mod/settings.php:967 +msgid "" +"Should the system suppress the warning that the current group contains " +"members of networks that can't receive non public postings." +msgstr "System powinien pominąć ostrzeżenie, że bieżąca grupa zawiera członków sieci, którzy nie mogą otrzymywać komentarzy niepublicznych" + +#: mod/settings.php:968 +msgid "Update browser every xx seconds" +msgstr "Odświeżaj stronę co xx sekund" + +#: mod/settings.php:968 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "Minimum 10 sekund. Wprowadź -1, aby go wyłączyć." + +#: mod/settings.php:969 +msgid "Number of items to display per page:" +msgstr "Liczba elementów do wyświetlenia na stronie:" + +#: mod/settings.php:969 mod/settings.php:970 +msgid "Maximum of 100 items" +msgstr "Maksymalnie 100 elementów" + +#: mod/settings.php:970 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Liczba elementów do wyświetlenia na stronie podczas przeglądania z urządzenia mobilnego:" + +#: mod/settings.php:971 +msgid "Don't show emoticons" +msgstr "Nie pokazuj emotikonek" + +#: mod/settings.php:972 +msgid "Calendar" +msgstr "Kalendarz" + +#: mod/settings.php:973 +msgid "Beginning of week:" +msgstr "Początek tygodnia:" + +#: mod/settings.php:974 +msgid "Don't show notices" +msgstr "Nie pokazuj powiadomień" + +#: mod/settings.php:975 +msgid "Infinite scroll" +msgstr "Nieskończone przewijanie" + +#: mod/settings.php:976 +msgid "Automatic updates only at the top of the network page" +msgstr "Automatyczne aktualizacje tylko u góry strony sieci" + +#: mod/settings.php:976 +msgid "" +"When disabled, the network page is updated all the time, which could be " +"confusing while reading." +msgstr "Po wyłączeniu strona sieciowa jest cały czas aktualizowana, co może być mylące podczas czytania." + +#: mod/settings.php:977 +msgid "Bandwith Saver Mode" +msgstr "Tryb oszczędzania przepustowości" + +#: mod/settings.php:977 +msgid "" +"When enabled, embedded content is not displayed on automatic updates, they " +"only show on page reload." +msgstr "Po włączeniu wbudowana zawartość nie jest wyświetlana w automatycznych aktualizacjach, wyświetlają się tylko przy przeładowaniu strony." + +#: mod/settings.php:978 +msgid "Smart Threading" +msgstr "Inteligentne gwintowanie" + +#: mod/settings.php:978 +msgid "" +"When enabled, suppress extraneous thread indentation while keeping it where " +"it matters. Only works if threading is available and enabled." +msgstr "Włączenie tej opcji powoduje pomijanie wcięcia nitek zewnętrznych, zachowując je w dowolnym miejscu. Działa tylko wtedy, gdy wątki są dostępne i włączone." + +#: mod/settings.php:980 +msgid "General Theme Settings" +msgstr "Ogólne ustawienia motywu" + +#: mod/settings.php:981 +msgid "Custom Theme Settings" +msgstr "Niestandardowe ustawienia motywów" + +#: mod/settings.php:982 +msgid "Content Settings" +msgstr "Ustawienia zawartości" + +#: mod/settings.php:983 view/theme/quattro/config.php:75 +#: view/theme/frio/config.php:115 view/theme/vier/config.php:121 +#: view/theme/duepuntozero/config.php:73 +msgid "Theme settings" +msgstr "Ustawienia motywu" + +#: mod/settings.php:1002 +msgid "Unable to find your profile. Please contact your admin." +msgstr "Nie można znaleźć Twojego profilu. Skontaktuj się z administratorem." + +#: mod/settings.php:1044 +msgid "Account Types" +msgstr "Rodzaje kont" + +#: mod/settings.php:1045 +msgid "Personal Page Subtypes" +msgstr "Podtypy osobistych stron" + +#: mod/settings.php:1046 +msgid "Community Forum Subtypes" +msgstr "Podtypy społeczności forum" + +#: mod/settings.php:1053 mod/admin.php:1746 +msgid "Personal Page" +msgstr "Strona osobista" + +#: mod/settings.php:1054 +msgid "Account for a personal profile." +msgstr "Konto dla profilu osobistego." + +#: mod/settings.php:1057 mod/admin.php:1747 +msgid "Organisation Page" +msgstr "Strona Organizacji" + +#: mod/settings.php:1058 +msgid "" +"Account for an organisation that automatically approves contact requests as " +"\"Followers\"." +msgstr "Konto dla organizacji, która automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"." + +#: mod/settings.php:1061 mod/admin.php:1748 +msgid "News Page" +msgstr "Strona Wiadomości" + +#: mod/settings.php:1062 +msgid "" +"Account for a news reflector that automatically approves contact requests as" +" \"Followers\"." +msgstr "Konto dla reflektora wiadomości, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"." + +#: mod/settings.php:1065 mod/admin.php:1749 +msgid "Community Forum" +msgstr "Forum społecznościowe" + +#: mod/settings.php:1066 +msgid "Account for community discussions." +msgstr "Konto do dyskusji w społeczności." + +#: mod/settings.php:1069 mod/admin.php:1739 +msgid "Normal Account Page" +msgstr "Normalna strona konta" + +#: mod/settings.php:1070 +msgid "" +"Account for a regular personal profile that requires manual approval of " +"\"Friends\" and \"Followers\"." +msgstr "Konto dla zwykłego profilu osobistego, który wymaga ręcznej zgody \"Przyjaciół\" i \"Obserwatorów\"." + +#: mod/settings.php:1073 mod/admin.php:1740 +msgid "Soapbox Page" +msgstr "Strona Soapbox" + +#: mod/settings.php:1074 +msgid "" +"Account for a public profile that automatically approves contact requests as" +" \"Followers\"." +msgstr "Konto dla profilu publicznego, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"." + +#: mod/settings.php:1077 mod/admin.php:1741 +msgid "Public Forum" +msgstr "Forum publiczne" + +#: mod/settings.php:1078 +msgid "Automatically approves all contact requests." +msgstr "Automatycznie zatwierdza wszystkie prośby o kontakt." + +#: mod/settings.php:1081 mod/admin.php:1742 +msgid "Automatic Friend Page" +msgstr "Automatyczna strona znajomego" + +#: mod/settings.php:1082 +msgid "" +"Account for a popular profile that automatically approves contact requests " +"as \"Friends\"." +msgstr "Konto popularnego profilu, które automatycznie zatwierdza prośby o kontakt jako \"Przyjaciele\"." + +#: mod/settings.php:1085 +msgid "Private Forum [Experimental]" +msgstr "Prywatne Forum [Eksperymentalne]" + +#: mod/settings.php:1086 +msgid "Requires manual approval of contact requests." +msgstr "Wymaga ręcznego zatwierdzania żądań kontaktów." + +#: mod/settings.php:1097 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1097 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Opcjonalnie) Pozwól zalogować się na to konto przy pomocy OpenID." + +#: mod/settings.php:1105 +msgid "Publish your default profile in your local site directory?" +msgstr "Opublikować Twój domyślny profil w Twoim lokalnym katalogu stron?" + +#: mod/settings.php:1105 +#, php-format +msgid "" +"Your profile will be published in the global friendica directories (e.g. %s). Your profile will be visible in public." +msgstr "Twój profil zostanie opublikowany w globalnych katalogach friendica (np.%s). Twój profil będzie widoczny publicznie." + +#: mod/settings.php:1111 +msgid "Publish your default profile in the global social directory?" +msgstr "Opublikować Twój domyślny profil w globalnym, społecznościowym katalogu?" + +#: mod/settings.php:1111 +#, php-format +msgid "" +"Your profile will be published in this node's local " +"directory. Your profile details may be publicly visible depending on the" +" system settings." +msgstr "Twój profil zostanie opublikowany w lokalnym katalogu tego węzła. Dane Twojego profilu mogą być publicznie widoczne w zależności od ustawień systemu." + +#: mod/settings.php:1118 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Ukryć listę znajomych przed odwiedzającymi Twój profil?" + +#: mod/settings.php:1118 +msgid "" +"Your contact list won't be shown in your default profile page. You can " +"decide to show your contact list separately for each additional profile you " +"create" +msgstr "Twoja lista kontaktów nie będzie wyświetlana na domyślnej stronie profilu. Możesz zdecydować o wyświetleniu listy kontaktów osobno dla każdego tworzonego dodatkowego profilu." + +#: mod/settings.php:1122 +msgid "Hide your profile details from anonymous viewers?" +msgstr "Ukryć dane Twojego profilu przed anonimowymi widzami?" + +#: mod/settings.php:1122 +msgid "" +"Anonymous visitors will only see your profile picture, your display name and" +" the nickname you are using on your profile page. Disables posting public " +"messages to Diaspora and other networks." +msgstr "Anonimowi użytkownicy zobaczą tylko Twoje zdjęcie profilowe, Twoją wyświetlaną nazwę i pseudonim, którego używasz na stronie profilu. Wyłącza wysyłanie publicznych wiadomości do Diaspory i innych sieci." + +#: mod/settings.php:1126 +msgid "Allow friends to post to your profile page?" +msgstr "Zezwalać znajomym na publikowanie postów na stronie Twojego profilu?" + +#: mod/settings.php:1126 +msgid "" +"Your contacts may write posts on your profile wall. These posts will be " +"distributed to your contacts" +msgstr "Twoi znajomi mogą pisać posty na stronie Twojego profilu. Posty zostaną przesłane do Twoich kontaktów." + +#: mod/settings.php:1130 +msgid "Allow friends to tag your posts?" +msgstr "Zezwolić na oznaczanie Twoich postów przez znajomych?" + +#: mod/settings.php:1130 +msgid "Your contacts can add additional tags to your posts." +msgstr "Twoje kontakty mogą dodawać do tagów dodatkowe posty." + +#: mod/settings.php:1134 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Zezwolić na zaproponowanie Cię jako potencjalnego przyjaciela dla nowych członków?" + +#: mod/settings.php:1134 +msgid "" +"If you like, Friendica may suggest new members to add you as a contact." +msgstr "Jeśli chcesz, Friendica może zaproponować nowym członkom dodanie Cię jako kontakt." + +#: mod/settings.php:1138 +msgid "Permit unknown people to send you private mail?" +msgstr "Zezwolić nieznanym osobom na wysyłanie prywatnych wiadomości?" + +#: mod/settings.php:1138 +msgid "" +"Friendica network users may send you private messages even if they are not " +"in your contact list." +msgstr "Użytkownicy sieci w serwisie Friendica mogą wysyłać prywatne wiadomości, nawet jeśli nie znajdują się one na liście kontaktów." + +#: mod/settings.php:1142 +msgid "Profile is not published." +msgstr "Profil nie jest opublikowany" + +#: mod/settings.php:1148 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "Twój adres tożsamości to '%s' lub '%s'." + +#: mod/settings.php:1155 +msgid "Automatically expire posts after this many days:" +msgstr "Posty wygasną automatycznie po następującej liczbie dni:" + +#: mod/settings.php:1155 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte." + +#: mod/settings.php:1156 +msgid "Advanced expiration settings" +msgstr "Zaawansowane ustawienia wygasania" + +#: mod/settings.php:1157 +msgid "Advanced Expiration" +msgstr "Zaawansowane wygasanie" + +#: mod/settings.php:1158 +msgid "Expire posts:" +msgstr "Wygasające posty:" + +#: mod/settings.php:1159 +msgid "Expire personal notes:" +msgstr "Wygasanie osobistych notatek:" + +#: mod/settings.php:1160 +msgid "Expire starred posts:" +msgstr "Wygasaj posty oznaczone gwiazdką:" + +#: mod/settings.php:1161 +msgid "Expire photos:" +msgstr "Wygasanie zdjęć:" + +#: mod/settings.php:1162 +msgid "Only expire posts by others:" +msgstr "Wygaszaj tylko te posty, które zostały napisane przez inne osoby:" + +#: mod/settings.php:1192 +msgid "Account Settings" +msgstr "Ustawienia konta" + +#: mod/settings.php:1200 +msgid "Password Settings" +msgstr "Ustawienia hasła" + +#: mod/settings.php:1201 mod/register.php:273 +msgid "New Password:" +msgstr "Nowe hasło:" + +#: mod/settings.php:1202 mod/register.php:274 +msgid "Confirm:" +msgstr "Potwierdź:" + +#: mod/settings.php:1202 +msgid "Leave password fields blank unless changing" +msgstr "Pozostaw pole hasła puste, chyba że chcesz je zmienić." + +#: mod/settings.php:1203 +msgid "Current Password:" +msgstr "Aktualne hasło:" + +#: mod/settings.php:1203 mod/settings.php:1204 +msgid "Your current password to confirm the changes" +msgstr "Wpisz aktualne hasło, aby potwierdzić zmiany" + +#: mod/settings.php:1204 +msgid "Password:" +msgstr "Hasło:" + +#: mod/settings.php:1208 +msgid "Basic Settings" +msgstr "Ustawienia podstawowe" + +#: mod/settings.php:1210 +msgid "Email Address:" +msgstr "Adres email:" + +#: mod/settings.php:1211 +msgid "Your Timezone:" +msgstr "Twoja strefa czasowa:" + +#: mod/settings.php:1212 +msgid "Your Language:" +msgstr "Twój język:" + +#: mod/settings.php:1212 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "Wybierz język, którego używasz, aby pokazać interfejs użytkownika friendica i do wysłania Ci e-maili" + +#: mod/settings.php:1213 +msgid "Default Post Location:" +msgstr "Domyślna lokalizacja wiadomości:" + +#: mod/settings.php:1214 +msgid "Use Browser Location:" +msgstr "Użyj lokalizacji przeglądarki:" + +#: mod/settings.php:1217 +msgid "Security and Privacy Settings" +msgstr "Ustawienia bezpieczeństwa i prywatności" + +#: mod/settings.php:1219 +msgid "Maximum Friend Requests/Day:" +msgstr "Maksymalna dzienna liczba zaproszeń do grona przyjaciół:" + +#: mod/settings.php:1219 mod/settings.php:1248 +msgid "(to prevent spam abuse)" +msgstr "(aby zapobiec spamowaniu)" + +#: mod/settings.php:1220 +msgid "Default Post Permissions" +msgstr "Domyślne prawa dostępu wiadomości" + +#: mod/settings.php:1221 +msgid "(click to open/close)" +msgstr "(kliknij by otworzyć/zamknąć)" + +#: mod/settings.php:1229 mod/photos.php:1106 mod/photos.php:1449 +msgid "Show to Groups" +msgstr "Pokaż Grupy" + +#: mod/settings.php:1230 mod/photos.php:1107 mod/photos.php:1450 +msgid "Show to Contacts" +msgstr "Pokaż kontakty" + +#: mod/settings.php:1231 +msgid "Default Private Post" +msgstr "Domyślny Prywatny Wpis" + +#: mod/settings.php:1232 +msgid "Default Public Post" +msgstr "Domyślny Publiczny Post" + +#: mod/settings.php:1236 +msgid "Default Permissions for New Posts" +msgstr "Uprawnienia domyślne dla nowych postów" + +#: mod/settings.php:1248 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maksymalna liczba prywatnych wiadomości dziennie od nieznanych osób:" + +#: mod/settings.php:1251 +msgid "Notification Settings" +msgstr "Ustawienia powiadomień" + +#: mod/settings.php:1252 +msgid "By default post a status message when:" +msgstr "Publikuj domyślnie komunikat o stanie, gdy:" + +#: mod/settings.php:1253 +msgid "accepting a friend request" +msgstr "przyjęto prośbę o dodanie do znajomych" + +#: mod/settings.php:1254 +msgid "joining a forum/community" +msgstr "dołączono do forum/społeczności" + +#: mod/settings.php:1255 +msgid "making an interesting profile change" +msgstr "dokonano interesującej zmiany profilu" + +#: mod/settings.php:1256 +msgid "Send a notification email when:" +msgstr "Wyślij powiadmonienia na email, kiedy:" + +#: mod/settings.php:1257 +msgid "You receive an introduction" +msgstr "Otrzymałeś zaproszenie" + +#: mod/settings.php:1258 +msgid "Your introductions are confirmed" +msgstr "Twoje zaproszenie jest potwierdzone" + +#: mod/settings.php:1259 +msgid "Someone writes on your profile wall" +msgstr "Ktoś pisze na twoim profilu" + +#: mod/settings.php:1260 +msgid "Someone writes a followup comment" +msgstr "Ktoś pisze komentarz nawiązujący." + +#: mod/settings.php:1261 +msgid "You receive a private message" +msgstr "Otrzymałeś prywatną wiadomość" + +#: mod/settings.php:1262 +msgid "You receive a friend suggestion" +msgstr "Otrzymałeś propozycję od znajomych" + +#: mod/settings.php:1263 +msgid "You are tagged in a post" +msgstr "Jesteś oznaczony tagiem w poście" + +#: mod/settings.php:1264 +msgid "You are poked/prodded/etc. in a post" +msgstr "Jesteś zaczepiony/zaczepiona/itp. w poście" + +#: mod/settings.php:1266 +msgid "Activate desktop notifications" +msgstr "Aktywuj powiadomienia na pulpicie" + +#: mod/settings.php:1266 +msgid "Show desktop popup on new notifications" +msgstr "Pokaż wyskakujące okienko dla nowych powiadomień" + +#: mod/settings.php:1268 +msgid "Text-only notification emails" +msgstr "E-maile z powiadomieniami tekstowymi" + +#: mod/settings.php:1270 +msgid "Send text only notification emails, without the html part" +msgstr "Wysyłaj tylko e-maile z powiadomieniami tekstowymi, bez części html" + +#: mod/settings.php:1272 +msgid "Show detailled notifications" +msgstr "Pokaż szczegółowe powiadomienia" + +#: mod/settings.php:1274 +msgid "" +"Per default, notifications are condensed to a single notification per item. " +"When enabled every notification is displayed." +msgstr "Domyślne powiadomienia są skondensowane z jednym powiadomieniem dla każdego przedmiotu. Po włączeniu wyświetlane jest każde powiadomienie." + +#: mod/settings.php:1276 +msgid "Advanced Account/Page Type Settings" +msgstr "Zaawansowane ustawienia konta/rodzaju strony" + +#: mod/settings.php:1277 +msgid "Change the behaviour of this account for special situations" +msgstr "Zmień zachowanie tego konta w sytuacjach specjalnych" + +#: mod/settings.php:1280 +msgid "Relocate" +msgstr "Przeniesienie" + +#: mod/settings.php:1281 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "Jeśli ten profil został przeniesiony z innego serwera, a niektóre z Twoich kontaktów nie otrzymają aktualizacji, spróbuj nacisnąć ten przycisk." + +#: mod/settings.php:1282 +msgid "Resend relocate message to contacts" +msgstr "Wyślij ponownie przenieść wiadomości do kontaktów" + +#: mod/regmod.php:68 +msgid "Account approved." +msgstr "Konto zatwierdzone." + +#: mod/regmod.php:93 +#, php-format +msgid "Registration revoked for %s" +msgstr "Rejestracja odwołana dla %s" + +#: mod/regmod.php:102 +msgid "Please login." +msgstr "Proszę się zalogować." + #: mod/group.php:36 msgid "Group created." msgstr "Grupa utworzona." @@ -2627,6 +5326,10 @@ msgstr "Nie znaleziono grupy" msgid "Group name changed." msgstr "Nazwa grupy zmieniona" +#: mod/group.php:83 mod/profperm.php:28 index.php:443 +msgid "Permission denied" +msgstr "Odmowa dostępu" + #: mod/group.php:97 msgid "Save Group" msgstr "Zapisz grupę" @@ -2635,10 +5338,6 @@ msgstr "Zapisz grupę" msgid "Create a group of contacts/friends." msgstr "Stwórz grupę znajomych." -#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421 -msgid "Group Name: " -msgstr "Nazwa grupy: " - #: mod/group.php:127 msgid "Group removed." msgstr "Grupa usunięta." @@ -2667,10 +5366,6 @@ msgstr "Członkowie" msgid "All Contacts" msgstr "Wszystkie kontakty" -#: mod/group.php:216 mod/network.php:639 -msgid "Group is empty" -msgstr "Grupa jest pusta" - #: mod/group.php:229 msgid "Remove Contact" msgstr "Usuń Kontakt" @@ -2679,1428 +5374,18 @@ msgstr "Usuń Kontakt" msgid "Add Contact" msgstr "Dodaj Kontakt" -#: mod/message.php:30 src/Content/Nav.php:198 -msgid "New Message" -msgstr "Nowa wiadomość" +#: mod/group.php:265 mod/profperm.php:115 +msgid "Click on a contact to add or remove." +msgstr "Kliknij na kontakt w celu dodania lub usunięcia." -#: mod/message.php:77 -msgid "Unable to locate contact information." -msgstr "Nie można znaleźć informacji kontaktowych." - -#: mod/message.php:112 view/theme/frio/theme.php:268 src/Content/Nav.php:195 -msgid "Messages" -msgstr "Wiadomości" - -#: mod/message.php:136 -msgid "Do you really want to delete this message?" -msgstr "Czy na pewno chcesz usunąć tę wiadomość?" - -#: mod/message.php:156 -msgid "Message deleted." -msgstr "Wiadomość usunięta." - -#: mod/message.php:185 -msgid "Conversation removed." -msgstr "Rozmowa usunięta." - -#: mod/message.php:291 -msgid "No messages." -msgstr "Brak wiadomości." - -#: mod/message.php:330 -msgid "Message not available." -msgstr "Wiadomość nie jest dostępna." - -#: mod/message.php:397 -msgid "Delete message" -msgstr "Usuń wiadomość" - -#: mod/message.php:399 mod/message.php:500 -msgid "D, d M Y - g:i A" -msgstr "D, d M R - g:m AM/PM" - -#: mod/message.php:414 mod/message.php:497 -msgid "Delete conversation" -msgstr "Usuń rozmowę" - -#: mod/message.php:416 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Brak bezpiecznej komunikacji. Możesz odpowiedzieć na stronie profilu nadawcy." - -#: mod/message.php:420 -msgid "Send Reply" -msgstr "Odpowiedz" - -#: mod/message.php:471 -#, php-format -msgid "Unknown sender - %s" -msgstr "Nieznany nadawca - %s" - -#: mod/message.php:473 -#, php-format -msgid "You and %s" -msgstr "Ty i %s" - -#: mod/message.php:475 -#, php-format -msgid "%s and You" -msgstr "%s i ty" - -#: mod/message.php:503 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] " %d wiadomość" -msgstr[1] " %d wiadomości" -msgstr[2] " %d wiadomości" -msgstr[3] " %d wiadomości" - -#: mod/notes.php:52 src/Model/Profile.php:948 -msgid "Personal Notes" -msgstr "Notatki" - -#: mod/photos.php:108 src/Model/Profile.php:909 -msgid "Photo Albums" -msgstr "Albumy zdjęć" - -#: mod/photos.php:109 mod/photos.php:1713 -msgid "Recent Photos" -msgstr "Ostatnio dodane zdjęcia" - -#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715 -msgid "Upload New Photos" -msgstr "Wyślij nowe zdjęcie" - -#: mod/photos.php:126 mod/settings.php:50 -msgid "everybody" -msgstr "wszyscy" - -#: mod/photos.php:184 -msgid "Contact information unavailable" -msgstr "Informacje kontaktowe są niedostępne." - -#: mod/photos.php:204 -msgid "Album not found." -msgstr "Album nie znaleziony" - -#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161 -msgid "Delete Album" -msgstr "Usuń album" - -#: mod/photos.php:243 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?" - -#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446 -msgid "Delete Photo" -msgstr "Usuń zdjęcie" - -#: mod/photos.php:319 -msgid "Do you really want to delete this photo?" -msgstr "Czy na pewno chcesz usunąć to zdjęcie ?" - -#: mod/photos.php:667 -msgid "a photo" -msgstr "zdjęcie" - -#: mod/photos.php:667 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$szostał oznaczony tagiem %2$s przez %3$s" - -#: mod/photos.php:769 -msgid "Image upload didn't complete, please try again" -msgstr "Przesyłanie zdjęć nie zostało zakończone, spróbuj ponownie" - -#: mod/photos.php:772 -msgid "Image file is missing" -msgstr "Brak pliku obrazu" - -#: mod/photos.php:777 -msgid "" -"Server can't accept new file upload at this time, please contact your " -"administrator" -msgstr "Serwer nie może teraz przyjąć nowego pliku, skontaktuj się z administratorem" - -#: mod/photos.php:803 -msgid "Image file is empty." -msgstr "Plik obrazka jest pusty." - -#: mod/photos.php:940 -msgid "No photos selected" -msgstr "Nie zaznaczono zdjęć" - -#: mod/photos.php:1036 mod/videos.php:309 -msgid "Access to this item is restricted." -msgstr "Dostęp do tego obiektu jest ograniczony." - -#: mod/photos.php:1090 -msgid "Upload Photos" -msgstr "Prześlij zdjęcia" - -#: mod/photos.php:1094 mod/photos.php:1156 -msgid "New album name: " -msgstr "Nazwa nowego albumu:" - -#: mod/photos.php:1095 -msgid "or existing album name: " -msgstr "lub istniejąca nazwa albumu:" - -#: mod/photos.php:1096 -msgid "Do not show a status post for this upload" -msgstr "Nie pokazuj statusu postów dla tego wysłania" - -#: mod/photos.php:1098 mod/photos.php:1441 mod/events.php:533 -#: src/Core/ACL.php:318 -msgid "Permissions" -msgstr "Uprawnienia" - -#: mod/photos.php:1106 mod/photos.php:1449 mod/settings.php:1229 -msgid "Show to Groups" -msgstr "Pokaż Grupy" - -#: mod/photos.php:1107 mod/photos.php:1450 mod/settings.php:1230 -msgid "Show to Contacts" -msgstr "Pokaż kontakty" - -#: mod/photos.php:1167 -msgid "Edit Album" -msgstr "Edytuj album" - -#: mod/photos.php:1172 -msgid "Show Newest First" -msgstr "Najpierw pokaż najnowsze" - -#: mod/photos.php:1174 -msgid "Show Oldest First" -msgstr "Najpierw pokaż najstarsze" - -#: mod/photos.php:1195 mod/photos.php:1698 -msgid "View Photo" -msgstr "Zobacz zdjęcie" - -#: mod/photos.php:1236 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Odmowa dostępu. Dostęp do tych danych może być ograniczony." - -#: mod/photos.php:1238 -msgid "Photo not available" -msgstr "Zdjęcie niedostępne" - -#: mod/photos.php:1301 -msgid "View photo" -msgstr "Zobacz zdjęcie" - -#: mod/photos.php:1301 -msgid "Edit photo" -msgstr "Edytuj zdjęcie" - -#: mod/photos.php:1302 -msgid "Use as profile photo" -msgstr "Ustaw jako zdjęcie profilowe" - -#: mod/photos.php:1308 src/Object/Post.php:149 -msgid "Private Message" -msgstr "Wiadomość prywatna" - -#: mod/photos.php:1327 -msgid "View Full Size" -msgstr "Zobacz w pełnym rozmiarze" - -#: mod/photos.php:1414 -msgid "Tags: " -msgstr "Tagi:" - -#: mod/photos.php:1417 -msgid "[Remove any tag]" -msgstr "[Usunąć znacznik]" - -#: mod/photos.php:1432 -msgid "New album name" -msgstr "Nazwa nowego albumu" - -#: mod/photos.php:1433 -msgid "Caption" -msgstr "Zawartość" - -#: mod/photos.php:1434 -msgid "Add a Tag" -msgstr "Dodaj tag" - -#: mod/photos.php:1434 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: mod/photos.php:1435 -msgid "Do not rotate" -msgstr "Nie obracaj" - -#: mod/photos.php:1436 -msgid "Rotate CW (right)" -msgstr "Obróć CW (w prawo)" - -#: mod/photos.php:1437 -msgid "Rotate CCW (left)" -msgstr "Obróć CCW (w lewo)" - -#: mod/photos.php:1471 src/Object/Post.php:296 -msgid "I like this (toggle)" -msgstr "Lubię to (zmień)" - -#: mod/photos.php:1472 src/Object/Post.php:297 -msgid "I don't like this (toggle)" -msgstr "Nie lubię tego (zmień)" - -#: mod/photos.php:1488 mod/photos.php:1527 mod/photos.php:1600 -#: mod/contacts.php:953 src/Object/Post.php:793 -msgid "This is you" -msgstr "To jesteś ty" - -#: mod/photos.php:1490 mod/photos.php:1529 mod/photos.php:1602 -#: src/Object/Post.php:399 src/Object/Post.php:795 -msgid "Comment" -msgstr "Komentarz" - -#: mod/photos.php:1634 -msgid "Map" -msgstr "Mapa" - -#: mod/photos.php:1704 mod/videos.php:387 -msgid "View Album" -msgstr "Zobacz album" - -#: mod/profile.php:37 src/Model/Profile.php:118 -msgid "Requested profile is not available." -msgstr "Żądany profil jest niedostępny" - -#: mod/profile.php:78 src/Protocol/OStatus.php:1252 -#, php-format -msgid "%s's posts" -msgstr "%s posty " - -#: mod/profile.php:79 src/Protocol/OStatus.php:1253 -#, php-format -msgid "%s's comments" -msgstr "%s komentarze " - -#: mod/profile.php:80 src/Protocol/OStatus.php:1251 -#, php-format -msgid "%s's timeline" -msgstr "%s oś czasu " - -#: mod/profile.php:173 mod/cal.php:142 mod/display.php:313 -msgid "Access to this profile has been restricted." -msgstr "Dostęp do tego profilu został ograniczony." - -#: mod/profile.php:194 -msgid "Tips for New Members" -msgstr "Wskazówki dla nowych użytkowników" - -#: mod/videos.php:139 -msgid "Do you really want to delete this video?" -msgstr "Czy na pewno chcesz usunąć ten film wideo?" - -#: mod/videos.php:144 -msgid "Delete Video" -msgstr "Usuń wideo" - -#: mod/videos.php:207 -msgid "No videos selected" -msgstr "Nie zaznaczono filmów" - -#: mod/videos.php:396 -msgid "Recent Videos" -msgstr "Ostatnio dodane filmy" - -#: mod/videos.php:398 -msgid "Upload New Videos" -msgstr "Wstaw nowe filmy" - -#: mod/cal.php:274 mod/events.php:391 view/theme/frio/theme.php:263 -#: view/theme/frio/theme.php:267 src/Content/Nav.php:104 -#: src/Content/Nav.php:169 src/Model/Profile.php:926 src/Model/Profile.php:937 -msgid "Events" -msgstr "Wydarzenia" - -#: mod/cal.php:275 mod/events.php:392 -msgid "View" -msgstr "Widok" - -#: mod/cal.php:276 mod/events.php:394 -msgid "Previous" -msgstr "Poprzedni" - -#: mod/cal.php:277 mod/events.php:395 mod/install.php:209 -msgid "Next" -msgstr "Następny" - -#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412 -msgid "today" -msgstr "dzisiaj" - -#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304 -#: src/Model/Event.php:413 -msgid "month" -msgstr "miesiąc" - -#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305 -#: src/Model/Event.php:414 -msgid "week" -msgstr "tydzień" - -#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306 -#: src/Model/Event.php:415 -msgid "day" -msgstr "dzień" - -#: mod/cal.php:284 mod/events.php:404 -msgid "list" -msgstr "lista" - -#: mod/cal.php:297 src/Core/Console/NewPassword.php:73 src/Model/User.php:214 -msgid "User not found" -msgstr "Użytkownik nie znaleziony" - -#: mod/cal.php:313 -msgid "This calendar format is not supported" -msgstr "Ten format kalendarza nie jest obsługiwany" - -#: mod/cal.php:315 -msgid "No exportable data found" -msgstr "Nie znaleziono danych do eksportu" - -#: mod/cal.php:332 -msgid "calendar" -msgstr "kalendarz" - -#: mod/contacts.php:157 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: mod/contacts.php:184 mod/contacts.php:400 -msgid "Could not access contact record." -msgstr "Nie można uzyskać dostępu do rejestru kontaktów." - -#: mod/contacts.php:194 -msgid "Could not locate selected profile." -msgstr "Nie można znaleźć wybranego profilu." - -#: mod/contacts.php:228 -msgid "Contact updated." -msgstr "Kontakt zaktualizowany" - -#: mod/contacts.php:421 -msgid "Contact has been blocked" -msgstr "Kontakt został zablokowany" - -#: mod/contacts.php:421 -msgid "Contact has been unblocked" -msgstr "Kontakt został odblokowany" - -#: mod/contacts.php:432 -msgid "Contact has been ignored" -msgstr "Kontakt jest ignorowany" - -#: mod/contacts.php:432 -msgid "Contact has been unignored" -msgstr "Kontakt nie jest ignorowany" - -#: mod/contacts.php:443 -msgid "Contact has been archived" -msgstr "Kontakt został zarchiwizowany" - -#: mod/contacts.php:443 -msgid "Contact has been unarchived" -msgstr "Kontakt został przywrócony" - -#: mod/contacts.php:467 -msgid "Drop contact" -msgstr "Usuń kontakt" - -#: mod/contacts.php:470 mod/contacts.php:823 -msgid "Do you really want to delete this contact?" -msgstr "Czy na pewno chcesz usunąć ten kontakt?" - -#: mod/contacts.php:488 -msgid "Contact has been removed." -msgstr "Kontakt został usunięty." - -#: mod/contacts.php:519 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Jesteś już znajomym z %s" - -#: mod/contacts.php:523 -#, php-format -msgid "You are sharing with %s" -msgstr "Współdzielisz z %s" - -#: mod/contacts.php:527 -#, php-format -msgid "%s is sharing with you" -msgstr "%s współdzieli z tobą" - -#: mod/contacts.php:547 -msgid "Private communications are not available for this contact." -msgstr "Prywatna rozmowa jest niemożliwa dla tego kontaktu" - -#: mod/contacts.php:549 -msgid "Never" -msgstr "Nigdy" - -#: mod/contacts.php:552 -msgid "(Update was successful)" -msgstr "(Aktualizacja przebiegła pomyślnie)" - -#: mod/contacts.php:552 -msgid "(Update was not successful)" -msgstr "(Aktualizacja nie powiodła się)" - -#: mod/contacts.php:554 mod/contacts.php:992 -msgid "Suggest friends" -msgstr "Osoby, które możesz znać" - -#: mod/contacts.php:558 -#, php-format -msgid "Network type: %s" -msgstr "Typ sieci: %s" - -#: mod/contacts.php:563 -msgid "Communications lost with this contact!" -msgstr "Utracono komunikację z tym kontaktem!" - -#: mod/contacts.php:569 -msgid "Fetch further information for feeds" -msgstr "Pobierz dalsze informacje dla kanałów" - -#: mod/contacts.php:571 -msgid "" -"Fetch information like preview pictures, title and teaser from the feed " -"item. You can activate this if the feed doesn't contain much text. Keywords " -"are taken from the meta header in the feed item and are posted as hash tags." -msgstr "Pobieranie informacji, takich jak zdjęcia podglądu, tytuł i zwiastun z elementu kanału. Możesz to aktywować, jeśli plik danych nie zawiera dużo tekstu. Słowa kluczowe są pobierane z nagłówka meta w elemencie kanału i są publikowane jako znaczniki haszowania." - -#: mod/contacts.php:572 mod/admin.php:1272 mod/admin.php:1435 -#: mod/admin.php:1445 -msgid "Disabled" -msgstr "Wyłączony" - -#: mod/contacts.php:573 -msgid "Fetch information" -msgstr "Pobierz informacje" - -#: mod/contacts.php:574 -msgid "Fetch keywords" -msgstr "Pobierz słowa kluczowe" - -#: mod/contacts.php:575 -msgid "Fetch information and keywords" -msgstr "Pobierz informacje i słowa kluczowe" - -#: mod/contacts.php:599 mod/unfollow.php:100 -msgid "Disconnect/Unfollow" -msgstr "Rozłącz/Nie obserwuj" - -#: mod/contacts.php:608 -msgid "Contact" -msgstr "Kontakt" - -#: mod/contacts.php:611 -msgid "Profile Visibility" -msgstr "Widoczność profilu" - -#: mod/contacts.php:612 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Wybierz profil, który chcesz bezpiecznie wyświetlić %s" - -#: mod/contacts.php:613 -msgid "Contact Information / Notes" -msgstr "Informacje kontaktowe/Notatki" - -#: mod/contacts.php:614 -msgid "Their personal note" -msgstr "Ich osobista uwaga" - -#: mod/contacts.php:616 -msgid "Edit contact notes" -msgstr "Edytuj notatki kontaktu" - -#: mod/contacts.php:620 -msgid "Block/Unblock contact" -msgstr "Zablokuj/odblokuj kontakt" - -#: mod/contacts.php:621 -msgid "Ignore contact" -msgstr "Ignoruj kontakt" - -#: mod/contacts.php:622 -msgid "Repair URL settings" -msgstr "Napraw ustawienia adresu" - -#: mod/contacts.php:623 -msgid "View conversations" -msgstr "Wyświetl rozmowy" - -#: mod/contacts.php:628 -msgid "Last update:" -msgstr "Ostatnia aktualizacja:" - -#: mod/contacts.php:630 -msgid "Update public posts" -msgstr "Zaktualizuj publiczne posty" - -#: mod/contacts.php:632 mod/contacts.php:1002 -msgid "Update now" -msgstr "Aktualizuj teraz" - -#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011 -#: mod/admin.php:485 mod/admin.php:1800 -msgid "Unblock" -msgstr "Odblokuj" - -#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011 -#: mod/admin.php:484 mod/admin.php:1799 -msgid "Block" -msgstr "Zablokuj" - -#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019 -msgid "Unignore" -msgstr "Odblokuj" - -#: mod/contacts.php:642 -msgid "Currently blocked" -msgstr "Obecnie zablokowany" - -#: mod/contacts.php:643 -msgid "Currently ignored" -msgstr "Obecnie zignorowany" - -#: mod/contacts.php:644 -msgid "Currently archived" -msgstr "Obecnie zarchiwizowany" - -#: mod/contacts.php:645 -msgid "Awaiting connection acknowledge" -msgstr "Oczekiwanie na potwierdzenie połączenia" - -#: mod/contacts.php:646 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal mogą być widoczne" - -#: mod/contacts.php:647 -msgid "Notification for new posts" -msgstr "Powiadomienie o nowych postach" - -#: mod/contacts.php:647 -msgid "Send a notification of every new post of this contact" -msgstr "Wyślij powiadomienie o każdym nowym poście tego kontaktu" - -#: mod/contacts.php:650 -msgid "Blacklisted keywords" -msgstr "Słowa kluczowe na czarnej liście" - -#: mod/contacts.php:650 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "Rozdzielana przecinkami lista słów kluczowych, które nie powinny zostać przekonwertowane na hashtagi, gdy wybrana jest opcja 'Pobierz informacje i słowa kluczowe'" - -#: mod/contacts.php:662 src/Model/Profile.php:424 -msgid "XMPP:" -msgstr "XMPP:" - -#: mod/contacts.php:667 -msgid "Actions" -msgstr "Akcja" - -#: mod/contacts.php:669 mod/contacts.php:855 view/theme/frio/theme.php:259 -#: src/Content/Nav.php:100 src/Model/Profile.php:890 -msgid "Status" -msgstr "Status" - -#: mod/contacts.php:670 -msgid "Contact Settings" -msgstr "Ustawienia kontaktów" - -#: mod/contacts.php:711 -msgid "Suggestions" -msgstr "Sugestie" - -#: mod/contacts.php:714 -msgid "Suggest potential friends" -msgstr "Sugerowani znajomi" - -#: mod/contacts.php:722 -msgid "Show all contacts" -msgstr "Pokaż wszystkie kontakty" - -#: mod/contacts.php:727 -msgid "Unblocked" -msgstr "Odblokowany" - -#: mod/contacts.php:730 -msgid "Only show unblocked contacts" -msgstr "Pokaż tylko odblokowane kontakty" - -#: mod/contacts.php:735 -msgid "Blocked" -msgstr "Zablokowany" - -#: mod/contacts.php:738 -msgid "Only show blocked contacts" -msgstr "Pokaż tylko zablokowane kontakty" - -#: mod/contacts.php:743 -msgid "Ignored" -msgstr "Zignorowany" - -#: mod/contacts.php:746 -msgid "Only show ignored contacts" -msgstr "Pokaż tylko ignorowane kontakty" - -#: mod/contacts.php:751 -msgid "Archived" -msgstr "Zarchiwizowane" - -#: mod/contacts.php:754 -msgid "Only show archived contacts" -msgstr "Pokaż tylko zarchiwizowane kontakty" - -#: mod/contacts.php:759 -msgid "Hidden" -msgstr "Ukryty" - -#: mod/contacts.php:762 -msgid "Only show hidden contacts" -msgstr "Pokaż tylko ukryte kontakty" - -#: mod/contacts.php:818 -msgid "Search your contacts" -msgstr "Wyszukaj w kontaktach" - -#: mod/contacts.php:820 mod/directory.php:209 src/Content/Widget.php:63 -msgid "Find" -msgstr "Znajdź" - -#: mod/contacts.php:826 mod/settings.php:170 mod/settings.php:701 -msgid "Update" -msgstr "Zaktualizuj" - -#: mod/contacts.php:829 mod/contacts.php:1027 -msgid "Archive" -msgstr "Archiwum" - -#: mod/contacts.php:829 mod/contacts.php:1027 -msgid "Unarchive" -msgstr "Przywróć z archiwum" - -#: mod/contacts.php:832 -msgid "Batch Actions" -msgstr "Akcje wsadowe" - -#: mod/contacts.php:858 mod/unfollow.php:132 mod/follow.php:186 -#: src/Model/Profile.php:893 -msgid "Status Messages and Posts" -msgstr "Status wiadomości i postów" - -#: mod/contacts.php:866 src/Model/Profile.php:901 -msgid "Profile Details" -msgstr "Szczegóły profilu" - -#: mod/contacts.php:878 -msgid "View all contacts" -msgstr "Zobacz wszystkie kontakty" - -#: mod/contacts.php:889 -msgid "View all common friends" -msgstr "Zobacz wszystkich popularnych znajomych" - -#: mod/contacts.php:895 mod/events.php:532 mod/admin.php:1351 -#: src/Model/Profile.php:867 -msgid "Advanced" -msgstr "Zaawansowany" - -#: mod/contacts.php:898 -msgid "Advanced Contact Settings" -msgstr "Zaawansowane ustawienia kontaktów" - -#: mod/contacts.php:930 -msgid "Mutual Friendship" -msgstr "Wzajemna przyjaźń" - -#: mod/contacts.php:934 -msgid "is a fan of yours" -msgstr "jest twoim fanem" - -#: mod/contacts.php:938 -msgid "you are a fan of" -msgstr "jesteś fanem" - -#: mod/contacts.php:1013 -msgid "Toggle Blocked status" -msgstr "Przełącz na Zablokowany" - -#: mod/contacts.php:1021 -msgid "Toggle Ignored status" -msgstr "Przełącz ignorowany status" - -#: mod/contacts.php:1029 -msgid "Toggle Archive status" -msgstr "Przełącz status archiwum" - -#: mod/contacts.php:1037 -msgid "Delete contact" -msgstr "Usuń kontakt" - -#: mod/delegate.php:37 -msgid "Parent user not found." -msgstr "Nie znaleziono użytkownika nadrzędnego." - -#: mod/delegate.php:144 -msgid "No parent user" -msgstr "Brak nadrzędnego użytkownika" - -#: mod/delegate.php:159 -msgid "Parent Password:" -msgstr "Hasło nadrzędne:" - -#: mod/delegate.php:159 -msgid "" -"Please enter the password of the parent account to legitimize your request." -msgstr "Wprowadź hasło konta nadrzędnego, aby legalizować swoje żądanie." - -#: mod/delegate.php:164 -msgid "Parent User" -msgstr "Użytkownik nadrzędny" - -#: mod/delegate.php:167 -msgid "" -"Parent users have total control about this account, including the account " -"settings. Please double check whom you give this access." -msgstr "Użytkownicy nadrzędni mają pełną kontrolę nad tym kontem, w tym także ustawienia konta. Sprawdź dokładnie, komu przyznasz ten dostęp." - -#: mod/delegate.php:168 mod/admin.php:307 mod/admin.php:1346 -#: mod/admin.php:1965 mod/admin.php:2218 mod/admin.php:2292 mod/admin.php:2439 -#: mod/settings.php:675 mod/settings.php:784 mod/settings.php:872 -#: mod/settings.php:961 mod/settings.php:1194 -msgid "Save Settings" -msgstr "Zapisz ustawienia" - -#: mod/delegate.php:169 src/Content/Nav.php:204 -msgid "Delegate Page Management" -msgstr "Deleguj zarządzanie stronami" - -#: mod/delegate.php:170 -msgid "Delegates" -msgstr "Oddeleguj" - -#: mod/delegate.php:172 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "Delegaci mogą zarządzać wszystkimi aspektami tego konta/strony, z wyjątkiem podstawowych ustawień konta. Nie przekazuj swojego konta osobistego nikomu, komu nie ufasz całkowicie." - -#: mod/delegate.php:173 -msgid "Existing Page Delegates" -msgstr "Obecni delegaci stron" - -#: mod/delegate.php:175 -msgid "Potential Delegates" -msgstr "Potencjalni delegaci" - -#: mod/delegate.php:178 -msgid "Add" -msgstr "Dodaj" - -#: mod/delegate.php:179 -msgid "No entries." -msgstr "Brak wpisów." - -#: mod/events.php:105 mod/events.php:107 -msgid "Event can not end before it has started." -msgstr "Wydarzenie nie może się zakończyć przed jego rozpoczęciem." - -#: mod/events.php:114 mod/events.php:116 -msgid "Event title and start time are required." -msgstr "Wymagany tytuł wydarzenia i czas rozpoczęcia." - -#: mod/events.php:393 -msgid "Create New Event" -msgstr "Stwórz nowe wydarzenie" - -#: mod/events.php:506 -msgid "Event details" -msgstr "Szczegóły wydarzenia" - -#: mod/events.php:507 -msgid "Starting date and Title are required." -msgstr "Data rozpoczęcia i tytuł są wymagane." - -#: mod/events.php:508 mod/events.php:509 -msgid "Event Starts:" -msgstr "Rozpoczęcie wydarzenia:" - -#: mod/events.php:508 mod/events.php:520 mod/profiles.php:700 -msgid "Required" -msgstr "Wymagany" - -#: mod/events.php:510 mod/events.php:526 -msgid "Finish date/time is not known or not relevant" -msgstr "Data/czas zakończenia nie jest znana lub jest nieistotna" - -#: mod/events.php:512 mod/events.php:513 -msgid "Event Finishes:" -msgstr "Zakończenie wydarzenia:" - -#: mod/events.php:514 mod/events.php:527 -msgid "Adjust for viewer timezone" -msgstr "Dopasuj dla strefy czasowej widza" - -#: mod/events.php:516 -msgid "Description:" -msgstr "Opis:" - -#: mod/events.php:520 mod/events.php:522 -msgid "Title:" -msgstr "Tytuł:" - -#: mod/events.php:523 mod/events.php:524 -msgid "Share this event" -msgstr "Udostępnij te wydarzenie" - -#: mod/events.php:531 src/Model/Profile.php:866 -msgid "Basic" -msgstr "Podstawowy" - -#: mod/events.php:552 -msgid "Failed to remove event" -msgstr "Nie udało się usunąć wydarzenia" - -#: mod/events.php:554 -msgid "Event removed" -msgstr "Wydarzenie zostało usunięte" - -#: mod/feedtest.php:20 -msgid "You must be logged in to use this module" -msgstr "Musisz być zalogowany, aby korzystać z tego modułu" - -#: mod/feedtest.php:48 -msgid "Source URL" -msgstr "Źródłowy adres URL" - -#: mod/install.php:114 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica Serwer Komunikacyjny - Instalacja" - -#: mod/install.php:120 -msgid "Could not connect to database." -msgstr "Nie można nawiązać połączenia z bazą danych" - -#: mod/install.php:124 -msgid "Could not create table." -msgstr "Nie mogę stworzyć tabeli." - -#: mod/install.php:130 -msgid "Your Friendica site database has been installed." -msgstr "Twoja baza danych witryny Friendica została zainstalowana." - -#: mod/install.php:135 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql." - -#: mod/install.php:136 mod/install.php:208 mod/install.php:558 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Proszę przejrzeć plik \"INSTALL.txt\"." - -#: mod/install.php:148 -msgid "Database already in use." -msgstr "Baza danych jest już w użyciu." - -#: mod/install.php:205 -msgid "System check" -msgstr "Sprawdzanie systemu" - -#: mod/install.php:210 -msgid "Check again" -msgstr "Sprawdź ponownie" - -#: mod/install.php:230 -msgid "Database connection" -msgstr "Połączenie z bazą danych" - -#: mod/install.php:231 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych." - -#: mod/install.php:232 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień ." - -#: mod/install.php:233 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją." - -#: mod/install.php:237 -msgid "Database Server Name" -msgstr "Nazwa serwera bazy danych" - -#: mod/install.php:238 -msgid "Database Login Name" -msgstr "Nazwa użytkownika bazy danych" - -#: mod/install.php:239 -msgid "Database Login Password" -msgstr "Hasło logowania do bazy danych" - -#: mod/install.php:239 -msgid "For security reasons the password must not be empty" -msgstr "Ze względów bezpieczeństwa hasło nie może być puste" - -#: mod/install.php:240 -msgid "Database Name" -msgstr "Nazwa bazy danych" - -#: mod/install.php:241 mod/install.php:281 -msgid "Site administrator email address" -msgstr "Adres e-mail administratora strony" - -#: mod/install.php:241 mod/install.php:281 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Adres e-mail konta musi pasować do tego, aby móc korzystać z panelu administracyjnego." - -#: mod/install.php:245 mod/install.php:284 -msgid "Please select a default timezone for your website" -msgstr "Proszę wybrać domyślną strefę czasową dla swojej strony" - -#: mod/install.php:271 -msgid "Site settings" -msgstr "Ustawienia strony" - -#: mod/install.php:285 -msgid "System Language:" -msgstr "Język systemu:" - -#: mod/install.php:285 -msgid "" -"Set the default language for your Friendica installation interface and to " -"send emails." -msgstr "Ustaw domyślny język dla interfejsu instalacyjnego Friendica i wysyłaj e-maile." - -#: mod/install.php:325 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Nie można znaleźć wersji PHP komendy w serwerze PATH" - -#: mod/install.php:326 -msgid "" -"If you don't have a command line version of PHP installed on your server, " -"you will not be able to run the background processing. See 'Setup the worker'" -msgstr "Jeśli nie masz zainstalowanej na serwerze wersji PHP z wiersza poleceń, nie będziesz mógł uruchomić przetwarzania w tle. Zobacz 'Konfiguracja pracownika'" - -#: mod/install.php:330 -msgid "PHP executable path" -msgstr "Ścieżka wykonywalna PHP" - -#: mod/install.php:330 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Wprowadź pełną ścieżkę do pliku wykonywalnego php. Możesz pozostawić to pole puste, aby kontynuować instalację." - -#: mod/install.php:335 -msgid "Command line PHP" -msgstr "Linia komend PHP" - -#: mod/install.php:344 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "Plik wykonywalny PHP nie jest php cli binarny (może być wersją cgi-fgci)" - -#: mod/install.php:345 -msgid "Found PHP version: " -msgstr "Znaleziono wersje PHP:" - -#: mod/install.php:347 -msgid "PHP cli binary" -msgstr "PHP cli binarny" - -#: mod/install.php:358 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Wersja linii poleceń PHP w twoim systemie nie ma aktywowanego \"register_argc_argv\"." - -#: mod/install.php:359 -msgid "This is required for message delivery to work." -msgstr "Jest wymagane, aby dostarczanie wiadomości działało." - -#: mod/install.php:361 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: mod/install.php:384 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Błąd: funkcja \"openssl_pkey_new\" w tym systemie nie jest w stanie wygenerować kluczy szyfrujących" - -#: mod/install.php:385 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Jeśli korzystasz z Windowsa, proszę odwiedzić \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: mod/install.php:387 -msgid "Generate encryption keys" -msgstr "Generuj klucz kodowania" - -#: mod/install.php:394 -msgid "libCurl PHP module" -msgstr "Moduł libCurl PHP" - -#: mod/install.php:395 -msgid "GD graphics PHP module" -msgstr "Moduł PHP-GD" - -#: mod/install.php:396 -msgid "OpenSSL PHP module" -msgstr "Moduł PHP OpenSSL" - -#: mod/install.php:397 -msgid "PDO or MySQLi PHP module" -msgstr "Moduł PDO lub MySQLi PHP" - -#: mod/install.php:398 -msgid "mb_string PHP module" -msgstr "Moduł mb_string PHP" - -#: mod/install.php:399 -msgid "XML PHP module" -msgstr "Moduł XML PHP" - -#: mod/install.php:400 -msgid "iconv PHP module" -msgstr "Moduł PHP iconv" - -#: mod/install.php:401 -msgid "POSIX PHP module" -msgstr "Moduł POSIX PHP" - -#: mod/install.php:405 mod/install.php:407 -msgid "Apache mod_rewrite module" -msgstr "Moduł Apache mod_rewrite" - -#: mod/install.php:405 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Błąd: moduł Apache webserver mod-rewrite jest potrzebny, jednakże nie jest zainstalowany." - -#: mod/install.php:413 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany." - -#: mod/install.php:417 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Błąd: moduł graficzny GD z PHP potrzebuje wsparcia technicznego JPEG, jednakże on nie jest zainstalowany." - -#: mod/install.php:421 -msgid "Error: openssl PHP module required but not installed." -msgstr "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany." - -#: mod/install.php:425 -msgid "Error: PDO or MySQLi PHP module required but not installed." -msgstr "Błąd: Wymagany moduł PDO lub MySQLi PHP, ale nie zainstalowany." - -#: mod/install.php:429 -msgid "Error: The MySQL driver for PDO is not installed." -msgstr "Błąd: Sterownik MySQL dla PDO nie jest zainstalowany." - -#: mod/install.php:433 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Błąd: moduł PHP mb_string jest wymagany ale nie jest zainstalowany" - -#: mod/install.php:437 -msgid "Error: iconv PHP module required but not installed." -msgstr "Błąd: wymagany moduł PHP iconv, ale nie zainstalowany." - -#: mod/install.php:441 -msgid "Error: POSIX PHP module required but not installed." -msgstr "Błąd: wymagany moduł POSIX PHP, ale nie zainstalowany." - -#: mod/install.php:451 -msgid "Error, XML PHP module required but not installed." -msgstr "Błąd, wymagany moduł XML PHP, ale nie zainstalowany." - -#: mod/install.php:463 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "Instalator WWW musi być w stanie utworzyć plik o nazwie \". Htconfig.php\" i nie jest w stanie tego zrobić." - -#: mod/install.php:464 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Jest to najczęściej ustawienie uprawnień, ponieważ serwer sieciowy może nie być w stanie zapisywać plików w folderze - nawet jeśli możesz." - -#: mod/install.php:465 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "Pod koniec tej procedury podamy Ci tekst do zapisania w pliku o nazwie .htconfig.php w twoim górnym folderze Friendica." - -#: mod/install.php:466 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Alternatywnie można pominąć tę procedurę i wykonać ręczną instalację. Proszę zobaczyć plik 'INSTALL.txt' z instrukcjami." - -#: mod/install.php:469 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php jest zapisywalny" - -#: mod/install.php:479 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Friendica używa silnika szablonów Smarty3 do renderowania swoich widoków. Smarty3 kompiluje szablony do PHP, aby przyspieszyć renderowanie." - -#: mod/install.php:480 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "Aby przechowywać te skompilowane szablony, serwer WWW musi mieć dostęp do zapisu do katalogu view/smarty3/ w folderze najwyższego poziomu Friendica." - -#: mod/install.php:481 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Upewnij się, że użytkownik, na którym działa serwer WWW (np. www-data), ma prawo do zapisu do tego folderu." - -#: mod/install.php:482 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "Uwaga: jako środek bezpieczeństwa, powinieneś dać serwerowi dostęp do zapisu view/smarty3/ jedynie - nie do plików szablonów (.tpl), które zawiera." - -#: mod/install.php:485 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 jest zapisywalny" - -#: mod/install.php:501 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "Nie działa URL w .htaccess popraw. Sprawdź konfigurację serwera." - -#: mod/install.php:503 -msgid "Url rewrite is working" -msgstr "Działający adres URL" - -#: mod/install.php:522 -msgid "ImageMagick PHP extension is not installed" -msgstr "Rozszerzenie PHP ImageMagick nie jest zainstalowane" - -#: mod/install.php:524 -msgid "ImageMagick PHP extension is installed" -msgstr "Rozszerzenie PHP ImageMagick jest zainstalowane" - -#: mod/install.php:526 -msgid "ImageMagick supports GIF" -msgstr "ImageMagick obsługuje GIF" - -#: mod/install.php:533 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Konfiguracja bazy danych pliku \".htconfig.php\" nie mogła zostać zapisana. Proszę użyć załączonego tekstu, aby utworzyć folder konfiguracyjny w sieci serwera." - -#: mod/install.php:556 -msgid "

What next

" -msgstr "

Co dalej

" - -#: mod/install.php:557 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"worker." -msgstr "WAŻNE: Będziesz musiał [ręcznie] ustawić zaplanowane zadanie dla pracownika." - -#: mod/install.php:560 -#, php-format -msgid "" -"Go to your new Friendica node registration page " -"and register as new user. Remember to use the same email you have entered as" -" administrator email. This will allow you to enter the site admin panel." -msgstr "Przejdź do strony rejestracji nowego węzła Friendica i zarejestruj się jako nowy użytkownik. Pamiętaj, aby użyć adresu e-mail wprowadzonego jako e-mail administratora. To pozwoli Ci wejść do panelu administratora witryny." - -#: mod/item.php:114 -msgid "Unable to locate original post." -msgstr "Nie można zlokalizować oryginalnej wiadomości." - -#: mod/item.php:274 -msgid "Empty post discarded." -msgstr "Pusty wpis został odrzucony." - -#: mod/item.php:799 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Wiadomość została wysłana do ciebie od %s , członka portalu Friendica" - -#: mod/item.php:801 -#, php-format -msgid "You may visit them online at %s" -msgstr "Możesz odwiedzić ich online pod adresem %s" - -#: mod/item.php:802 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości." - -#: mod/item.php:806 -#, php-format -msgid "%s posted an update." -msgstr "%s zaktualizował wpis." - -#: mod/oexchange.php:30 -msgid "Post successful." -msgstr "Post dodany pomyślnie" - -#: mod/ostatus_subscribe.php:21 -msgid "Subscribing to OStatus contacts" -msgstr "Subskrybowanie kontaktów OStatus" - -#: mod/ostatus_subscribe.php:33 -msgid "No contact provided." -msgstr "Brak kontaktu." - -#: mod/ostatus_subscribe.php:40 -msgid "Couldn't fetch information for contact." -msgstr "Nie można pobrać informacji o kontakcie." - -#: mod/ostatus_subscribe.php:50 -msgid "Couldn't fetch friends for contact." -msgstr "Nie można pobrać znajomych do kontaktu." - -#: mod/ostatus_subscribe.php:78 -msgid "success" -msgstr "powodzenie" - -#: mod/ostatus_subscribe.php:80 -msgid "failed" -msgstr "nie powiodło się" - -#: mod/ostatus_subscribe.php:83 src/Object/Post.php:279 -msgid "ignored" -msgstr "Ignoruj" - -#: mod/profile_photo.php:55 -msgid "Image uploaded but image cropping failed." -msgstr "Zdjęcie zostało przesłane, ale przycinanie obrazu nie powiodło się." - -#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104 -#: mod/profile_photo.php:315 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Redukcja rozmiaru obrazka [%s] nie powiodła się." - -#: mod/profile_photo.php:125 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Ponownie załaduj stronę lub wyczyść pamięć podręczną przeglądarki, jeśli nowe zdjęcie nie pojawi się natychmiast." - -#: mod/profile_photo.php:134 -msgid "Unable to process image" -msgstr "Nie udało się przetworzyć obrazu." - -#: mod/profile_photo.php:247 -msgid "Upload File:" -msgstr "Wyślij plik:" - -#: mod/profile_photo.php:248 -msgid "Select a profile:" -msgstr "Wybierz profil:" - -#: mod/profile_photo.php:253 -msgid "or" -msgstr "lub" - -#: mod/profile_photo.php:253 -msgid "skip this step" -msgstr "pomiń ten krok" - -#: mod/profile_photo.php:253 -msgid "select a photo from your photo albums" -msgstr "wybierz zdjęcie z twojego albumu" - -#: mod/profile_photo.php:266 -msgid "Crop Image" -msgstr "Przytnij zdjęcie" - -#: mod/profile_photo.php:267 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Dostosuj kadrowanie obrazu, aby uzyskać optymalny obraz." - -#: mod/profile_photo.php:269 -msgid "Done Editing" -msgstr "Zakończono edycję" - -#: mod/profile_photo.php:305 -msgid "Image uploaded successfully." -msgstr "Zdjęcie wczytano pomyślnie " - -#: mod/unfollow.php:34 -msgid "Contact wasn't found or can't be unfollowed." -msgstr "Kontakt nie został znaleziony lub nie można go pominąć." - -#: mod/unfollow.php:47 -msgid "Contact unfollowed" -msgstr "Skontaktuj się z obserwowanym" - -#: mod/unfollow.php:73 -msgid "You aren't a friend of this contact." -msgstr "Nie jesteś przyjacielem tego kontaktu." - -#: mod/unfollow.php:79 -msgid "Unfollowing is currently not supported by your network." -msgstr "Brak obserwowania nie jest obecnie obsługiwany przez twoją sieć." +#: mod/fbrowser.php:131 +msgid "Files" +msgstr "Pliki" #: mod/admin.php:106 msgid "Theme settings updated." msgstr "Zaktualizowano ustawienia motywów." -#: mod/admin.php:179 src/Content/Nav.php:174 -msgid "Information" -msgstr "Informacje" - #: mod/admin.php:180 msgid "Overview" msgstr "Przegląd" @@ -4117,27 +5402,14 @@ msgstr "Konfiguracja" msgid "Site" msgstr "Strona" -#: mod/admin.php:184 mod/admin.php:1273 mod/admin.php:1788 mod/admin.php:1804 +#: mod/admin.php:184 mod/admin.php:1273 mod/admin.php:1802 mod/admin.php:1818 msgid "Users" msgstr "Użytkownicy" -#: mod/admin.php:185 mod/admin.php:1904 mod/admin.php:1964 mod/settings.php:86 -msgid "Addons" -msgstr "Dodatki" - -#: mod/admin.php:186 mod/admin.php:2173 mod/admin.php:2217 +#: mod/admin.php:186 mod/admin.php:2187 mod/admin.php:2231 msgid "Themes" msgstr "Wygląd" -#: mod/admin.php:187 mod/settings.php:64 -msgid "Additional features" -msgstr "Dodatkowe funkcje" - -#: mod/admin.php:188 mod/admin.php:302 mod/register.php:288 -#: src/Module/Tos.php:48 -msgid "Terms of Service" -msgstr "Warunki usługi" - #: mod/admin.php:189 msgid "Database" msgstr "Baza danych" @@ -4166,11 +5438,11 @@ msgstr "Lista zablokowanych serwerów" msgid "Delete Item" msgstr "Usuń przedmiot" -#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2291 +#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2305 msgid "Logs" msgstr "Logi" -#: mod/admin.php:198 mod/admin.php:2358 +#: mod/admin.php:198 mod/admin.php:2372 msgid "View Logs" msgstr "Zobacz rejestry" @@ -4190,10 +5462,6 @@ msgstr "adres sondy" msgid "check webfinger" msgstr "sprawdź webfinger" -#: mod/admin.php:222 src/Content/Nav.php:217 -msgid "Admin" -msgstr "Administator" - #: mod/admin.php:223 msgid "Addon Features" msgstr "Funkcje dodatkowe" @@ -4204,8 +5472,8 @@ msgstr "Rejestracje użytkownika czekają na potwierdzenie." #: mod/admin.php:301 mod/admin.php:361 mod/admin.php:478 mod/admin.php:520 #: mod/admin.php:717 mod/admin.php:752 mod/admin.php:848 mod/admin.php:1344 -#: mod/admin.php:1787 mod/admin.php:1903 mod/admin.php:1963 mod/admin.php:2172 -#: mod/admin.php:2216 mod/admin.php:2290 mod/admin.php:2357 +#: mod/admin.php:1801 mod/admin.php:1917 mod/admin.php:1977 mod/admin.php:2186 +#: mod/admin.php:2230 mod/admin.php:2304 mod/admin.php:2371 msgid "Administration" msgstr "Administracja" @@ -4244,10 +5512,6 @@ msgstr "Wprowadź tutaj Warunki świadczenia usług dla swojego węzła. Możesz msgid "The blocked domain" msgstr "Zablokowana domena" -#: mod/admin.php:354 mod/admin.php:372 mod/friendica.php:128 -msgid "Reason for the block" -msgstr "Powód blokowania" - #: mod/admin.php:354 mod/admin.php:367 msgid "The reason why you blocked this domain." msgstr "Powód zablokowania tej domeny." @@ -4321,15 +5585,6 @@ msgstr "Serwer dodany do listy zablokowanych." msgid "Site blocklist updated." msgstr "Zaktualizowano listę bloków witryny." -#: mod/admin.php:441 src/Core/Console/GlobalCommunityBlock.php:72 -msgid "The contact has been blocked from the node" -msgstr "Kontakt został zablokowany w węźle" - -#: mod/admin.php:443 src/Core/Console/GlobalCommunityBlock.php:69 -#, php-format -msgid "Could not find any contact entry for this URL (%s)" -msgstr "Nie można znaleźć żadnego kontaktu dla tego adresu URL (%s)" - #: mod/admin.php:450 #, php-format msgid "%s contact unblocked" @@ -4353,7 +5608,7 @@ msgstr "Ta strona pozwala zapobiec wysyłaniu do węzła wiadomości od kontaktu msgid "Block Remote Contact" msgstr "Zablokuj kontakt zdalny" -#: mod/admin.php:482 mod/admin.php:1790 +#: mod/admin.php:482 mod/admin.php:1804 msgid "select all" msgstr "Zaznacz wszystko" @@ -4361,6 +5616,16 @@ msgstr "Zaznacz wszystko" msgid "select none" msgstr "wybierz brak" +#: mod/admin.php:484 mod/admin.php:1813 mod/contacts.php:637 +#: mod/contacts.php:827 mod/contacts.php:1011 +msgid "Block" +msgstr "Zablokuj" + +#: mod/admin.php:485 mod/admin.php:1814 mod/contacts.php:637 +#: mod/contacts.php:827 mod/contacts.php:1011 +msgid "Unblock" +msgstr "Odblokuj" + #: mod/admin.php:486 msgid "No remote contact is blocked from this node." msgstr "Z tego węzła nie jest blokowany kontakt zdalny." @@ -4377,9 +5642,10 @@ msgstr "Zablokuj nowy kontakt zdalny" msgid "Photo" msgstr "Zdjęcie" -#: mod/admin.php:490 mod/profiles.php:394 -msgid "Address" -msgstr "Adres" +#: mod/admin.php:490 mod/admin.php:500 mod/unfollow.php:122 +#: mod/notifications.php:258 mod/follow.php:166 mod/contacts.php:656 +msgid "Profile URL" +msgstr "Adres URL profilu" #: mod/admin.php:498 #, php-format @@ -4459,11 +5725,6 @@ msgstr "Nazwa odbiorcy" msgid "Recipient Profile" msgstr "Profil odbiorcy" -#: mod/admin.php:758 view/theme/frio/theme.php:266 -#: src/Core/NotificationsManager.php:178 src/Content/Nav.php:178 -msgid "Network" -msgstr "Sieć" - #: mod/admin.php:759 msgid "Created" msgstr "Utwórz" @@ -4515,19 +5776,19 @@ msgid "" " check your crontab settings." msgstr "Ostatnie wykonanie robota było w %s UTC. To jest starsze niż jedna godzina. Sprawdź ustawienia crontab." -#: mod/admin.php:816 mod/admin.php:1739 +#: mod/admin.php:816 msgid "Normal Account" msgstr "Konto normalne" -#: mod/admin.php:817 mod/admin.php:1740 +#: mod/admin.php:817 msgid "Automatic Follower Account" msgstr "Automatyczne konto obserwatora" -#: mod/admin.php:818 mod/admin.php:1741 +#: mod/admin.php:818 msgid "Public Forum Account" msgstr "Publiczne konto na forum" -#: mod/admin.php:819 mod/admin.php:1742 +#: mod/admin.php:819 msgid "Automatic Friend Account" msgstr "Automatyczny przyjaciel konta" @@ -4571,10 +5832,6 @@ msgstr "Nie można zanalizować podstawowego adresu URL. Musi mieć co najmniej msgid "Site settings updated." msgstr "Ustawienia strony zaktualizowane" -#: mod/admin.php:1236 mod/settings.php:905 -msgid "No special theme for mobile devices" -msgstr "Brak specialnego motywu dla urządzeń mobilnych" - #: mod/admin.php:1265 msgid "No community page" msgstr "Brak strony społeczności" @@ -4591,6 +5848,11 @@ msgstr "Publikacje wpisy ze sfederowanej sieci" msgid "Public postings from local users and the federated network" msgstr "Publikacje publiczne od użytkowników lokalnych i sieci federacyjnej" +#: mod/admin.php:1272 mod/admin.php:1435 mod/admin.php:1445 +#: mod/contacts.php:572 +msgid "Disabled" +msgstr "Wyłączony" + #: mod/admin.php:1274 msgid "Users, Global Contacts" msgstr "Użytkownicy, kontakty globalne" @@ -4621,7 +5883,7 @@ msgstr "Tryb wielu użytkowników" #: mod/admin.php:1310 msgid "Closed" -msgstr "Zamknięta" +msgstr "Zamknięte" #: mod/admin.php:1311 msgid "Requires approval" @@ -4629,7 +5891,7 @@ msgstr "Wymagane zatwierdzenie." #: mod/admin.php:1312 msgid "Open" -msgstr "Otwarte" +msgstr "Otwarta" #: mod/admin.php:1316 msgid "No SSL policy, links will track page SSL state" @@ -4665,11 +5927,11 @@ msgstr "Rejestracja" #: mod/admin.php:1349 msgid "File upload" -msgstr "Plik załadowano" +msgstr "Przesyłanie plików" #: mod/admin.php:1350 msgid "Policies" -msgstr "zasady" +msgstr "Zasady" #: mod/admin.php:1352 msgid "Auto Discovered Contact Directory" @@ -4816,17 +6078,17 @@ msgstr "Maksymalna długość obrazu" msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." -msgstr "Maksymalna długość najdłuższej strony przesyłanego obrazu w pikselach.\nDomyślnie jest to -1, co oznacza brak limitu." +msgstr "Maksymalna długość w pikselach dłuższego boku przesyłanego obrazu. Wartością domyślną jest -1, co oznacza brak ograniczeń." #: mod/admin.php:1375 msgid "JPEG image quality" -msgstr "jakość obrazu JPEG" +msgstr "Jakość obrazu JPEG" #: mod/admin.php:1375 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." -msgstr "Wczytywanie JPEGS będzie zapisane z tymi ustawieniami jakości [0-100] . Domyslnie jest ustawione 100 co oznacza brak strat jakości . " +msgstr "Przesłane pliki JPEG zostaną zapisane w tym ustawieniu jakości [0-100]. Domyślna wartość to 100, która jest pełną jakością." #: mod/admin.php:1377 msgid "Register policy" @@ -4871,7 +6133,7 @@ msgstr "Dozwolone domeny przyjaciół" msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Lista domen separowana przecinkami które mogą zaprzyjaźnić się z tą stroną . Wildcards są akceptowane . Pozostaw puste by zezwolić każdej domenie na zapryjaźnienie. " +msgstr "Rozdzielana przecinkami lista domen, które mogą nawiązywać przyjaźnie z tą witryną. Symbole wieloznaczne są akceptowane. Pozostaw puste by zezwolić każdej domenie na zaprzyjaźnienie." #: mod/admin.php:1382 msgid "Allowed email domains" @@ -5116,7 +6378,7 @@ msgstr "Maksymalne obciążenie średnie" msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." -msgstr "Maksymalne obciążenie systemu przed dostawą i odpytywaniem jest odroczone - domyślnie 50." +msgstr "Maksymalne obciążenie systemu przed dostawą i odpytywaniem jest odłożone - domyślnie 50." #: mod/admin.php:1410 msgid "Maximum Load Average (Frontend)" @@ -5536,11 +6798,6 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "\n\t\t\tDane logowania są następuje:\n\t\t\tLokalizacja witryny:\t%1$s\n\t\t\tNazwa użytkownika:%2$s\n\t\t\tHasło:%3$s\n\n\t\t\tPo zalogowaniu możesz zmienić hasło do swojego konta na stronie \"Ustawienia\"\n \t\t\tProszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie.\n\n\t\t\tMożesz również dodać podstawowe informacje do swojego domyślnego profilu\n\t\t\t(na stronie \"Profil\"), aby inne osoby mogły łatwo Cię znaleźć.\n\n\t\t\tZalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego,\n\t\t\tdodanie niektórych \"słów kluczowych\" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) - i\n\t\t\tbyć może w jakim kraju mieszkasz; jeśli nie chcesz być bardziej szczegółowy.\n\n\t\t\tW pełni szanujemy Twoje prawo do prywatności i żaden z tych elementów nie jest konieczny.\n\t\t\tJeśli jesteś nowy i nie znasz tutaj nikogo, oni mogą ci pomóc\n\t\t\tmożesz zdobyć nowych interesujących przyjaciół\n\n\t\t\tJeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić w %1$s/Usuń konto\n\n\t\t\tDziękujemy i Zapraszamy do%4$s" -#: mod/admin.php:1611 src/Model/User.php:663 -#, php-format -msgid "Registration details for %s" -msgstr "Szczegóły rejestracji dla %s" - #: mod/admin.php:1621 #, php-format msgid "%s user blocked/unblocked" @@ -5574,134 +6831,137 @@ msgstr "Użytkownik '%s' odblokowany" msgid "User '%s' blocked" msgstr "Użytkownik '%s' zablokowany" -#: mod/admin.php:1781 mod/admin.php:1793 mod/admin.php:1806 mod/admin.php:1824 -#: src/Content/ContactSelector.php:82 -msgid "Email" -msgstr "E-mail" +#: mod/admin.php:1743 +msgid "Private Forum" +msgstr "Prywatne forum" -#: mod/admin.php:1781 mod/admin.php:1806 +#: mod/admin.php:1796 mod/admin.php:1820 msgid "Register date" msgstr "Data rejestracji" -#: mod/admin.php:1781 mod/admin.php:1806 +#: mod/admin.php:1796 mod/admin.php:1820 msgid "Last login" msgstr "Ostatnie logowanie" -#: mod/admin.php:1781 mod/admin.php:1806 +#: mod/admin.php:1796 mod/admin.php:1820 msgid "Last item" msgstr "Ostatni element" -#: mod/admin.php:1781 mod/settings.php:55 -msgid "Account" -msgstr "Konto" +#: mod/admin.php:1796 +msgid "Type" +msgstr "Typu" -#: mod/admin.php:1789 +#: mod/admin.php:1803 msgid "Add User" msgstr "Dodaj użytkownika" -#: mod/admin.php:1791 +#: mod/admin.php:1805 msgid "User registrations waiting for confirm" -msgstr "zarejestrowany użytkownik czeka na potwierdzenie" +msgstr "Zarejestrowani użytkownicy czekający na potwierdzenie" -#: mod/admin.php:1792 +#: mod/admin.php:1806 msgid "User waiting for permanent deletion" msgstr "Użytkownik czekający na trwałe usunięcie" -#: mod/admin.php:1793 +#: mod/admin.php:1807 msgid "Request date" msgstr "Data prośby" -#: mod/admin.php:1794 +#: mod/admin.php:1808 msgid "No registrations." -msgstr "brak rejestracji" +msgstr "Brak rejestracji." -#: mod/admin.php:1795 +#: mod/admin.php:1809 msgid "Note from the user" msgstr "Uwaga od użytkownika" -#: mod/admin.php:1797 +#: mod/admin.php:1810 mod/notifications.php:179 mod/notifications.php:264 +msgid "Approve" +msgstr "Zatwierdź" + +#: mod/admin.php:1811 msgid "Deny" msgstr "Odmów" -#: mod/admin.php:1801 +#: mod/admin.php:1815 msgid "Site admin" msgstr "Administracja stroną" -#: mod/admin.php:1802 +#: mod/admin.php:1816 msgid "Account expired" msgstr "Konto wygasło." -#: mod/admin.php:1805 +#: mod/admin.php:1819 msgid "New User" msgstr "Nowy użytkownik" -#: mod/admin.php:1806 +#: mod/admin.php:1820 msgid "Deleted since" msgstr "Skasowany od" -#: mod/admin.php:1811 +#: mod/admin.php:1825 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Zaznaczeni użytkownicy zostaną usunięci!\\n\\nWszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?" -#: mod/admin.php:1812 +#: mod/admin.php:1826 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "Użytkownik {0} zostanie usunięty!\\n\\nWszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?" -#: mod/admin.php:1822 +#: mod/admin.php:1836 msgid "Name of the new user." msgstr "Nazwa nowego użytkownika." -#: mod/admin.php:1823 +#: mod/admin.php:1837 msgid "Nickname" msgstr "Pseudonim" -#: mod/admin.php:1823 +#: mod/admin.php:1837 msgid "Nickname of the new user." msgstr "Pseudonim nowego użytkownika." -#: mod/admin.php:1824 +#: mod/admin.php:1838 msgid "Email address of the new user." msgstr "Adres email nowego użytkownika." -#: mod/admin.php:1866 +#: mod/admin.php:1880 #, php-format msgid "Addon %s disabled." msgstr "Dodatek %s wyłączony." -#: mod/admin.php:1870 +#: mod/admin.php:1884 #, php-format msgid "Addon %s enabled." msgstr "Dodatek %s włączony." -#: mod/admin.php:1880 mod/admin.php:2129 +#: mod/admin.php:1894 mod/admin.php:2143 msgid "Disable" msgstr "Wyłącz" -#: mod/admin.php:1883 mod/admin.php:2132 +#: mod/admin.php:1897 mod/admin.php:2146 msgid "Enable" msgstr "Zezwól" -#: mod/admin.php:1905 mod/admin.php:2174 +#: mod/admin.php:1919 mod/admin.php:2188 msgid "Toggle" msgstr "Włącz" -#: mod/admin.php:1913 mod/admin.php:2183 +#: mod/admin.php:1927 mod/admin.php:2197 msgid "Author: " msgstr "Autor: " -#: mod/admin.php:1914 mod/admin.php:2184 +#: mod/admin.php:1928 mod/admin.php:2198 msgid "Maintainer: " msgstr "Opiekun:" -#: mod/admin.php:1966 +#: mod/admin.php:1980 msgid "Reload active addons" msgstr "Załaduj ponownie aktywne dodatki" -#: mod/admin.php:1971 +#: mod/admin.php:1985 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -5709,70 +6969,70 @@ msgid "" " the open addon registry at %2$s" msgstr "W twoim węźle nie ma obecnie żadnych dodatków. Możesz znaleźć oficjalne repozytorium dodatków na %1$s i możesz znaleźć inne interesujące dodatki w otwartym rejestrze dodatków na %2$s" -#: mod/admin.php:2091 +#: mod/admin.php:2105 msgid "No themes found." msgstr "Nie znaleziono motywów." -#: mod/admin.php:2165 +#: mod/admin.php:2179 msgid "Screenshot" msgstr "Zrzut ekranu" -#: mod/admin.php:2219 +#: mod/admin.php:2233 msgid "Reload active themes" msgstr "Przeładuj aktywne motywy" -#: mod/admin.php:2224 +#: mod/admin.php:2238 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "Nie znaleziono motywów w systemie. Powinny zostać umieszczone %1$s" -#: mod/admin.php:2225 +#: mod/admin.php:2239 msgid "[Experimental]" msgstr "[Eksperymentalne]" -#: mod/admin.php:2226 +#: mod/admin.php:2240 msgid "[Unsupported]" msgstr "[Niewspieralne]" -#: mod/admin.php:2250 +#: mod/admin.php:2264 msgid "Log settings updated." msgstr "Zaktualizowano ustawienia logów." -#: mod/admin.php:2282 +#: mod/admin.php:2296 msgid "PHP log currently enabled." msgstr "Dziennik PHP jest obecnie włączony." -#: mod/admin.php:2284 +#: mod/admin.php:2298 msgid "PHP log currently disabled." msgstr "Dziennik PHP jest obecnie wyłączony." -#: mod/admin.php:2293 +#: mod/admin.php:2307 msgid "Clear" msgstr "Wyczyść" -#: mod/admin.php:2297 +#: mod/admin.php:2311 msgid "Enable Debugging" msgstr "Włącz debugowanie" -#: mod/admin.php:2298 +#: mod/admin.php:2312 msgid "Log file" msgstr "Plik logów" -#: mod/admin.php:2298 +#: mod/admin.php:2312 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Musi być zapisywalny przez serwer sieciowy. W stosunku do katalogu najwyższego poziomu Friendica." -#: mod/admin.php:2299 +#: mod/admin.php:2313 msgid "Log level" msgstr "Poziom logów" -#: mod/admin.php:2301 +#: mod/admin.php:2315 msgid "PHP logging" msgstr "Logowanie w PHP" -#: mod/admin.php:2302 +#: mod/admin.php:2316 msgid "" "To enable logging of PHP errors and warnings you can add the following to " "the .htconfig.php file of your installation. The filename set in the " @@ -5781,146 +7041,924 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "Aby włączyć rejestrowanie błędów i ostrzeżeń PHP, możesz dodać następujące dane do pliku .htconfig.php instalacji. Nazwa pliku ustawiona w linii 'error_log' odnosi się do katalogu najwyższego poziomu friendiki i musi być zapisywalna przez serwer WWW. Opcja '1' dla 'log_errors' i 'display_errors' polega na włączeniu tych opcji, ustawieniu na '0', aby je wyłączyć." -#: mod/admin.php:2333 +#: mod/admin.php:2347 #, php-format msgid "" "Error trying to open %1$s log file.\\r\\n
Check to see " "if file %1$s exist and is readable." msgstr "Błąd podczas próby otwarcia %1$s pliku dziennika. \\r\\n
Sprawdź, czy plik %1$s istnieje i czy można go odczytać." -#: mod/admin.php:2337 +#: mod/admin.php:2351 #, php-format msgid "" "Couldn't open %1$s log file.\\r\\n
Check to see if file" " %1$s is readable." msgstr "Nie można otworzyć %1$spliku dziennika. \\r\\n
Sprawdź, czy plik %1$s jest czytelny." -#: mod/admin.php:2428 mod/admin.php:2429 mod/settings.php:775 -msgid "Off" -msgstr "Wyłącz" - -#: mod/admin.php:2428 mod/admin.php:2429 mod/settings.php:775 -msgid "On" -msgstr "Włącz" - -#: mod/admin.php:2429 +#: mod/admin.php:2443 #, php-format msgid "Lock feature %s" msgstr "Funkcja blokady %s" -#: mod/admin.php:2437 +#: mod/admin.php:2451 msgid "Manage Additional Features" -msgstr "Zarządzaj dodatkowymi funkcjami" +msgstr "Zarządzanie dodatkowymi funkcjami" -#: mod/babel.php:22 -msgid "Source input" -msgstr "Źródło wejściowe" +#: mod/delegate.php:37 +msgid "Parent user not found." +msgstr "Nie znaleziono użytkownika nadrzędnego." -#: mod/babel.php:28 -msgid "BBCode::convert (raw HTML)" -msgstr "BBCode:: konwersjia (raw HTML)" +#: mod/delegate.php:144 +msgid "No parent user" +msgstr "Brak nadrzędnego użytkownika" -#: mod/babel.php:33 -msgid "BBCode::convert" -msgstr "BBCode::przekształć" +#: mod/delegate.php:159 +msgid "Parent Password:" +msgstr "Hasło nadrzędne:" -#: mod/babel.php:39 -msgid "BBCode::convert => HTML::toBBCode" -msgstr "BBCode::przekształć => HTML::toBBCode" +#: mod/delegate.php:159 +msgid "" +"Please enter the password of the parent account to legitimize your request." +msgstr "Wprowadź hasło konta nadrzędnego, aby legalizować swoje żądanie." -#: mod/babel.php:45 -msgid "BBCode::toMarkdown" -msgstr "BBCode::toMarkdown" +#: mod/delegate.php:164 +msgid "Parent User" +msgstr "Użytkownik nadrzędny" -#: mod/babel.php:51 -msgid "BBCode::toMarkdown => Markdown::convert" -msgstr "BBCode::toMarkdown => Markdown::przekształć" +#: mod/delegate.php:167 +msgid "" +"Parent users have total control about this account, including the account " +"settings. Please double check whom you give this access." +msgstr "Użytkownicy nadrzędni mają pełną kontrolę nad tym kontem, w tym także ustawienia konta. Sprawdź dokładnie, komu przyznasz ten dostęp." -#: mod/babel.php:57 -msgid "BBCode::toMarkdown => Markdown::toBBCode" -msgstr "BBCode::toMarkdown => Markdown::toBBCode" +#: mod/delegate.php:170 +msgid "Delegates" +msgstr "Oddeleguj" -#: mod/babel.php:63 -msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -msgstr "BBCode::toMarkdown => Markdown::przekształć => HTML::toBBCode" +#: mod/delegate.php:172 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "Delegaci mogą zarządzać wszystkimi aspektami tego konta/strony, z wyjątkiem podstawowych ustawień konta. Nie przekazuj swojego konta osobistego nikomu, komu nie ufasz całkowicie." -#: mod/babel.php:70 -msgid "Source input \\x28Diaspora format\\x29" -msgstr "Źródło wejściowe \\x28Diaspora format\\x29" +#: mod/delegate.php:173 +msgid "Existing Page Delegates" +msgstr "Obecni delegaci stron" -#: mod/babel.php:76 -msgid "Markdown::toBBCode" -msgstr "Markdown::toBBCode" +#: mod/delegate.php:175 +msgid "Potential Delegates" +msgstr "Potencjalni delegaci" -#: mod/babel.php:83 -msgid "Raw HTML input" -msgstr "Surowe wejście HTML" +#: mod/delegate.php:177 mod/tagrm.php:98 +msgid "Remove" +msgstr "Usuń" -#: mod/babel.php:88 -msgid "HTML Input" -msgstr "Wejście HTML" +#: mod/delegate.php:178 +msgid "Add" +msgstr "Dodaj" -#: mod/babel.php:94 -msgid "HTML::toBBCode" -msgstr "HTML::toBBCode" +#: mod/delegate.php:179 +msgid "No entries." +msgstr "Brak wpisów." -#: mod/babel.php:100 -msgid "HTML::toPlaintext" -msgstr "HTML::toPlaintext" +#: mod/photos.php:109 mod/photos.php:1713 +msgid "Recent Photos" +msgstr "Ostatnio dodane zdjęcia" -#: mod/babel.php:108 -msgid "Source text" -msgstr "Tekst źródłowy" +#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715 +msgid "Upload New Photos" +msgstr "Wyślij nowe zdjęcie" -#: mod/babel.php:109 -msgid "BBCode" -msgstr "BBCode" +#: mod/photos.php:184 +msgid "Contact information unavailable" +msgstr "Informacje kontaktowe są niedostępne." -#: mod/babel.php:110 -msgid "Markdown" -msgstr "Markdown" +#: mod/photos.php:204 +msgid "Album not found." +msgstr "Album nie znaleziony" -#: mod/babel.php:111 -msgid "HTML" -msgstr "HTML" +#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161 +msgid "Delete Album" +msgstr "Usuń album" -#: mod/directory.php:152 src/Model/Profile.php:421 src/Model/Profile.php:771 -msgid "Status:" -msgstr "Status:" +#: mod/photos.php:243 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?" -#: mod/directory.php:153 src/Model/Profile.php:422 src/Model/Profile.php:788 -msgid "Homepage:" -msgstr "Strona główna:" +#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446 +msgid "Delete Photo" +msgstr "Usuń zdjęcie" -#: mod/directory.php:202 view/theme/vier/theme.php:201 -msgid "Global Directory" -msgstr "Globalny Katalog" +#: mod/photos.php:319 +msgid "Do you really want to delete this photo?" +msgstr "Czy na pewno chcesz usunąć to zdjęcie ?" -#: mod/directory.php:204 -msgid "Find on this site" -msgstr "Znajdź na tej stronie" +#: mod/photos.php:667 +msgid "a photo" +msgstr "zdjęcie" -#: mod/directory.php:206 -msgid "Results for:" -msgstr "Wyniki dla:" - -#: mod/directory.php:208 -msgid "Site Directory" -msgstr "Katalog Witryny" - -#: mod/directory.php:213 -msgid "No entries (some entries may be hidden)." -msgstr "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)." - -#: mod/dirfind.php:49 +#: mod/photos.php:667 #, php-format -msgid "People Search - %s" -msgstr "Szukaj osób - %s" +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$szostał oznaczony tagiem %2$s przez %3$s" -#: mod/dirfind.php:60 +#: mod/photos.php:769 +msgid "Image upload didn't complete, please try again" +msgstr "Przesyłanie zdjęć nie zostało zakończone, spróbuj ponownie" + +#: mod/photos.php:772 +msgid "Image file is missing" +msgstr "Brak pliku obrazu" + +#: mod/photos.php:777 +msgid "" +"Server can't accept new file upload at this time, please contact your " +"administrator" +msgstr "Serwer nie może teraz przyjąć nowego pliku, skontaktuj się z administratorem" + +#: mod/photos.php:803 +msgid "Image file is empty." +msgstr "Plik obrazka jest pusty." + +#: mod/photos.php:940 +msgid "No photos selected" +msgstr "Nie zaznaczono zdjęć" + +#: mod/photos.php:1036 mod/videos.php:309 +msgid "Access to this item is restricted." +msgstr "Dostęp do tego obiektu jest ograniczony." + +#: mod/photos.php:1090 +msgid "Upload Photos" +msgstr "Prześlij zdjęcia" + +#: mod/photos.php:1094 mod/photos.php:1156 +msgid "New album name: " +msgstr "Nazwa nowego albumu:" + +#: mod/photos.php:1095 +msgid "or existing album name: " +msgstr "lub istniejąca nazwa albumu:" + +#: mod/photos.php:1096 +msgid "Do not show a status post for this upload" +msgstr "Nie pokazuj statusu postów dla tego wysłania" + +#: mod/photos.php:1167 +msgid "Edit Album" +msgstr "Edytuj album" + +#: mod/photos.php:1172 +msgid "Show Newest First" +msgstr "Najpierw pokaż najnowsze" + +#: mod/photos.php:1174 +msgid "Show Oldest First" +msgstr "Najpierw pokaż najstarsze" + +#: mod/photos.php:1195 mod/photos.php:1698 +msgid "View Photo" +msgstr "Zobacz zdjęcie" + +#: mod/photos.php:1236 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Odmowa dostępu. Dostęp do tych danych może być ograniczony." + +#: mod/photos.php:1238 +msgid "Photo not available" +msgstr "Zdjęcie niedostępne" + +#: mod/photos.php:1301 +msgid "View photo" +msgstr "Zobacz zdjęcie" + +#: mod/photos.php:1301 +msgid "Edit photo" +msgstr "Edytuj zdjęcie" + +#: mod/photos.php:1302 +msgid "Use as profile photo" +msgstr "Ustaw jako zdjęcie profilowe" + +#: mod/photos.php:1327 +msgid "View Full Size" +msgstr "Zobacz w pełnym rozmiarze" + +#: mod/photos.php:1414 +msgid "Tags: " +msgstr "Tagi:" + +#: mod/photos.php:1417 +msgid "[Remove any tag]" +msgstr "[Usunąć znacznik]" + +#: mod/photos.php:1432 +msgid "New album name" +msgstr "Nazwa nowego albumu" + +#: mod/photos.php:1433 +msgid "Caption" +msgstr "Zawartość" + +#: mod/photos.php:1434 +msgid "Add a Tag" +msgstr "Dodaj tag" + +#: mod/photos.php:1434 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1435 +msgid "Do not rotate" +msgstr "Nie obracaj" + +#: mod/photos.php:1436 +msgid "Rotate CW (right)" +msgstr "Obróć CW (w prawo)" + +#: mod/photos.php:1437 +msgid "Rotate CCW (left)" +msgstr "Obróć CCW (w lewo)" + +#: mod/photos.php:1634 +msgid "Map" +msgstr "Mapa" + +#: mod/photos.php:1704 mod/videos.php:387 +msgid "View Album" +msgstr "Zobacz album" + +#: mod/nogroup.php:43 mod/contacts.php:960 +msgid "Edit contact" +msgstr "Edytuj kontakt" + +#: mod/nogroup.php:63 +msgid "Contacts who are not members of a group" +msgstr "Kontakty spoza członków grupy" + +#: mod/community.php:46 +msgid "Community option not available." +msgstr "Opcja wspólnotowa jest niedostępna." + +#: mod/community.php:63 +msgid "Not available." +msgstr "Niedostępne." + +#: mod/community.php:76 +msgid "Local Community" +msgstr "Lokalna społeczność" + +#: mod/community.php:79 +msgid "Posts from local users on this server" +msgstr "Wpisy od lokalnych użytkowników na tym serwerze" + +#: mod/community.php:87 +msgid "Global Community" +msgstr "Globalna społeczność" + +#: mod/community.php:90 +msgid "Posts from users of the whole federated network" +msgstr "Wpisy od użytkowników całej sieci stowarzyszonej" + +#: mod/community.php:136 mod/search.php:228 +msgid "No results." +msgstr "Brak wyników." + +#: mod/community.php:180 +msgid "" +"This community stream shows all public posts received by this node. They may" +" not reflect the opinions of this node’s users." +msgstr "Ten strumień społeczności pokazuje wszystkie publiczne posty otrzymane przez ten węzeł. Mogą nie odzwierciedlać opinii użytkowników tego węzła." + +#: mod/message.php:73 mod/wallmessage.php:57 +msgid "No recipient selected." +msgstr "Nie wybrano odbiorcy." + +#: mod/message.php:77 +msgid "Unable to locate contact information." +msgstr "Nie można znaleźć informacji kontaktowych." + +#: mod/message.php:80 mod/wallmessage.php:63 +msgid "Message could not be sent." +msgstr "Wiadomość nie może zostać wysłana" + +#: mod/message.php:83 mod/wallmessage.php:66 +msgid "Message collection failure." +msgstr "Błąd zbierania komunikatów." + +#: mod/message.php:86 mod/wallmessage.php:69 +msgid "Message sent." +msgstr "Wysłano." + +#: mod/message.php:136 +msgid "Do you really want to delete this message?" +msgstr "Czy na pewno chcesz usunąć tę wiadomość?" + +#: mod/message.php:156 +msgid "Message deleted." +msgstr "Wiadomość usunięta." + +#: mod/message.php:185 +msgid "Conversation removed." +msgstr "Rozmowa usunięta." + +#: mod/message.php:250 mod/wallmessage.php:132 +msgid "Send Private Message" +msgstr "Wyślij prywatną wiadomość" + +#: mod/message.php:251 mod/message.php:421 mod/wallmessage.php:134 +msgid "To:" +msgstr "Do:" + +#: mod/message.php:255 mod/message.php:423 mod/wallmessage.php:135 +msgid "Subject:" +msgstr "Temat:" + +#: mod/message.php:291 +msgid "No messages." +msgstr "Brak wiadomości." + +#: mod/message.php:330 +msgid "Message not available." +msgstr "Wiadomość nie jest dostępna." + +#: mod/message.php:397 +msgid "Delete message" +msgstr "Usuń wiadomość" + +#: mod/message.php:399 mod/message.php:500 +msgid "D, d M Y - g:i A" +msgstr "D, d M R - g:m AM/PM" + +#: mod/message.php:414 mod/message.php:497 +msgid "Delete conversation" +msgstr "Usuń rozmowę" + +#: mod/message.php:416 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Brak bezpiecznej komunikacji. Możesz odpowiedzieć na stronie profilu nadawcy." + +#: mod/message.php:420 +msgid "Send Reply" +msgstr "Odpowiedz" + +#: mod/message.php:471 #, php-format -msgid "Forum Search - %s" -msgstr "Przeszukiwanie forum - %s" +msgid "Unknown sender - %s" +msgstr "Nieznany nadawca - %s" + +#: mod/message.php:473 +#, php-format +msgid "You and %s" +msgstr "Ty i %s" + +#: mod/message.php:475 +#, php-format +msgid "%s and You" +msgstr "%s i ty" + +#: mod/message.php:503 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] " %d wiadomość" +msgstr[1] " %d wiadomości" +msgstr[2] " %d wiadomości" +msgstr[3] " %d wiadomości" + +#: mod/videos.php:139 +msgid "Do you really want to delete this video?" +msgstr "Czy na pewno chcesz usunąć ten film wideo?" + +#: mod/videos.php:144 +msgid "Delete Video" +msgstr "Usuń wideo" + +#: mod/videos.php:207 +msgid "No videos selected" +msgstr "Nie zaznaczono filmów" + +#: mod/videos.php:396 +msgid "Recent Videos" +msgstr "Ostatnio dodane filmy" + +#: mod/videos.php:398 +msgid "Upload New Videos" +msgstr "Wstaw nowe filmy" + +#: mod/credits.php:18 +msgid "Credits" +msgstr "Zaufany" + +#: mod/credits.php:19 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" +msgstr "Friendica to projekt społecznościowy, który nie byłby możliwy bez pomocy wielu osób. Oto lista osób, które przyczyniły się do tworzenia kodu lub tłumaczenia Friendica. Dziękuję wam wszystkim!" + +#: mod/unfollow.php:34 +msgid "Contact wasn't found or can't be unfollowed." +msgstr "Kontakt nie został znaleziony lub nie można go pominąć." + +#: mod/unfollow.php:47 +msgid "Contact unfollowed" +msgstr "Skontaktuj się z obserwowanym" + +#: mod/unfollow.php:65 mod/dfrn_request.php:662 mod/follow.php:62 +msgid "Submit Request" +msgstr "Wyślij zgłoszenie" + +#: mod/unfollow.php:73 +msgid "You aren't a friend of this contact." +msgstr "Nie jesteś przyjacielem tego kontaktu." + +#: mod/unfollow.php:79 +msgid "Unfollowing is currently not supported by your network." +msgstr "Brak obserwowania nie jest obecnie obsługiwany przez twoją sieć." + +#: mod/unfollow.php:100 mod/contacts.php:599 +msgid "Disconnect/Unfollow" +msgstr "Rozłącz/Nie obserwuj" + +#: mod/unfollow.php:113 mod/dfrn_request.php:660 mod/follow.php:157 +msgid "Your Identity Address:" +msgstr "Twój adres tożsamości:" + +#: mod/wall_attach.php:24 mod/wall_attach.php:32 mod/wall_attach.php:83 +#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112 +#: mod/wall_upload.php:155 mod/wall_upload.php:158 +msgid "Invalid request." +msgstr "Nieprawidłowe żądanie." + +#: mod/wall_attach.php:101 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Przepraszam, może twój przesyłany plik jest większy niż pozwala konfiguracja PHP" + +#: mod/wall_attach.php:101 +msgid "Or - did you try to upload an empty file?" +msgstr "Lub - czy próbowałeś załadować pusty plik?" + +#: mod/wall_attach.php:112 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Plik przekracza limit rozmiaru wynoszący %s" + +#: mod/wall_attach.php:136 mod/wall_attach.php:152 +msgid "File upload failed." +msgstr "Przesyłanie pliku nie powiodło się." + +#: mod/profile.php:194 +msgid "Tips for New Members" +msgstr "Wskazówki dla nowych użytkowników" + +#: mod/localtime.php:33 +msgid "Time Conversion" +msgstr "Zmiana czasu" + +#: mod/localtime.php:35 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica udostępnia tę usługę do udostępniania wydarzeń innym sieciom i znajomym w nieznanych strefach czasowych." + +#: mod/localtime.php:39 +#, php-format +msgid "UTC time: %s" +msgstr "Czas UTC %s" + +#: mod/localtime.php:42 +#, php-format +msgid "Current timezone: %s" +msgstr "Obecna strefa czasowa: %s" + +#: mod/localtime.php:46 +#, php-format +msgid "Converted localtime: %s" +msgstr "Zmień strefę czasową: %s" + +#: mod/localtime.php:52 +msgid "Please select your timezone:" +msgstr "Wybierz swoją strefę czasową:" + +#: mod/dfrn_request.php:94 +msgid "This introduction has already been accepted." +msgstr "To wprowadzenie zostało już zaakceptowane." + +#: mod/dfrn_request.php:112 mod/dfrn_request.php:359 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Lokalizacja profilu jest nieprawidłowa lub nie zawiera informacji o profilu." + +#: mod/dfrn_request.php:116 mod/dfrn_request.php:363 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik." + +#: mod/dfrn_request.php:119 mod/dfrn_request.php:366 +msgid "Warning: profile location has no profile photo." +msgstr "Ostrzeżenie: położenie profilu nie zawiera zdjęcia." + +#: mod/dfrn_request.php:123 mod/dfrn_request.php:370 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d wymagany parametr nie został znaleziony w podanej lokacji" +msgstr[1] "%d wymagane parametry nie zostały znalezione w podanej lokacji" +msgstr[2] "%d wymagany parametr nie został znaleziony w podanej lokacji" +msgstr[3] "%d wymagany parametr nie został znaleziony w podanej lokacji" + +#: mod/dfrn_request.php:162 +msgid "Introduction complete." +msgstr "Wprowadzanie zakończone." + +#: mod/dfrn_request.php:199 +msgid "Unrecoverable protocol error." +msgstr "Nieodwracalny błąd protokołu." + +#: mod/dfrn_request.php:226 +msgid "Profile unavailable." +msgstr "Profil niedostępny." + +#: mod/dfrn_request.php:248 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s otrzymał dziś zbyt wiele żądań połączeń." + +#: mod/dfrn_request.php:249 +msgid "Spam protection measures have been invoked." +msgstr "Wprowadzono zabezpieczenia przed spamem." + +#: mod/dfrn_request.php:250 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Przyjaciele namawiają do spróbowania za 24h." + +#: mod/dfrn_request.php:280 +msgid "Invalid locator" +msgstr "Nieprawidłowy lokalizator" + +#: mod/dfrn_request.php:316 +msgid "You have already introduced yourself here." +msgstr "Już się tu przedstawiłeś." + +#: mod/dfrn_request.php:319 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Wygląda na to, że już jesteście przyjaciółmi z %s" + +#: mod/dfrn_request.php:339 +msgid "Invalid profile URL." +msgstr "Nieprawidłowy URL profilu." + +#: mod/dfrn_request.php:419 mod/contacts.php:230 +msgid "Failed to update contact record." +msgstr "Aktualizacja rekordu kontaktu nie powiodła się." + +#: mod/dfrn_request.php:439 +msgid "Your introduction has been sent." +msgstr "Twoje dane zostały wysłane." + +#: mod/dfrn_request.php:477 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "Zdalnej subskrypcji nie można wykonać dla swojej sieci. Proszę zasubskrybuj bezpośrednio w swoim systemie." + +#: mod/dfrn_request.php:493 +msgid "Please login to confirm introduction." +msgstr "Zaloguj się, aby potwierdzić wprowadzenie." + +#: mod/dfrn_request.php:501 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego użytkownika. " + +#: mod/dfrn_request.php:515 mod/dfrn_request.php:532 +msgid "Confirm" +msgstr "Potwierdź" + +#: mod/dfrn_request.php:527 +msgid "Hide this contact" +msgstr "Ukryj kontakt" + +#: mod/dfrn_request.php:530 +#, php-format +msgid "Welcome home %s." +msgstr "Welcome home %s." + +#: mod/dfrn_request.php:531 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s." + +#: mod/dfrn_request.php:642 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Wprowadź swój 'Adres tożsamości' z jednej z następujących obsługiwanych sieci komunikacyjnych:" + +#: mod/dfrn_request.php:645 +#, php-format +msgid "" +"If you are not yet a member of the free social web, follow " +"this link to find a public Friendica site and join us today." +msgstr "Jeśli nie jesteś jeszcze członkiem darmowej sieci społecznościowej, kliknij ten link, aby znaleźć publiczną witrynę Friendica i dołącz do nas już dziś." + +#: mod/dfrn_request.php:650 +msgid "Friend/Connection Request" +msgstr "Przyjaciel/Prośba o połączenie" + +#: mod/dfrn_request.php:651 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@gnusocial.de" +msgstr "Przykłady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de" + +#: mod/dfrn_request.php:652 mod/follow.php:149 +msgid "Please answer the following:" +msgstr "Proszę odpowiedzieć na następujące pytania:" + +#: mod/dfrn_request.php:653 mod/follow.php:150 +#, php-format +msgid "Does %s know you?" +msgstr "Czy %s Cię zna?" + +#: mod/dfrn_request.php:654 mod/follow.php:151 +msgid "Add a personal note:" +msgstr "Dodaj osobistą notkę:" + +#: mod/dfrn_request.php:657 +msgid "GNU Social (Pleroma, Mastodon)" +msgstr "GNU Social (Pleroma, Mastodon)" + +#: mod/dfrn_request.php:658 +msgid "Diaspora (Socialhome, Hubzilla)" +msgstr "Diaspora (Socialhome, Hubzilla)" + +#: mod/dfrn_request.php:659 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr "- proszę nie używać tego formularza. Zamiast tego wpisz %s do paska wyszukiwania Diaspory." + +#: mod/crepair.php:87 +msgid "Contact settings applied." +msgstr "Ustawienia kontaktu zaktualizowane." + +#: mod/crepair.php:89 +msgid "Contact update failed." +msgstr "Nie udało się zaktualizować kontaktu." + +#: mod/crepair.php:114 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "OSTRZEŻENIE: Jest to bardzo zaawansowane i jeśli wprowadzisz niepoprawne informacje, twoja komunikacja z tym kontaktem może przestać działać." + +#: mod/crepair.php:115 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj teraz przycisku 'powrót' na swojej przeglądarce." + +#: mod/crepair.php:129 mod/crepair.php:131 +msgid "No mirroring" +msgstr "Bez dublowania" + +#: mod/crepair.php:129 +msgid "Mirror as forwarded posting" +msgstr "Przesłany lustrzany post" + +#: mod/crepair.php:129 mod/crepair.php:131 +msgid "Mirror as my own posting" +msgstr "Lustro mojego własnego komentarza" + +#: mod/crepair.php:144 +msgid "Return to contact editor" +msgstr "Wróć do edytora kontaktów" + +#: mod/crepair.php:146 +msgid "Refetch contact data" +msgstr "Odśwież dane kontaktowe" + +#: mod/crepair.php:149 +msgid "Remote Self" +msgstr "Zdalny Self" + +#: mod/crepair.php:152 +msgid "Mirror postings from this contact" +msgstr "Publikacje lustrzane od tego kontaktu" + +#: mod/crepair.php:154 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Oznacz ten kontakt jako remote_self, spowoduje to, że friendica odeśle nowe wpisy z tego kontaktu." + +#: mod/crepair.php:159 +msgid "Account Nickname" +msgstr "Nazwa konta" + +#: mod/crepair.php:160 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Zmienna - zastępuje Imię/Pseudonim" + +#: mod/crepair.php:161 +msgid "Account URL" +msgstr "URL konta" + +#: mod/crepair.php:162 +msgid "Friend Request URL" +msgstr "URL żądajacy znajomości" + +#: mod/crepair.php:163 +msgid "Friend Confirm URL" +msgstr "URL potwierdzający znajomość" + +#: mod/crepair.php:164 +msgid "Notification Endpoint URL" +msgstr "Zgłoszenie Punktu Końcowego URL" + +#: mod/crepair.php:165 +msgid "Poll/Feed URL" +msgstr "Adres Ankiety/RSS" + +#: mod/crepair.php:166 +msgid "New photo from this URL" +msgstr "Nowe zdjęcie z tego adresu URL" + +#: mod/home.php:39 +#, php-format +msgid "Welcome to %s" +msgstr "Witamy w %s" + +#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%1$s witamy %2$s" + +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Zaczepić" + +#: mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: mod/poke.php:194 +msgid "Recipient" +msgstr "Odbiorca" + +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Wybierz, co chcesz zrobić" + +#: mod/poke.php:198 +msgid "Make this post private" +msgstr "Ustaw ten post jako prywatny" + +#: mod/oexchange.php:30 +msgid "Post successful." +msgstr "Post dodany pomyślnie" + +#: mod/viewsrc.php:12 +msgid "Access denied." +msgstr "Brak dostępu" + +#: mod/notifications.php:37 +msgid "Invalid request identifier." +msgstr "Nieprawidłowe żądanie identyfikatora." + +#: mod/notifications.php:46 mod/notifications.php:183 +#: mod/notifications.php:230 +msgid "Discard" +msgstr "Odrzuć" + +#: mod/notifications.php:62 mod/notifications.php:182 +#: mod/notifications.php:266 mod/contacts.php:638 mod/contacts.php:828 +#: mod/contacts.php:1019 +msgid "Ignore" +msgstr "Ignoruj" + +#: mod/notifications.php:107 +msgid "Network Notifications" +msgstr "Powiadomienia sieciowe" + +#: mod/notifications.php:119 +msgid "Personal Notifications" +msgstr "Prywatne powiadomienia" + +#: mod/notifications.php:125 +msgid "Home Notifications" +msgstr "Powiadomienia domowe" + +#: mod/notifications.php:155 +msgid "Show Ignored Requests" +msgstr "Pokaż ignorowane żądania" + +#: mod/notifications.php:155 +msgid "Hide Ignored Requests" +msgstr "Ukryj zignorowane prośby" + +#: mod/notifications.php:167 mod/notifications.php:237 +msgid "Notification type: " +msgstr "Typ powiadomienia:" + +#: mod/notifications.php:170 +#, php-format +msgid "suggested by %s" +msgstr "zaproponowane przez %s" + +#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646 +msgid "Hide this contact from others" +msgstr "Ukryj ten kontakt przed innymi" + +#: mod/notifications.php:176 mod/notifications.php:255 +msgid "Post a new friend activity" +msgstr "Opublikuj aktywność nowego znajomego" + +#: mod/notifications.php:176 mod/notifications.php:255 +msgid "if applicable" +msgstr "jeśli dotyczy" + +#: mod/notifications.php:198 +msgid "Claims to be known to you: " +msgstr "Twierdzi, że go znasz:" + +#: mod/notifications.php:199 +msgid "yes" +msgstr "tak" + +#: mod/notifications.php:199 +msgid "no" +msgstr "nie" + +#: mod/notifications.php:200 mod/notifications.php:205 +msgid "Shall your connection be bidirectional or not?" +msgstr "Czy twoje połączenie ma być dwukierunkowe, czy nie?" + +#: mod/notifications.php:201 mod/notifications.php:206 +#, php-format +msgid "" +"Accepting %s as a friend allows %s to subscribe to your posts, and you will " +"also receive updates from them in your news feed." +msgstr "Przyjmowanie %s jako znajomego pozwala %s zasubskrybować twoje posty, a także otrzymywać od nich aktualizacje w swoim kanale wiadomości." + +#: mod/notifications.php:202 +#, php-format +msgid "" +"Accepting %s as a subscriber allows them to subscribe to your posts, but you" +" will not receive updates from them in your news feed." +msgstr "Zaakceptowanie %s jako subskrybenta umożliwia im subskrybowanie Twoich postów, ale nie otrzymasz od nich aktualizacji w swoim kanale wiadomości." + +#: mod/notifications.php:207 +#, php-format +msgid "" +"Accepting %s as a sharer allows them to subscribe to your posts, but you " +"will not receive updates from them in your news feed." +msgstr "Akceptowanie %s jako udostępniający pozwala im subskrybować twoje posty, ale nie otrzymasz od nich aktualizacji w swoim kanale wiadomości." + +#: mod/notifications.php:218 +msgid "Friend" +msgstr "Znajomy" + +#: mod/notifications.php:219 +msgid "Sharer" +msgstr "Udostępniający/a" + +#: mod/notifications.php:219 +msgid "Subscriber" +msgstr "Subskrybent" + +#: mod/notifications.php:275 +msgid "No introductions." +msgstr "Brak dostępu." + +#: mod/notifications.php:316 +msgid "Show unread" +msgstr "Pokaż nieprzeczytane" + +#: mod/notifications.php:316 +msgid "Show all" +msgstr "Pokaż wszystko" + +#: mod/notifications.php:322 +#, php-format +msgid "No more %s notifications." +msgstr "Nigdy więcej %s powiadomień." + +#: mod/p.php:14 +msgid "Not Extended" +msgstr "Nie przedłużony" + +#: mod/p.php:21 mod/p.php:48 mod/p.php:57 mod/fetch.php:16 mod/fetch.php:52 +#: mod/fetch.php:65 mod/help.php:60 index.php:320 +msgid "Not Found" +msgstr "Nie znaleziono" #: mod/follow.php:45 msgid "The contact could not be added." @@ -5942,154 +7980,368 @@ msgstr "Obsługa OStatus jest wyłączona. Kontakt nie może zostać dodany." msgid "The network type couldn't be detected. Contact can't be added." msgstr "Nie można wykryć typu sieci. Kontakt nie może zostać dodany." -#: mod/friendica.php:77 -msgid "This is Friendica, version" -msgstr "To jest Friendica, wersja" +#: mod/cal.php:313 +msgid "This calendar format is not supported" +msgstr "Ten format kalendarza nie jest obsługiwany" -#: mod/friendica.php:78 -msgid "running at web location" -msgstr "otwierane na serwerze" +#: mod/cal.php:315 +msgid "No exportable data found" +msgstr "Nie znaleziono danych do eksportu" -#: mod/friendica.php:82 +#: mod/cal.php:332 +msgid "calendar" +msgstr "kalendarz" + +#: mod/contacts.php:157 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: mod/contacts.php:184 mod/contacts.php:400 +msgid "Could not access contact record." +msgstr "Nie można uzyskać dostępu do rejestru kontaktów." + +#: mod/contacts.php:194 +msgid "Could not locate selected profile." +msgstr "Nie można znaleźć wybranego profilu." + +#: mod/contacts.php:228 +msgid "Contact updated." +msgstr "Kontakt zaktualizowany" + +#: mod/contacts.php:421 +msgid "Contact has been blocked" +msgstr "Kontakt został zablokowany" + +#: mod/contacts.php:421 +msgid "Contact has been unblocked" +msgstr "Kontakt został odblokowany" + +#: mod/contacts.php:432 +msgid "Contact has been ignored" +msgstr "Kontakt jest ignorowany" + +#: mod/contacts.php:432 +msgid "Contact has been unignored" +msgstr "Kontakt nie jest ignorowany" + +#: mod/contacts.php:443 +msgid "Contact has been archived" +msgstr "Kontakt został zarchiwizowany" + +#: mod/contacts.php:443 +msgid "Contact has been unarchived" +msgstr "Kontakt został przywrócony" + +#: mod/contacts.php:467 +msgid "Drop contact" +msgstr "Usuń kontakt" + +#: mod/contacts.php:470 mod/contacts.php:823 +msgid "Do you really want to delete this contact?" +msgstr "Czy na pewno chcesz usunąć ten kontakt?" + +#: mod/contacts.php:488 +msgid "Contact has been removed." +msgstr "Kontakt został usunięty." + +#: mod/contacts.php:519 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Jesteś już znajomym z %s" + +#: mod/contacts.php:523 +#, php-format +msgid "You are sharing with %s" +msgstr "Współdzielisz z %s" + +#: mod/contacts.php:527 +#, php-format +msgid "%s is sharing with you" +msgstr "%s współdzieli z tobą" + +#: mod/contacts.php:547 +msgid "Private communications are not available for this contact." +msgstr "Prywatna rozmowa jest niemożliwa dla tego kontaktu" + +#: mod/contacts.php:549 +msgid "Never" +msgstr "Nigdy" + +#: mod/contacts.php:552 +msgid "(Update was successful)" +msgstr "(Aktualizacja przebiegła pomyślnie)" + +#: mod/contacts.php:552 +msgid "(Update was not successful)" +msgstr "(Aktualizacja nie powiodła się)" + +#: mod/contacts.php:554 mod/contacts.php:992 +msgid "Suggest friends" +msgstr "Osoby, które możesz znać" + +#: mod/contacts.php:558 +#, php-format +msgid "Network type: %s" +msgstr "Typ sieci: %s" + +#: mod/contacts.php:563 +msgid "Communications lost with this contact!" +msgstr "Utracono komunikację z tym kontaktem!" + +#: mod/contacts.php:569 +msgid "Fetch further information for feeds" +msgstr "Pobierz dalsze informacje dla kanałów" + +#: mod/contacts.php:571 msgid "" -"Please visit Friendi.ca to learn more " -"about the Friendica project." -msgstr "Odwiedź stronę Friendi.ca aby dowiedzieć się więcej o projekcie Friendica." +"Fetch information like preview pictures, title and teaser from the feed " +"item. You can activate this if the feed doesn't contain much text. Keywords " +"are taken from the meta header in the feed item and are posted as hash tags." +msgstr "Pobieranie informacji, takich jak zdjęcia podglądu, tytuł i zwiastun z elementu kanału. Możesz to aktywować, jeśli plik danych nie zawiera dużo tekstu. Słowa kluczowe są pobierane z nagłówka meta w elemencie kanału i są publikowane jako znaczniki haszowania." -#: mod/friendica.php:86 -msgid "Bug reports and issues: please visit" -msgstr "Raporty o błędach i problemy: odwiedź stronę" +#: mod/contacts.php:573 +msgid "Fetch information" +msgstr "Pobierz informacje" -#: mod/friendica.php:86 -msgid "the bugtracker at github" -msgstr "bugtracker na github" +#: mod/contacts.php:574 +msgid "Fetch keywords" +msgstr "Pobierz słowa kluczowe" -#: mod/friendica.php:89 -msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" -msgstr "Sugestie, pochwały itp. - napisz e-mail \"info\" na \"friendi - kropka - ca" +#: mod/contacts.php:575 +msgid "Fetch information and keywords" +msgstr "Pobierz informacje i słowa kluczowe" -#: mod/friendica.php:103 -msgid "Installed addons/apps:" -msgstr "Zainstalowane dodatki/aplikacje:" +#: mod/contacts.php:608 +msgid "Contact" +msgstr "Kontakt" -#: mod/friendica.php:117 -msgid "No installed addons/apps" -msgstr "Brak zainstalowanych dodatków/aplikacji" +#: mod/contacts.php:611 +msgid "Profile Visibility" +msgstr "Widoczność profilu" -#: mod/friendica.php:122 -#, php-format -msgid "Read about the Terms of Service of this node." -msgstr "Przeczytaj o Warunkach świadczenia usług tego węzła." - -#: mod/friendica.php:127 -msgid "On this server the following remote servers are blocked." -msgstr "Na tym serwerze następujące serwery zdalne są blokowane." - -#: mod/invite.php:33 -msgid "Total invitation limit exceeded." -msgstr "Przekroczono limit zaproszeń ogółem." - -#: mod/invite.php:55 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Nieprawidłowy adres e-mail." - -#: mod/invite.php:87 -msgid "Please join us on Friendica" -msgstr "Dołącz do nas na Friendica" - -#: mod/invite.php:96 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Przekroczono limit zaproszeń. Skontaktuj się z administratorem witryny." - -#: mod/invite.php:100 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Nie udało się dostarczyć wiadomości." - -#: mod/invite.php:104 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d wiadomość wysłana." -msgstr[1] "%d wiadomości wysłane." -msgstr[2] "%d wysłano ." -msgstr[3] "%d wiadomość wysłano." - -#: mod/invite.php:122 -msgid "You have no more invitations available" -msgstr "Nie masz już dostępnych zaproszeń" - -#: mod/invite.php:130 +#: mod/contacts.php:612 #, php-format msgid "" -"Visit %s for a list of public sites that you can join. Friendica members on " -"other sites can all connect with each other, as well as with members of many" -" other social networks." -msgstr "Odwiedź %s listę publicznych witryn, do których możesz dołączyć. Członkowie Friendica na innych stronach mogą łączyć się ze sobą, jak również z członkami wielu innych sieci społecznościowych." +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Wybierz profil, który chcesz bezpiecznie wyświetlić %s" -#: mod/invite.php:132 +#: mod/contacts.php:613 +msgid "Contact Information / Notes" +msgstr "Informacje kontaktowe/Notatki" + +#: mod/contacts.php:614 +msgid "Their personal note" +msgstr "Ich osobista uwaga" + +#: mod/contacts.php:616 +msgid "Edit contact notes" +msgstr "Edytuj notatki kontaktu" + +#: mod/contacts.php:620 +msgid "Block/Unblock contact" +msgstr "Zablokuj/odblokuj kontakt" + +#: mod/contacts.php:621 +msgid "Ignore contact" +msgstr "Ignoruj kontakt" + +#: mod/contacts.php:622 +msgid "Repair URL settings" +msgstr "Napraw ustawienia adresu" + +#: mod/contacts.php:623 +msgid "View conversations" +msgstr "Wyświetl rozmowy" + +#: mod/contacts.php:628 +msgid "Last update:" +msgstr "Ostatnia aktualizacja:" + +#: mod/contacts.php:630 +msgid "Update public posts" +msgstr "Zaktualizuj publiczne posty" + +#: mod/contacts.php:632 mod/contacts.php:1002 +msgid "Update now" +msgstr "Aktualizuj teraz" + +#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019 +msgid "Unignore" +msgstr "Odblokuj" + +#: mod/contacts.php:642 +msgid "Currently blocked" +msgstr "Obecnie zablokowany" + +#: mod/contacts.php:643 +msgid "Currently ignored" +msgstr "Obecnie zignorowany" + +#: mod/contacts.php:644 +msgid "Currently archived" +msgstr "Obecnie zarchiwizowany" + +#: mod/contacts.php:645 +msgid "Awaiting connection acknowledge" +msgstr "Oczekiwanie na potwierdzenie połączenia" + +#: mod/contacts.php:646 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal mogą być widoczne" + +#: mod/contacts.php:647 +msgid "Notification for new posts" +msgstr "Powiadomienie o nowych postach" + +#: mod/contacts.php:647 +msgid "Send a notification of every new post of this contact" +msgstr "Wyślij powiadomienie o każdym nowym poście tego kontaktu" + +#: mod/contacts.php:650 +msgid "Blacklisted keywords" +msgstr "Słowa kluczowe na czarnej liście" + +#: mod/contacts.php:650 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "Rozdzielana przecinkami lista słów kluczowych, które nie powinny zostać przekonwertowane na hashtagi, gdy wybrana jest opcja 'Pobierz informacje i słowa kluczowe'" + +#: mod/contacts.php:667 +msgid "Actions" +msgstr "Akcja" + +#: mod/contacts.php:670 +msgid "Contact Settings" +msgstr "Ustawienia kontaktów" + +#: mod/contacts.php:711 +msgid "Suggestions" +msgstr "Sugestie" + +#: mod/contacts.php:714 +msgid "Suggest potential friends" +msgstr "Sugerowani znajomi" + +#: mod/contacts.php:722 +msgid "Show all contacts" +msgstr "Pokaż wszystkie kontakty" + +#: mod/contacts.php:727 +msgid "Unblocked" +msgstr "Odblokowany" + +#: mod/contacts.php:730 +msgid "Only show unblocked contacts" +msgstr "Pokaż tylko odblokowane kontakty" + +#: mod/contacts.php:735 +msgid "Blocked" +msgstr "Zablokowany" + +#: mod/contacts.php:738 +msgid "Only show blocked contacts" +msgstr "Pokaż tylko zablokowane kontakty" + +#: mod/contacts.php:743 +msgid "Ignored" +msgstr "Zignorowany" + +#: mod/contacts.php:746 +msgid "Only show ignored contacts" +msgstr "Pokaż tylko ignorowane kontakty" + +#: mod/contacts.php:751 +msgid "Archived" +msgstr "Zarchiwizowane" + +#: mod/contacts.php:754 +msgid "Only show archived contacts" +msgstr "Pokaż tylko zarchiwizowane kontakty" + +#: mod/contacts.php:759 +msgid "Hidden" +msgstr "Ukryty" + +#: mod/contacts.php:762 +msgid "Only show hidden contacts" +msgstr "Pokaż tylko ukryte kontakty" + +#: mod/contacts.php:818 +msgid "Search your contacts" +msgstr "Wyszukaj w kontaktach" + +#: mod/contacts.php:819 mod/search.php:236 #, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Aby zaakceptować to zaproszenie, odwiedź i zarejestruj się %s lub w dowolnej innej publicznej witrynie internetowej Friendica." +msgid "Results for: %s" +msgstr "Wyniki dla: %s" -#: mod/invite.php:133 -#, php-format -msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." -msgstr "Strony Friendica łączą się ze sobą, tworząc ogromną sieć społecznościową o zwiększonej prywatności, która jest własnością i jest kontrolowana przez jej członków. Mogą również łączyć się z wieloma tradycyjnymi sieciami społecznościowymi. Zobacz %s listę alternatywnych witryn Friendica, do których możesz dołączyć." +#: mod/contacts.php:829 mod/contacts.php:1027 +msgid "Archive" +msgstr "Archiwum" -#: mod/invite.php:137 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Przepraszamy. System nie jest obecnie skonfigurowany do łączenia się z innymi publicznymi witrynami lub zapraszania członków." +#: mod/contacts.php:829 mod/contacts.php:1027 +msgid "Unarchive" +msgstr "Przywróć z archiwum" -#: mod/invite.php:141 -msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks." -msgstr "Strony Friendica łączą się ze sobą, tworząc ogromną sieć społecznościową o zwiększonej prywatności, która jest własnością i jest kontrolowana przez jej członków. Mogą również łączyć się z wieloma tradycyjnymi sieciami społecznościowymi." +#: mod/contacts.php:832 +msgid "Batch Actions" +msgstr "Akcje wsadowe" -#: mod/invite.php:140 -#, php-format -msgid "To accept this invitation, please visit and register at %s." -msgstr "Aby zaakceptować to zaproszenie, odwiedź stronę i zarejestruj się na stronie %s." +#: mod/contacts.php:878 +msgid "View all contacts" +msgstr "Zobacz wszystkie kontakty" -#: mod/invite.php:147 -msgid "Send invitations" -msgstr "Wyślij zaproszenie" +#: mod/contacts.php:886 mod/common.php:140 +msgid "Common Friends" +msgstr "Wspólni znajomi" -#: mod/invite.php:148 -msgid "Enter email addresses, one per line:" -msgstr "Wprowadź adresy e-mail, po jednym w wierszu:" +#: mod/contacts.php:889 +msgid "View all common friends" +msgstr "Zobacz wszystkich popularnych znajomych" -#: mod/invite.php:150 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "Serdecznie zapraszam do przyłączenia się do mnie i innych bliskich znajomych na stronie Friendica - i pomóż nam stworzyć lepszą sieć społecznościową." +#: mod/contacts.php:898 +msgid "Advanced Contact Settings" +msgstr "Zaawansowane ustawienia kontaktów" -#: mod/invite.php:152 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Musisz podać ten kod zaproszenia: $invite_code" +#: mod/contacts.php:930 +msgid "Mutual Friendship" +msgstr "Wzajemna przyjaźń" -#: mod/invite.php:152 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Po rejestracji połącz się ze mną na stronie mojego profilu pod adresem:" +#: mod/contacts.php:934 +msgid "is a fan of yours" +msgstr "jest twoim fanem" -#: mod/invite.php:154 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendi.ca" -msgstr "Aby uzyskać więcej informacji na temat projektu Friendica i dlaczego uważamy, że jest to ważne, odwiedź http://friendi.ca" +#: mod/contacts.php:938 +msgid "you are a fan of" +msgstr "jesteś fanem" + +#: mod/contacts.php:1013 +msgid "Toggle Blocked status" +msgstr "Przełącz na Zablokowany" + +#: mod/contacts.php:1021 +msgid "Toggle Ignored status" +msgstr "Przełącz ignorowany status" + +#: mod/contacts.php:1029 +msgid "Toggle Archive status" +msgstr "Przełącz status archiwum" + +#: mod/contacts.php:1037 +msgid "Delete contact" +msgstr "Usuń kontakt" + +#: mod/bookmarklet.php:51 +msgid "The post was created" +msgstr "Post został utworzony" #: mod/lostpass.php:27 msgid "No valid account found." @@ -6157,18 +8409,10 @@ msgid "" "your email for further instructions." msgstr "Wpisz swój adres email i wyślij, aby zresetować hasło. Później sprawdź swojego emaila w celu uzyskania dalszych instrukcji." -#: mod/lostpass.php:119 src/Module/Login.php:314 -msgid "Nickname or Email: " -msgstr "Pseudonim lub Email:" - #: mod/lostpass.php:120 msgid "Reset" msgstr "Zresetuj" -#: mod/lostpass.php:136 src/Module/Login.php:326 -msgid "Password Reset" -msgstr "Zresetuj hasło" - #: mod/lostpass.php:137 msgid "Your password has been reset as requested." msgstr "Twoje hasło zostało zresetowane zgodnie z żądaniem." @@ -6221,435 +8465,784 @@ msgstr "\n\t\t\tDane logowania są następujące:\n\n\t\t\tLokalizacja witryny:\ msgid "Your password has been changed at %s" msgstr "Twoje hasło zostało zmienione na %s" -#: mod/network.php:202 src/Model/Group.php:413 -msgid "add" -msgstr "dodaj" +#: mod/install.php:114 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica Serwer Komunikacyjny - Instalacja" -#: mod/network.php:547 +#: mod/install.php:120 +msgid "Could not connect to database." +msgstr "Nie można nawiązać połączenia z bazą danych" + +#: mod/install.php:124 +msgid "Could not create table." +msgstr "Nie mogę stworzyć tabeli." + +#: mod/install.php:130 +msgid "Your Friendica site database has been installed." +msgstr "Twoja baza danych witryny Friendica została zainstalowana." + +#: mod/install.php:135 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql." + +#: mod/install.php:136 mod/install.php:208 mod/install.php:558 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Proszę przejrzeć plik \"INSTALL.txt\"." + +#: mod/install.php:148 +msgid "Database already in use." +msgstr "Baza danych jest już w użyciu." + +#: mod/install.php:205 +msgid "System check" +msgstr "Sprawdzanie systemu" + +#: mod/install.php:210 +msgid "Check again" +msgstr "Sprawdź ponownie" + +#: mod/install.php:230 +msgid "Database connection" +msgstr "Połączenie z bazą danych" + +#: mod/install.php:231 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych." + +#: mod/install.php:232 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień ." + +#: mod/install.php:233 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją." + +#: mod/install.php:237 +msgid "Database Server Name" +msgstr "Nazwa serwera bazy danych" + +#: mod/install.php:238 +msgid "Database Login Name" +msgstr "Nazwa użytkownika bazy danych" + +#: mod/install.php:239 +msgid "Database Login Password" +msgstr "Hasło logowania do bazy danych" + +#: mod/install.php:239 +msgid "For security reasons the password must not be empty" +msgstr "Ze względów bezpieczeństwa hasło nie może być puste" + +#: mod/install.php:240 +msgid "Database Name" +msgstr "Nazwa bazy danych" + +#: mod/install.php:241 mod/install.php:281 +msgid "Site administrator email address" +msgstr "Adres e-mail administratora strony" + +#: mod/install.php:241 mod/install.php:281 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Adres e-mail konta musi pasować do tego, aby móc korzystać z panelu administracyjnego." + +#: mod/install.php:245 mod/install.php:284 +msgid "Please select a default timezone for your website" +msgstr "Proszę wybrać domyślną strefę czasową dla swojej strony" + +#: mod/install.php:271 +msgid "Site settings" +msgstr "Ustawienia strony" + +#: mod/install.php:285 +msgid "System Language:" +msgstr "Język systemu:" + +#: mod/install.php:285 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "Ustaw domyślny język dla interfejsu instalacyjnego Friendica i wysyłaj e-maile." + +#: mod/install.php:325 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Nie można znaleźć wersji PHP komendy w serwerze PATH" + +#: mod/install.php:326 +msgid "" +"If you don't have a command line version of PHP installed on your server, " +"you will not be able to run the background processing. See 'Setup the worker'" +msgstr "Jeśli nie masz zainstalowanej na serwerze wersji PHP z wiersza poleceń, nie będziesz mógł uruchomić przetwarzania w tle. Zobacz 'Konfiguracja pracownika'" + +#: mod/install.php:330 +msgid "PHP executable path" +msgstr "Ścieżka wykonywalna PHP" + +#: mod/install.php:330 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Wprowadź pełną ścieżkę do pliku wykonywalnego php. Możesz pozostawić to pole puste, aby kontynuować instalację." + +#: mod/install.php:335 +msgid "Command line PHP" +msgstr "Linia komend PHP" + +#: mod/install.php:344 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "Plik wykonywalny PHP nie jest php cli binarny (może być wersją cgi-fgci)" + +#: mod/install.php:345 +msgid "Found PHP version: " +msgstr "Znaleziono wersje PHP:" + +#: mod/install.php:347 +msgid "PHP cli binary" +msgstr "PHP cli binarny" + +#: mod/install.php:358 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Wersja linii poleceń PHP w twoim systemie nie ma aktywowanego \"register_argc_argv\"." + +#: mod/install.php:359 +msgid "This is required for message delivery to work." +msgstr "Jest wymagane, aby dostarczanie wiadomości działało." + +#: mod/install.php:361 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: mod/install.php:384 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Błąd: funkcja \"openssl_pkey_new\" w tym systemie nie jest w stanie wygenerować kluczy szyfrujących" + +#: mod/install.php:385 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Jeśli korzystasz z Windowsa, proszę odwiedzić \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: mod/install.php:387 +msgid "Generate encryption keys" +msgstr "Generuj klucz kodowania" + +#: mod/install.php:394 +msgid "libCurl PHP module" +msgstr "Moduł libCurl PHP" + +#: mod/install.php:395 +msgid "GD graphics PHP module" +msgstr "Moduł PHP-GD" + +#: mod/install.php:396 +msgid "OpenSSL PHP module" +msgstr "Moduł PHP OpenSSL" + +#: mod/install.php:397 +msgid "PDO or MySQLi PHP module" +msgstr "Moduł PDO lub MySQLi PHP" + +#: mod/install.php:398 +msgid "mb_string PHP module" +msgstr "Moduł mb_string PHP" + +#: mod/install.php:399 +msgid "XML PHP module" +msgstr "Moduł XML PHP" + +#: mod/install.php:400 +msgid "iconv PHP module" +msgstr "Moduł PHP iconv" + +#: mod/install.php:401 +msgid "POSIX PHP module" +msgstr "Moduł POSIX PHP" + +#: mod/install.php:405 mod/install.php:407 +msgid "Apache mod_rewrite module" +msgstr "Moduł Apache mod_rewrite" + +#: mod/install.php:405 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Błąd: moduł Apache webserver mod-rewrite jest potrzebny, jednakże nie jest zainstalowany." + +#: mod/install.php:413 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany." + +#: mod/install.php:417 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Błąd: moduł graficzny GD z PHP potrzebuje wsparcia technicznego JPEG, jednakże on nie jest zainstalowany." + +#: mod/install.php:421 +msgid "Error: openssl PHP module required but not installed." +msgstr "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany." + +#: mod/install.php:425 +msgid "Error: PDO or MySQLi PHP module required but not installed." +msgstr "Błąd: Wymagany moduł PDO lub MySQLi PHP, ale nie zainstalowany." + +#: mod/install.php:429 +msgid "Error: The MySQL driver for PDO is not installed." +msgstr "Błąd: Sterownik MySQL dla PDO nie jest zainstalowany." + +#: mod/install.php:433 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Błąd: moduł PHP mb_string jest wymagany ale nie jest zainstalowany" + +#: mod/install.php:437 +msgid "Error: iconv PHP module required but not installed." +msgstr "Błąd: wymagany moduł PHP iconv, ale nie zainstalowany." + +#: mod/install.php:441 +msgid "Error: POSIX PHP module required but not installed." +msgstr "Błąd: wymagany moduł POSIX PHP, ale nie zainstalowany." + +#: mod/install.php:451 +msgid "Error, XML PHP module required but not installed." +msgstr "Błąd, wymagany moduł XML PHP, ale nie zainstalowany." + +#: mod/install.php:463 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "Instalator WWW musi być w stanie utworzyć plik o nazwie \". Htconfig.php\" i nie jest w stanie tego zrobić." + +#: mod/install.php:464 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Jest to najczęściej ustawienie uprawnień, ponieważ serwer sieciowy może nie być w stanie zapisywać plików w folderze - nawet jeśli możesz." + +#: mod/install.php:465 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "Pod koniec tej procedury podamy Ci tekst do zapisania w pliku o nazwie .htconfig.php w twoim górnym folderze Friendica." + +#: mod/install.php:466 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Alternatywnie można pominąć tę procedurę i wykonać ręczną instalację. Proszę zobaczyć plik 'INSTALL.txt' z instrukcjami." + +#: mod/install.php:469 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php jest zapisywalny" + +#: mod/install.php:479 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica używa silnika szablonów Smarty3 do renderowania swoich widoków. Smarty3 kompiluje szablony do PHP, aby przyspieszyć renderowanie." + +#: mod/install.php:480 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "Aby przechowywać te skompilowane szablony, serwer WWW musi mieć dostęp do zapisu do katalogu view/smarty3/ w folderze najwyższego poziomu Friendica." + +#: mod/install.php:481 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Upewnij się, że użytkownik, na którym działa serwer WWW (np. www-data), ma prawo do zapisu do tego folderu." + +#: mod/install.php:482 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "Uwaga: jako środek bezpieczeństwa, powinieneś dać serwerowi dostęp do zapisu view/smarty3/ jedynie - nie do plików szablonów (.tpl), które zawiera." + +#: mod/install.php:485 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 jest zapisywalny" + +#: mod/install.php:501 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "Nie działa URL w .htaccess popraw. Sprawdź konfigurację serwera." + +#: mod/install.php:503 +msgid "Url rewrite is working" +msgstr "Działający adres URL" + +#: mod/install.php:522 +msgid "ImageMagick PHP extension is not installed" +msgstr "Rozszerzenie PHP ImageMagick nie jest zainstalowane" + +#: mod/install.php:524 +msgid "ImageMagick PHP extension is installed" +msgstr "Rozszerzenie PHP ImageMagick jest zainstalowane" + +#: mod/install.php:526 +msgid "ImageMagick supports GIF" +msgstr "ImageMagick obsługuje GIF" + +#: mod/install.php:533 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Konfiguracja bazy danych pliku \".htconfig.php\" nie mogła zostać zapisana. Proszę użyć załączonego tekstu, aby utworzyć folder konfiguracyjny w sieci serwera." + +#: mod/install.php:556 +msgid "

What next

" +msgstr "

Co dalej

" + +#: mod/install.php:557 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"worker." +msgstr "WAŻNE: Będziesz musiał [ręcznie] ustawić zaplanowane zadanie dla pracownika." + +#: mod/install.php:560 #, php-format msgid "" -"Warning: This group contains %s member from a network that doesn't allow non" -" public messages." -msgid_plural "" -"Warning: This group contains %s members from a network that doesn't allow " -"non public messages." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +"Go to your new Friendica node registration page " +"and register as new user. Remember to use the same email you have entered as" +" administrator email. This will allow you to enter the site admin panel." +msgstr "Przejdź do strony rejestracji nowego węzła Friendica i zarejestruj się jako nowy użytkownik. Pamiętaj, aby użyć adresu e-mail wprowadzonego jako e-mail administratora. To pozwoli Ci wejść do panelu administratora witryny." -#: mod/network.php:550 -msgid "Messages in this group won't be send to these receivers." -msgstr "Wiadomości z tej grupy nie będą wysyłane do tych odbiorców." +#: mod/babel.php:23 +msgid "Source input" +msgstr "Źródło wejściowe" -#: mod/network.php:618 -msgid "No such group" -msgstr "Nie ma takiej grupy" +#: mod/babel.php:29 +msgid "BBCode::toPlaintext" +msgstr "BBCode::na prosty tekst" -#: mod/network.php:643 +#: mod/babel.php:35 +msgid "BBCode::convert (raw HTML)" +msgstr "BBCode:: konwersjia (raw HTML)" + +#: mod/babel.php:40 +msgid "BBCode::convert" +msgstr "BBCode::przekształć" + +#: mod/babel.php:46 +msgid "BBCode::convert => HTML::toBBCode" +msgstr "BBCode::przekształć => HTML::toBBCode" + +#: mod/babel.php:52 +msgid "BBCode::toMarkdown" +msgstr "BBCode::toMarkdown" + +#: mod/babel.php:58 +msgid "BBCode::toMarkdown => Markdown::convert" +msgstr "BBCode::toMarkdown => Markdown::przekształć" + +#: mod/babel.php:64 +msgid "BBCode::toMarkdown => Markdown::toBBCode" +msgstr "BBCode::toMarkdown => Markdown::toBBCode" + +#: mod/babel.php:70 +msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" +msgstr "BBCode::toMarkdown => Markdown::przekształć => HTML::toBBCode" + +#: mod/babel.php:77 +msgid "Source input \\x28Diaspora format\\x29" +msgstr "Źródło wejściowe \\x28Diaspora format\\x29" + +#: mod/babel.php:83 +msgid "Markdown::toBBCode" +msgstr "Markdown::toBBCode" + +#: mod/babel.php:90 +msgid "Raw HTML input" +msgstr "Surowe wejście HTML" + +#: mod/babel.php:95 +msgid "HTML Input" +msgstr "Wejście HTML" + +#: mod/babel.php:101 +msgid "HTML::toBBCode" +msgstr "HTML::toBBCode" + +#: mod/babel.php:107 +msgid "HTML::toPlaintext" +msgstr "HTML::toPlaintext" + +#: mod/babel.php:115 +msgid "Source text" +msgstr "Tekst źródłowy" + +#: mod/babel.php:116 +msgid "BBCode" +msgstr "BBCode" + +#: mod/babel.php:117 +msgid "Markdown" +msgstr "Markdown" + +#: mod/babel.php:118 +msgid "HTML" +msgstr "HTML" + +#: mod/lockview.php:38 mod/lockview.php:46 +msgid "Remote privacy information not available." +msgstr "Dane prywatne nie są zdalnie dostępne" + +#: mod/lockview.php:55 +msgid "Visible to:" +msgstr "Widoczne dla:" + +#: mod/wallmessage.php:49 mod/wallmessage.php:112 #, php-format -msgid "Group: %s" -msgstr "Grupa: %s" +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Dzienny limit wiadomości %s został przekroczony. Wiadomość została odrzucona." -#: mod/network.php:669 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione " +#: mod/wallmessage.php:60 +msgid "Unable to check your home location." +msgstr "Nie można sprawdzić twojej lokalizacji." -#: mod/network.php:672 -msgid "Invalid contact." -msgstr "Nieprawidłowy kontakt." +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Brak odbiorcy." -#: mod/network.php:936 -msgid "Commented Order" -msgstr "Porządek według komentarzy" - -#: mod/network.php:939 -msgid "Sort by Comment Date" -msgstr "Sortuj według daty komentarza" - -#: mod/network.php:944 -msgid "Posted Order" -msgstr "Porządek według wpisów" - -#: mod/network.php:947 -msgid "Sort by Post Date" -msgstr "Sortuj według daty postów" - -#: mod/network.php:955 mod/profiles.php:687 -#: src/Core/NotificationsManager.php:185 -msgid "Personal" -msgstr "Osobiste" - -#: mod/network.php:958 -msgid "Posts that mention or involve you" -msgstr "Posty, które wspominają lub angażują Ciebie" - -#: mod/network.php:966 -msgid "New" -msgstr "Nowy" - -#: mod/network.php:969 -msgid "Activity Stream - by date" -msgstr "Strumień aktywności - według daty" - -#: mod/network.php:977 -msgid "Shared Links" -msgstr "Udostępnione łącza" - -#: mod/network.php:980 -msgid "Interesting Links" -msgstr "Interesujące linki" - -#: mod/network.php:988 -msgid "Starred" -msgstr "Ulubione" - -#: mod/network.php:991 -msgid "Favourite Posts" -msgstr "Ulubione posty" - -#: mod/profiles.php:58 -msgid "Profile deleted." -msgstr "Konto usunięte." - -#: mod/profiles.php:74 mod/profiles.php:110 -msgid "Profile-" -msgstr "Profil-" - -#: mod/profiles.php:93 mod/profiles.php:132 -msgid "New profile created." -msgstr "Utworzono nowy profil." - -#: mod/profiles.php:116 -msgid "Profile unavailable to clone." -msgstr "Nie można powileić profilu " - -#: mod/profiles.php:206 -msgid "Profile Name is required." -msgstr "Nazwa Profilu jest wymagana" - -#: mod/profiles.php:347 -msgid "Marital Status" -msgstr "Stan cywilny" - -#: mod/profiles.php:351 -msgid "Romantic Partner" -msgstr "Romantyczny partner" - -#: mod/profiles.php:363 -msgid "Work/Employment" -msgstr "Praca/Zatrudnienie" - -#: mod/profiles.php:366 -msgid "Religion" -msgstr "Religia" - -#: mod/profiles.php:370 -msgid "Political Views" -msgstr "Poglądy polityczne" - -#: mod/profiles.php:374 -msgid "Gender" -msgstr "Płeć" - -#: mod/profiles.php:378 -msgid "Sexual Preference" -msgstr "Orientacja seksualna" - -#: mod/profiles.php:382 -msgid "XMPP" -msgstr "XMPP" - -#: mod/profiles.php:386 -msgid "Homepage" -msgstr "Strona Główna" - -#: mod/profiles.php:390 mod/profiles.php:686 -msgid "Interests" -msgstr "Zainteresowania" - -#: mod/profiles.php:401 mod/profiles.php:682 -msgid "Location" -msgstr "Lokalizacja" - -#: mod/profiles.php:486 -msgid "Profile updated." -msgstr "Profil zaktualizowany." - -#: mod/profiles.php:564 -msgid " and " -msgstr " i " - -#: mod/profiles.php:573 -msgid "public profile" -msgstr "profil publiczny" - -#: mod/profiles.php:576 +#: mod/wallmessage.php:133 #, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$szmienione %2$s na “%3$s”" - -#: mod/profiles.php:577 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - Odwiedź %1$s's %2$s" - -#: mod/profiles.php:579 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$sma zaktualizowany %2$s, zmiana%3$s." - -#: mod/profiles.php:633 -msgid "Hide contacts and friends:" -msgstr "Ukryj kontakty i znajomych:" - -#: mod/profiles.php:638 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Czy chcesz ukryć listę kontaktów dla przeglądających to konto?" - -#: mod/profiles.php:658 -msgid "Show more profile fields:" -msgstr "Pokaż więcej pól profilu:" - -#: mod/profiles.php:670 -msgid "Profile Actions" -msgstr "Akcje profilowe" - -#: mod/profiles.php:671 -msgid "Edit Profile Details" -msgstr "Edytuj profil." - -#: mod/profiles.php:673 -msgid "Change Profile Photo" -msgstr "Zmień zdjęcie profilowe" - -#: mod/profiles.php:674 -msgid "View this profile" -msgstr "Wyświetl ten profil" - -#: mod/profiles.php:675 mod/profiles.php:770 src/Model/Profile.php:393 -msgid "Edit visibility" -msgstr "Edytuj widoczność" - -#: mod/profiles.php:676 -msgid "Create a new profile using these settings" -msgstr "Stwórz nowy profil wykorzystując te ustawienia" - -#: mod/profiles.php:677 -msgid "Clone this profile" -msgstr "Sklonuj ten profil" - -#: mod/profiles.php:678 -msgid "Delete this profile" -msgstr "Usuń ten profil" - -#: mod/profiles.php:680 -msgid "Basic information" -msgstr "Podstawowe informacje" - -#: mod/profiles.php:681 -msgid "Profile picture" -msgstr "Zdjęcie profilowe" - -#: mod/profiles.php:683 -msgid "Preferences" -msgstr "Preferencje" - -#: mod/profiles.php:684 -msgid "Status information" -msgstr "Informacje o stanie" - -#: mod/profiles.php:685 -msgid "Additional information" -msgstr "Dodatkowe informacje" - -#: mod/profiles.php:688 -msgid "Relation" -msgstr "Relacje" - -#: mod/profiles.php:689 src/Util/Temporal.php:81 src/Util/Temporal.php:83 -msgid "Miscellaneous" -msgstr "Różny" - -#: mod/profiles.php:692 -msgid "Your Gender:" -msgstr "Płeć:" - -#: mod/profiles.php:693 -msgid " Marital Status:" -msgstr " Stan cywilny:" - -#: mod/profiles.php:694 src/Model/Profile.php:784 -msgid "Sexual Preference:" -msgstr "Preferencje seksualne:" - -#: mod/profiles.php:695 -msgid "Example: fishing photography software" -msgstr "Przykład: oprogramowanie do fotografowania ryb" - -#: mod/profiles.php:700 -msgid "Profile Name:" -msgstr "Nazwa profilu:" - -#: mod/profiles.php:702 msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "To jest Twój publiczny profil.
Może zostać wyświetlony przez każdego kto używa internetu." +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Jeśli chcesz %s odpowiedzieć, sprawdź, czy ustawienia prywatności w Twojej witrynie zezwalają na prywatne wiadomości od nieznanych nadawców." -#: mod/profiles.php:703 -msgid "Your Full Name:" -msgstr "Imię i Nazwisko:" +#: mod/match.php:48 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Brak pasujących słów kluczowych. Dodaj słowa kluczowe do domyślnego profilu." -#: mod/profiles.php:704 -msgid "Title/Description:" -msgstr "Tytuł/Opis :" +#: mod/match.php:104 +msgid "is interested in:" +msgstr "interesuje się:" -#: mod/profiles.php:707 -msgid "Street Address:" -msgstr "Ulica:" +#: mod/match.php:120 +msgid "Profile Match" +msgstr "Dopasowanie profilu" -#: mod/profiles.php:708 -msgid "Locality/City:" -msgstr "Miejscowość/Miasto:" +#: mod/maintenance.php:24 +msgid "System down for maintenance" +msgstr "System wyłączony w celu konserwacji" -#: mod/profiles.php:709 -msgid "Region/State:" -msgstr "Region/Państwo:" +#: mod/tagrm.php:47 +msgid "Tag removed" +msgstr "Tag usunięty" -#: mod/profiles.php:710 -msgid "Postal/Zip Code:" -msgstr "Kod Pocztowy:" +#: mod/tagrm.php:85 +msgid "Remove Item Tag" +msgstr "Usuń pozycję Tag" -#: mod/profiles.php:711 -msgid "Country:" -msgstr "Kraj:" +#: mod/tagrm.php:87 +msgid "Select a tag to remove: " +msgstr "Wybierz tag do usunięcia" -#: mod/profiles.php:712 src/Util/Temporal.php:149 -msgid "Age: " -msgstr "Wiek: " +#: mod/feedtest.php:20 +msgid "You must be logged in to use this module" +msgstr "Musisz być zalogowany, aby korzystać z tego modułu" -#: mod/profiles.php:715 -msgid "Who: (if applicable)" -msgstr "Kto: (jeśli dotyczy)" +#: mod/feedtest.php:48 +msgid "Source URL" +msgstr "Źródłowy adres URL" -#: mod/profiles.php:715 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Przykłady: cathy123, Cathy Williams, cathy@example.com" +#: mod/search.php:105 +msgid "Only logged in users are permitted to perform a search." +msgstr "Tylko zalogowani użytkownicy mogą wyszukiwać." -#: mod/profiles.php:716 -msgid "Since [date]:" -msgstr "Od [data]:" +#: mod/search.php:129 +msgid "Too Many Requests" +msgstr "Zbyt dużo próśb" -#: mod/profiles.php:718 -msgid "Tell us about yourself..." -msgstr "Napisz o sobie..." +#: mod/search.php:130 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "Dla niezalogowanych użytkowników dozwolone jest tylko jedno wyszukiwanie na minutę." -#: mod/profiles.php:719 -msgid "XMPP (Jabber) address:" -msgstr "Adres XMPP (Jabber):" +#: mod/search.php:234 +#, php-format +msgid "Items tagged with: %s" +msgstr "Przedmioty oznaczone tagiem: %s" -#: mod/profiles.php:719 +#: mod/uexport.php:44 +msgid "Export account" +msgstr "Eksportuj konto" + +#: mod/uexport.php:44 msgid "" -"The XMPP address will be propagated to your contacts so that they can follow" -" you." -msgstr "Adres XMPP będzie propagowany do Twoich kontaktów, aby mogli Cię śledzić." +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Eksportuj informacje o swoim koncie i kontaktach. Użyj tego do utworzenia kopii zapasowej konta i/lub przeniesienia go na inny serwer." -#: mod/profiles.php:720 -msgid "Homepage URL:" -msgstr "Adres URL strony domowej:" +#: mod/uexport.php:45 +msgid "Export all" +msgstr "Eksportuj wszystko" -#: mod/profiles.php:721 src/Model/Profile.php:792 -msgid "Hometown:" -msgstr "Miasto rodzinne:" +#: mod/uexport.php:45 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Wyeksportuj informacje o koncie, kontaktach i wszystkie swoje pozycje jako json. Może to być bardzo duży plik i może zająć dużo czasu. Użyj tej opcji, aby utworzyć pełną kopię zapasową swojego konta (zdjęcia nie są eksportowane)" -#: mod/profiles.php:722 src/Model/Profile.php:800 -msgid "Political Views:" -msgstr "Poglądy polityczne:" +#: mod/newmember.php:11 +msgid "Welcome to Friendica" +msgstr "Witamy na Friendica" -#: mod/profiles.php:723 -msgid "Religious Views:" -msgstr "Poglądy religijne:" +#: mod/newmember.php:12 +msgid "New Member Checklist" +msgstr "Lista nowych członków" -#: mod/profiles.php:724 -msgid "Public Keywords:" -msgstr "Publiczne słowa kluczowe:" +#: mod/newmember.php:14 +msgid "" +"We would like to offer some tips and links to help make your experience " +"enjoyable. Click any item to visit the relevant page. A link to this page " +"will be visible from your home page for two weeks after your initial " +"registration and then will quietly disappear." +msgstr "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie." -#: mod/profiles.php:724 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)" +#: mod/newmember.php:15 +msgid "Getting Started" +msgstr "Pierwsze kroki" -#: mod/profiles.php:725 -msgid "Private Keywords:" -msgstr "Prywatne słowa kluczowe:" +#: mod/newmember.php:17 +msgid "Friendica Walk-Through" +msgstr "Friendica Przejdź-Przez" -#: mod/profiles.php:725 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Używany do wyszukiwania profili, niepokazywany innym)" +#: mod/newmember.php:17 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "Na stronie Szybki start - znajdź krótkie wprowadzenie do swojego profilu i kart sieciowych, stwórz nowe połączenia i znajdź kilka grup do przyłączenia się." -#: mod/profiles.php:726 src/Model/Profile.php:816 -msgid "Likes:" -msgstr "Lubią to:" +#: mod/newmember.php:21 +msgid "Go to Your Settings" +msgstr "Idź do swoich ustawień" -#: mod/profiles.php:727 src/Model/Profile.php:820 -msgid "Dislikes:" -msgstr "Nie lubię tego:" +#: mod/newmember.php:21 +msgid "" +"On your Settings page - change your initial password. Also make a " +"note of your Identity Address. This looks just like an email address - and " +"will be useful in making friends on the free social web." +msgstr "Na stronie Ustawienia - zmień swoje początkowe hasło. Zanotuj także swój adres tożsamości. Wygląda to jak adres e-mail - i będzie przydatny w nawiązywaniu znajomości w bezpłatnej sieci społecznościowej." -#: mod/profiles.php:728 -msgid "Musical interests" -msgstr "Muzyka" +#: mod/newmember.php:22 +msgid "" +"Review the other settings, particularly the privacy settings. An unpublished" +" directory listing is like having an unlisted phone number. In general, you " +"should probably publish your listing - unless all of your friends and " +"potential friends know exactly how to find you." +msgstr "Przejrzyj pozostałe ustawienia, w szczególności ustawienia prywatności. Niepublikowany wykaz katalogów jest podobny do niepublicznego numeru telefonu. Ogólnie rzecz biorąc, powinieneś opublikować swój wpis - chyba, że wszyscy twoi znajomi i potencjalni znajomi dokładnie wiedzą, jak Cię znaleźć." -#: mod/profiles.php:729 -msgid "Books, literature" -msgstr "Literatura" +#: mod/newmember.php:26 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make" +" friends than people who do not." +msgstr "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty." -#: mod/profiles.php:730 -msgid "Television" -msgstr "Telewizja" +#: mod/newmember.php:27 +msgid "Edit Your Profile" +msgstr "Edytuj własny profil" -#: mod/profiles.php:731 -msgid "Film/dance/culture/entertainment" -msgstr "Film/taniec/kultura/rozrywka" +#: mod/newmember.php:27 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown" +" visitors." +msgstr "Edytuj swój domyślny profil do swoich potrzeb. Przejrzyj ustawienia ukrywania listy znajomych i ukrywania profilu przed nieznanymi użytkownikami." -#: mod/profiles.php:732 -msgid "Hobbies/Interests" -msgstr "Zainteresowania" +#: mod/newmember.php:28 +msgid "Profile Keywords" +msgstr "Słowa kluczowe profilu" -#: mod/profiles.php:733 -msgid "Love/romance" -msgstr "Miłość/romans" +#: mod/newmember.php:28 +msgid "" +"Set some public keywords for your default profile which describe your " +"interests. We may be able to find other people with similar interests and " +"suggest friendships." +msgstr "Ustaw kilka publicznych słów kluczowych dla swojego domyślnego profilu, które opisują Twoje zainteresowania. Możemy znaleźć inne osoby o podobnych zainteresowaniach i zaproponować przyjaźnie." -#: mod/profiles.php:734 -msgid "Work/employment" -msgstr "Praca/zatrudnienie" +#: mod/newmember.php:30 +msgid "Connecting" +msgstr "Łączę się..." -#: mod/profiles.php:735 -msgid "School/education" -msgstr "Szkoła/edukacja" +#: mod/newmember.php:36 +msgid "Importing Emails" +msgstr "Importuję emaile..." -#: mod/profiles.php:736 -msgid "Contact information and Social Networks" -msgstr "Dane kontaktowe i Sieci społecznościowe" +#: mod/newmember.php:36 +msgid "" +"Enter your email access information on your Connector Settings page if you " +"wish to import and interact with friends or mailing lists from your email " +"INBOX" +msgstr "Wprowadź informacje dotyczące dostępu do poczty e-mail na stronie Ustawienia oprogramowania, jeśli chcesz importować i wchodzić w interakcje z przyjaciółmi lub listami adresowymi z poziomu konta e-mail INBOX" -#: mod/profiles.php:767 src/Model/Profile.php:389 -msgid "Profile Image" -msgstr "Zdjęcie profilowe" +#: mod/newmember.php:39 +msgid "Go to Your Contacts Page" +msgstr "Idź do strony z Twoimi kontaktami" -#: mod/profiles.php:769 src/Model/Profile.php:392 -msgid "visible to everybody" -msgstr "widoczne dla wszystkich" +#: mod/newmember.php:39 +msgid "" +"Your Contacts page is your gateway to managing friendships and connecting " +"with friends on other networks. Typically you enter their address or site " +"URL in the Add New Contact dialog." +msgstr "Strona Kontakty jest twoją bramą do zarządzania przyjaciółmi i łączenia się z przyjaciółmi w innych sieciach. Zazwyczaj podaje się adres lub adres URL strony w oknie dialogowym Dodaj nowy kontakt." -#: mod/profiles.php:776 -msgid "Edit/Manage Profiles" -msgstr "Edycja/Zarządzanie profilami" +#: mod/newmember.php:40 +msgid "Go to Your Site's Directory" +msgstr "Idż do twojej strony" -#: mod/profiles.php:777 src/Model/Profile.php:379 src/Model/Profile.php:401 -msgid "Change profile photo" -msgstr "Zmień zdjęcie profilowe" +#: mod/newmember.php:40 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "Strona Katalog umożliwia znalezienie innych osób w tej sieci lub innych witrynach stowarzyszonych. Poszukaj łącza Połącz lub Śledź na stronie profilu. Jeśli chcesz, podaj swój własny adres tożsamości." -#: mod/profiles.php:778 src/Model/Profile.php:380 -msgid "Create New Profile" -msgstr "Utwórz nowy profil" +#: mod/newmember.php:41 +msgid "Finding New People" +msgstr "Znajdowanie nowych osób" + +#: mod/newmember.php:41 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand" +" new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "Na bocznym panelu strony Kontaktów znajduje się kilka narzędzi do znajdowania nowych przyjaciół. Możemy dopasować osoby według zainteresowań, wyszukiwać osoby według nazwisk i zainteresowań oraz dostarczać sugestie oparte na relacjach sieciowych. Na zupełnie nowej stronie sugestie znajomych zwykle zaczynają być wypełniane w ciągu 24 godzin" + +#: mod/newmember.php:45 +msgid "Group Your Contacts" +msgstr "Grupuj Swoje kontakty" + +#: mod/newmember.php:45 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with" +" each group privately on your Network page." +msgstr "Gdy zaprzyjaźnisz się z przyjaciółmi, uporządkuj je w prywatne grupy konwersacji na pasku bocznym na stronie Kontakty, a następnie możesz wchodzić w interakcje z każdą grupą prywatnie na stronie Sieć." + +#: mod/newmember.php:48 +msgid "Why Aren't My Posts Public?" +msgstr "Dlaczego moje posty nie są publiczne?" + +#: mod/newmember.php:48 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to" +" people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "Friendica szanuje Twoją prywatność. Domyślnie Twoje wpisy będą wyświetlane tylko osobom, które dodałeś jako znajomi. Aby uzyskać więcej informacji, zobacz sekcję pomocy na powyższym łączu." + +#: mod/newmember.php:52 +msgid "Getting Help" +msgstr "Otrzymaj pomoc" + +#: mod/newmember.php:54 +msgid "Go to the Help Section" +msgstr "Przejdź do sekcji pomocy" + +#: mod/newmember.php:54 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Na naszych stronach pomocy można znaleźć szczegółowe informacje na temat innych funkcji programu i zasobów." + +#: mod/dfrn_confirm.php:132 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Może się to zdarzyć, gdy kontakt został zgłoszony przez obie osoby i został już zatwierdzony." + +#: mod/dfrn_confirm.php:242 +msgid "Response from remote site was not understood." +msgstr "Odpowiedź do zdalnej strony nie została zrozumiana" + +#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "Nieoczekiwana odpowiedź od strony zdalnej:" + +#: mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "Potwierdzenie zostało pomyślnie zakończone." + +#: mod/dfrn_confirm.php:275 +msgid "Temporary failure. Please wait and try again." +msgstr "Tymczasowa awaria. Proszę czekać i spróbuj ponownie." + +#: mod/dfrn_confirm.php:278 +msgid "Introduction failed or was revoked." +msgstr "Wprowadzenie nie powiodło się lub zostało odwołane." + +#: mod/dfrn_confirm.php:283 +msgid "Remote site reported: " +msgstr "Zdalna witryna zgłoszona:" + +#: mod/dfrn_confirm.php:396 +msgid "Unable to set contact photo." +msgstr "Nie można ustawić zdjęcia kontaktu." + +#: mod/dfrn_confirm.php:498 +#, php-format +msgid "No user record found for '%s' " +msgstr "Nie znaleziono użytkownika dla '%s'" + +#: mod/dfrn_confirm.php:508 +msgid "Our site encryption key is apparently messed up." +msgstr "Klucz kodujący jest najwyraźniej uszkodzony." + +#: mod/dfrn_confirm.php:519 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Został podany pusty adres URL witryny lub nie można go odszyfrować." + +#: mod/dfrn_confirm.php:535 +msgid "Contact record was not found for you on our site." +msgstr "Nie znaleziono kontaktu na naszej stronie" + +#: mod/dfrn_confirm.php:549 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "Publiczny klucz witryny jest niedostępny w rekordzie kontaktu dla adresu URL %s" + +#: mod/dfrn_confirm.php:565 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "Identyfikator dostarczony przez Twój system jest duplikatem w naszym systemie. Powinien działać, jeśli spróbujesz ponownie." + +#: mod/dfrn_confirm.php:576 +msgid "Unable to set your contact credentials on our system." +msgstr "Nie można ustawić danych kontaktowych w naszym systemie." + +#: mod/dfrn_confirm.php:631 +msgid "Unable to update your contact profile details on our system" +msgstr "Nie można zaktualizować danych Twojego profilu kontaktowego w naszym systemie" + +#: mod/dfrn_confirm.php:694 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s dołączył/a do %2$s" + +#: mod/filer.php:34 +msgid "- select -" +msgstr "- wybierz -" #: mod/register.php:99 msgid "" @@ -6721,18 +9314,10 @@ msgid "" "be an existing address.)" msgstr "Twój adres e-mail: (Informacje początkowe zostaną wysłane tam, więc musi to być istniejący adres)." -#: mod/register.php:273 mod/settings.php:1201 -msgid "New Password:" -msgstr "Nowe hasło:" - #: mod/register.php:273 msgid "Leave empty for an auto generated password." msgstr "Pozostaw puste dla wygenerowanego automatycznie hasła." -#: mod/register.php:274 mod/settings.php:1202 -msgid "Confirm:" -msgstr "Potwierdź:" - #: mod/register.php:275 #, php-format msgid "" @@ -6744,923 +9329,104 @@ msgstr "Wybierz pseudonim profilu. Nazwa musi zaczynać się od znaku tekstowego msgid "Choose a nickname: " msgstr "Wybierz pseudonim:" -#: mod/register.php:279 src/Content/Nav.php:128 src/Module/Login.php:283 -msgid "Register" -msgstr "Zarejestruj" - #: mod/register.php:286 msgid "Import your profile to this friendica instance" msgstr "Zaimportuj swój profil do tej instancji friendica" -#: mod/removeme.php:43 -msgid "User deleted their account" -msgstr "Użytkownik usunął swoje konto" +#: mod/common.php:91 +msgid "No contacts in common." +msgstr "Brak wspólnych kontaktów." -#: mod/removeme.php:44 -msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "W twoim węźle Friendica użytkownik usunął swoje konto. Upewnij się, że ich dane zostały usunięte z kopii zapasowych." +#: mod/probe.php:14 mod/webfinger.php:17 +msgid "Only logged in users are permitted to perform a probing." +msgstr "Tylko zalogowani użytkownicy mogą wykonywać sondowanie." -#: mod/removeme.php:45 -#, php-format -msgid "The user id is %d" -msgstr "Identyfikatorem użytkownika jest %d" +#: mod/help.php:48 +msgid "Help:" +msgstr "Pomoc:" -#: mod/removeme.php:76 mod/removeme.php:79 -msgid "Remove My Account" -msgstr "Usuń moje konto" +#: mod/help.php:63 index.php:325 +msgid "Page not found." +msgstr "Strona nie znaleziona." -#: mod/removeme.php:77 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Spowoduje to całkowite usunięcie Twojego konta. Po wykonaniu tej czynności nie można jej cofnąć." +#: mod/profperm.php:34 mod/profperm.php:65 +msgid "Invalid profile identifier." +msgstr "Nieprawidłowa nazwa użytkownika." -#: mod/removeme.php:78 -msgid "Please enter your password for verification:" -msgstr "Wprowadź hasło w celu weryfikacji." +#: mod/profperm.php:111 +msgid "Profile Visibility Editor" +msgstr "Ustawienia widoczności profilu" -#: mod/settings.php:72 -msgid "Display" -msgstr "Wyświetlanie" +#: mod/profperm.php:124 +msgid "Visible To" +msgstr "Widoczne dla" -#: mod/settings.php:79 mod/settings.php:842 -msgid "Social Networks" -msgstr "Portale społecznościowe" +#: mod/profperm.php:140 +msgid "All Contacts (with secure profile access)" +msgstr "Wszystkie kontakty (z bezpiecznym dostępem do profilu)" -#: mod/settings.php:93 src/Content/Nav.php:204 -msgid "Delegations" -msgstr "Delegowanie" +#: mod/item.php:114 +msgid "Unable to locate original post." +msgstr "Nie można zlokalizować oryginalnej wiadomości." -#: mod/settings.php:100 -msgid "Connected apps" -msgstr "Powiązane aplikacje" +#: mod/item.php:274 +msgid "Empty post discarded." +msgstr "Pusty wpis został odrzucony." -#: mod/settings.php:114 -msgid "Remove account" -msgstr "Usuń konto" - -#: mod/settings.php:168 -msgid "Missing some important data!" -msgstr "Brakuje ważnych danych!" - -#: mod/settings.php:279 -msgid "Failed to connect with email account using the settings provided." -msgstr "Połączenie z kontem email używając wybranych ustawień nie powiodło się." - -#: mod/settings.php:284 -msgid "Email settings updated." -msgstr "Zaktualizowano ustawienia email." - -#: mod/settings.php:300 -msgid "Features updated" -msgstr "Funkcje zaktualizowane" - -#: mod/settings.php:372 -msgid "Relocate message has been send to your contacts" -msgstr "Przeniesienie wiadomości zostało wysłane do Twoich kontaktów" - -#: mod/settings.php:384 src/Model/User.php:339 -msgid "Passwords do not match. Password unchanged." -msgstr "Hasła nie pasują do siebie. Hasło niezmienione." - -#: mod/settings.php:389 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Puste hasła są niedozwolone. Hasło niezmienione." - -#: mod/settings.php:394 src/Core/Console/NewPassword.php:87 -msgid "" -"The new password has been exposed in a public data dump, please choose " -"another." -msgstr "Nowe hasło zostało ujawnione w publicznym zrzucie danych, wybierz inne." - -#: mod/settings.php:400 -msgid "Wrong password." -msgstr "Złe hasło." - -#: mod/settings.php:407 src/Core/Console/NewPassword.php:94 -msgid "Password changed." -msgstr "Hasło zostało zmianione." - -#: mod/settings.php:409 src/Core/Console/NewPassword.php:91 -msgid "Password update failed. Please try again." -msgstr "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie." - -#: mod/settings.php:496 -msgid " Please use a shorter name." -msgstr "Proszę użyć krótszej nazwy." - -#: mod/settings.php:499 -msgid " Name too short." -msgstr "Za krótka nazwa." - -#: mod/settings.php:507 -msgid "Wrong Password" -msgstr "Złe hasło" - -#: mod/settings.php:512 -msgid "Invalid email." -msgstr "Niepoprawny e-mail." - -#: mod/settings.php:519 -msgid "Cannot change to that email." -msgstr "Nie można zmienić tego e-maila." - -#: mod/settings.php:572 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Prywatne forum nie ma uprawnień do prywatności. Użyj domyślnej grupy prywatnej." - -#: mod/settings.php:575 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Prywatne forum nie ma uprawnień do prywatności ani domyślnej grupy prywatności." - -#: mod/settings.php:615 -msgid "Settings updated." -msgstr "Zaktualizowano ustawienia." - -#: mod/settings.php:674 mod/settings.php:700 mod/settings.php:736 -msgid "Add application" -msgstr "Dodaj aplikację" - -#: mod/settings.php:678 mod/settings.php:704 -msgid "Consumer Key" -msgstr "Klucz klienta" - -#: mod/settings.php:679 mod/settings.php:705 -msgid "Consumer Secret" -msgstr "Tajny klucz klienta" - -#: mod/settings.php:680 mod/settings.php:706 -msgid "Redirect" -msgstr "Przekierowanie" - -#: mod/settings.php:681 mod/settings.php:707 -msgid "Icon url" -msgstr "Adres Url ikony" - -#: mod/settings.php:692 -msgid "You can't edit this application." -msgstr "Nie możesz edytować tej aplikacji." - -#: mod/settings.php:735 -msgid "Connected Apps" -msgstr "Powiązane aplikacje" - -#: mod/settings.php:737 src/Object/Post.php:155 src/Object/Post.php:157 -msgid "Edit" -msgstr "Edytuj" - -#: mod/settings.php:739 -msgid "Client key starts with" -msgstr "Klucz klienta zaczyna się od" - -#: mod/settings.php:740 -msgid "No name" -msgstr "Bez nazwy" - -#: mod/settings.php:741 -msgid "Remove authorization" -msgstr "Odwołaj upoważnienie" - -#: mod/settings.php:752 -msgid "No Addon settings configured" -msgstr "Brak skonfigurowanych ustawień Dodatków" - -#: mod/settings.php:761 -msgid "Addon Settings" -msgstr "Ustawienia Dodatków" - -#: mod/settings.php:782 -msgid "Additional Features" -msgstr "Dodatkowe funkcje" - -#: mod/settings.php:805 src/Content/ContactSelector.php:83 -msgid "Diaspora" -msgstr "Diaspora" - -#: mod/settings.php:805 mod/settings.php:806 -msgid "enabled" -msgstr "włączony" - -#: mod/settings.php:805 mod/settings.php:806 -msgid "disabled" -msgstr "wyłączony" - -#: mod/settings.php:805 mod/settings.php:806 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Wbudowane wsparcie dla %s łączność jest %s" - -#: mod/settings.php:806 -msgid "GNU Social (OStatus)" -msgstr "GNU Społeczny (OStatus)" - -#: mod/settings.php:837 -msgid "Email access is disabled on this site." -msgstr "Dostęp do e-maila nie jest w pełni sprawny na tej stronie" - -#: mod/settings.php:847 -msgid "General Social Media Settings" -msgstr "Ogólne ustawienia mediów społecznościowych" - -#: mod/settings.php:848 -msgid "Disable Content Warning" -msgstr "Wyłącz ostrzeżenie o treści" - -#: mod/settings.php:848 -msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This disables the automatic " -"collapsing and sets the content warning as the post title. Doesn't affect " -"any other content filtering you eventually set up." -msgstr "Użytkownicy w sieciach takich jak Mastodon lub Pleroma mogą ustawić pole ostrzeżenia o treści, które domyślnie zwijać będzie swój wpis. Powoduje wyłączenie automatycznego zwijania i ustawia ostrzeżenie o treści jako tytuł postu. Nie ma wpływu na żadne inne filtrowanie treści, które ostatecznie utworzyłeś." - -#: mod/settings.php:849 -msgid "Disable intelligent shortening" -msgstr "Wyłącz inteligentne skracanie" - -#: mod/settings.php:849 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If this option is enabled then every shortened post will always point to the" -" original friendica post." -msgstr "Zwykle system próbuje znaleźć najlepszy link do dodania do skróconych postów. Jeśli ta opcja jest włączona, każdy skrócony wpis zawsze wskazuje oryginalny post znajomej osoby." - -#: mod/settings.php:850 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "Automatycznie podążaj za wszystkimi obserwatorami/rzecznikami GNU Społeczności (OStatus)" - -#: mod/settings.php:850 -msgid "" -"If you receive a message from an unknown OStatus user, this option decides " -"what to do. If it is checked, a new contact will be created for every " -"unknown user." -msgstr "Jeśli otrzymasz wiadomość od nieznanego użytkownika OStatus, ta opcja decyduje, co zrobić. Jeśli zostanie zaznaczone, dla każdego nieznanego użytkownika zostanie utworzony nowy kontakt." - -#: mod/settings.php:851 -msgid "Default group for OStatus contacts" -msgstr "Domyślna grupa dla kontaktów OStatus" - -#: mod/settings.php:852 -msgid "Your legacy GNU Social account" -msgstr "Twoje starsze konto społecznościowe GNU" - -#: mod/settings.php:852 -msgid "" -"If you enter your old GNU Social/Statusnet account name here (in the format " -"user@domain.tld), your contacts will be added automatically. The field will " -"be emptied when done." -msgstr "Jeśli podasz swoją starą nazwę konta GNU Social/Statusnet tutaj (w formacie user@domain.tld), twoje kontakty zostaną dodane automatycznie. Pole zostanie opróżnione po zakończeniu." - -#: mod/settings.php:855 -msgid "Repair OStatus subscriptions" -msgstr "Napraw subskrypcje OStatus" - -#: mod/settings.php:859 -msgid "Email/Mailbox Setup" -msgstr "Ustawienia emaila/skrzynki mailowej" - -#: mod/settings.php:860 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Jeśli chcesz komunikować się z kontaktami e-mail za pomocą tej usługi (opcjonalnie), określ sposób łączenia się ze skrzynką pocztową." - -#: mod/settings.php:861 -msgid "Last successful email check:" -msgstr "Ostatni sprawdzony e-mail:" - -#: mod/settings.php:863 -msgid "IMAP server name:" -msgstr "Nazwa serwera IMAP:" - -#: mod/settings.php:864 -msgid "IMAP port:" -msgstr "Port IMAP:" - -#: mod/settings.php:865 -msgid "Security:" -msgstr "Ochrona:" - -#: mod/settings.php:865 mod/settings.php:870 -msgid "None" -msgstr "Brak" - -#: mod/settings.php:866 -msgid "Email login name:" -msgstr "Nazwa logowania e-mail:" - -#: mod/settings.php:867 -msgid "Email password:" -msgstr "E-mail hasło:" - -#: mod/settings.php:868 -msgid "Reply-to address:" -msgstr "Adres zwrotny:" - -#: mod/settings.php:869 -msgid "Send public posts to all email contacts:" -msgstr "Wyślij publiczny post do wszystkich kontaktów e-mail" - -#: mod/settings.php:870 -msgid "Action after import:" -msgstr "Akcja po zaimportowaniu:" - -#: mod/settings.php:870 src/Content/Nav.php:191 -msgid "Mark as seen" -msgstr "Oznacz jako przeczytane" - -#: mod/settings.php:870 -msgid "Move to folder" -msgstr "Przenieś do folderu" - -#: mod/settings.php:871 -msgid "Move to folder:" -msgstr "Przenieś do folderu:" - -#: mod/settings.php:914 -#, php-format -msgid "%s - (Unsupported)" -msgstr "%s - (Nieobsługiwane)" - -#: mod/settings.php:916 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s- (Eksperymentalne)" - -#: mod/settings.php:959 -msgid "Display Settings" -msgstr "Wyświetl ustawienia" - -#: mod/settings.php:965 mod/settings.php:989 -msgid "Display Theme:" -msgstr "Wyświetl motyw:" - -#: mod/settings.php:966 -msgid "Mobile Theme:" -msgstr "Motyw dla urządzeń mobilnych:" - -#: mod/settings.php:967 -msgid "Suppress warning of insecure networks" -msgstr "Ukryj ostrzeżenie przed niebezpiecznymi sieciami" - -#: mod/settings.php:967 -msgid "" -"Should the system suppress the warning that the current group contains " -"members of networks that can't receive non public postings." -msgstr "System powinien pominąć ostrzeżenie, że bieżąca grupa zawiera członków sieci, którzy nie mogą otrzymywać komentarzy niepublicznych" - -#: mod/settings.php:968 -msgid "Update browser every xx seconds" -msgstr "Odświeżaj stronę co xx sekund" - -#: mod/settings.php:968 -msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "Minimum 10 sekund. Wprowadź -1, aby go wyłączyć." - -#: mod/settings.php:969 -msgid "Number of items to display per page:" -msgstr "Liczba elementów do wyświetlenia na stronie:" - -#: mod/settings.php:969 mod/settings.php:970 -msgid "Maximum of 100 items" -msgstr "Maksymalnie 100 elementów" - -#: mod/settings.php:970 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Liczba elementów do wyświetlenia na stronie podczas przeglądania z urządzenia mobilnego:" - -#: mod/settings.php:971 -msgid "Don't show emoticons" -msgstr "Nie pokazuj emotikonek" - -#: mod/settings.php:972 -msgid "Calendar" -msgstr "Kalendarz" - -#: mod/settings.php:973 -msgid "Beginning of week:" -msgstr "Początek tygodnia:" - -#: mod/settings.php:974 -msgid "Don't show notices" -msgstr "Nie pokazuj powiadomień" - -#: mod/settings.php:975 -msgid "Infinite scroll" -msgstr "Nieskończone przewijanie" - -#: mod/settings.php:976 -msgid "Automatic updates only at the top of the network page" -msgstr "Automatyczne aktualizacje tylko u góry strony sieci" - -#: mod/settings.php:976 -msgid "" -"When disabled, the network page is updated all the time, which could be " -"confusing while reading." -msgstr "Po wyłączeniu strona sieciowa jest cały czas aktualizowana, co może być mylące podczas czytania." - -#: mod/settings.php:977 -msgid "Bandwith Saver Mode" -msgstr "Tryb oszczędzania przepustowości" - -#: mod/settings.php:977 -msgid "" -"When enabled, embedded content is not displayed on automatic updates, they " -"only show on page reload." -msgstr "Po włączeniu wbudowana zawartość nie jest wyświetlana w automatycznych aktualizacjach, wyświetlają się tylko przy przeładowaniu strony." - -#: mod/settings.php:978 -msgid "Smart Threading" -msgstr "Inteligentne gwintowanie" - -#: mod/settings.php:978 -msgid "" -"When enabled, suppress extraneous thread indentation while keeping it where " -"it matters. Only works if threading is available and enabled." -msgstr "Włączenie tej opcji powoduje pomijanie wcięcia nitek zewnętrznych, zachowując je w dowolnym miejscu. Działa tylko wtedy, gdy wątki są dostępne i włączone." - -#: mod/settings.php:980 -msgid "General Theme Settings" -msgstr "Ogólne ustawienia motywu" - -#: mod/settings.php:981 -msgid "Custom Theme Settings" -msgstr "Niestandardowe ustawienia motywów" - -#: mod/settings.php:982 -msgid "Content Settings" -msgstr "Ustawienia zawartości" - -#: mod/settings.php:983 view/theme/duepuntozero/config.php:73 -#: view/theme/frio/config.php:115 view/theme/quattro/config.php:75 -#: view/theme/vier/config.php:121 -msgid "Theme settings" -msgstr "Ustawienia motywu" - -#: mod/settings.php:1002 -msgid "Unable to find your profile. Please contact your admin." -msgstr "Nie można znaleźć Twojego profilu. Skontaktuj się z administratorem." - -#: mod/settings.php:1044 -msgid "Account Types" -msgstr "Rodzaje kont" - -#: mod/settings.php:1045 -msgid "Personal Page Subtypes" -msgstr "Podtypy osobistych stron" - -#: mod/settings.php:1046 -msgid "Community Forum Subtypes" -msgstr "Podtypy społeczności forum" - -#: mod/settings.php:1053 -msgid "Personal Page" -msgstr "Strona osobista" - -#: mod/settings.php:1054 -msgid "Account for a personal profile." -msgstr "Konto dla profilu osobistego." - -#: mod/settings.php:1057 -msgid "Organisation Page" -msgstr "Strona Organizacji" - -#: mod/settings.php:1058 -msgid "" -"Account for an organisation that automatically approves contact requests as " -"\"Followers\"." -msgstr "Konto dla organizacji, która automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"." - -#: mod/settings.php:1061 -msgid "News Page" -msgstr "Strona Wiadomości" - -#: mod/settings.php:1062 -msgid "" -"Account for a news reflector that automatically approves contact requests as" -" \"Followers\"." -msgstr "Konto dla reflektora wiadomości, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"." - -#: mod/settings.php:1065 -msgid "Community Forum" -msgstr "Forum społecznościowe" - -#: mod/settings.php:1066 -msgid "Account for community discussions." -msgstr "Konto do dyskusji w społeczności." - -#: mod/settings.php:1069 -msgid "Normal Account Page" -msgstr "Normalna strona konta" - -#: mod/settings.php:1070 -msgid "" -"Account for a regular personal profile that requires manual approval of " -"\"Friends\" and \"Followers\"." -msgstr "Konto dla zwykłego profilu osobistego, który wymaga ręcznej zgody \"Przyjaciół\" i \"Obserwatorów\"." - -#: mod/settings.php:1073 -msgid "Soapbox Page" -msgstr "Strona Soapbox" - -#: mod/settings.php:1074 -msgid "" -"Account for a public profile that automatically approves contact requests as" -" \"Followers\"." -msgstr "Konto dla profilu publicznego, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"." - -#: mod/settings.php:1077 -msgid "Public Forum" -msgstr "Forum publiczne" - -#: mod/settings.php:1078 -msgid "Automatically approves all contact requests." -msgstr "Automatycznie zatwierdza wszystkie prośby o kontakt." - -#: mod/settings.php:1081 -msgid "Automatic Friend Page" -msgstr "Automatyczna strona znajomego" - -#: mod/settings.php:1082 -msgid "" -"Account for a popular profile that automatically approves contact requests " -"as \"Friends\"." -msgstr "Konto popularnego profilu, które automatycznie zatwierdza prośby o kontakt jako \"Przyjaciele\"." - -#: mod/settings.php:1085 -msgid "Private Forum [Experimental]" -msgstr "Prywatne Forum [Eksperymentalne]" - -#: mod/settings.php:1086 -msgid "Requires manual approval of contact requests." -msgstr "Wymaga ręcznego zatwierdzania żądań kontaktów." - -#: mod/settings.php:1097 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:1097 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Opcjonalnie) Pozwól zalogować się na to konto przy pomocy OpenID." - -#: mod/settings.php:1105 -msgid "Publish your default profile in your local site directory?" -msgstr "Opublikować Twój domyślny profil w Twoim lokalnym katalogu stron?" - -#: mod/settings.php:1105 +#: mod/item.php:799 #, php-format msgid "" -"Your profile will be published in the global friendica directories (e.g. %s). Your profile will be visible in public." -msgstr "Twój profil zostanie opublikowany w globalnych katalogach friendica (np.%s). Twój profil będzie widoczny publicznie." +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Wiadomość została wysłana do ciebie od %s , członka portalu Friendica" -#: mod/settings.php:1111 -msgid "Publish your default profile in the global social directory?" -msgstr "Opublikować Twój domyślny profil w globalnym, społecznościowym katalogu?" - -#: mod/settings.php:1111 +#: mod/item.php:801 #, php-format +msgid "You may visit them online at %s" +msgstr "Możesz odwiedzić ich online pod adresem %s" + +#: mod/item.php:802 msgid "" -"Your profile will be published in this node's local " -"directory. Your profile details may be publicly visible depending on the" -" system settings." -msgstr "Twój profil zostanie opublikowany w lokalnym katalogu tego węzła. Dane Twojego profilu mogą być publicznie widoczne w zależności od ustawień systemu." +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości." -#: mod/settings.php:1118 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Ukryć listę znajomych przed odwiedzającymi Twój profil?" - -#: mod/settings.php:1118 -msgid "" -"Your contact list won't be shown in your default profile page. You can " -"decide to show your contact list separately for each additional profile you " -"create" -msgstr "Twoja lista kontaktów nie będzie wyświetlana na domyślnej stronie profilu. Możesz zdecydować o wyświetleniu listy kontaktów osobno dla każdego tworzonego dodatkowego profilu." - -#: mod/settings.php:1122 -msgid "Hide your profile details from anonymous viewers?" -msgstr "Ukryć dane Twojego profilu przed anonimowymi widzami?" - -#: mod/settings.php:1122 -msgid "" -"Anonymous visitors will only see your profile picture, your display name and" -" the nickname you are using on your profile page. Disables posting public " -"messages to Diaspora and other networks." -msgstr "Anonimowi użytkownicy zobaczą tylko Twoje zdjęcie profilowe, Twoją wyświetlaną nazwę i pseudonim, którego używasz na stronie profilu. Wyłącza wysyłanie publicznych wiadomości do Diaspory i innych sieci." - -#: mod/settings.php:1126 -msgid "Allow friends to post to your profile page?" -msgstr "Zezwalać znajomym na publikowanie postów na stronie Twojego profilu?" - -#: mod/settings.php:1126 -msgid "" -"Your contacts may write posts on your profile wall. These posts will be " -"distributed to your contacts" -msgstr "Twoi znajomi mogą pisać posty na stronie Twojego profilu. Posty zostaną przesłane do Twoich kontaktów." - -#: mod/settings.php:1130 -msgid "Allow friends to tag your posts?" -msgstr "Zezwolić na oznaczanie Twoich postów przez znajomych?" - -#: mod/settings.php:1130 -msgid "Your contacts can add additional tags to your posts." -msgstr "Twoje kontakty mogą dodawać do tagów dodatkowe posty." - -#: mod/settings.php:1134 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Pozwól zasugerować Cię jako potencjalnego przyjaciela dla nowych członków?" - -#: mod/settings.php:1134 -msgid "" -"If you like, Friendica may suggest new members to add you as a contact." -msgstr "Jeśli chcesz, Friendica może zaproponować nowym członkom dodanie Cię jako kontakt." - -#: mod/settings.php:1138 -msgid "Permit unknown people to send you private mail?" -msgstr "Zezwolić nieznanym osobom na wysyłanie prywatnych wiadomości?" - -#: mod/settings.php:1138 -msgid "" -"Friendica network users may send you private messages even if they are not " -"in your contact list." -msgstr "Użytkownicy sieci w serwisie Friendica mogą wysyłać prywatne wiadomości, nawet jeśli nie znajdują się one na liście kontaktów." - -#: mod/settings.php:1142 -msgid "Profile is not published." -msgstr "Profil nie jest opublikowany" - -#: mod/settings.php:1148 +#: mod/item.php:806 #, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "Twój adres tożsamości to '%s' lub '%s'." +msgid "%s posted an update." +msgstr "%s zaktualizował wpis." -#: mod/settings.php:1155 -msgid "Automatically expire posts after this many days:" -msgstr "Posty wygasną automatycznie po następującej liczbie dni:" +#: mod/editpost.php:25 mod/editpost.php:35 +msgid "Item not found" +msgstr "Nie znaleziono elementu" -#: mod/settings.php:1155 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte." +#: mod/editpost.php:42 +msgid "Edit post" +msgstr "Edytuj post" -#: mod/settings.php:1156 -msgid "Advanced expiration settings" -msgstr "Zaawansowane ustawienia wygasania" +#: view/theme/quattro/config.php:76 +msgid "Alignment" +msgstr "Wyrównanie" -#: mod/settings.php:1157 -msgid "Advanced Expiration" -msgstr "Zaawansowane wygasanie" +#: view/theme/quattro/config.php:76 +msgid "Left" +msgstr "Lewo" -#: mod/settings.php:1158 -msgid "Expire posts:" -msgstr "Wygasające posty:" +#: view/theme/quattro/config.php:76 +msgid "Center" +msgstr "Środek" -#: mod/settings.php:1159 -msgid "Expire personal notes:" -msgstr "Wygasanie osobistych notatek:" +#: view/theme/quattro/config.php:77 +msgid "Color scheme" +msgstr "Zestaw kolorów" -#: mod/settings.php:1160 -msgid "Expire starred posts:" -msgstr "Wygasaj posty oznaczone gwiazdką:" +#: view/theme/quattro/config.php:78 +msgid "Posts font size" +msgstr "Rozmiar czcionki postów" -#: mod/settings.php:1161 -msgid "Expire photos:" -msgstr "Wygasanie zdjęć:" - -#: mod/settings.php:1162 -msgid "Only expire posts by others:" -msgstr "Wygaszaj tylko te posty, które zostały napisane przez inne osoby:" - -#: mod/settings.php:1192 -msgid "Account Settings" -msgstr "Ustawienia konta" - -#: mod/settings.php:1200 -msgid "Password Settings" -msgstr "Ustawienia hasła" - -#: mod/settings.php:1202 -msgid "Leave password fields blank unless changing" -msgstr "Pozostaw pola hasła puste, chyba że chcesz je zmienić." - -#: mod/settings.php:1203 -msgid "Current Password:" -msgstr "Aktualne hasło:" - -#: mod/settings.php:1203 mod/settings.php:1204 -msgid "Your current password to confirm the changes" -msgstr "Twoje aktualne hasło, potwierdź zmiany" - -#: mod/settings.php:1204 -msgid "Password:" -msgstr "Hasło:" - -#: mod/settings.php:1208 -msgid "Basic Settings" -msgstr "Ustawienia podstawowe" - -#: mod/settings.php:1209 src/Model/Profile.php:740 -msgid "Full Name:" -msgstr "Imię i Nazwisko:" - -#: mod/settings.php:1210 -msgid "Email Address:" -msgstr "Adres email:" - -#: mod/settings.php:1211 -msgid "Your Timezone:" -msgstr "Twoja strefa czasowa:" - -#: mod/settings.php:1212 -msgid "Your Language:" -msgstr "Twój język:" - -#: mod/settings.php:1212 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "Ustaw język, którego używasz, aby pokazać interfejs użytkownika friendica i do wysłania Ci e-maili" - -#: mod/settings.php:1213 -msgid "Default Post Location:" -msgstr "Standardowa lokalizacja wiadomości:" - -#: mod/settings.php:1214 -msgid "Use Browser Location:" -msgstr "Użyj położenia przeglądarki:" - -#: mod/settings.php:1217 -msgid "Security and Privacy Settings" -msgstr "Ustawienia bezpieczeństwa i prywatności" - -#: mod/settings.php:1219 -msgid "Maximum Friend Requests/Day:" -msgstr "Maksymalna dzienna liczba zaproszeń do grona przyjaciół:" - -#: mod/settings.php:1219 mod/settings.php:1248 -msgid "(to prevent spam abuse)" -msgstr "(aby zapobiec spamowaniu)" - -#: mod/settings.php:1220 -msgid "Default Post Permissions" -msgstr "Domyślne prawa dostępu wiadomości" - -#: mod/settings.php:1221 -msgid "(click to open/close)" -msgstr "(kliknij by otworzyć/zamknąć)" - -#: mod/settings.php:1231 -msgid "Default Private Post" -msgstr "Domyślny Prywatny Wpis" - -#: mod/settings.php:1232 -msgid "Default Public Post" -msgstr "Domyślny Publiczny Post" - -#: mod/settings.php:1236 -msgid "Default Permissions for New Posts" -msgstr "Uprawnienia domyślne dla nowych postów" - -#: mod/settings.php:1248 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maksymalna liczba prywatnych wiadomości dziennie od nieznanych osób:" - -#: mod/settings.php:1251 -msgid "Notification Settings" -msgstr "Ustawienia powiadomień" - -#: mod/settings.php:1252 -msgid "By default post a status message when:" -msgstr "Domyślnie publikuj komunikat o stanie, gdy:" - -#: mod/settings.php:1253 -msgid "accepting a friend request" -msgstr "przyjęto prośbę o dodanie do znajomych" - -#: mod/settings.php:1254 -msgid "joining a forum/community" -msgstr "dołączono do forum/społeczności" - -#: mod/settings.php:1255 -msgid "making an interesting profile change" -msgstr "dokonano interesującej zmiany profilu" - -#: mod/settings.php:1256 -msgid "Send a notification email when:" -msgstr "Wyślij powiadmonienia na email, kiedy:" - -#: mod/settings.php:1257 -msgid "You receive an introduction" -msgstr "Otrzymałeś zaproszenie" - -#: mod/settings.php:1258 -msgid "Your introductions are confirmed" -msgstr "Twoje zaproszenie jest potwierdzone" - -#: mod/settings.php:1259 -msgid "Someone writes on your profile wall" -msgstr "Ktoś pisze na twoim profilu" - -#: mod/settings.php:1260 -msgid "Someone writes a followup comment" -msgstr "Ktoś pisze komentarz nawiązujący." - -#: mod/settings.php:1261 -msgid "You receive a private message" -msgstr "Otrzymałeś prywatną wiadomość" - -#: mod/settings.php:1262 -msgid "You receive a friend suggestion" -msgstr "Otrzymałeś propozycję od znajomych" - -#: mod/settings.php:1263 -msgid "You are tagged in a post" -msgstr "Jesteś oznaczony tagiem w poście" - -#: mod/settings.php:1264 -msgid "You are poked/prodded/etc. in a post" -msgstr "Jesteś zaczepiony/zaczepiona/itp. w poście" - -#: mod/settings.php:1266 -msgid "Activate desktop notifications" -msgstr "Aktywuj powiadomienia na pulpicie" - -#: mod/settings.php:1266 -msgid "Show desktop popup on new notifications" -msgstr "Pokaż wyskakujące okienko dla nowych powiadomień" - -#: mod/settings.php:1268 -msgid "Text-only notification emails" -msgstr "E-maile z powiadomieniami tekstowymi" - -#: mod/settings.php:1270 -msgid "Send text only notification emails, without the html part" -msgstr "Wysyłaj tylko e-maile z powiadomieniami tekstowymi, bez części html" - -#: mod/settings.php:1272 -msgid "Show detailled notifications" -msgstr "Pokaż szczegółowe powiadomienia" - -#: mod/settings.php:1274 -msgid "" -"Per default, notifications are condensed to a single notification per item. " -"When enabled every notification is displayed." -msgstr "Domyślne powiadomienia są skondensowane z jednym powiadomieniem dla każdego przedmiotu. Po włączeniu wyświetlane jest każde powiadomienie." - -#: mod/settings.php:1276 -msgid "Advanced Account/Page Type Settings" -msgstr "Zaawansowane ustawienia konta/rodzaju strony" - -#: mod/settings.php:1277 -msgid "Change the behaviour of this account for special situations" -msgstr "Zmień zachowanie tego konta w sytuacjach specjalnych" - -#: mod/settings.php:1280 -msgid "Relocate" -msgstr "Przeniesienie" - -#: mod/settings.php:1281 -msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." -msgstr "Jeśli ten profil został przeniesiony z innego serwera, a niektóre z Twoich kontaktów nie otrzymają aktualizacji, spróbuj nacisnąć ten przycisk." - -#: mod/settings.php:1282 -msgid "Resend relocate message to contacts" -msgstr "Wyślij ponownie przenieść wiadomości do kontaktów" - -#: view/theme/duepuntozero/config.php:54 src/Model/User.php:502 -msgid "default" -msgstr "standardowe" - -#: view/theme/duepuntozero/config.php:55 -msgid "greenzero" -msgstr "greenzero" - -#: view/theme/duepuntozero/config.php:56 -msgid "purplezero" -msgstr "purplezero" - -#: view/theme/duepuntozero/config.php:57 -msgid "easterbunny" -msgstr "Zajączek wielkanocny" - -#: view/theme/duepuntozero/config.php:58 -msgid "darkzero" -msgstr "darkzero" - -#: view/theme/duepuntozero/config.php:59 -msgid "comix" -msgstr "comix" - -#: view/theme/duepuntozero/config.php:60 -msgid "slackr" -msgstr "" - -#: view/theme/duepuntozero/config.php:74 -msgid "Variations" -msgstr "Zmiana" +#: view/theme/quattro/config.php:79 +msgid "Textareas font size" +msgstr "Rozmiar czcionki Textareas" #: view/theme/frio/php/Image.php:25 msgid "Repeat the image" @@ -7754,98 +9520,10 @@ msgstr "Gość" msgid "Visitor" msgstr "Odwiedzający" -#: view/theme/frio/theme.php:256 src/Content/Nav.php:97 -#: src/Module/Login.php:311 -msgid "Logout" -msgstr "Wyloguj się" - -#: view/theme/frio/theme.php:256 src/Content/Nav.php:97 -msgid "End this session" -msgstr "Zakończ sesję" - -#: view/theme/frio/theme.php:259 src/Content/Nav.php:100 -#: src/Content/Nav.php:181 -msgid "Your posts and conversations" -msgstr "Twoje posty i rozmowy" - -#: view/theme/frio/theme.php:260 src/Content/Nav.php:101 -msgid "Your profile page" -msgstr "Twoja strona profilowa" - -#: view/theme/frio/theme.php:261 src/Content/Nav.php:102 -msgid "Your photos" -msgstr "Twoje zdjęcia" - -#: view/theme/frio/theme.php:262 src/Content/Nav.php:103 -#: src/Model/Profile.php:914 src/Model/Profile.php:917 -msgid "Videos" -msgstr "Filmy" - -#: view/theme/frio/theme.php:262 src/Content/Nav.php:103 -msgid "Your videos" -msgstr "Twoje filmy" - -#: view/theme/frio/theme.php:263 src/Content/Nav.php:104 -msgid "Your events" -msgstr "Twoje wydarzenia" - -#: view/theme/frio/theme.php:266 src/Content/Nav.php:178 -msgid "Conversations from your friends" -msgstr "Rozmowy Twoich przyjaciół" - -#: view/theme/frio/theme.php:267 src/Content/Nav.php:169 -#: src/Model/Profile.php:929 src/Model/Profile.php:940 -msgid "Events and Calendar" -msgstr "Wydarzenia i kalendarz" - -#: view/theme/frio/theme.php:268 src/Content/Nav.php:195 -msgid "Private mail" -msgstr "Prywatne maile" - -#: view/theme/frio/theme.php:269 src/Content/Nav.php:206 -msgid "Account settings" -msgstr "Ustawienia konta" - -#: view/theme/frio/theme.php:270 src/Content/Nav.php:212 -msgid "Manage/edit friends and contacts" -msgstr "Zarządzaj listą przyjaciół i kontaktami" - -#: view/theme/quattro/config.php:76 -msgid "Alignment" -msgstr "Wyrównanie" - -#: view/theme/quattro/config.php:76 -msgid "Left" -msgstr "Lewo" - -#: view/theme/quattro/config.php:76 -msgid "Center" -msgstr "Środek" - -#: view/theme/quattro/config.php:77 -msgid "Color scheme" -msgstr "Zestaw kolorów" - -#: view/theme/quattro/config.php:78 -msgid "Posts font size" -msgstr "Rozmiar czcionki postów" - -#: view/theme/quattro/config.php:79 -msgid "Textareas font size" -msgstr "Rozmiar czcionki Textareas" - #: view/theme/vier/config.php:75 msgid "Comma separated list of helper forums" msgstr "Lista pomocników oddzielona przecinkami" -#: view/theme/vier/config.php:115 src/Core/ACL.php:309 -msgid "don't show" -msgstr "nie pokazuj" - -#: view/theme/vier/config.php:115 src/Core/ACL.php:308 -msgid "show" -msgstr "pokaż" - #: view/theme/vier/config.php:122 msgid "Set style" msgstr "Ustaw styl" @@ -7878,1713 +9556,37 @@ msgstr "Ostatni użytkownicy" msgid "Local Directory" msgstr "Katalog lokalny" -#: view/theme/vier/theme.php:202 src/Content/Widget.php:65 -msgid "Similar Interests" -msgstr "Podobne zainteresowania" - -#: view/theme/vier/theme.php:204 src/Content/Widget.php:67 -msgid "Invite Friends" -msgstr "Zaproś znajomych" - -#: view/theme/vier/theme.php:256 src/Content/ForumManager.php:127 -msgid "External link to forum" -msgstr "Zewnętrzny link do forum" - #: view/theme/vier/theme.php:292 msgid "Quick Start" msgstr "Szybki start" -#: src/Core/UserImport.php:104 -msgid "Error decoding account file" -msgstr "Błąd podczas odczytu pliku konta" +#: view/theme/duepuntozero/config.php:55 +msgid "greenzero" +msgstr "greenzero" -#: src/Core/UserImport.php:110 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Błąd! Brak danych wersji w pliku! To nie jest plik konta Friendica?" +#: view/theme/duepuntozero/config.php:56 +msgid "purplezero" +msgstr "purplezero" -#: src/Core/UserImport.php:118 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "Użytkownik '%s' już istnieje na tym serwerze!" +#: view/theme/duepuntozero/config.php:57 +msgid "easterbunny" +msgstr "Zajączek wielkanocny" -#: src/Core/UserImport.php:151 -msgid "User creation error" -msgstr "Błąd tworzenia użytkownika" +#: view/theme/duepuntozero/config.php:58 +msgid "darkzero" +msgstr "darkzero" -#: src/Core/UserImport.php:169 -msgid "User profile creation error" -msgstr "Błąd tworzenia profilu użytkownika" +#: view/theme/duepuntozero/config.php:59 +msgid "comix" +msgstr "comix" -#: src/Core/UserImport.php:213 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "Nie zaimportowano %d kontaktu." -msgstr[1] "Nie zaimportowano %d kontaktów." -msgstr[2] "Nie zaimportowano %d kontaktów." -msgstr[3] "%dkontakty nie zostały zaimportowane " - -#: src/Core/UserImport.php:278 -msgid "Done. You can now login with your username and password" -msgstr "Gotowe. Możesz teraz zalogować się, podając swoją nazwę użytkownika i hasło." - -#: src/Core/ACL.php:295 -msgid "Post to Email" -msgstr "Prześlij e-mailem" - -#: src/Core/ACL.php:301 -msgid "Hide your profile details from unknown viewers?" -msgstr "Ukryć szczegóły twojego profilu przed nieznajomymi?" - -#: src/Core/ACL.php:300 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Wtyczki są wyłączone, ponieważ \"%s\" jest włączone." - -#: src/Core/ACL.php:307 -msgid "Visible to everybody" -msgstr "Widoczny dla wszystkich" - -#: src/Core/ACL.php:319 -msgid "Close" -msgstr "Zamknij" - -#: src/Core/Console/NewPassword.php:78 -msgid "Enter new password: " -msgstr "Wprowadź nowe hasło:" - -#: src/Core/Console/NewPassword.php:83 src/Model/User.php:262 -msgid "Password can't be empty" -msgstr "Hasło nie może być puste" - -#: src/Core/NotificationsManager.php:171 -msgid "System" -msgstr "System" - -#: src/Core/NotificationsManager.php:192 src/Content/Nav.php:124 -#: src/Content/Nav.php:181 -msgid "Home" -msgstr "Strona domowa" - -#: src/Core/NotificationsManager.php:199 src/Content/Nav.php:186 -msgid "Introductions" -msgstr "Wstępy" - -#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s skomentował wpis %s" - -#: src/Core/NotificationsManager.php:267 -#, php-format -msgid "%s created a new post" -msgstr "%s dodał nowy wpis" - -#: src/Core/NotificationsManager.php:281 -#, php-format -msgid "%s liked %s's post" -msgstr "%s polubił wpis %s" - -#: src/Core/NotificationsManager.php:294 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s nie lubi tych %s postów" - -#: src/Core/NotificationsManager.php:307 -#, php-format -msgid "%s is attending %s's event" -msgstr "%suczestniczy %sw wydarzeniu " - -#: src/Core/NotificationsManager.php:320 -#, php-format -msgid "%s is not attending %s's event" -msgstr "%snie uczestniczy %s w wydarzeniu " - -#: src/Core/NotificationsManager.php:333 -#, php-format -msgid "%s may attend %s's event" -msgstr "%smoże uczestniczyć %s w wydarzeniu" - -#: src/Core/NotificationsManager.php:350 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s jest teraz znajomym %s" - -#: src/Core/NotificationsManager.php:825 -msgid "Friend Suggestion" -msgstr "Propozycja znajomych" - -#: src/Core/NotificationsManager.php:851 -msgid "Friend/Connect Request" -msgstr "Prośba o dodanie do przyjaciół/powiązanych" - -#: src/Core/NotificationsManager.php:851 -msgid "New Follower" -msgstr "Nowy obserwujący" - -#: src/Util/Temporal.php:147 src/Model/Profile.php:760 -msgid "Birthday:" -msgstr "Urodziny:" - -#: src/Util/Temporal.php:151 -msgid "YYYY-MM-DD or MM-DD" -msgstr "RRRR-MM-DD lub MM-DD" - -#: src/Util/Temporal.php:294 -msgid "never" -msgstr "nigdy" - -#: src/Util/Temporal.php:300 -msgid "less than a second ago" -msgstr "mniej niż sekundę temu" - -#: src/Util/Temporal.php:303 -msgid "year" -msgstr "rok" - -#: src/Util/Temporal.php:303 -msgid "years" -msgstr "lata" - -#: src/Util/Temporal.php:304 -msgid "months" -msgstr "miesiące" - -#: src/Util/Temporal.php:305 -msgid "weeks" -msgstr "tygodnie" - -#: src/Util/Temporal.php:306 -msgid "days" -msgstr "dni" - -#: src/Util/Temporal.php:307 -msgid "hour" -msgstr "godzina" - -#: src/Util/Temporal.php:307 -msgid "hours" -msgstr "godziny" - -#: src/Util/Temporal.php:308 -msgid "minute" -msgstr "minuta" - -#: src/Util/Temporal.php:308 -msgid "minutes" -msgstr "minuty" - -#: src/Util/Temporal.php:309 -msgid "second" -msgstr "sekunda" - -#: src/Util/Temporal.php:309 -msgid "seconds" -msgstr "sekundy" - -#: src/Util/Temporal.php:318 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s temu" - -#: src/Content/Text/BBCode.php:555 -msgid "view full size" -msgstr "Zobacz w pełnym wymiarze" - -#: src/Content/Text/BBCode.php:981 src/Content/Text/BBCode.php:1750 -#: src/Content/Text/BBCode.php:1751 -msgid "Image/photo" -msgstr "Obrazek/zdjęcie" - -#: src/Content/Text/BBCode.php:1119 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s%3$s" - -#: src/Content/Text/BBCode.php:1677 src/Content/Text/BBCode.php:1699 -msgid "$1 wrote:" -msgstr "$1 napisał:" - -#: src/Content/Text/BBCode.php:1759 src/Content/Text/BBCode.php:1760 -msgid "Encrypted content" -msgstr "Szyfrowana treść" - -#: src/Content/Text/BBCode.php:1879 -msgid "Invalid source protocol" -msgstr "Nieprawidłowy protokół źródłowy" - -#: src/Content/Text/BBCode.php:1890 -msgid "Invalid link protocol" -msgstr "Niepoprawny link protokołu" - -#: src/Content/Nav.php:53 -msgid "Nothing new here" -msgstr "Brak nowych zdarzeń" - -#: src/Content/Nav.php:57 -msgid "Clear notifications" -msgstr "Wyczyść powiadomienia" - -#: src/Content/Nav.php:105 -msgid "Personal notes" -msgstr "Notatki" - -#: src/Content/Nav.php:105 -msgid "Your personal notes" -msgstr "Twoje prywatne notatki" - -#: src/Content/Nav.php:114 -msgid "Sign in" -msgstr "Zaloguj się" - -#: src/Content/Nav.php:124 -msgid "Home Page" -msgstr "Strona startowa" - -#: src/Content/Nav.php:128 -msgid "Create an account" -msgstr "Załóż konto" - -#: src/Content/Nav.php:134 -msgid "Help and documentation" -msgstr "Pomoc i dokumentacja" - -#: src/Content/Nav.php:138 -msgid "Apps" -msgstr "Aplikacje" - -#: src/Content/Nav.php:138 -msgid "Addon applications, utilities, games" -msgstr "Wtyczki, aplikacje, narzędzia, gry" - -#: src/Content/Nav.php:142 -msgid "Search site content" -msgstr "Przeszukaj zawartość strony" - -#: src/Content/Nav.php:165 -msgid "Community" -msgstr "Społeczność" - -#: src/Content/Nav.php:165 -msgid "Conversations on this and other servers" -msgstr "Rozmowy na tym i innych serwerach" - -#: src/Content/Nav.php:172 -msgid "Directory" -msgstr "Katalog" - -#: src/Content/Nav.php:172 -msgid "People directory" -msgstr "Katalog osób" - -#: src/Content/Nav.php:174 -msgid "Information about this friendica instance" -msgstr "Informacje o tej instancji friendica" - -#: src/Content/Nav.php:179 -msgid "Network Reset" -msgstr "Resetowanie sieci" - -#: src/Content/Nav.php:179 -msgid "Load Network page with no filters" -msgstr "Załaduj stronę sieci bez filtrów" - -#: src/Content/Nav.php:186 -msgid "Friend Requests" -msgstr "Prośba o przyjęcie do grona znajomych" - -#: src/Content/Nav.php:190 -msgid "See all notifications" -msgstr "Zobacz wszystkie powiadomienia" - -#: src/Content/Nav.php:191 -msgid "Mark all system notifications seen" -msgstr "Oznacz wszystkie powiadomienia systemu jako przeczytane" - -#: src/Content/Nav.php:196 -msgid "Inbox" -msgstr "Odebrane" - -#: src/Content/Nav.php:197 -msgid "Outbox" -msgstr "Wysłane" - -#: src/Content/Nav.php:201 -msgid "Manage" -msgstr "Zarządzaj" - -#: src/Content/Nav.php:201 -msgid "Manage other pages" -msgstr "Zarządzaj innymi stronami" - -#: src/Content/Nav.php:209 src/Model/Profile.php:372 -msgid "Profiles" -msgstr "Profile" - -#: src/Content/Nav.php:209 -msgid "Manage/Edit Profiles" -msgstr "Zarządzaj/Edytuj profile" - -#: src/Content/Nav.php:217 -msgid "Site setup and configuration" -msgstr "Konfiguracja i ustawienia instancji" - -#: src/Content/Nav.php:220 -msgid "Navigation" -msgstr "Nawigacja" - -#: src/Content/Nav.php:220 -msgid "Site map" -msgstr "Mapa strony" - -#: src/Content/Feature.php:79 -msgid "General Features" -msgstr "Funkcje ogólne" - -#: src/Content/Feature.php:81 -msgid "Multiple Profiles" -msgstr "Wiele profili" - -#: src/Content/Feature.php:81 -msgid "Ability to create multiple profiles" -msgstr "Możliwość tworzenia wielu profili" - -#: src/Content/Feature.php:82 -msgid "Photo Location" -msgstr "Lokalizacja zdjęcia" - -#: src/Content/Feature.php:82 -msgid "" -"Photo metadata is normally stripped. This extracts the location (if present)" -" prior to stripping metadata and links it to a map." -msgstr "Metadane zdjęć są zwykle usuwane. Wyodrębnia to położenie (jeśli jest obecne) przed usunięciem metadanych i łączy je z mapą." - -#: src/Content/Feature.php:83 -msgid "Export Public Calendar" -msgstr "Eksportuj kalendarz publiczny" - -#: src/Content/Feature.php:83 -msgid "Ability for visitors to download the public calendar" -msgstr "Możliwość pobierania kalendarza publicznego przez odwiedzających" - -#: src/Content/Feature.php:88 -msgid "Post Composition Features" -msgstr "Ustawienia funkcji postów" - -#: src/Content/Feature.php:89 -msgid "Post Preview" -msgstr "Podgląd posta" - -#: src/Content/Feature.php:89 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Zezwalaj na podgląd postów i komentarzy przed ich opublikowaniem" - -#: src/Content/Feature.php:90 -msgid "Auto-mention Forums" -msgstr "Automatyczne wymienianie forów" - -#: src/Content/Feature.php:90 -msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "Dodaj/usuń wzmiankę, gdy strona forum zostanie wybrana/cofnięta w oknie ACL." - -#: src/Content/Feature.php:95 -msgid "Network Sidebar Widgets" -msgstr "Widgety paska bocznego sieci" - -#: src/Content/Feature.php:96 -msgid "Search by Date" -msgstr "Szukanie wg daty" - -#: src/Content/Feature.php:96 -msgid "Ability to select posts by date ranges" -msgstr "Wybierz wpisy według zakresów dat" - -#: src/Content/Feature.php:97 src/Content/Feature.php:127 -msgid "List Forums" -msgstr "Lista forów" - -#: src/Content/Feature.php:97 -msgid "Enable widget to display the forums your are connected with" -msgstr "Włącz widżet, aby wyświetlić fora, z którymi jesteś połączony" - -#: src/Content/Feature.php:98 -msgid "Group Filter" -msgstr "Filtr grupowy" - -#: src/Content/Feature.php:98 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Włącz widżet, aby wyświetlać posty sieciowe tylko z wybranej grupy" - -#: src/Content/Feature.php:99 -msgid "Network Filter" -msgstr "Filtr sieciowy" - -#: src/Content/Feature.php:99 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Włącz widżet, aby wyświetlać posty sieciowe tylko z wybranej sieci" - -#: src/Content/Feature.php:100 -msgid "Save search terms for re-use" -msgstr "Zapisz wyszukiwane hasła do ponownego użycia" - -#: src/Content/Feature.php:105 -msgid "Network Tabs" -msgstr "Etykiety sieciowe" - -#: src/Content/Feature.php:106 -msgid "Network Personal Tab" -msgstr "Etykieta Sieć Osobista" - -#: src/Content/Feature.php:106 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Włącz etykietę, by wyświetlać posty tylko z sieci, z którymi współpracujesz" - -#: src/Content/Feature.php:107 -msgid "Network New Tab" -msgstr "Etykieta Nowe Posty Sieciowe" - -#: src/Content/Feature.php:107 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Włącz etykietę, aby wyświetlić tylko nowe posty sieciowe (z ostatnich 12 godzin)" - -#: src/Content/Feature.php:108 -msgid "Network Shared Links Tab" -msgstr "Etykieta Udostępnianie Łącz Sieciowych" - -#: src/Content/Feature.php:108 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Włącz etykietę, aby wyświetlić tylko posty sieciowe z łączami do nich" - -#: src/Content/Feature.php:113 -msgid "Post/Comment Tools" -msgstr "Narzędzia post/komentarz" - -#: src/Content/Feature.php:114 -msgid "Multiple Deletion" -msgstr "Wielokrotne Usuwanie" - -#: src/Content/Feature.php:114 -msgid "Select and delete multiple posts/comments at once" -msgstr "Wybierz i usuń wiele postów/komentarzy jednocześnie" - -#: src/Content/Feature.php:115 -msgid "Edit Sent Posts" -msgstr "Edytuj wysłane posty" - -#: src/Content/Feature.php:115 -msgid "Edit and correct posts and comments after sending" -msgstr "Edycja i poprawianie wpisów i komentarzy po wysłaniu" - -#: src/Content/Feature.php:116 -msgid "Tagging" -msgstr "Tagowanie" - -#: src/Content/Feature.php:116 -msgid "Ability to tag existing posts" -msgstr "Możliwość oznaczania istniejących postów" - -#: src/Content/Feature.php:117 -msgid "Post Categories" -msgstr "Kategorie postów" - -#: src/Content/Feature.php:117 -msgid "Add categories to your posts" -msgstr "Dodaj kategorie do twoich postów" - -#: src/Content/Feature.php:118 src/Content/Widget.php:200 -msgid "Saved Folders" -msgstr "Zapisane foldery" - -#: src/Content/Feature.php:118 -msgid "Ability to file posts under folders" -msgstr "Możliwość przesyłania postów do folderów" - -#: src/Content/Feature.php:119 -msgid "Dislike Posts" -msgstr "Nie lubię Postów" - -#: src/Content/Feature.php:119 -msgid "Ability to dislike posts/comments" -msgstr "Możliwa niechęć do postów/komentarzy" - -#: src/Content/Feature.php:120 -msgid "Star Posts" -msgstr "Oznacz posty gwiazdką" - -#: src/Content/Feature.php:120 -msgid "Ability to mark special posts with a star indicator" -msgstr "Oznacz specjalne posty gwiazdką" - -#: src/Content/Feature.php:121 -msgid "Mute Post Notifications" -msgstr "Ignoruj ​​powiadomienia pocztą" - -#: src/Content/Feature.php:121 -msgid "Ability to mute notifications for a thread" -msgstr "Ignoruj powiadomienia dla wątku" - -#: src/Content/Feature.php:126 -msgid "Advanced Profile Settings" -msgstr "Zaawansowane ustawienia profilu" - -#: src/Content/Feature.php:127 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "Wyświetlaj publiczne fora społeczności na stronie profilu zaawansowanego" - -#: src/Content/Feature.php:128 -msgid "Tag Cloud" -msgstr "Chmura tagów" - -#: src/Content/Feature.php:128 -msgid "Provide a personal tag cloud on your profile page" -msgstr "Podaj osobistą chmurę tagów na stronie profilu" - -#: src/Content/Feature.php:129 -msgid "Display Membership Date" -msgstr "Wyświetl datę członkostwa" - -#: src/Content/Feature.php:129 -msgid "Display membership date in profile" -msgstr "Wyświetl datę członkostwa w profilu" - -#: src/Content/OEmbed.php:253 -msgid "Embedding disabled" -msgstr "Osadzanie wyłączone" - -#: src/Content/OEmbed.php:373 -msgid "Embedded content" -msgstr "Osadzona zawartość" - -#: src/Content/Widget/CalendarExport.php:61 -msgid "Export" -msgstr "Eksport" - -#: src/Content/Widget/CalendarExport.php:62 -msgid "Export calendar as ical" -msgstr "Wyeksportuj kalendarz jako ical" - -#: src/Content/Widget/CalendarExport.php:63 -msgid "Export calendar as csv" -msgstr "Eksportuj kalendarz jako csv" - -#: src/Content/Widget.php:33 -msgid "Add New Contact" -msgstr "Dodaj nowy kontakt" - -#: src/Content/Widget.php:34 -msgid "Enter address or web location" -msgstr "Wpisz adres lub lokalizację sieciową" - -#: src/Content/Widget.php:35 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Przykład: bob@przykład.com, http://przykład.com/barbara" - -#: src/Content/Widget.php:53 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d zaproszenie dostępne" -msgstr[1] "%d zaproszeń dostępnych" -msgstr[2] "%d zaproszenia dostępne" -msgstr[3] "%d zaproszenia dostępne" - -#: src/Content/Widget.php:59 -msgid "Find People" -msgstr "Znajdź ludzi" - -#: src/Content/Widget.php:60 -msgid "Enter name or interest" -msgstr "Wpisz nazwę lub zainteresowanie" - -#: src/Content/Widget.php:62 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Przykład: Jan Kowalski, Wędkarstwo" - -#: src/Content/Widget.php:66 -msgid "Random Profile" -msgstr "Domyślny profil" - -#: src/Content/Widget.php:68 -msgid "View Global Directory" -msgstr "Wyświetl globalny katalog" - -#: src/Content/Widget.php:159 -msgid "Networks" -msgstr "Sieci" - -#: src/Content/Widget.php:162 -msgid "All Networks" -msgstr "Wszystkie Sieci" - -#: src/Content/Widget.php:203 src/Content/Widget.php:243 -msgid "Everything" -msgstr "Wszystko" - -#: src/Content/Widget.php:240 -msgid "Categories" -msgstr "Kategorie" - -#: src/Content/Widget.php:307 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: src/Content/ContactSelector.php:55 -msgid "Frequently" -msgstr "Często" - -#: src/Content/ContactSelector.php:56 -msgid "Hourly" -msgstr "Co godzinę" - -#: src/Content/ContactSelector.php:57 -msgid "Twice daily" -msgstr "Dwa razy dziennie" - -#: src/Content/ContactSelector.php:58 -msgid "Daily" -msgstr "Codziennie" - -#: src/Content/ContactSelector.php:59 -msgid "Weekly" -msgstr "Co tydzień" - -#: src/Content/ContactSelector.php:60 -msgid "Monthly" -msgstr "Miesięczne" - -#: src/Content/ContactSelector.php:80 -msgid "OStatus" -msgstr "OStatus" - -#: src/Content/ContactSelector.php:81 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: src/Content/ContactSelector.php:84 -msgid "Facebook" -msgstr "Facebook" - -#: src/Content/ContactSelector.php:85 -msgid "Zot!" -msgstr "Zot!" - -#: src/Content/ContactSelector.php:86 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: src/Content/ContactSelector.php:87 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: src/Content/ContactSelector.php:88 -msgid "MySpace" -msgstr "MySpace" - -#: src/Content/ContactSelector.php:89 -msgid "Google+" -msgstr "Google+" - -#: src/Content/ContactSelector.php:90 -msgid "pump.io" -msgstr "pump.io" - -#: src/Content/ContactSelector.php:91 -msgid "Twitter" -msgstr "Twitter" - -#: src/Content/ContactSelector.php:92 -msgid "Diaspora Connector" -msgstr "Łącze Diaspora" - -#: src/Content/ContactSelector.php:93 -msgid "GNU Social Connector" -msgstr "GNU Połączenie Społecznościowe" - -#: src/Content/ContactSelector.php:94 -msgid "pnut" -msgstr "orzech" - -#: src/Content/ContactSelector.php:95 -msgid "App.net" -msgstr "App.net" - -#: src/Content/ContactSelector.php:125 -msgid "Male" -msgstr "Mężczyzna" - -#: src/Content/ContactSelector.php:125 -msgid "Female" -msgstr "Kobieta" - -#: src/Content/ContactSelector.php:125 -msgid "Currently Male" -msgstr "Obecnie mężczyzna" - -#: src/Content/ContactSelector.php:125 -msgid "Currently Female" -msgstr "Obecnie Kobieta" - -#: src/Content/ContactSelector.php:125 -msgid "Mostly Male" -msgstr "Głównie mężczyzna" - -#: src/Content/ContactSelector.php:125 -msgid "Mostly Female" -msgstr "Głównie kobieta" - -#: src/Content/ContactSelector.php:125 -msgid "Transgender" -msgstr "Transseksualny" - -#: src/Content/ContactSelector.php:125 -msgid "Intersex" -msgstr "Interseksualne" - -#: src/Content/ContactSelector.php:125 -msgid "Transsexual" -msgstr "Transseksualny" - -#: src/Content/ContactSelector.php:125 -msgid "Hermaphrodite" -msgstr "Hermafrodyta" - -#: src/Content/ContactSelector.php:125 -msgid "Neuter" -msgstr "Rodzaj nijaki" - -#: src/Content/ContactSelector.php:125 -msgid "Non-specific" -msgstr "Niespecyficzne" - -#: src/Content/ContactSelector.php:125 -msgid "Other" -msgstr "Inne" - -#: src/Content/ContactSelector.php:147 -msgid "Males" -msgstr "Mężczyźni" - -#: src/Content/ContactSelector.php:147 -msgid "Females" -msgstr "Kobiety" - -#: src/Content/ContactSelector.php:147 -msgid "Gay" -msgstr "Gej" - -#: src/Content/ContactSelector.php:147 -msgid "Lesbian" -msgstr "Lesbijka" - -#: src/Content/ContactSelector.php:147 -msgid "No Preference" -msgstr "Brak preferencji" - -#: src/Content/ContactSelector.php:147 -msgid "Bisexual" -msgstr "Biseksualny" - -#: src/Content/ContactSelector.php:147 -msgid "Autosexual" -msgstr "Niezidentyfikowany" - -#: src/Content/ContactSelector.php:147 -msgid "Abstinent" -msgstr "Abstynent" - -#: src/Content/ContactSelector.php:147 -msgid "Virgin" -msgstr "Dziewica" - -#: src/Content/ContactSelector.php:147 -msgid "Deviant" -msgstr "Zboczeniec" - -#: src/Content/ContactSelector.php:147 -msgid "Fetish" -msgstr "Fetysz" - -#: src/Content/ContactSelector.php:147 -msgid "Oodles" -msgstr "Nadmiar" - -#: src/Content/ContactSelector.php:147 -msgid "Nonsexual" -msgstr "Nieseksualny" - -#: src/Content/ContactSelector.php:169 -msgid "Single" -msgstr "Singiel" - -#: src/Content/ContactSelector.php:169 -msgid "Lonely" -msgstr "Samotny" - -#: src/Content/ContactSelector.php:169 -msgid "Available" -msgstr "Dostępny" - -#: src/Content/ContactSelector.php:169 -msgid "Unavailable" -msgstr "Niedostępny" - -#: src/Content/ContactSelector.php:169 -msgid "Has crush" -msgstr "Ma sympatii" - -#: src/Content/ContactSelector.php:169 -msgid "Infatuated" -msgstr "Zakochany" - -#: src/Content/ContactSelector.php:169 -msgid "Dating" -msgstr "Randki" - -#: src/Content/ContactSelector.php:169 -msgid "Unfaithful" -msgstr "Niewierny" - -#: src/Content/ContactSelector.php:169 -msgid "Sex Addict" -msgstr "Uzależniony od seksu" - -#: src/Content/ContactSelector.php:169 src/Model/User.php:519 -msgid "Friends" -msgstr "Przyjaciele" - -#: src/Content/ContactSelector.php:169 -msgid "Friends/Benefits" -msgstr "Przyjaciele/Korzyści" - -#: src/Content/ContactSelector.php:169 -msgid "Casual" -msgstr "Przypadkowy" - -#: src/Content/ContactSelector.php:169 -msgid "Engaged" -msgstr "Zaręczeni" - -#: src/Content/ContactSelector.php:169 -msgid "Married" -msgstr "Małżeństwo" - -#: src/Content/ContactSelector.php:169 -msgid "Imaginarily married" -msgstr "Fikcyjnie w związku małżeńskim" - -#: src/Content/ContactSelector.php:169 -msgid "Partners" -msgstr "Partnerzy" - -#: src/Content/ContactSelector.php:169 -msgid "Cohabiting" -msgstr "Konkubinat" - -#: src/Content/ContactSelector.php:169 -msgid "Common law" -msgstr "Prawo zwyczajowe" - -#: src/Content/ContactSelector.php:169 -msgid "Happy" -msgstr "Szczęśliwy" - -#: src/Content/ContactSelector.php:169 -msgid "Not looking" -msgstr "Nie patrzę" - -#: src/Content/ContactSelector.php:169 -msgid "Swinger" -msgstr "Swinger" - -#: src/Content/ContactSelector.php:169 -msgid "Betrayed" -msgstr "Zdradzony" - -#: src/Content/ContactSelector.php:169 -msgid "Separated" -msgstr "W separacji" - -#: src/Content/ContactSelector.php:169 -msgid "Unstable" -msgstr "Niestabilny" - -#: src/Content/ContactSelector.php:169 -msgid "Divorced" -msgstr "Rozwiedzeni" - -#: src/Content/ContactSelector.php:169 -msgid "Imaginarily divorced" -msgstr "Fikcyjnie rozwiedziony/a" - -#: src/Content/ContactSelector.php:169 -msgid "Widowed" -msgstr "Wdowiec" - -#: src/Content/ContactSelector.php:169 -msgid "Uncertain" -msgstr "Nieokreślony" - -#: src/Content/ContactSelector.php:169 -msgid "It's complicated" -msgstr "To skomplikowane" - -#: src/Content/ContactSelector.php:169 -msgid "Don't care" -msgstr "Nie przejmuj się" - -#: src/Content/ContactSelector.php:169 -msgid "Ask me" -msgstr "Zapytaj mnie " - -#: src/Database/DBStructure.php:32 -msgid "There are no tables on MyISAM." -msgstr "W MyISAM nie ma tabel." - -#: src/Database/DBStructure.php:75 -#, php-format -msgid "" -"\n" -"\t\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "\n\t\t\t\tDeweloperzy friendica wydali niedawno aktualizację %s,\n\t\t\t\tale podczas próby instalacji, coś poszło nie tak.\n\t\t\t\tZostanie to naprawione wkrótce i nie mogę tego zrobić sam. Proszę skontaktować się z \n\t\t\t\tprogramistami friendica, jeśli nie możesz mi pomóc na własną rękę. Moja baza danych może być nieprawidłowa." - -#: src/Database/DBStructure.php:80 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Komunikat o błędzie jest \n[pre]%s[/ pre]" - -#: src/Database/DBStructure.php:191 -#, php-format -msgid "" -"\n" -"Error %d occurred during database update:\n" -"%s\n" -msgstr "\nWystąpił błąd %d podczas aktualizacji bazy danych:\n%s\n" - -#: src/Database/DBStructure.php:194 -msgid "Errors encountered performing database changes: " -msgstr "Napotkane błędy powodujące zmiany w bazie danych:" - -#: src/Database/DBStructure.php:210 -msgid ": Database update" -msgstr ": Aktualizacja bazy danych" - -#: src/Database/DBStructure.php:460 -#, php-format -msgid "%s: updating %s table." -msgstr "%s: aktualizowanie %s tabeli." - -#: src/Model/Mail.php:40 src/Model/Mail.php:174 -msgid "[no subject]" -msgstr "[bez tematu]" - -#: src/Model/Item.php:1676 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$suczestniczy %2$s's %3$s " - -#: src/Model/Item.php:1681 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$snie uczestniczy %2$s's %3$s " - -#: src/Model/Item.php:1686 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$smogą uczestniczyć %2$s's %3$s " - -#: src/Model/Contact.php:657 -msgid "Drop Contact" -msgstr "Upuść kontakt" - -#: src/Model/Contact.php:1060 -msgid "Organisation" -msgstr "Organizacja" - -#: src/Model/Contact.php:1063 -msgid "News" -msgstr "Aktualności" - -#: src/Model/Contact.php:1066 -msgid "Forum" -msgstr "Forum" - -#: src/Model/Contact.php:1245 -msgid "Connect URL missing." -msgstr "Brak adresu URL połączenia." - -#: src/Model/Contact.php:1254 -msgid "" -"The contact could not be added. Please check the relevant network " -"credentials in your Settings -> Social Networks page." -msgstr "Nie można dodać kontaktu. Sprawdź odpowiednie poświadczenia sieciowe na stronie Ustawienia -> Sieci społecznościowe." - -#: src/Model/Contact.php:1301 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami" - -#: src/Model/Contact.php:1302 src/Model/Contact.php:1316 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Nie znaleziono żadnych kompatybilnych protokołów komunikacyjnych ani źródeł." - -#: src/Model/Contact.php:1314 -msgid "The profile address specified does not provide adequate information." -msgstr "Dany adres profilu nie dostarcza odpowiednich informacji." - -#: src/Model/Contact.php:1319 -msgid "An author or name was not found." -msgstr "Autor lub nazwa nie zostało znalezione." - -#: src/Model/Contact.php:1322 -msgid "No browser URL could be matched to this address." -msgstr "Przeglądarka WWW nie może odnaleźć podanego adresu" - -#: src/Model/Contact.php:1325 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Nie można dopasować @-stylu Adres identyfikacyjny ze znanym protokołem lub kontaktem e-mail." - -#: src/Model/Contact.php:1326 -msgid "Use mailto: in front of address to force email check." -msgstr "Użyj mailto: przed adresem, aby wymusić sprawdzanie poczty e-mail." - -#: src/Model/Contact.php:1332 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Określony adres profilu należy do sieci, która została wyłączona na tej stronie." - -#: src/Model/Contact.php:1337 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie." - -#: src/Model/Contact.php:1388 -msgid "Unable to retrieve contact information." -msgstr "Nie można otrzymać informacji kontaktowych" - -#: src/Model/Contact.php:1605 -#, php-format -msgid "%s's birthday" -msgstr "Urodziny %s" - -#: src/Model/Contact.php:1606 src/Protocol/DFRN.php:1483 -#, php-format -msgid "Happy Birthday %s" -msgstr "Urodziny %s" - -#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419 -#: src/Model/Event.php:882 -msgid "Starts:" -msgstr "Rozpoczęcie:" - -#: src/Model/Event.php:56 src/Model/Event.php:76 src/Model/Event.php:420 -#: src/Model/Event.php:886 -msgid "Finishes:" -msgstr "Zakończenie:" - -#: src/Model/Event.php:368 -msgid "all-day" -msgstr "cały dzień" - -#: src/Model/Event.php:391 -msgid "Jun" -msgstr "cze" - -#: src/Model/Event.php:394 -msgid "Sept" -msgstr "wrz" - -#: src/Model/Event.php:417 -msgid "No events to display" -msgstr "Brak wydarzeń do wyświetlenia" - -#: src/Model/Event.php:543 -msgid "l, F j" -msgstr "d, M d " - -#: src/Model/Event.php:566 -msgid "Edit event" -msgstr "Edytuj wydarzenie" - -#: src/Model/Event.php:567 -msgid "Duplicate event" -msgstr "Zduplikowane zdarzenie" - -#: src/Model/Event.php:568 -msgid "Delete event" -msgstr "Usuń wydarzenie" - -#: src/Model/Event.php:815 -msgid "D g:i A" +#: view/theme/duepuntozero/config.php:60 +msgid "slackr" msgstr "" -#: src/Model/Event.php:816 -msgid "g:i A" -msgstr "" - -#: src/Model/Event.php:901 src/Model/Event.php:903 -msgid "Show map" -msgstr "Pokaż mapę" - -#: src/Model/Event.php:902 -msgid "Hide map" -msgstr "Ukryj mapę" - -#: src/Model/Group.php:44 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Skasowana grupa o tej nazwie została przywrócona. Istniejące uprawnienia do pozycji mogą dotyczyć tej grupy i wszystkich przyszłych członków. Jeśli nie jest to zamierzone, utwórz inną grupę o innej nazwie." - -#: src/Model/Group.php:341 -msgid "Default privacy group for new contacts" -msgstr "Domyślne ustawienia prywatności dla nowych kontaktów" - -#: src/Model/Group.php:374 -msgid "Everybody" -msgstr "Wszyscy" - -#: src/Model/Group.php:394 -msgid "edit" -msgstr "edytuj" - -#: src/Model/Group.php:418 -msgid "Edit group" -msgstr "Edytuj grupy" - -#: src/Model/Group.php:419 -msgid "Contacts not in any group" -msgstr "Kontakt nie jest w żadnej grupie" - -#: src/Model/Group.php:420 -msgid "Create a new group" -msgstr "Stwórz nową grupę" - -#: src/Model/Group.php:422 -msgid "Edit groups" -msgstr "Edytuj grupy" - -#: src/Model/Profile.php:97 -msgid "Requested account is not available." -msgstr "Żądane konto jest niedostępne." - -#: src/Model/Profile.php:168 src/Model/Profile.php:399 -#: src/Model/Profile.php:861 -msgid "Edit profile" -msgstr "Edytuj profil" - -#: src/Model/Profile.php:336 -msgid "Atom feed" -msgstr "Kanał Atom" - -#: src/Model/Profile.php:372 -msgid "Manage/edit profiles" -msgstr "Zarządzaj profilami" - -#: src/Model/Profile.php:550 src/Model/Profile.php:643 -msgid "g A l F d" -msgstr "g A I F d" - -#: src/Model/Profile.php:551 -msgid "F d" -msgstr "" - -#: src/Model/Profile.php:608 src/Model/Profile.php:705 -msgid "[today]" -msgstr "[dziś]" - -#: src/Model/Profile.php:619 -msgid "Birthday Reminders" -msgstr "Przypomnienia o urodzinach" - -#: src/Model/Profile.php:620 -msgid "Birthdays this week:" -msgstr "Urodziny w tym tygodniu:" - -#: src/Model/Profile.php:692 -msgid "[No description]" -msgstr "[Brak opisu]" - -#: src/Model/Profile.php:719 -msgid "Event Reminders" -msgstr "Przypominacze wydarzeń" - -#: src/Model/Profile.php:720 -msgid "Events this week:" -msgstr "Wydarzenia w tym tygodniu:" - -#: src/Model/Profile.php:743 -msgid "Member since:" -msgstr "Członek od:" - -#: src/Model/Profile.php:751 -msgid "j F, Y" -msgstr "d M, R" - -#: src/Model/Profile.php:752 -msgid "j F" -msgstr "d M" - -#: src/Model/Profile.php:767 -msgid "Age:" -msgstr "Wiek:" - -#: src/Model/Profile.php:780 -#, php-format -msgid "for %1$d %2$s" -msgstr "od %1$d %2$s" - -#: src/Model/Profile.php:804 -msgid "Religion:" -msgstr "Religia:" - -#: src/Model/Profile.php:812 -msgid "Hobbies/Interests:" -msgstr "Hobby/Zainteresowania:" - -#: src/Model/Profile.php:824 -msgid "Contact information and Social Networks:" -msgstr "Informacje kontaktowe i sieci społeczne" - -#: src/Model/Profile.php:828 -msgid "Musical interests:" -msgstr "Zainteresowania muzyczne:" - -#: src/Model/Profile.php:832 -msgid "Books, literature:" -msgstr "Książki, literatura:" - -#: src/Model/Profile.php:836 -msgid "Television:" -msgstr "Telewizja:" - -#: src/Model/Profile.php:840 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/taniec/kultura/rozrywka" - -#: src/Model/Profile.php:844 -msgid "Love/Romance:" -msgstr "Miłość/Romans:" - -#: src/Model/Profile.php:848 -msgid "Work/employment:" -msgstr "Praca/zatrudnienie:" - -#: src/Model/Profile.php:852 -msgid "School/education:" -msgstr "Szkoła/edukacja:" - -#: src/Model/Profile.php:857 -msgid "Forums:" -msgstr "Fora:" - -#: src/Model/Profile.php:951 -msgid "Only You Can See This" -msgstr "Tylko ty możesz to zobaczyć" - -#: src/Model/User.php:154 -msgid "Login failed" -msgstr "Logowanie nieudane" - -#: src/Model/User.php:185 -msgid "Not enough information to authenticate" -msgstr "Za mało informacji do uwierzytelnienia" - -#: src/Model/User.php:346 -msgid "An invitation is required." -msgstr "Wymagane zaproszenie." - -#: src/Model/User.php:350 -msgid "Invitation could not be verified." -msgstr "Zaproszenie niezweryfikowane." - -#: src/Model/User.php:357 -msgid "Invalid OpenID url" -msgstr "Nieprawidłowy adres url OpenID" - -#: src/Model/User.php:370 src/Module/Login.php:100 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Napotkaliśmy problem podczas logowania z podanym przez nas identyfikatorem OpenID. Sprawdź poprawną pisownię identyfikatora." - -#: src/Model/User.php:370 src/Module/Login.php:100 -msgid "The error message was:" -msgstr "Komunikat o błędzie:" - -#: src/Model/User.php:376 -msgid "Please enter the required information." -msgstr "Wprowadź wymagane informacje" - -#: src/Model/User.php:389 -msgid "Please use a shorter name." -msgstr "Użyj dłuższej nazwy." - -#: src/Model/User.php:392 -msgid "Name too short." -msgstr "Nazwa jest za krótka." - -#: src/Model/User.php:400 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Wydaje mi się, że to nie jest twoje pełne imię (pierwsze imię) i nazwisko." - -#: src/Model/User.php:405 -msgid "Your email domain is not among those allowed on this site." -msgstr "Twoja domena internetowa nie jest obsługiwana na tej stronie." - -#: src/Model/User.php:409 -msgid "Not a valid email address." -msgstr "Niepoprawny adres e mail.." - -#: src/Model/User.php:413 src/Model/User.php:421 -msgid "Cannot use that email." -msgstr "Nie możesz użyć tego e-maila. " - -#: src/Model/User.php:428 -msgid "Your nickname can only contain a-z, 0-9 and _." -msgstr "Twój pseudonim może zawierać tylko a-z, 0-9 i _." - -#: src/Model/User.php:435 src/Model/User.php:491 -msgid "Nickname is already registered. Please choose another." -msgstr "Ten login jest zajęty. Wybierz inny." - -#: src/Model/User.php:445 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń." - -#: src/Model/User.php:478 src/Model/User.php:482 -msgid "An error occurred during registration. Please try again." -msgstr "Wystąpił bład podczas rejestracji, Spróbuj ponownie." - -#: src/Model/User.php:507 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie." - -#: src/Model/User.php:514 -msgid "An error occurred creating your self contact. Please try again." -msgstr "Wystąpił błąd podczas tworzenia własnego kontaktu. Proszę spróbuj ponownie." - -#: src/Model/User.php:523 -msgid "" -"An error occurred creating your default contact group. Please try again." -msgstr "Wystąpił błąd podczas tworzenia domyślnej grupy kontaktów. Proszę spróbuj ponownie." - -#: src/Model/User.php:597 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" -"\t\t" -msgstr "\n\t\t\tDrodzy %1$s, \n\t\t\t\tDziękujemy za rejestrację na stronie %2$s. Twoje konto czeka na zatwierdzenie przez administratora." - -#: src/Model/User.php:607 -#, php-format -msgid "Registration at %s" -msgstr "Rejestracja w %s" - -#: src/Model/User.php:625 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t\t" -msgstr "\n\t\t\tDrodzy %1$s, \n\t\t\t\tDziękujemy za rejestrację na stronie %2$s. Twoje konto zostało utworzone." - -#: src/Model/User.php:629 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t\t%1$s\n" -"\t\t\tPassword:\t\t%5$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n" -"\n" -"\t\t\tThank you and welcome to %2$s." -msgstr "\n\t\t\tDane logowania są następuje:\n\t\t\tLokalizacja witryny:\t%3$s\n\t\t\tNazwa użytkownika:\t\t%1$s\n\t\t\tHasło:\t\t%5$s\n\n\t\t\tPo zalogowaniu możesz zmienić hasło do swojego konta na stronie \"Ustawienia\"\n \t\t\tProszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie.\n\n\t\t\tMożesz również dodać podstawowe informacje do swojego domyślnego profilu\n\t\t\t(na stronie \"Profil\"), aby inne osoby mogły łatwo Cię znaleźć.\n\n\t\t\tZalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego,\n\t\t\tdodanie niektórych \"słów kluczowych\" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) - i\n\t\t\tbyć może w jakim kraju mieszkasz; jeśli nie chcesz być bardziej szczegółowy.\n\n\t\t\tW pełni szanujemy Twoje prawo do prywatności i żaden z tych elementów nie jest konieczny.\n\t\t\tJeśli jesteś nowy i nie znasz tutaj nikogo, oni mogą ci pomóc\n\t\t\tmożesz zdobyć nowych interesujących przyjaciół\n\n\t\t\tJeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić w %3$s/Usuń konto\n\n\t\t\tDziękujemy i Zapraszamy do %2$s." - -#: src/Protocol/OStatus.php:1799 -#, php-format -msgid "%s is now following %s." -msgstr "%sjest teraz następujące %s. " - -#: src/Protocol/OStatus.php:1800 -msgid "following" -msgstr "następujący" - -#: src/Protocol/OStatus.php:1803 -#, php-format -msgid "%s stopped following %s." -msgstr "%sprzestał śledzić %s. " - -#: src/Protocol/OStatus.php:1804 -msgid "stopped following" -msgstr "przestał śledzić" - -#: src/Protocol/DFRN.php:1482 -#, php-format -msgid "%s\\'s birthday" -msgstr "%s\\'s urodziny" - -#: src/Protocol/Diaspora.php:2680 -msgid "Sharing notification from Diaspora network" -msgstr "Wspólne powiadomienie z sieci Diaspora" - -#: src/Protocol/Diaspora.php:3756 -msgid "Attachments:" -msgstr "Załączniki:" - -#: src/Worker/Delivery.php:390 -msgid "(no subject)" -msgstr "(bez tematu)" - -#: src/Module/Login.php:282 -msgid "Create a New Account" -msgstr "Załóż nowe konto" - -#: src/Module/Login.php:315 -msgid "Password: " -msgstr "Hasło:" - -#: src/Module/Login.php:316 -msgid "Remember me" -msgstr "Zapamiętaj mnie" - -#: src/Module/Login.php:319 -msgid "Or login using OpenID: " -msgstr "Lub zaloguj się korzystając z OpenID:" - -#: src/Module/Login.php:325 -msgid "Forgot your password?" -msgstr "Zapomniałeś swojego hasła?" - -#: src/Module/Login.php:328 -msgid "Website Terms of Service" -msgstr "Warunki korzystania z witryny" - -#: src/Module/Login.php:329 -msgid "terms of service" -msgstr "warunki użytkowania" - -#: src/Module/Login.php:331 -msgid "Website Privacy Policy" -msgstr "Polityka Prywatności Witryny" - -#: src/Module/Login.php:332 -msgid "privacy policy" -msgstr "polityka prywatności" - -#: src/Module/Logout.php:28 -msgid "Logged out." -msgstr "Wyloguj" - -#: src/Module/Tos.php:51 -msgid "Privacy Statement" -msgstr "Oświadczenie o prywatności" - -#: src/Module/Tos.php:52 -msgid "" -"At the time of registration, and for providing communications between the " -"user account and their contacts, the user has to provide a display name (pen" -" name), an username (nickname) and a working email address. The names will " -"be accessible on the profile page of the account by any visitor of the page," -" even if other profile details are not displayed. The email address will " -"only be used to send the user notifications about interactions, but wont be " -"visibly displayed. The listing of an account in the node's user directory or" -" the global user directory is optional and can be controlled in the user " -"settings, it is not necessary for communication." -msgstr "W momencie rejestracji oraz w celu zapewnienia komunikacji między kontem użytkownika, a jego kontaktami, użytkownik musi podać nazwę wyświetlaną (pseudonim), nazwę użytkownika (przydomek) i działający adres e-mail. Nazwy będą dostępne na stronie profilu konta dla każdego odwiedzającego stronę, nawet jeśli inne szczegóły profilu nie zostaną wyświetlone. Adres e-mail będzie używany tylko do wysyłania powiadomień użytkownika o interakcjach, ale nie będzie wyświetlany w widoczny sposób. Lista kont w katalogu użytkownika węzła lub globalnym katalogu użytkownika jest opcjonalna i może być kontrolowana w ustawieniach użytkownika, nie jest konieczna do komunikacji." - -#: src/Module/Tos.php:53 -msgid "" -"This data is required for communication and is passed on to the nodes of the" -" communication partners. Users can enter additional private data that may be" -" transmitted to the communication partners accounts." -msgstr "Te dane są wymagane do komunikacji i przekazywane do węzłów partnerów komunikacyjnych. Użytkownicy mogą wprowadzać dodatkowe prywatne dane, które mogą być przesyłane na konta partnerów komunikacyjnych." - -#: src/Module/Tos.php:54 -#, php-format -msgid "" -"At any point in time a logged in user can export their account data from the" -" account settings. If the user wants " -"to delete their account they can do so at %1$s/removeme. The deletion of the account will " -"be permanent." -msgstr "W dowolnym momencie zalogowany użytkownik może wyeksportować dane swojego konta z ustawień konta. Jeśli użytkownik chce usunąć swoje konto, może to zrobić w %1$s/usuń mnie. Usunięcie konta będzie trwałe." - -#: src/Object/Post.php:128 -msgid "This entry was edited" -msgstr "Ten wpis został zedytowany" - -#: src/Object/Post.php:182 -msgid "save to folder" -msgstr "zapisz w folderze" - -#: src/Object/Post.php:235 -msgid "I will attend" -msgstr "Będę uczestniczyć" - -#: src/Object/Post.php:235 -msgid "I will not attend" -msgstr "Nie będę uczestniczyć" - -#: src/Object/Post.php:235 -msgid "I might attend" -msgstr "Mogę wziąć udział" - -#: src/Object/Post.php:263 -msgid "add star" -msgstr "dodaj gwiazdkę" - -#: src/Object/Post.php:264 -msgid "remove star" -msgstr "anuluj gwiazdkę" - -#: src/Object/Post.php:265 -msgid "toggle star status" -msgstr "włącz status gwiazdy" - -#: src/Object/Post.php:268 -msgid "starred" -msgstr "gwiazdką" - -#: src/Object/Post.php:274 -msgid "ignore thread" -msgstr "zignoruj ​​wątek" - -#: src/Object/Post.php:275 -msgid "unignore thread" -msgstr "odignoruj ​​wątek" - -#: src/Object/Post.php:276 -msgid "toggle ignore status" -msgstr "przełącz status ignorowania" - -#: src/Object/Post.php:285 -msgid "add tag" -msgstr "dodaj tag" - -#: src/Object/Post.php:296 -msgid "like" -msgstr "lubię to" - -#: src/Object/Post.php:297 -msgid "dislike" -msgstr "nie lubię tego" - -#: src/Object/Post.php:300 -msgid "Share this" -msgstr "Udostępnij to" - -#: src/Object/Post.php:300 -msgid "share" -msgstr "udostępnij" - -#: src/Object/Post.php:365 -msgid "to" -msgstr "do" - -#: src/Object/Post.php:366 -msgid "via" -msgstr "przez" - -#: src/Object/Post.php:367 -msgid "Wall-to-Wall" -msgstr "Wall-to-Wall" - -#: src/Object/Post.php:368 -msgid "via Wall-To-Wall:" -msgstr "via Wall-To-Wall:" - -#: src/Object/Post.php:427 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] " %d komentarz" -msgstr[1] " %d komentarzy" -msgstr[2] " %d komentarzy" -msgstr[3] " %d komentarzy" - -#: src/Object/Post.php:797 -msgid "Bold" -msgstr "Pogrubienie" - -#: src/Object/Post.php:798 -msgid "Italic" -msgstr "Kursywa" - -#: src/Object/Post.php:799 -msgid "Underline" -msgstr "Podkreślenie" - -#: src/Object/Post.php:800 -msgid "Quote" -msgstr "Cytat" - -#: src/Object/Post.php:801 -msgid "Code" -msgstr "Kod" - -#: src/Object/Post.php:802 -msgid "Image" -msgstr "Obraz" - -#: src/Object/Post.php:803 -msgid "Link" -msgstr "Link" - -#: src/Object/Post.php:804 -msgid "Video" -msgstr "Video" - -#: src/App.php:511 -msgid "Delete this item?" -msgstr "Usunąć ten element?" - -#: src/App.php:513 -msgid "show fewer" -msgstr "Pokaż mniej" - -#: boot.php:795 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Aktualizacja %s nie powiodła się. Zobacz dziennik błędów." +#: view/theme/duepuntozero/config.php:74 +msgid "Variations" +msgstr "Zmiana" #: index.php:472 msgid "toggle mobile" diff --git a/view/lang/pl/strings.php b/view/lang/pl/strings.php index 726e3e22b..222effaab 100644 --- a/view/lang/pl/strings.php +++ b/view/lang/pl/strings.php @@ -5,13 +5,7 @@ function string_plural_select_pl($n){ return ($n==1 ? 0 : ($n%10>=2 && $n%10<=4) && ($n%100<12 || $n%100>14) ? 1 : $n!=1 && ($n%10>=0 && $n%10<=1) || ($n%10>=5 && $n%10<=9) || ($n%100>=12 && $n%100<=14) ? 2 : 3);; }} ; -$a->strings["Item not found."] = "Element nie znaleziony."; -$a->strings["Do you really want to delete this item?"] = "Czy na pewno chcesz usunąć ten element?"; -$a->strings["Yes"] = "Tak"; -$a->strings["Cancel"] = "Anuluj"; -$a->strings["Permission denied."] = "Brak uprawnień."; -$a->strings["Archives"] = "Archiwum"; -$a->strings["show more"] = "Pokaż więcej"; +$a->strings["Update %s failed. See error logs."] = "Aktualizacja %s nie powiodła się. Zobacz dziennik błędów."; $a->strings["Daily posting limit of %d post reached. The post was rejected."] = [ 0 => "", 1 => "", @@ -26,6 +20,65 @@ $a->strings["Weekly posting limit of %d post reached. The post was rejected."] = ]; $a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "Miesięczny limit %d wysyłania postów. Post został odrzucony."; $a->strings["Profile Photos"] = "Zdjęcie profilowe"; +$a->strings["Friendica Notification"] = "Powiadomienia Friendica"; +$a->strings["Thank You,"] = "Dziękuję,"; +$a->strings["%s Administrator"] = "%s Administrator"; +$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s,%2\$sAdministrator"; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Powiadomienie] Nowa wiadomość otrzymana od %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$swysłał ci nową prywatną wiadomość na %2\$s "; +$a->strings["a private message"] = "prywatna wiadomość"; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s wysyła ci %2\$s"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości"; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s skomentował [url=%2\$s]a %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$sskomentował [url=%2\$s]%3\$s %4\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s skomentował [url=%2\$s] twój %3\$s[/ url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Powiadomienie] Komentarz do rozmowy #%1\$d przez %2\$s"; +$a->strings["%s commented on an item/conversation you have been following."] = "%s skomentował rozmowę którą śledzisz"; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na rozmowę"; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Powiadomienie] %s napisał na twoim profilu"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$sopublikowano na ścianie profilu w %2\$s "; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s wysłano do [url =%2\$s]twojej strony[/url] "; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Powiadomienie] %s dodał Cię"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s oznaczono Cię tagiem %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]oznaczył Cię[/url]. "; +$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Powiadomienie] %s udostępnił nowy wpis"; +$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$sudostępnił nowy wpis na %2\$s "; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s[url=%2\$s]udostępnił wpis[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica: Powiadomienie] %1\$s zaczepia Cię"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s zaczepił Cię %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s[url=%2\$s] zaczepił Cię[/url]."; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Powiadomienie] %s otagował Twój post"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$soznaczyłeś swój wpis na %2\$s "; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$soznacz [url=%2\$s]twój post[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Powiadomienie] Zapoznanie wstępne"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Otrzymałeś wstęp od '%1\$s' z %2\$s"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Zostałeś [url=%1\$s] przyjęty [/ url] z %2\$s."; +$a->strings["You may visit their profile at %s"] = "Możesz odwiedzić ich profil na stronie %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie."; +$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Powiadomienie] Nowa osoba dzieli się z tobą"; +$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$sdzieli się z tobą w %2\$s "; +$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Powiadomienie] Masz nowego obserwatora"; +$a->strings["You have a new follower at %2\$s : %1\$s"] = "Masz nowego obserwatora na %2\$s : %1\$s"; +$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica: Powiadomienie] Otrzymano sugestię znajomego"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Otrzymałeś od znajomego sugestię '%1\$s' na %2\$s"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Otrzymałeś [url=%1\$s] sugestię znajomego [/url] dla %2\$s od %3\$s."; +$a->strings["Name:"] = "Imię:"; +$a->strings["Photo:"] = "Zdjęcie:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Odwiedź stronę %s, aby zatwierdzić lub odrzucić sugestię."; +$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica: Powiadomienie] Połączenie zostało zaakceptowane"; +$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' zaakceptował Twoją prośbę o połączenie na %2\$s"; +$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$szaakceptował twoje [url=%1\$s] żądanie połączenia [/url]. "; +$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Jesteście teraz przyjaciółmi i możesz wymieniać aktualizacje statusu, zdjęcia i e-maile bez ograniczeń."; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Odwiedź stronę %s jeśli chcesz wprowadzić zmiany w tym związku."; +$a->strings["'%1\$s' has chosen to accept you a fan, which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' zdecydował się zaakceptować Cię jako fana, który ogranicza niektóre formy komunikacji - takie jak prywatne wiadomości i niektóre interakcje w profilu. Jeśli jest to strona celebrytów lub społeczności, ustawienia te zostały zastosowane automatycznie."; +$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "'%1\$s' możesz zdecydować o przedłużeniu tego w dwukierunkowy lub bardziej ścisłą relację w przyszłości. "; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Odwiedź stronę %s, jeśli chcesz wprowadzić zmiany w tej relacji."; +$a->strings["[Friendica System Notify]"] = "[Powiadomienie Systemu Friendica]"; +$a->strings["registration request"] = "prośba o rejestrację"; +$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Otrzymałeś wniosek rejestracyjny od '%1\$s' na %2\$s"; +$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Otrzymałeś [url=%1\$s] żądanie rejestracji [/url] od %2\$s."; +$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Pełna nazwa:\t%1\$s \\Lokalizacja nSite:\t%2\$s\\ nNazwa Użytkownika: \t%3\$s(%4\$s)"; +$a->strings["Please visit %s to approve or reject the request."] = "Odwiedź stronę %s, aby zatwierdzić lub odrzucić wniosek."; $a->strings["event"] = "wydarzenie"; $a->strings["status"] = "status"; $a->strings["photo"] = "zdjęcie"; @@ -115,6 +168,7 @@ $a->strings["Permission settings"] = "Ustawienia uprawnień"; $a->strings["permissions"] = "zezwolenia"; $a->strings["Public post"] = "Publiczny post"; $a->strings["Preview"] = "Podgląd"; +$a->strings["Cancel"] = "Anuluj"; $a->strings["Post to Groups"] = "Opublikuj w grupach"; $a->strings["Post to Contacts"] = "Wstaw do kontaktów"; $a->strings["Private post"] = "Prywatne posty"; @@ -146,65 +200,6 @@ $a->strings["Undecided"] = [ 3 => "", ]; $a->strings["Cannot locate DNS info for database server '%s'"] = "Nie można zlokalizować serwera DNS dla bazy danych '%s'"; -$a->strings["Friendica Notification"] = "Powiadomienia Friendica"; -$a->strings["Thank You,"] = "Dziękuję,"; -$a->strings["%s Administrator"] = "%s Administrator"; -$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s,%2\$sAdministrator"; -$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Powiadomienie] Nowa wiadomość otrzymana od %s"; -$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$swysłał ci nową prywatną wiadomość na %2\$s "; -$a->strings["a private message"] = "prywatna wiadomość"; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s wysyła ci %2\$s"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości"; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s skomentował [url=%2\$s]a %3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$sskomentował [url=%2\$s]%3\$s %4\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s skomentował [url=%2\$s] twój %3\$s[/ url]"; -$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Powiadomienie] Komentarz do rozmowy #%1\$d przez %2\$s"; -$a->strings["%s commented on an item/conversation you have been following."] = "%s skomentował rozmowę którą śledzisz"; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na rozmowę"; -$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Powiadomienie] %s napisał na twoim profilu"; -$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$sopublikowano na ścianie profilu w %2\$s "; -$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s wysłano do [url =%2\$s]twojej ściany[/url] "; -$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Powiadomienie] %s dodał Cię"; -$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s oznaczono Cię tagiem %2\$s"; -$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]oznaczył Cię[/url]. "; -$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Powiadomienie] %s udostępnił nowy wpis"; -$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$sudostępnił nowy wpis na %2\$s "; -$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s[url=%2\$s]udostępnił wpis[/url]."; -$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica: Powiadomienie] %1\$s zaczepia Cię"; -$a->strings["%1\$s poked you at %2\$s"] = "%1\$s zaczepił Cię %2\$s"; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s[url=%2\$s] zaczepił Cię[/url]."; -$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Powiadomienie] %s otagował Twój post"; -$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$soznaczyłeś swój wpis na %2\$s "; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$soznacz [url=%2\$s]twój post[/url]"; -$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Powiadomienie] Zapoznanie wstępne"; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Otrzymałeś wstęp od '%1\$s' z %2\$s"; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Otrzymałeś [url=%1\$s] wprowadzenie [/ url] z %2\$s."; -$a->strings["You may visit their profile at %s"] = "Możesz odwiedzić ich profil na stronie %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie."; -$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Powiadomienie] Nowa osoba dzieli się z tobą"; -$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$sdzieli się z tobą w %2\$s "; -$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Powiadomienie] Masz nowego obserwatora"; -$a->strings["You have a new follower at %2\$s : %1\$s"] = "Masz nowego obserwatora na %2\$s : %1\$s"; -$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica: Powiadomienie] Otrzymano sugestię znajomego"; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Otrzymałeś od znajomego sugestię '%1\$s' na %2\$s"; -$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Otrzymałeś [url=%1\$s] sugestię znajomego [/url] dla %2\$s od %3\$s."; -$a->strings["Name:"] = "Imię:"; -$a->strings["Photo:"] = "Zdjęcie:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Odwiedź stronę %s, aby zatwierdzić lub odrzucić sugestię."; -$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica: Powiadomienie] Połączenie zostało zaakceptowane"; -$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' zaakceptował Twoją prośbę o połączenie na %2\$s"; -$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$szaakceptował twoje [url=%1\$s] żądanie połączenia [/url]. "; -$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Jesteście teraz przyjaciółmi i możesz wymieniać aktualizacje statusu, zdjęcia i e-maile bez ograniczeń."; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Odwiedź stronę %s jeśli chcesz wprowadzić zmiany w tym związku."; -$a->strings["'%1\$s' has chosen to accept you a fan, which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' zdecydował się zaakceptować Cię jako fana, który ogranicza niektóre formy komunikacji - takie jak prywatne wiadomości i niektóre interakcje w profilu. Jeśli jest to strona celebrytów lub społeczności, ustawienia te zostały zastosowane automatycznie."; -$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "'%1\$s' możesz zdecydować o przedłużeniu tego w dwukierunkowy lub bardziej ścisłą relację w przyszłości. "; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Odwiedź stronę %s, jeśli chcesz wprowadzić zmiany w tej relacji."; -$a->strings["[Friendica System Notify]"] = "[Powiadomienie Systemu Friendica]"; -$a->strings["registration request"] = "prośba o rejestrację"; -$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Otrzymałeś wniosek rejestracyjny od '%1\$s' na %2\$s"; -$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Otrzymałeś [url=%1\$s] żądanie rejestracji [/url] od %2\$s."; -$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Pełna nazwa:\t%1\$s \\Lokalizacja nSite:\t%2\$s\\ nNazwa Użytkownika: \t%3\$s(%4\$s)"; -$a->strings["Please visit %s to approve or reject the request."] = "Odwiedź stronę %s, aby zatwierdzić lub odrzucić wniosek."; $a->strings["Welcome "] = "Witaj "; $a->strings["Please upload a profile photo."] = "Proszę dodać zdjęcie profilowe."; $a->strings["Welcome back "] = "Witaj ponownie "; @@ -237,8 +232,8 @@ $a->strings["poke"] = "zaczep"; $a->strings["poked"] = "zaczepił Cię"; $a->strings["ping"] = "ping"; $a->strings["pinged"] = "napięcia"; -$a->strings["prod"] = ""; -$a->strings["prodded"] = ""; +$a->strings["prod"] = "zaczep"; +$a->strings["prodded"] = "zaczepiać"; $a->strings["slap"] = "klask"; $a->strings["slapped"] = "spoliczkowany"; $a->strings["finger"] = "wskaż"; @@ -297,104 +292,575 @@ $a->strings["comment"] = [ ]; $a->strings["post"] = "post"; $a->strings["Item filed"] = "Element złożony"; -$a->strings["No friends to display."] = "Brak znajomych do wyświetlenia"; +$a->strings["Item not found."] = "Element nie znaleziony."; +$a->strings["Do you really want to delete this item?"] = "Czy na pewno chcesz usunąć ten element?"; +$a->strings["Yes"] = "Tak"; +$a->strings["Permission denied."] = "Brak uprawnień."; +$a->strings["Archives"] = "Archiwum"; +$a->strings["show more"] = "Pokaż więcej"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$suczestniczy %2\$s's %3\$s "; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$snie uczestniczy %2\$s's %3\$s "; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$smogą uczestniczyć %2\$s's %3\$s "; +$a->strings["Drop Contact"] = "Upuść kontakt"; +$a->strings["Organisation"] = "Organizacja"; +$a->strings["News"] = "Aktualności"; +$a->strings["Forum"] = "Forum"; +$a->strings["Disallowed profile URL."] = "Nie dozwolony adres URL profilu."; +$a->strings["Blocked domain"] = "Zablokowana domena"; +$a->strings["Connect URL missing."] = "Brak adresu URL połączenia."; +$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "Nie można dodać kontaktu. Sprawdź odpowiednie poświadczenia sieciowe na stronie Ustawienia -> Sieci społecznościowe."; +$a->strings["This site is not configured to allow communications with other networks."] = "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami"; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Nie znaleziono żadnych kompatybilnych protokołów komunikacyjnych ani źródeł."; +$a->strings["The profile address specified does not provide adequate information."] = "Dany adres profilu nie dostarcza odpowiednich informacji."; +$a->strings["An author or name was not found."] = "Autor lub nazwa nie zostało znalezione."; +$a->strings["No browser URL could be matched to this address."] = "Przeglądarka WWW nie może odnaleźć podanego adresu"; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Nie można dopasować @-stylu Adres identyfikacyjny ze znanym protokołem lub kontaktem e-mail."; +$a->strings["Use mailto: in front of address to force email check."] = "Użyj mailto: przed adresem, aby wymusić sprawdzanie poczty e-mail."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Określony adres profilu należy do sieci, która została wyłączona na tej stronie."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie."; +$a->strings["Unable to retrieve contact information."] = "Nie można otrzymać informacji kontaktowych"; +$a->strings["[Name Withheld]"] = "[Nazwa zastrzeżona]"; +$a->strings["%s's birthday"] = "Urodziny %s"; +$a->strings["Happy Birthday %s"] = "Urodziny %s"; +$a->strings["[no subject]"] = "[bez tematu]"; +$a->strings["Requested account is not available."] = "Żądane konto jest niedostępne."; +$a->strings["Requested profile is not available."] = "Żądany profil jest niedostępny"; +$a->strings["Edit profile"] = "Edytuj profil"; $a->strings["Connect"] = "Połącz"; -$a->strings["Authorize application connection"] = "Autoryzacja połączenia aplikacji"; -$a->strings["Return to your app and insert this Securty Code:"] = "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:"; -$a->strings["Please login to continue."] = "Zaloguj się aby kontynuować."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Czy chcesz zezwolić tej aplikacji na dostęp do swoich postów i kontaktów i/lub tworzenie nowych postów?"; -$a->strings["No"] = "Nie"; -$a->strings["You must be logged in to use addons. "] = "Musisz być zalogowany, aby korzystać z dodatków."; -$a->strings["Applications"] = "Aplikacje"; -$a->strings["No installed applications."] = "Brak zainstalowanych aplikacji."; -$a->strings["Item not available."] = "Element niedostępny."; -$a->strings["Item was not found."] = "Element nie znaleziony."; -$a->strings["No contacts in common."] = "Brak wspólnych kontaktów."; -$a->strings["Common Friends"] = "Wspólni znajomi"; -$a->strings["Credits"] = "Zaufany"; -$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica to projekt społecznościowy, który nie byłby możliwy bez pomocy wielu osób. Oto lista osób, które przyczyniły się do tworzenia kodu lub tłumaczenia Friendica. Dziękuję wam wszystkim!"; -$a->strings["Contact settings applied."] = "Ustawienia kontaktu zaktualizowane."; -$a->strings["Contact update failed."] = "Nie udało się zaktualizować kontaktu."; -$a->strings["Contact not found."] = "Kontakt nie znaleziony"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "OSTRZEŻENIE: Jest to bardzo zaawansowane i jeśli wprowadzisz niepoprawne informacje, twoja komunikacja z tym kontaktem może przestać działać."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj teraz przycisku 'powrót' na swojej przeglądarce."; -$a->strings["No mirroring"] = "Bez dublowania"; -$a->strings["Mirror as forwarded posting"] = "Przesłany lustrzany post"; -$a->strings["Mirror as my own posting"] = "Lustro mojego własnego komentarza"; -$a->strings["Return to contact editor"] = "Wróć do edytora kontaktów"; -$a->strings["Refetch contact data"] = "Odśwież dane kontaktowe"; -$a->strings["Submit"] = "Potwierdź"; -$a->strings["Remote Self"] = "Zdalny Self"; -$a->strings["Mirror postings from this contact"] = "Publikacje lustrzane od tego kontaktu"; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Oznacz ten kontakt jako remote_self, spowoduje to, że friendica odeśle nowe wpisy z tego kontaktu."; -$a->strings["Name"] = "Nazwa"; -$a->strings["Account Nickname"] = "Nazwa konta"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Zmienna - zastępuje Imię/Pseudonim"; -$a->strings["Account URL"] = "URL konta"; -$a->strings["Friend Request URL"] = "URL żądajacy znajomości"; -$a->strings["Friend Confirm URL"] = "URL potwierdzający znajomość"; -$a->strings["Notification Endpoint URL"] = "Zgłoszenie Punktu Końcowego URL"; -$a->strings["Poll/Feed URL"] = "Adres Ankiety/RSS"; -$a->strings["New photo from this URL"] = "Nowe zdjęcie z tego adresu URL"; -$a->strings["Photos"] = "Zdjęcia"; -$a->strings["Contact Photos"] = "Zdjęcia kontaktu"; -$a->strings["Upload"] = "Załaduj"; -$a->strings["Files"] = "Pliki"; -$a->strings["Not Found"] = "Nie znaleziono"; -$a->strings["No profile"] = "Brak profilu"; -$a->strings["Help:"] = "Pomoc:"; -$a->strings["Help"] = "Pomoc"; -$a->strings["Page not found."] = "Strona nie znaleziona."; -$a->strings["Welcome to %s"] = "Witamy w %s"; -$a->strings["Remote privacy information not available."] = "Dane prywatne nie są zdalnie dostępne"; -$a->strings["Visible to:"] = "Widoczne dla:"; -$a->strings["System down for maintenance"] = "System wyłączony w celu konserwacji"; -$a->strings["Welcome to Friendica"] = "Witamy na Friendica"; -$a->strings["New Member Checklist"] = "Lista nowych członków"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie."; -$a->strings["Getting Started"] = "Pierwsze kroki"; -$a->strings["Friendica Walk-Through"] = "Friendica Przejdź-Przez"; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Na stronie Szybki start - znajdź krótkie wprowadzenie do swojego profilu i kart sieciowych, stwórz nowe połączenia i znajdź kilka grup do przyłączenia się."; -$a->strings["Settings"] = "Ustawienia"; -$a->strings["Go to Your Settings"] = "Idź do swoich ustawień"; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Na stronie Ustawienia - zmień swoje początkowe hasło. Zanotuj także swój adres tożsamości. Wygląda to jak adres e-mail - i będzie przydatny w nawiązywaniu znajomości w bezpłatnej sieci społecznościowej."; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Przejrzyj pozostałe ustawienia, w szczególności ustawienia prywatności. Niepublikowany wykaz katalogów jest podobny do niepublicznego numeru telefonu. Ogólnie rzecz biorąc, powinieneś opublikować swój wpis - chyba, że wszyscy twoi znajomi i potencjalni znajomi dokładnie wiedzą, jak Cię znaleźć."; +$a->strings["Atom feed"] = "Kanał Atom"; +$a->strings["Profiles"] = "Profile"; +$a->strings["Manage/edit profiles"] = "Zarządzaj profilami"; +$a->strings["Change profile photo"] = "Zmień zdjęcie profilowe"; +$a->strings["Create New Profile"] = "Utwórz nowy profil"; +$a->strings["Profile Image"] = "Zdjęcie profilowe"; +$a->strings["visible to everybody"] = "widoczne dla wszystkich"; +$a->strings["Edit visibility"] = "Edytuj widoczność"; +$a->strings["Location:"] = "Lokalizacja"; +$a->strings["Gender:"] = "Płeć:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Strona główna:"; +$a->strings["About:"] = "O:"; +$a->strings["XMPP:"] = "XMPP:"; +$a->strings["Network:"] = "Sieć:"; +$a->strings["g A l F d"] = "g A I F d"; +$a->strings["F d"] = ""; +$a->strings["[today]"] = "[dziś]"; +$a->strings["Birthday Reminders"] = "Przypomnienia o urodzinach"; +$a->strings["Birthdays this week:"] = "Urodziny w tym tygodniu:"; +$a->strings["[No description]"] = "[Brak opisu]"; +$a->strings["Event Reminders"] = "Przypominacze wydarzeń"; +$a->strings["Events this week:"] = "Wydarzenia w tym tygodniu:"; $a->strings["Profile"] = "Profil użytkownika"; -$a->strings["Upload Profile Photo"] = "Wyślij zdjęcie profilowe"; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty."; -$a->strings["Edit Your Profile"] = "Edytuj własny profil"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Edytuj swój domyślny profil do swoich potrzeb. Przejrzyj ustawienia ukrywania listy znajomych i ukrywania profilu przed nieznanymi użytkownikami."; -$a->strings["Profile Keywords"] = "Słowa kluczowe profilu"; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Ustaw kilka publicznych słów kluczowych dla swojego domyślnego profilu, które opisują Twoje zainteresowania. Możemy znaleźć inne osoby o podobnych zainteresowaniach i zaproponować przyjaźnie."; -$a->strings["Connecting"] = "Łączę się..."; -$a->strings["Importing Emails"] = "Importuję emaile..."; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Wprowadź informacje dotyczące dostępu do poczty e-mail na stronie Ustawienia oprogramowania, jeśli chcesz importować i wchodzić w interakcje z przyjaciółmi lub listami adresowymi z poziomu konta e-mail INBOX"; -$a->strings["Go to Your Contacts Page"] = "Idź do strony z Twoimi kontaktami"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Strona Kontakty jest twoją bramą do zarządzania przyjaciółmi i łączenia się z przyjaciółmi w innych sieciach. Zazwyczaj podaje się adres lub adres URL strony w oknie dialogowym Dodaj nowy kontakt."; -$a->strings["Go to Your Site's Directory"] = "Idż do twojej strony"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "Strona Katalog umożliwia znalezienie innych osób w tej sieci lub innych witrynach stowarzyszonych. Poszukaj łącza Połącz lub Śledź na stronie profilu. Jeśli chcesz, podaj swój własny adres tożsamości."; -$a->strings["Finding New People"] = "Znajdowanie nowych osób"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Na bocznym panelu strony Kontaktów znajduje się kilka narzędzi do znajdowania nowych przyjaciół. Możemy dopasować osoby według zainteresowań, wyszukiwać osoby według nazwisk i zainteresowań oraz dostarczać sugestie oparte na relacjach sieciowych. Na zupełnie nowej stronie sugestie znajomych zwykle zaczynają być wypełniane w ciągu 24 godzin"; +$a->strings["Full Name:"] = "Imię i Nazwisko:"; +$a->strings["Member since:"] = "Członek od:"; +$a->strings["j F, Y"] = "d M, R"; +$a->strings["j F"] = "d M"; +$a->strings["Birthday:"] = "Urodziny:"; +$a->strings["Age:"] = "Wiek:"; +$a->strings["for %1\$d %2\$s"] = "od %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Preferencje seksualne:"; +$a->strings["Hometown:"] = "Miasto rodzinne:"; +$a->strings["Tags:"] = "Tagi:"; +$a->strings["Political Views:"] = "Poglądy polityczne:"; +$a->strings["Religion:"] = "Religia:"; +$a->strings["Hobbies/Interests:"] = "Hobby/Zainteresowania:"; +$a->strings["Likes:"] = "Lubią to:"; +$a->strings["Dislikes:"] = "Nie lubię tego:"; +$a->strings["Contact information and Social Networks:"] = "Informacje kontaktowe i sieci społeczne"; +$a->strings["Musical interests:"] = "Zainteresowania muzyczne:"; +$a->strings["Books, literature:"] = "Książki, literatura:"; +$a->strings["Television:"] = "Telewizja:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/taniec/kultura/rozrywka"; +$a->strings["Love/Romance:"] = "Miłość/Romans:"; +$a->strings["Work/employment:"] = "Praca/zatrudnienie:"; +$a->strings["School/education:"] = "Szkoła/edukacja:"; +$a->strings["Forums:"] = "Fora:"; +$a->strings["Basic"] = "Podstawowy"; +$a->strings["Advanced"] = "Zaawansowany"; +$a->strings["Status"] = "Status"; +$a->strings["Status Messages and Posts"] = "Status wiadomości i postów"; +$a->strings["Profile Details"] = "Szczegóły profilu"; +$a->strings["Photos"] = "Zdjęcia"; +$a->strings["Photo Albums"] = "Albumy zdjęć"; +$a->strings["Videos"] = "Filmy"; +$a->strings["Events"] = "Wydarzenia"; +$a->strings["Events and Calendar"] = "Wydarzenia i kalendarz"; +$a->strings["Personal Notes"] = "Notatki"; +$a->strings["Only You Can See This"] = "Tylko ty możesz to zobaczyć"; +$a->strings["l F d, Y \\@ g:i A"] = ""; +$a->strings["Starts:"] = "Rozpoczęcie:"; +$a->strings["Finishes:"] = "Zakończenie:"; +$a->strings["all-day"] = "cały dzień"; +$a->strings["Jun"] = "cze"; +$a->strings["Sept"] = "wrz"; +$a->strings["today"] = "dzisiaj"; +$a->strings["month"] = "miesiąc"; +$a->strings["week"] = "tydzień"; +$a->strings["day"] = "dzień"; +$a->strings["No events to display"] = "Brak wydarzeń do wyświetlenia"; +$a->strings["l, F j"] = "d, M d "; +$a->strings["Edit event"] = "Edytuj wydarzenie"; +$a->strings["Duplicate event"] = "Zduplikowane zdarzenie"; +$a->strings["Delete event"] = "Usuń wydarzenie"; +$a->strings["D g:i A"] = ""; +$a->strings["g:i A"] = ""; +$a->strings["Show map"] = "Pokaż mapę"; +$a->strings["Hide map"] = "Ukryj mapę"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Skasowana grupa o tej nazwie została przywrócona. Istniejące uprawnienia do pozycji mogą dotyczyć tej grupy i wszystkich przyszłych członków. Jeśli nie jest to zamierzone, utwórz inną grupę o innej nazwie."; +$a->strings["Default privacy group for new contacts"] = "Domyślne ustawienia prywatności dla nowych kontaktów"; +$a->strings["Everybody"] = "Wszyscy"; +$a->strings["edit"] = "edytuj"; +$a->strings["add"] = "dodaj"; $a->strings["Groups"] = "Grupy"; -$a->strings["Group Your Contacts"] = "Grupuj Swoje kontakty"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Gdy zaprzyjaźnisz się z przyjaciółmi, uporządkuj je w prywatne grupy konwersacji na pasku bocznym na stronie Kontakty, a następnie możesz wchodzić w interakcje z każdą grupą prywatnie na stronie Sieć."; -$a->strings["Why Aren't My Posts Public?"] = "Dlaczego moje posty nie są publiczne?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica szanuje Twoją prywatność. Domyślnie Twoje wpisy będą wyświetlane tylko osobom, które dodałeś jako znajomi. Aby uzyskać więcej informacji, zobacz sekcję pomocy na powyższym łączu."; -$a->strings["Getting Help"] = "Otrzymaj pomoc"; -$a->strings["Go to the Help Section"] = "Przejdź do sekcji pomocy"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Na naszych stronach pomocy można znaleźć szczegółowe informacje na temat innych funkcji programu i zasobów."; -$a->strings["Visit %s's profile [%s]"] = "Obejrzyj %s's profil [%s]"; -$a->strings["Edit contact"] = "Edytuj kontakt"; -$a->strings["Contacts who are not members of a group"] = "Kontakty spoza członków grupy"; -$a->strings["Not Extended"] = "Nie przedłużony"; +$a->strings["Edit group"] = "Edytuj grupy"; +$a->strings["Contacts not in any group"] = "Kontakt nie jest w żadnej grupie"; +$a->strings["Create a new group"] = "Stwórz nową grupę"; +$a->strings["Group Name: "] = "Nazwa grupy: "; +$a->strings["Edit groups"] = "Edytuj grupy"; +$a->strings["Contact Photos"] = "Zdjęcia kontaktu"; +$a->strings["Login failed"] = "Logowanie nieudane"; +$a->strings["Not enough information to authenticate"] = "Za mało informacji do uwierzytelnienia"; +$a->strings["User not found"] = "Użytkownik nie znaleziony"; +$a->strings["Passwords do not match. Password unchanged."] = "Hasła nie pasują do siebie. Hasło niezmienione."; +$a->strings["An invitation is required."] = "Wymagane zaproszenie."; +$a->strings["Invitation could not be verified."] = "Zaproszenie niezweryfikowane."; +$a->strings["Invalid OpenID url"] = "Nieprawidłowy adres url OpenID"; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Napotkaliśmy problem podczas logowania z podanym przez nas identyfikatorem OpenID. Sprawdź poprawną pisownię identyfikatora."; +$a->strings["The error message was:"] = "Komunikat o błędzie:"; +$a->strings["Please enter the required information."] = "Wprowadź wymagane informacje"; +$a->strings["Please use a shorter name."] = "Użyj dłuższej nazwy."; +$a->strings["Name too short."] = "Nazwa jest za krótka."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Wydaje mi się, że to nie jest twoje pełne imię (pierwsze imię) i nazwisko."; +$a->strings["Your email domain is not among those allowed on this site."] = "Twoja domena internetowa nie jest obsługiwana na tej stronie."; +$a->strings["Not a valid email address."] = "Niepoprawny adres e mail.."; +$a->strings["Cannot use that email."] = "Nie możesz użyć tego e-maila. "; +$a->strings["Your nickname can only contain a-z, 0-9 and _."] = "Twój pseudonim może zawierać tylko a-z, 0-9 i _."; +$a->strings["Nickname is already registered. Please choose another."] = "Ten login jest zajęty. Wybierz inny."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń."; +$a->strings["An error occurred during registration. Please try again."] = "Wystąpił bład podczas rejestracji, Spróbuj ponownie."; +$a->strings["default"] = "standardowe"; +$a->strings["An error occurred creating your default profile. Please try again."] = "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie."; +$a->strings["An error occurred creating your self contact. Please try again."] = "Wystąpił błąd podczas tworzenia własnego kontaktu. Proszę spróbuj ponownie."; +$a->strings["Friends"] = "Przyjaciele"; +$a->strings["An error occurred creating your default contact group. Please try again."] = "Wystąpił błąd podczas tworzenia domyślnej grupy kontaktów. Proszę spróbuj ponownie."; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t\t"] = "\n\t\t\tDrodzy %1\$s, \n\t\t\t\tDziękujemy za rejestrację na stronie %2\$s. Twoje konto czeka na zatwierdzenie przez administratora."; +$a->strings["Registration at %s"] = "Rejestracja w %s"; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t"] = "\n\t\t\tDrodzy %1\$s, \n\t\t\t\tDziękujemy za rejestrację na stronie %2\$s. Twoje konto zostało utworzone."; +$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = "\n\t\t\tDane logowania są następuje:\n\t\t\tLokalizacja witryny:\t%3\$s\n\t\t\tNazwa użytkownika:\t\t%1\$s\n\t\t\tHasło:\t\t%5\$s\n\n\t\t\tPo zalogowaniu możesz zmienić hasło do swojego konta na stronie \"Ustawienia\"\n \t\t\tProszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie.\n\n\t\t\tMożesz również dodać podstawowe informacje do swojego domyślnego profilu\n\t\t\t(na stronie \"Profil\"), aby inne osoby mogły łatwo Cię znaleźć.\n\n\t\t\tZalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego,\n\t\t\tdodanie niektórych \"słów kluczowych\" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) - i\n\t\t\tbyć może w jakim kraju mieszkasz; jeśli nie chcesz być bardziej szczegółowy.\n\n\t\t\tW pełni szanujemy Twoje prawo do prywatności i żaden z tych elementów nie jest konieczny.\n\t\t\tJeśli jesteś nowy i nie znasz tutaj nikogo, oni mogą ci pomóc\n\t\t\tmożesz zdobyć nowych interesujących przyjaciół\n\n\t\t\tJeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić w %3\$s/Usuń konto\n\n\t\t\tDziękujemy i Zapraszamy do %2\$s."; +$a->strings["Registration details for %s"] = "Szczegóły rejestracji dla %s"; +$a->strings["view full size"] = "Zobacz w pełnym wymiarze"; +$a->strings["Image/photo"] = "Obrazek/zdjęcie"; +$a->strings["%2\$s %3\$s"] = "%2\$s%3\$s"; +$a->strings["$1 wrote:"] = "$1 napisał:"; +$a->strings["Encrypted content"] = "Szyfrowana treść"; +$a->strings["Invalid source protocol"] = "Nieprawidłowy protokół źródłowy"; +$a->strings["Invalid link protocol"] = "Niepoprawny link protokołu"; +$a->strings["General Features"] = "Funkcje ogólne"; +$a->strings["Multiple Profiles"] = "Wiele profili"; +$a->strings["Ability to create multiple profiles"] = "Umożliwienie tworzenia wielu profili"; +$a->strings["Photo Location"] = "Lokalizacja zdjęcia"; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Metadane zdjęć są zwykle usuwane. Wyodrębnia to położenie (jeśli jest obecne) przed usunięciem metadanych i łączy je z mapą."; +$a->strings["Export Public Calendar"] = "Eksportowanie publicznego kalendarza"; +$a->strings["Ability for visitors to download the public calendar"] = "Umożliwienie pobierania kalendarza publicznego przez odwiedzających"; +$a->strings["Post Composition Features"] = "Ustawienia funkcji postów"; +$a->strings["Post Preview"] = "Podgląd posta"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Zezwalaj na podgląd postów i komentarzy przed ich opublikowaniem"; +$a->strings["Auto-mention Forums"] = "Automatyczne wymienianie forów"; +$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Dodaj/usuń wzmiankę, gdy strona forum zostanie wybrana/cofnięta w oknie ACL."; +$a->strings["Network Sidebar Widgets"] = "Widgety paska bocznego sieci"; +$a->strings["Search by Date"] = "Szukanie wg daty"; +$a->strings["Ability to select posts by date ranges"] = "Wybierz wpisy według zakresów dat"; +$a->strings["List Forums"] = "Lista forów"; +$a->strings["Enable widget to display the forums your are connected with"] = "Włącz widżet, aby wyświetlić fora, z którymi jesteś połączony"; +$a->strings["Group Filter"] = "Filtr grupowy"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Włącz widżet, aby wyświetlać posty sieciowe tylko z wybranej grupy"; +$a->strings["Network Filter"] = "Filtr sieciowy"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Włącz widżet, aby wyświetlać posty sieciowe tylko z wybranej sieci"; +$a->strings["Saved Searches"] = "Zapisywanie wyszukiwania"; +$a->strings["Save search terms for re-use"] = "Zapisz wyszukiwane hasła do ponownego użycia"; +$a->strings["Network Tabs"] = "Etykiety sieciowe"; +$a->strings["Network Personal Tab"] = "Etykieta Sieć Osobista"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Włącz etykietę, by wyświetlać posty tylko z sieci, z którymi współpracujesz"; +$a->strings["Network New Tab"] = "Etykieta Nowe Posty Sieciowe"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Włącz etykietę, aby wyświetlić tylko nowe posty sieciowe (z ostatnich 12 godzin)"; +$a->strings["Network Shared Links Tab"] = "Etykieta Udostępnianie Łącz Sieciowych"; +$a->strings["Enable tab to display only Network posts with links in them"] = "Włącz etykietę, aby wyświetlić tylko posty sieciowe z łączami do nich"; +$a->strings["Post/Comment Tools"] = "Narzędzia post/komentarz"; +$a->strings["Multiple Deletion"] = "Wielokrotne Usuwanie"; +$a->strings["Select and delete multiple posts/comments at once"] = "Wybierz i usuń wiele postów/komentarzy jednocześnie"; +$a->strings["Edit Sent Posts"] = "Edytuj wysłane posty"; +$a->strings["Edit and correct posts and comments after sending"] = "Edycja i poprawianie wpisów i komentarzy po wysłaniu"; +$a->strings["Tagging"] = "Tagowanie"; +$a->strings["Ability to tag existing posts"] = "Umożliwienie oznaczania istniejących postów"; +$a->strings["Post Categories"] = "Kategorie postów"; +$a->strings["Add categories to your posts"] = "Dodaj kategorie do twoich postów"; +$a->strings["Saved Folders"] = "Zapisane foldery"; +$a->strings["Ability to file posts under folders"] = "Umożliwienie przesyłania postów do folderów"; +$a->strings["Dislike Posts"] = "Nie lubię Postów"; +$a->strings["Ability to dislike posts/comments"] = "Możliwa niechęć do postów/komentarzy"; +$a->strings["Star Posts"] = "Oznacz posty gwiazdką"; +$a->strings["Ability to mark special posts with a star indicator"] = "Oznacz specjalne posty gwiazdką"; +$a->strings["Mute Post Notifications"] = "Ignoruj ​​powiadomienia pocztą"; +$a->strings["Ability to mute notifications for a thread"] = "Ignoruj powiadomienia dla wątku"; +$a->strings["Advanced Profile Settings"] = "Zaawansowane ustawienia profilu"; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Wyświetlaj publiczne fora społeczności na stronie profilu zaawansowanego"; +$a->strings["Tag Cloud"] = "Chmura tagów"; +$a->strings["Provide a personal tag cloud on your profile page"] = "Podaj osobistą chmurę tagów na stronie profilu"; +$a->strings["Display Membership Date"] = "Wyświetl datę członkostwa"; +$a->strings["Display membership date in profile"] = "Wyświetl datę członkostwa w profilu"; +$a->strings["Export"] = "Eksport"; +$a->strings["Export calendar as ical"] = "Wyeksportuj kalendarz jako ical"; +$a->strings["Export calendar as csv"] = "Eksportuj kalendarz jako csv"; +$a->strings["Add New Contact"] = "Dodaj nowy kontakt"; +$a->strings["Enter address or web location"] = "Wpisz adres lub lokalizację sieciową"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Przykład: bob@przykład.com, http://przykład.com/barbara"; +$a->strings["%d invitation available"] = [ + 0 => "%d zaproszenie dostępne", + 1 => "%d zaproszeń dostępnych", + 2 => "%d zaproszenia dostępne", + 3 => "%d zaproszenia dostępne", +]; +$a->strings["Find People"] = "Znajdź ludzi"; +$a->strings["Enter name or interest"] = "Wpisz nazwę lub zainteresowanie"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Przykład: Jan Kowalski, Wędkarstwo"; +$a->strings["Find"] = "Znajdź"; +$a->strings["Friend Suggestions"] = "Osoby, które możesz znać"; +$a->strings["Similar Interests"] = "Podobne zainteresowania"; +$a->strings["Random Profile"] = "Domyślny profil"; +$a->strings["Invite Friends"] = "Zaproś znajomych"; +$a->strings["View Global Directory"] = "Wyświetl globalny katalog"; +$a->strings["Networks"] = "Sieci"; +$a->strings["All Networks"] = "Wszystkie Sieci"; +$a->strings["Everything"] = "Wszystko"; +$a->strings["Categories"] = "Kategorie"; +$a->strings["%d contact in common"] = [ + 0 => "", + 1 => "", + 2 => "", + 3 => "", +]; +$a->strings["Frequently"] = "Często"; +$a->strings["Hourly"] = "Co godzinę"; +$a->strings["Twice daily"] = "Dwa razy dziennie"; +$a->strings["Daily"] = "Codziennie"; +$a->strings["Weekly"] = "Co tydzień"; +$a->strings["Monthly"] = "Miesięczne"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Email"] = "E-mail"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Łącze Diaspora"; +$a->strings["GNU Social Connector"] = "GNU Połączenie Społecznościowe"; +$a->strings["pnut"] = "orzech"; +$a->strings["App.net"] = "App.net"; +$a->strings["Male"] = "Mężczyzna"; +$a->strings["Female"] = "Kobieta"; +$a->strings["Currently Male"] = "Obecnie mężczyzna"; +$a->strings["Currently Female"] = "Obecnie Kobieta"; +$a->strings["Mostly Male"] = "Głównie mężczyzna"; +$a->strings["Mostly Female"] = "Głównie kobieta"; +$a->strings["Transgender"] = "Transseksualny"; +$a->strings["Intersex"] = "Interseksualne"; +$a->strings["Transsexual"] = "Transseksualny"; +$a->strings["Hermaphrodite"] = "Hermafrodyta"; +$a->strings["Neuter"] = "Rodzaj nijaki"; +$a->strings["Non-specific"] = "Niespecyficzne"; +$a->strings["Other"] = "Inne"; +$a->strings["Males"] = "Mężczyźni"; +$a->strings["Females"] = "Kobiety"; +$a->strings["Gay"] = "Gej"; +$a->strings["Lesbian"] = "Lesbijka"; +$a->strings["No Preference"] = "Brak preferencji"; +$a->strings["Bisexual"] = "Biseksualny"; +$a->strings["Autosexual"] = "Niezidentyfikowany"; +$a->strings["Abstinent"] = "Abstynent"; +$a->strings["Virgin"] = "Dziewica"; +$a->strings["Deviant"] = "Zboczeniec"; +$a->strings["Fetish"] = "Fetysz"; +$a->strings["Oodles"] = "Nadmiar"; +$a->strings["Nonsexual"] = "Nieseksualny"; +$a->strings["Single"] = "Singiel"; +$a->strings["Lonely"] = "Samotny"; +$a->strings["Available"] = "Dostępny"; +$a->strings["Unavailable"] = "Niedostępny"; +$a->strings["Has crush"] = "Ma sympatii"; +$a->strings["Infatuated"] = "Zakochany"; +$a->strings["Dating"] = "Randki"; +$a->strings["Unfaithful"] = "Niewierny"; +$a->strings["Sex Addict"] = "Uzależniony od seksu"; +$a->strings["Friends/Benefits"] = "Przyjaciele/Korzyści"; +$a->strings["Casual"] = "Przypadkowy"; +$a->strings["Engaged"] = "Zaręczeni"; +$a->strings["Married"] = "Małżeństwo"; +$a->strings["Imaginarily married"] = "Fikcyjnie w związku małżeńskim"; +$a->strings["Partners"] = "Partnerzy"; +$a->strings["Cohabiting"] = "Konkubinat"; +$a->strings["Common law"] = "Prawo zwyczajowe"; +$a->strings["Happy"] = "Szczęśliwy"; +$a->strings["Not looking"] = "Nie patrzę"; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Zdradzony"; +$a->strings["Separated"] = "W separacji"; +$a->strings["Unstable"] = "Niestabilny"; +$a->strings["Divorced"] = "Rozwiedzeni"; +$a->strings["Imaginarily divorced"] = "Fikcyjnie rozwiedziony/a"; +$a->strings["Widowed"] = "Wdowiec"; +$a->strings["Uncertain"] = "Nieokreślony"; +$a->strings["It's complicated"] = "To skomplikowane"; +$a->strings["Don't care"] = "Nie przejmuj się"; +$a->strings["Ask me"] = "Zapytaj mnie "; +$a->strings["Embedding disabled"] = "Osadzanie wyłączone"; +$a->strings["Embedded content"] = "Osadzona zawartość"; +$a->strings["External link to forum"] = "Zewnętrzny link do forum"; +$a->strings["Nothing new here"] = "Brak nowych zdarzeń"; +$a->strings["Clear notifications"] = "Wyczyść powiadomienia"; +$a->strings["Logout"] = "Wyloguj się"; +$a->strings["End this session"] = "Zakończ sesję"; +$a->strings["Your posts and conversations"] = "Twoje posty i rozmowy"; +$a->strings["Your profile page"] = "Twoja strona profilowa"; +$a->strings["Your photos"] = "Twoje zdjęcia"; +$a->strings["Your videos"] = "Twoje filmy"; +$a->strings["Your events"] = "Twoje wydarzenia"; +$a->strings["Personal notes"] = "Notatki"; +$a->strings["Your personal notes"] = "Twoje prywatne notatki"; +$a->strings["Login"] = "Zaloguj się"; +$a->strings["Sign in"] = "Zaloguj się"; +$a->strings["Home"] = "Strona domowa"; +$a->strings["Home Page"] = "Strona startowa"; +$a->strings["Register"] = "Zarejestruj"; +$a->strings["Create an account"] = "Załóż konto"; +$a->strings["Help"] = "Pomoc"; +$a->strings["Help and documentation"] = "Pomoc i dokumentacja"; +$a->strings["Apps"] = "Aplikacje"; +$a->strings["Addon applications, utilities, games"] = "Wtyczki, aplikacje, narzędzia, gry"; +$a->strings["Search site content"] = "Przeszukaj zawartość strony"; +$a->strings["Community"] = "Społeczność"; +$a->strings["Conversations on this and other servers"] = "Rozmowy na tym i innych serwerach"; +$a->strings["Directory"] = "Katalog"; +$a->strings["People directory"] = "Katalog osób"; +$a->strings["Information"] = "Informacje"; +$a->strings["Information about this friendica instance"] = "Informacje o tej instancji friendica"; +$a->strings["Network"] = "Sieć"; +$a->strings["Conversations from your friends"] = "Rozmowy Twoich przyjaciół"; +$a->strings["Network Reset"] = "Resetowanie sieci"; +$a->strings["Load Network page with no filters"] = "Załaduj stronę sieci bez filtrów"; +$a->strings["Introductions"] = "Zapoznanie"; +$a->strings["Friend Requests"] = "Prośba o przyjęcie do grona znajomych"; +$a->strings["Notifications"] = "Powiadomienia"; +$a->strings["See all notifications"] = "Zobacz wszystkie powiadomienia"; +$a->strings["Mark as seen"] = "Oznacz jako przeczytane"; +$a->strings["Mark all system notifications seen"] = "Oznacz wszystkie powiadomienia systemu jako przeczytane"; +$a->strings["Messages"] = "Wiadomości"; +$a->strings["Private mail"] = "Prywatne maile"; +$a->strings["Inbox"] = "Odebrane"; +$a->strings["Outbox"] = "Wysłane"; +$a->strings["New Message"] = "Nowa wiadomość"; +$a->strings["Manage"] = "Zarządzaj"; +$a->strings["Manage other pages"] = "Zarządzaj innymi stronami"; +$a->strings["Delegations"] = "Delegowanie"; +$a->strings["Delegate Page Management"] = "Deleguj zarządzanie stronami"; +$a->strings["Settings"] = "Ustawienia"; +$a->strings["Account settings"] = "Ustawienia konta"; +$a->strings["Manage/Edit Profiles"] = "Zarządzaj/Edytuj profile"; +$a->strings["Manage/edit friends and contacts"] = "Zarządzaj listą przyjaciół i kontaktami"; +$a->strings["Admin"] = "Administator"; +$a->strings["Site setup and configuration"] = "Konfiguracja i ustawienia instancji"; +$a->strings["Navigation"] = "Nawigacja"; +$a->strings["Site map"] = "Mapa strony"; +$a->strings["(no subject)"] = "(bez tematu)"; +$a->strings["Delete this item?"] = "Usunąć ten element?"; +$a->strings["show fewer"] = "Pokaż mniej"; +$a->strings["Login failed."] = "Logowanie nieudane."; +$a->strings["Create a New Account"] = "Załóż nowe konto"; +$a->strings["Nickname or Email: "] = "Pseudonim lub Email:"; +$a->strings["Password: "] = "Hasło:"; +$a->strings["Remember me"] = "Zapamiętaj mnie"; +$a->strings["Or login using OpenID: "] = "Lub zaloguj się korzystając z OpenID:"; +$a->strings["Forgot your password?"] = "Zapomniałeś swojego hasła?"; +$a->strings["Password Reset"] = "Zresetuj hasło"; +$a->strings["Website Terms of Service"] = "Warunki korzystania z witryny"; +$a->strings["terms of service"] = "warunki użytkowania"; +$a->strings["Website Privacy Policy"] = "Polityka Prywatności Witryny"; +$a->strings["privacy policy"] = "polityka prywatności"; +$a->strings["Terms of Service"] = "Warunki usługi"; +$a->strings["Privacy Statement"] = "Oświadczenie o prywatności"; +$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = "W momencie rejestracji oraz w celu zapewnienia komunikacji między kontem użytkownika, a jego kontaktami, użytkownik musi podać nazwę wyświetlaną (pseudonim), nazwę użytkownika (przydomek) i działający adres e-mail. Nazwy będą dostępne na stronie profilu konta dla każdego odwiedzającego stronę, nawet jeśli inne szczegóły profilu nie zostaną wyświetlone. Adres e-mail będzie używany tylko do wysyłania powiadomień użytkownika o interakcjach, ale nie będzie wyświetlany w widoczny sposób. Lista kont w katalogu użytkownika węzła lub globalnym katalogu użytkownika jest opcjonalna i może być kontrolowana w ustawieniach użytkownika, nie jest konieczna do komunikacji."; +$a->strings["This data is required for communication and is passed on to the nodes of the communication partners. Users can enter additional private data that may be transmitted to the communication partners accounts."] = "Te dane są wymagane do komunikacji i przekazywane do węzłów partnerów komunikacyjnych. Użytkownicy mogą wprowadzać dodatkowe prywatne dane, które mogą być przesyłane na konta partnerów komunikacyjnych."; +$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent."] = "W dowolnym momencie zalogowany użytkownik może wyeksportować dane swojego konta z ustawień konta. Jeśli użytkownik chce usunąć swoje konto, może to zrobić w %1\$s/usuń mnie. Usunięcie konta będzie trwałe."; +$a->strings["Logged out."] = "Wyloguj"; +$a->strings["Wall Photos"] = "Tablica zdjęć"; +$a->strings["This entry was edited"] = "Ten wpis został zedytowany"; +$a->strings["Private Message"] = "Wiadomość prywatna"; +$a->strings["Edit"] = "Edytuj"; +$a->strings["save to folder"] = "zapisz w folderze"; +$a->strings["I will attend"] = "Będę uczestniczyć"; +$a->strings["I will not attend"] = "Nie będę uczestniczyć"; +$a->strings["I might attend"] = "Mogę wziąć udział"; +$a->strings["add star"] = "dodaj gwiazdkę"; +$a->strings["remove star"] = "anuluj gwiazdkę"; +$a->strings["toggle star status"] = "włącz status gwiazdy"; +$a->strings["starred"] = "gwiazdką"; +$a->strings["ignore thread"] = "zignoruj ​​wątek"; +$a->strings["unignore thread"] = "odignoruj ​​wątek"; +$a->strings["toggle ignore status"] = "przełącz status ignorowania"; +$a->strings["ignored"] = "Ignoruj"; +$a->strings["add tag"] = "dodaj tag"; +$a->strings["I like this (toggle)"] = "Lubię to (zmień)"; +$a->strings["like"] = "lubię to"; +$a->strings["I don't like this (toggle)"] = "Nie lubię tego (zmień)"; +$a->strings["dislike"] = "nie lubię tego"; +$a->strings["Share this"] = "Udostępnij to"; +$a->strings["share"] = "udostępnij"; +$a->strings["to"] = "do"; +$a->strings["via"] = "przez"; +$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; +$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; +$a->strings["Comment"] = "Komentarz"; +$a->strings["%d comment"] = [ + 0 => " %d komentarz", + 1 => " %d komentarzy", + 2 => " %d komentarzy", + 3 => " %d komentarzy", +]; +$a->strings["This is you"] = "To jesteś ty"; +$a->strings["Submit"] = "Potwierdź"; +$a->strings["Bold"] = "Pogrubienie"; +$a->strings["Italic"] = "Kursywa"; +$a->strings["Underline"] = "Podkreślenie"; +$a->strings["Quote"] = "Cytat"; +$a->strings["Code"] = "Kod"; +$a->strings["Image"] = "Obraz"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; +$a->strings["There are no tables on MyISAM."] = "W MyISAM nie ma tabel."; +$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\t\tDeweloperzy friendica wydali niedawno aktualizację %s,\n\t\t\t\tale podczas próby instalacji, coś poszło nie tak.\n\t\t\t\tZostanie to naprawione wkrótce i nie mogę tego zrobić sam. Proszę skontaktować się z \n\t\t\t\tprogramistami friendica, jeśli nie możesz mi pomóc na własną rękę. Moja baza danych może być nieprawidłowa."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "Komunikat o błędzie jest \n[pre]%s[/ pre]"; +$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nWystąpił błąd %d podczas aktualizacji bazy danych:\n%s\n"; +$a->strings["Errors encountered performing database changes: "] = "Napotkane błędy powodujące zmiany w bazie danych:"; +$a->strings[": Database update"] = ": Aktualizacja bazy danych"; +$a->strings["%s: updating %s table."] = "%s: aktualizowanie %s tabeli."; +$a->strings["Error decoding account file"] = "Błąd podczas odczytu pliku konta"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Błąd! Brak danych wersji w pliku! To nie jest plik konta Friendica?"; +$a->strings["User '%s' already exists on this server!"] = "Użytkownik '%s' już istnieje na tym serwerze!"; +$a->strings["User creation error"] = "Błąd tworzenia użytkownika"; +$a->strings["User profile creation error"] = "Błąd tworzenia profilu użytkownika"; +$a->strings["%d contact not imported"] = [ + 0 => "Nie zaimportowano %d kontaktu.", + 1 => "Nie zaimportowano %d kontaktów.", + 2 => "Nie zaimportowano %d kontaktów.", + 3 => "%dkontakty nie zostały zaimportowane ", +]; +$a->strings["Done. You can now login with your username and password"] = "Gotowe. Możesz teraz zalogować się, podając swoją nazwę użytkownika i hasło."; +$a->strings["The new password has been exposed in a public data dump, please choose another."] = "Nowe hasło zostało ujawnione w publicznym zrzucie danych, wybierz inne."; +$a->strings["Password update failed. Please try again."] = "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie."; +$a->strings["Password changed."] = "Hasło zostało zmianione."; +$a->strings["Could not find any contact entry for this URL (%s)"] = "Nie można znaleźć żadnego kontaktu dla tego adresu URL (%s)"; +$a->strings["The contact has been blocked from the node"] = "Kontakt został zablokowany w węźle"; +$a->strings["Post to Email"] = "Prześlij e-mailem"; +$a->strings["Hide your profile details from unknown viewers?"] = "Ukryć szczegóły twojego profilu przed nieznajomymi?"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Wtyczki są wyłączone, ponieważ \"%s\" jest włączone."; +$a->strings["Visible to everybody"] = "Widoczny dla wszystkich"; +$a->strings["show"] = "pokaż"; +$a->strings["don't show"] = "nie pokazuj"; +$a->strings["CC: email addresses"] = "CC: adresy e-mail"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Przykład: bob@example.com, mary@example.com"; +$a->strings["Permissions"] = "Uprawnienia"; +$a->strings["Close"] = "Zamknij"; +$a->strings["System"] = "System"; +$a->strings["Personal"] = "Osobiste"; +$a->strings["%s commented on %s's post"] = "%s skomentował wpis %s"; +$a->strings["%s created a new post"] = "%s dodał nowy wpis"; +$a->strings["%s liked %s's post"] = "%s polubił wpis %s"; +$a->strings["%s disliked %s's post"] = "%s nie lubi tych %s postów"; +$a->strings["%s is attending %s's event"] = "%suczestniczy %sw wydarzeniu "; +$a->strings["%s is not attending %s's event"] = "%snie uczestniczy %s w wydarzeniu "; +$a->strings["%s may attend %s's event"] = "%smoże uczestniczyć %s w wydarzeniu"; +$a->strings["%s is now friends with %s"] = "%s jest teraz znajomym %s"; +$a->strings["Friend Suggestion"] = "Propozycja znajomych"; +$a->strings["Friend/Connect Request"] = "Prośba o dodanie do przyjaciół/powiązanych"; +$a->strings["New Follower"] = "Nowy obserwujący"; +$a->strings["Miscellaneous"] = "Różny"; +$a->strings["Age: "] = "Wiek: "; +$a->strings["YYYY-MM-DD or MM-DD"] = "RRRR-MM-DD lub MM-DD"; +$a->strings["never"] = "nigdy"; +$a->strings["less than a second ago"] = "mniej niż sekundę temu"; +$a->strings["year"] = "rok"; +$a->strings["years"] = "lata"; +$a->strings["months"] = "miesiące"; +$a->strings["weeks"] = "tygodnie"; +$a->strings["days"] = "dni"; +$a->strings["hour"] = "godzina"; +$a->strings["hours"] = "godziny"; +$a->strings["minute"] = "minuta"; +$a->strings["minutes"] = "minuty"; +$a->strings["second"] = "sekunda"; +$a->strings["seconds"] = "sekundy"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s temu"; +$a->strings["%s's timeline"] = "%s oś czasu "; +$a->strings["%s's posts"] = "%s posty "; +$a->strings["%s's comments"] = "%s komentarze "; +$a->strings["%s is now following %s."] = "%sjest teraz następujące %s. "; +$a->strings["following"] = "następujący"; +$a->strings["%s stopped following %s."] = "%sprzestał śledzić %s. "; +$a->strings["stopped following"] = "przestał śledzić"; +$a->strings["Sharing notification from Diaspora network"] = "Wspólne powiadomienie z sieci Diaspora"; +$a->strings["Attachments:"] = "Załączniki:"; +$a->strings["Public access denied."] = "Publiczny dostęp zabroniony"; +$a->strings["Global Directory"] = "Globalny Katalog"; +$a->strings["Find on this site"] = "Znajdź na tej stronie"; +$a->strings["Results for:"] = "Wyniki dla:"; +$a->strings["Site Directory"] = "Katalog Witryny"; +$a->strings["No entries (some entries may be hidden)."] = "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)."; +$a->strings["People Search - %s"] = "Szukaj osób - %s"; +$a->strings["Forum Search - %s"] = "Przeszukiwanie forum - %s"; +$a->strings["No matches"] = "Brak wyników"; $a->strings["Resubscribing to OStatus contacts"] = "Ponowne subskrybowanie kontaktów OStatus"; $a->strings["Error"] = "Błąd"; $a->strings["Done"] = "Gotowe"; $a->strings["Keep this window open until done."] = "Pozostaw to okno otwarte, dopóki nie będzie gotowe."; +$a->strings["{0} wants to be your friend"] = "{0} chce być Twoim znajomym"; +$a->strings["{0} sent you a message"] = "{0} wysłałem Ci wiadomość"; +$a->strings["{0} requested registration"] = "{0} wymagana rejestracja"; $a->strings["Do you really want to delete this suggestion?"] = "Czy na pewno chcesz usunąć te sugestie ?"; $a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Brak dostępnych sugestii. Jeśli jest to nowa witryna, spróbuj ponownie za 24 godziny."; $a->strings["Ignore/Hide"] = "Ignoruj/Ukryj"; -$a->strings["Friend Suggestions"] = "Osoby, które możesz znać"; +$a->strings["Access to this profile has been restricted."] = "Dostęp do tego profilu został ograniczony."; +$a->strings["Image uploaded but image cropping failed."] = "Zdjęcie zostało przesłane, ale przycinanie obrazu nie powiodło się."; +$a->strings["Image size reduction [%s] failed."] = "Redukcja rozmiaru obrazka [%s] nie powiodła się."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ponownie załaduj stronę lub wyczyść pamięć podręczną przeglądarki, jeśli nowe zdjęcie nie pojawi się natychmiast."; +$a->strings["Unable to process image"] = "Nie udało się przetworzyć obrazu."; +$a->strings["Image exceeds size limit of %s"] = "Obraz przekracza limit rozmiaru wynoszący %s"; +$a->strings["Unable to process image."] = "Przetwarzanie obrazu nie powiodło się."; +$a->strings["Upload File:"] = "Wyślij plik:"; +$a->strings["Select a profile:"] = "Wybierz profil:"; +$a->strings["Upload Profile Photo"] = "Wyślij zdjęcie profilowe"; +$a->strings["Upload"] = "Załaduj"; +$a->strings["or"] = "lub"; +$a->strings["skip this step"] = "pomiń ten krok"; +$a->strings["select a photo from your photo albums"] = "wybierz zdjęcie z twojego albumu"; +$a->strings["Crop Image"] = "Przytnij zdjęcie"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Dostosuj kadrowanie obrazu, aby uzyskać optymalny obraz."; +$a->strings["Done Editing"] = "Zakończono edycję"; +$a->strings["Image uploaded successfully."] = "Zdjęcie wczytano pomyślnie "; +$a->strings["Image upload failed."] = "Przesyłanie obrazu nie powiodło się"; +$a->strings["User deleted their account"] = "Użytkownik usunął swoje konto"; +$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "W twoim węźle Friendica użytkownik usunął swoje konto. Upewnij się, że ich dane zostały usunięte z kopii zapasowych."; +$a->strings["The user id is %d"] = "Identyfikatorem użytkownika jest %d"; +$a->strings["Remove My Account"] = "Usuń moje konto"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Spowoduje to całkowite usunięcie Twojego konta. Po wykonaniu tej czynności nie można jej cofnąć."; +$a->strings["Please enter your password for verification:"] = "Wprowadź hasło w celu weryfikacji."; +$a->strings["Manage Identities and/or Pages"] = "Zarządzaj Tożsamościami i/lub Stronami."; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Przełącz między różnymi tożsamościami lub stronami społeczność/grupy, które udostępniają dane Twojego konta lub które otrzymałeś uprawnienia \"zarządzaj\""; +$a->strings["Select an identity to manage: "] = "Wybierz tożsamość do zarządzania:"; $a->strings["[Embedded content - reload page to view]"] = "[Dodatkowa zawartość - odśwież stronę by zobaczyć]"; $a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro."; $a->strings["Import"] = "Import"; @@ -404,208 +870,400 @@ $a->strings["You need to export your account from the old server and upload it h $a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Ta funkcja jest eksperymentalna. Nie możemy importować kontaktów z sieci OStatus (GNU Social/Statusnet) lub z Diaspory"; $a->strings["Account file"] = "Pliki konta"; $a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Aby eksportować konto, wejdź w \"Ustawienia->Eksport danych osobistych\" i wybierz \"Eksportuj konto\""; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s witamy %2\$s"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Brak pasujących słów kluczowych. Dodaj słowa kluczowe do domyślnego profilu."; -$a->strings["is interested in:"] = "interesuje się:"; -$a->strings["Profile Match"] = "Dopasowanie profilu"; -$a->strings["No matches"] = "Brak wyników"; -$a->strings["Invalid request identifier."] = "Nieprawidłowe żądanie identyfikatora."; -$a->strings["Discard"] = "Odrzuć"; -$a->strings["Ignore"] = "Ignoruj"; -$a->strings["Notifications"] = "Powiadomienia"; -$a->strings["Network Notifications"] = "Powiadomienia sieciowe"; -$a->strings["System Notifications"] = "Powiadomienia systemowe"; -$a->strings["Personal Notifications"] = "Prywatne powiadomienia"; -$a->strings["Home Notifications"] = "Powiadomienia domowe"; -$a->strings["Show Ignored Requests"] = "Pokaż ignorowane żądania"; -$a->strings["Hide Ignored Requests"] = "Ukryj zignorowane prośby"; -$a->strings["Notification type: "] = "Typ powiadomienia:"; -$a->strings["suggested by %s"] = "zaproponowane przez %s"; -$a->strings["Hide this contact from others"] = "Ukryj ten kontakt przed innymi"; -$a->strings["Post a new friend activity"] = "Opublikuj aktywność nowego znajomego"; -$a->strings["if applicable"] = "jeśli dotyczy"; -$a->strings["Approve"] = "Zatwierdź"; -$a->strings["Claims to be known to you: "] = "Twierdzi, że go znasz:"; -$a->strings["yes"] = "tak"; -$a->strings["no"] = "nie"; -$a->strings["Shall your connection be bidirectional or not?"] = "Czy twoje połączenie ma być dwukierunkowe, czy nie?"; -$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Przyjmowanie %s jako znajomego pozwala %s zasubskrybować twoje posty, a także otrzymywać od nich aktualizacje w swoim kanale wiadomości."; -$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Zaakceptowanie %s jako subskrybenta umożliwia im subskrybowanie Twoich postów, ale nie otrzymasz od nich aktualizacji w swoim kanale wiadomości."; -$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Akceptowanie %s jako udostępniający pozwala im subskrybować twoje posty, ale nie otrzymasz od nich aktualizacji w swoim kanale wiadomości."; -$a->strings["Friend"] = "Znajomy"; -$a->strings["Sharer"] = "Udostępniający/a"; -$a->strings["Subscriber"] = "Subskrybent"; -$a->strings["Location:"] = "Lokalizacja"; -$a->strings["About:"] = "O:"; -$a->strings["Tags:"] = "Tagi:"; -$a->strings["Gender:"] = "Płeć:"; -$a->strings["Profile URL"] = "Adres URL profilu"; -$a->strings["Network:"] = "Sieć:"; -$a->strings["No introductions."] = "Brak dostępu."; -$a->strings["Show unread"] = "Pokaż nieprzeczytane"; -$a->strings["Show all"] = "Pokaż wszystko"; -$a->strings["No more %s notifications."] = "Nigdy więcej %s powiadomień."; +$a->strings["Total invitation limit exceeded."] = "Przekroczono limit zaproszeń ogółem."; +$a->strings["%s : Not a valid email address."] = "%s : Nieprawidłowy adres e-mail."; +$a->strings["Please join us on Friendica"] = "Dołącz do nas na Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Przekroczono limit zaproszeń. Skontaktuj się z administratorem witryny."; +$a->strings["%s : Message delivery failed."] = "%s : Nie udało się dostarczyć wiadomości."; +$a->strings["%d message sent."] = [ + 0 => "%d wiadomość wysłana.", + 1 => "%d wiadomości wysłane.", + 2 => "%d wysłano .", + 3 => "%d wiadomość wysłano.", +]; +$a->strings["You have no more invitations available"] = "Nie masz już dostępnych zaproszeń"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Odwiedź %s listę publicznych witryn, do których możesz dołączyć. Członkowie Friendica na innych stronach mogą łączyć się ze sobą, jak również z członkami wielu innych sieci społecznościowych."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Aby zaakceptować to zaproszenie, odwiedź i zarejestruj się %s lub w dowolnej innej publicznej witrynie internetowej Friendica."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Strony Friendica łączą się ze sobą, tworząc ogromną sieć społecznościową o zwiększonej prywatności, która jest własnością i jest kontrolowana przez jej członków. Mogą również łączyć się z wieloma tradycyjnymi sieciami społecznościowymi. Zobacz %s listę alternatywnych witryn Friendica, do których możesz dołączyć."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Przepraszamy. System nie jest obecnie skonfigurowany do łączenia się z innymi publicznymi witrynami lub zapraszania członków."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = "Strony Friendica łączą się ze sobą, tworząc ogromną sieć społecznościową o zwiększonej prywatności, która jest własnością i jest kontrolowana przez jej członków. Mogą również łączyć się z wieloma tradycyjnymi sieciami społecznościowymi."; +$a->strings["To accept this invitation, please visit and register at %s."] = "Aby zaakceptować to zaproszenie, odwiedź stronę i zarejestruj się na stronie %s."; +$a->strings["Send invitations"] = "Wyślij zaproszenie"; +$a->strings["Enter email addresses, one per line:"] = "Wprowadź adresy e-mail, po jednym w wierszu:"; +$a->strings["Your message:"] = "Twoja wiadomość:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Serdecznie zapraszam do przyłączenia się do mnie i innych bliskich znajomych na stronie Friendica - i pomóż nam stworzyć lepszą sieć społecznościową."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Musisz podać ten kod zaproszenia: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Po rejestracji połącz się ze mną na stronie mojego profilu pod adresem:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "Aby uzyskać więcej informacji na temat projektu Friendica i dlaczego uważamy, że jest to ważne, odwiedź http://friendi.ca"; $a->strings["OpenID protocol error. No ID returned."] = "Błąd protokołu OpenID. Nie znaleziono identyfikatora."; $a->strings["Account not found and OpenID registration is not permitted on this site."] = "Konto nie zostało znalezione, a rejestracja OpenID nie jest dozwolona na tej stronie."; -$a->strings["Login failed."] = "Logowanie nieudane."; -$a->strings["Profile not found."] = "Nie znaleziono profilu."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Może się to zdarzyć, gdy kontakt został zgłoszony przez obie osoby i został już zatwierdzony."; -$a->strings["Response from remote site was not understood."] = "Odpowiedź do zdalnej strony nie została zrozumiana"; -$a->strings["Unexpected response from remote site: "] = "Nieoczekiwana odpowiedź od strony zdalnej:"; -$a->strings["Confirmation completed successfully."] = "Potwierdzenie zostało pomyślnie zakończone."; -$a->strings["Temporary failure. Please wait and try again."] = "Tymczasowa awaria. Proszę czekać i spróbuj ponownie."; -$a->strings["Introduction failed or was revoked."] = "Wprowadzenie nie powiodło się lub zostało odwołane."; -$a->strings["Remote site reported: "] = "Zdalna witryna zgłoszona:"; -$a->strings["Unable to set contact photo."] = "Nie można ustawić zdjęcia kontaktu."; -$a->strings["No user record found for '%s' "] = "Nie znaleziono użytkownika dla '%s'"; -$a->strings["Our site encryption key is apparently messed up."] = "Klucz kodujący jest najwyraźniej uszkodzony."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Został podany pusty adres URL witryny lub nie można go odszyfrować."; -$a->strings["Contact record was not found for you on our site."] = "Nie znaleziono kontaktu na naszej stronie"; -$a->strings["Site public key not available in contact record for URL %s."] = "Publiczny klucz witryny jest niedostępny w rekordzie kontaktu dla adresu URL %s"; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Identyfikator dostarczony przez Twój system jest duplikatem w naszym systemie. Powinien działać, jeśli spróbujesz ponownie."; -$a->strings["Unable to set your contact credentials on our system."] = "Nie można ustawić danych kontaktowych w naszym systemie."; -$a->strings["Unable to update your contact profile details on our system"] = "Nie można zaktualizować danych Twojego profilu kontaktowego w naszym systemie"; -$a->strings["[Name Withheld]"] = "[Nazwa zastrzeżona]"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s dołączył/a do %2\$s"; -$a->strings["Manage Identities and/or Pages"] = "Zarządzaj Tożsamościami i/lub Stronami."; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Przełącz między różnymi tożsamościami lub stronami społeczność/grupy, które udostępniają dane Twojego konta lub które otrzymałeś uprawnienia \"zarządzaj\""; -$a->strings["Select an identity to manage: "] = "Wybierz tożsamość do zarządzania:"; -$a->strings["Invalid request."] = "Nieprawidłowe żądanie."; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Przepraszam, może twój przesyłany plik jest większy niż pozwala konfiguracja PHP"; -$a->strings["Or - did you try to upload an empty file?"] = "Lub - czy próbowałeś załadować pusty plik?"; -$a->strings["File exceeds size limit of %s"] = "Plik przekracza limit rozmiaru wynoszący %s"; -$a->strings["File upload failed."] = "Przesyłanie pliku nie powiodło się."; -$a->strings["This introduction has already been accepted."] = "To wprowadzenie zostało już zaakceptowane."; -$a->strings["Profile location is not valid or does not contain profile information."] = "Lokalizacja profilu jest nieprawidłowa lub nie zawiera informacji o profilu."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik."; -$a->strings["Warning: profile location has no profile photo."] = "Ostrzeżenie: położenie profilu nie zawiera zdjęcia."; -$a->strings["%d required parameter was not found at the given location"] = [ - 0 => "%d wymagany parametr nie został znaleziony w podanej lokacji", - 1 => "%d wymagane parametry nie zostały znalezione w podanej lokacji", - 2 => "%d wymagany parametr nie został znaleziony w podanej lokacji", - 3 => "%d wymagany parametr nie został znaleziony w podanej lokacji", -]; -$a->strings["Introduction complete."] = "Wprowadzanie zakończone."; -$a->strings["Unrecoverable protocol error."] = "Nieodwracalny błąd protokołu."; -$a->strings["Profile unavailable."] = "Profil niedostępny."; -$a->strings["%s has received too many connection requests today."] = "%s otrzymał dziś zbyt wiele żądań połączeń."; -$a->strings["Spam protection measures have been invoked."] = "Wprowadzono zabezpieczenia przed spamem."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Przyjaciele namawiają do spróbowania za 24h."; -$a->strings["Invalid locator"] = "Nieprawidłowy lokalizator"; -$a->strings["You have already introduced yourself here."] = "Już się tu przedstawiłeś."; -$a->strings["Apparently you are already friends with %s."] = "Wygląda na to, że już jesteście przyjaciółmi z %s"; -$a->strings["Invalid profile URL."] = "Nieprawidłowy URL profilu."; -$a->strings["Disallowed profile URL."] = "Nie dozwolony adres URL profilu."; -$a->strings["Blocked domain"] = "Zablokowana domena"; -$a->strings["Failed to update contact record."] = "Aktualizacja rekordu kontaktu nie powiodła się."; -$a->strings["Your introduction has been sent."] = "Twoje dane zostały wysłane."; -$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Zdalnej subskrypcji nie można wykonać dla swojej sieci. Proszę zasubskrybuj bezpośrednio w swoim systemie."; -$a->strings["Please login to confirm introduction."] = "Zaloguj się, aby potwierdzić wprowadzenie."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego użytkownika. "; -$a->strings["Confirm"] = "Potwierdź"; -$a->strings["Hide this contact"] = "Ukryj kontakt"; -$a->strings["Welcome home %s."] = "Welcome home %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s."; -$a->strings["Public access denied."] = "Publiczny dostęp zabroniony"; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Wprowadź swój 'Adres tożsamości' z jednej z następujących obsługiwanych sieci komunikacyjnych:"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Jeśli nie jesteś jeszcze członkiem darmowej sieci społecznościowej, kliknij ten link, aby znaleźć publiczną witrynę Friendica i dołącz do nas już dziś."; -$a->strings["Friend/Connection Request"] = "Przyjaciel/Prośba o połączenie"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"] = "Przykłady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"; -$a->strings["Please answer the following:"] = "Proszę odpowiedzieć na następujące pytania:"; -$a->strings["Does %s know you?"] = "Czy %s Cię zna?"; -$a->strings["Add a personal note:"] = "Dodaj osobistą notkę:"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["GNU Social (Pleroma, Mastodon)"] = "GNU Social (Pleroma, Mastodon)"; -$a->strings["Diaspora (Socialhome, Hubzilla)"] = "Diaspora (Socialhome, Hubzilla)"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- proszę nie używać tego formularza. Zamiast tego wpisz %s do paska wyszukiwania Diaspory."; -$a->strings["Your Identity Address:"] = "Twój adres tożsamości:"; -$a->strings["Submit Request"] = "Wyślij zgłoszenie"; -$a->strings["- select -"] = "- wybierz -"; -$a->strings["l F d, Y \\@ g:i A"] = ""; -$a->strings["Time Conversion"] = "Zmiana czasu"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica udostępnia tę usługę do udostępniania wydarzeń innym sieciom i znajomym w nieznanych strefach czasowych."; -$a->strings["UTC time: %s"] = "Czas UTC %s"; -$a->strings["Current timezone: %s"] = "Obecna strefa czasowa: %s"; -$a->strings["Converted localtime: %s"] = "Zmień strefę czasową: %s"; -$a->strings["Please select your timezone:"] = "Wybierz swoją strefę czasową:"; -$a->strings["No more system notifications."] = "Nie ma więcej powiadomień systemowych."; -$a->strings["{0} wants to be your friend"] = "{0} chce być Twoim znajomym"; -$a->strings["{0} sent you a message"] = "{0} wysłałem Ci wiadomość"; -$a->strings["{0} requested registration"] = "{0} wymagana rejestracja"; -$a->strings["Poke/Prod"] = ""; -$a->strings["poke, prod or do other things to somebody"] = ""; -$a->strings["Recipient"] = "Odbiorca"; -$a->strings["Choose what you wish to do to recipient"] = "Wybierz, co chcesz zrobić"; -$a->strings["Make this post private"] = "Ustaw ten post jako prywatny"; -$a->strings["Only logged in users are permitted to perform a probing."] = "Tylko zalogowani użytkownicy mogą wykonywać sondowanie."; -$a->strings["Permission denied"] = "Odmowa dostępu"; -$a->strings["Invalid profile identifier."] = "Nieprawidłowa nazwa użytkownika."; -$a->strings["Profile Visibility Editor"] = "Ustawienia widoczności profilu"; -$a->strings["Click on a contact to add or remove."] = "Kliknij na kontakt w celu dodania lub usunięcia."; -$a->strings["Visible To"] = "Widoczne dla"; -$a->strings["All Contacts (with secure profile access)"] = "Wszystkie kontakty (z bezpiecznym dostępem do profilu)"; -$a->strings["Account approved."] = "Konto zatwierdzone."; -$a->strings["Registration revoked for %s"] = "Rejestracja odwołana dla %s"; -$a->strings["Please login."] = "Proszę się zalogować."; +$a->strings["No profile"] = "Brak profilu"; +$a->strings["You must be logged in to use addons. "] = "Musisz być zalogowany, aby korzystać z dodatków."; +$a->strings["Applications"] = "Aplikacje"; +$a->strings["No installed applications."] = "Brak zainstalowanych aplikacji."; $a->strings["Remove term"] = "Usuń wpis"; -$a->strings["Saved Searches"] = "Zapisane wyszukiwania"; -$a->strings["Only logged in users are permitted to perform a search."] = "Tylko zalogowani użytkownicy mogą wyszukiwać."; -$a->strings["Too Many Requests"] = "Zbyt dużo próśb"; -$a->strings["Only one search per minute is permitted for not logged in users."] = "Dla niezalogowanych użytkowników dozwolone jest tylko jedno wyszukiwanie na minutę."; -$a->strings["No results."] = "Brak wyników."; -$a->strings["Items tagged with: %s"] = "Przedmioty oznaczone tagiem: %s"; -$a->strings["Results for: %s"] = "Wyniki dla: %s"; +$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [ + 0 => "", + 1 => "", + 2 => "", + 3 => "", +]; +$a->strings["Messages in this group won't be send to these receivers."] = "Wiadomości z tej grupy nie będą wysyłane do tych odbiorców."; +$a->strings["No such group"] = "Nie ma takiej grupy"; +$a->strings["Group is empty"] = "Grupa jest pusta"; +$a->strings["Group: %s"] = "Grupa: %s"; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione "; +$a->strings["Invalid contact."] = "Nieprawidłowy kontakt."; +$a->strings["Commented Order"] = "Porządek według komentarzy"; +$a->strings["Sort by Comment Date"] = "Sortuj według daty komentarza"; +$a->strings["Posted Order"] = "Porządek według wpisów"; +$a->strings["Sort by Post Date"] = "Sortuj według daty postów"; +$a->strings["Posts that mention or involve you"] = "Posty, które wspominają lub angażują Ciebie"; +$a->strings["New"] = "Nowy"; +$a->strings["Activity Stream - by date"] = "Strumień aktywności - według daty"; +$a->strings["Shared Links"] = "Udostępnione łącza"; +$a->strings["Interesting Links"] = "Interesujące linki"; +$a->strings["Starred"] = "Ulubione"; +$a->strings["Favourite Posts"] = "Ulubione posty"; +$a->strings["This is Friendica, version"] = "To jest Friendica, wersja"; +$a->strings["running at web location"] = "otwierane na serwerze"; +$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = "Odwiedź stronę Friendi.ca aby dowiedzieć się więcej o projekcie Friendica."; +$a->strings["Bug reports and issues: please visit"] = "Raporty o błędach i problemy: odwiedź stronę"; +$a->strings["the bugtracker at github"] = "bugtracker na github"; +$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Sugestie, pochwały itp. - napisz e-mail \"info\" na \"friendi - kropka - ca"; +$a->strings["Installed addons/apps:"] = "Zainstalowane dodatki/aplikacje:"; +$a->strings["No installed addons/apps"] = "Brak zainstalowanych dodatków/aplikacji"; +$a->strings["Read about the Terms of Service of this node."] = "Przeczytaj o Warunkach świadczenia usług tego węzła."; +$a->strings["On this server the following remote servers are blocked."] = "Na tym serwerze następujące serwery zdalne są blokowane."; +$a->strings["Reason for the block"] = "Powód blokowania"; $a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$skolejny %2\$s %3\$s "; -$a->strings["Tag removed"] = "Tag usunięty"; -$a->strings["Remove Item Tag"] = "Usuń pozycję Tag"; -$a->strings["Select a tag to remove: "] = "Wybierz tag do usunięcia"; -$a->strings["Remove"] = "Usuń"; -$a->strings["Export account"] = "Eksportuj konto"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Eksportuj informacje o swoim koncie i kontaktach. Użyj tego do utworzenia kopii zapasowej konta i/lub przeniesienia go na inny serwer."; -$a->strings["Export all"] = "Eksportuj wszystko"; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Wyeksportuj informacje o koncie, kontaktach i wszystkie swoje pozycje jako json. Może to być bardzo duży plik i może zająć dużo czasu. Użyj tej opcji, aby utworzyć pełną kopię zapasową swojego konta (zdjęcia nie są eksportowane)"; -$a->strings["Export personal data"] = "Eksportuje dane personalne"; -$a->strings["No contacts."] = "brak kontaktów"; -$a->strings["Access denied."] = "Brak dostępu"; -$a->strings["Image exceeds size limit of %s"] = "Obraz przekracza limit rozmiaru wynoszący %s"; -$a->strings["Unable to process image."] = "Przetwarzanie obrazu nie powiodło się."; -$a->strings["Wall Photos"] = "Tablica zdjęć"; -$a->strings["Image upload failed."] = "Przesyłanie obrazu nie powiodło się"; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Dzienny limit wiadomości %s został przekroczony. Wiadomość została odrzucona."; -$a->strings["No recipient selected."] = "Nie wybrano odbiorcy."; -$a->strings["Unable to check your home location."] = "Nie można sprawdzić twojej lokalizacji."; -$a->strings["Message could not be sent."] = "Wiadomość nie może zostać wysłana"; -$a->strings["Message collection failure."] = "Błąd zbierania komunikatów."; -$a->strings["Message sent."] = "Wysłano."; -$a->strings["No recipient."] = "Brak odbiorcy."; -$a->strings["Send Private Message"] = "Wyślij prywatną wiadomość"; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Jeśli chcesz %s odpowiedzieć, sprawdź, czy ustawienia prywatności w Twojej witrynie zezwalają na prywatne wiadomości od nieznanych nadawców."; -$a->strings["To:"] = "Do:"; -$a->strings["Subject:"] = "Temat:"; -$a->strings["Your message:"] = "Twoja wiadomość:"; -$a->strings["Login"] = "Login"; -$a->strings["The post was created"] = "Post został utworzony"; -$a->strings["Community option not available."] = "Opcja wspólnotowa jest niedostępna."; -$a->strings["Not available."] = "Niedostępne."; -$a->strings["Local Community"] = "Lokalna społeczność"; -$a->strings["Posts from local users on this server"] = "Wpisy od lokalnych użytkowników na tym serwerze"; -$a->strings["Global Community"] = "Globalna społeczność"; -$a->strings["Posts from users of the whole federated network"] = "Wpisy od użytkowników całej sieci stowarzyszonej"; -$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "Ten strumień społeczności pokazuje wszystkie publiczne posty otrzymane przez ten węzeł. Mogą nie odzwierciedlać opinii użytkowników tego węzła."; -$a->strings["Item not found"] = "Nie znaleziono elementu"; -$a->strings["Edit post"] = "Edytuj post"; -$a->strings["CC: email addresses"] = "CC: adresy e-mail"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Przykład: bob@example.com, mary@example.com"; +$a->strings["Profile not found."] = "Nie znaleziono profilu."; +$a->strings["Profile deleted."] = "Konto usunięte."; +$a->strings["Profile-"] = "Profil-"; +$a->strings["New profile created."] = "Utworzono nowy profil."; +$a->strings["Profile unavailable to clone."] = "Nie można powileić profilu "; +$a->strings["Profile Name is required."] = "Nazwa Profilu jest wymagana"; +$a->strings["Marital Status"] = "Stan cywilny"; +$a->strings["Romantic Partner"] = "Romantyczny partner"; +$a->strings["Work/Employment"] = "Praca/Zatrudnienie"; +$a->strings["Religion"] = "Religia"; +$a->strings["Political Views"] = "Poglądy polityczne"; +$a->strings["Gender"] = "Płeć"; +$a->strings["Sexual Preference"] = "Orientacja seksualna"; +$a->strings["XMPP"] = "XMPP"; +$a->strings["Homepage"] = "Strona Główna"; +$a->strings["Interests"] = "Zainteresowania"; +$a->strings["Address"] = "Adres"; +$a->strings["Location"] = "Lokalizacja"; +$a->strings["Profile updated."] = "Profil zaktualizowany."; +$a->strings[" and "] = " i "; +$a->strings["public profile"] = "profil publiczny"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$szmienione %2\$s na “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = " - Odwiedź %1\$s's %2\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$sma zaktualizowany %2\$s, zmiana%3\$s."; +$a->strings["Hide contacts and friends:"] = "Ukryj kontakty i znajomych:"; +$a->strings["No"] = "Nie"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Czy chcesz ukryć listę kontaktów dla przeglądających to konto?"; +$a->strings["Show more profile fields:"] = "Pokaż więcej pól profilu:"; +$a->strings["Profile Actions"] = "Akcje profilowe"; +$a->strings["Edit Profile Details"] = "Edytuj profil."; +$a->strings["Change Profile Photo"] = "Zmień zdjęcie profilowe"; +$a->strings["View this profile"] = "Wyświetl ten profil"; +$a->strings["Create a new profile using these settings"] = "Stwórz nowy profil wykorzystując te ustawienia"; +$a->strings["Clone this profile"] = "Sklonuj ten profil"; +$a->strings["Delete this profile"] = "Usuń ten profil"; +$a->strings["Basic information"] = "Podstawowe informacje"; +$a->strings["Profile picture"] = "Zdjęcie profilowe"; +$a->strings["Preferences"] = "Preferencje"; +$a->strings["Status information"] = "Informacje o stanie"; +$a->strings["Additional information"] = "Dodatkowe informacje"; +$a->strings["Relation"] = "Relacje"; +$a->strings["Your Gender:"] = "Płeć:"; +$a->strings[" Marital Status:"] = " Stan cywilny:"; +$a->strings["Example: fishing photography software"] = "Przykład: oprogramowanie do fotografowania ryb"; +$a->strings["Profile Name:"] = "Nazwa profilu:"; +$a->strings["Required"] = "Wymagany"; +$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "To jest Twój publiczny profil.
Może zostać wyświetlony przez każdego kto używa internetu."; +$a->strings["Your Full Name:"] = "Imię i Nazwisko:"; +$a->strings["Title/Description:"] = "Tytuł/Opis :"; +$a->strings["Street Address:"] = "Ulica:"; +$a->strings["Locality/City:"] = "Miejscowość/Miasto:"; +$a->strings["Region/State:"] = "Region/Państwo:"; +$a->strings["Postal/Zip Code:"] = "Kod Pocztowy:"; +$a->strings["Country:"] = "Kraj:"; +$a->strings["Who: (if applicable)"] = "Kto: (jeśli dotyczy)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Przykłady: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "Od [data]:"; +$a->strings["Tell us about yourself..."] = "Napisz o sobie..."; +$a->strings["XMPP (Jabber) address:"] = "Adres XMPP (Jabber):"; +$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "Adres XMPP będzie propagowany do Twoich kontaktów, aby mogli Cię śledzić."; +$a->strings["Homepage URL:"] = "Adres URL strony domowej:"; +$a->strings["Religious Views:"] = "Poglądy religijne:"; +$a->strings["Public Keywords:"] = "Publiczne słowa kluczowe:"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)"; +$a->strings["Private Keywords:"] = "Prywatne słowa kluczowe:"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Używany do wyszukiwania profili, niepokazywany innym)"; +$a->strings["Musical interests"] = "Muzyka"; +$a->strings["Books, literature"] = "Literatura"; +$a->strings["Television"] = "Telewizja"; +$a->strings["Film/dance/culture/entertainment"] = "Film/taniec/kultura/rozrywka"; +$a->strings["Hobbies/Interests"] = "Zainteresowania"; +$a->strings["Love/romance"] = "Miłość/romans"; +$a->strings["Work/employment"] = "Praca/zatrudnienie"; +$a->strings["School/education"] = "Szkoła/edukacja"; +$a->strings["Contact information and Social Networks"] = "Dane kontaktowe i Sieci społecznościowe"; +$a->strings["Edit/Manage Profiles"] = "Edycja/Zarządzanie profilami"; +$a->strings["Event can not end before it has started."] = "Wydarzenie nie może się zakończyć przed jego rozpoczęciem."; +$a->strings["Event title and start time are required."] = "Wymagany tytuł wydarzenia i czas rozpoczęcia."; +$a->strings["View"] = "Widok"; +$a->strings["Create New Event"] = "Stwórz nowe wydarzenie"; +$a->strings["Previous"] = "Poprzedni"; +$a->strings["Next"] = "Następny"; +$a->strings["list"] = "lista"; +$a->strings["Event details"] = "Szczegóły wydarzenia"; +$a->strings["Starting date and Title are required."] = "Data rozpoczęcia i tytuł są wymagane."; +$a->strings["Event Starts:"] = "Rozpoczęcie wydarzenia:"; +$a->strings["Finish date/time is not known or not relevant"] = "Data/czas zakończenia nie jest znana lub jest nieistotna"; +$a->strings["Event Finishes:"] = "Zakończenie wydarzenia:"; +$a->strings["Adjust for viewer timezone"] = "Dopasuj dla strefy czasowej widza"; +$a->strings["Description:"] = "Opis:"; +$a->strings["Title:"] = "Tytuł:"; +$a->strings["Share this event"] = "Udostępnij te wydarzenie"; +$a->strings["Failed to remove event"] = "Nie udało się usunąć wydarzenia"; +$a->strings["Event removed"] = "Wydarzenie zostało usunięte"; +$a->strings["No more system notifications."] = "Nie ma więcej powiadomień systemowych."; +$a->strings["System Notifications"] = "Powiadomienia systemowe"; +$a->strings["Contact not found."] = "Kontakt nie znaleziony"; $a->strings["Friend suggestion sent."] = "Wysłana propozycja dodania do znajomych."; $a->strings["Suggest Friends"] = "Proponuję znajomych"; $a->strings["Suggest a friend for %s"] = "Zaproponuj znajomych dla %s"; +$a->strings["Item not available."] = "Element niedostępny."; +$a->strings["Item was not found."] = "Element nie znaleziony."; +$a->strings["No friends to display."] = "Brak znajomych do wyświetlenia"; +$a->strings["No contacts."] = "brak kontaktów"; +$a->strings["Visit %s's profile [%s]"] = "Obejrzyj %s's profil [%s]"; +$a->strings["Subscribing to OStatus contacts"] = "Subskrybowanie kontaktów OStatus"; +$a->strings["No contact provided."] = "Brak kontaktu."; +$a->strings["Couldn't fetch information for contact."] = "Nie można pobrać informacji o kontakcie."; +$a->strings["Couldn't fetch friends for contact."] = "Nie można pobrać znajomych do kontaktu."; +$a->strings["success"] = "powodzenie"; +$a->strings["failed"] = "nie powiodło się"; +$a->strings["Authorize application connection"] = "Autoryzacja połączenia aplikacji"; +$a->strings["Return to your app and insert this Securty Code:"] = "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:"; +$a->strings["Please login to continue."] = "Zaloguj się aby kontynuować."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Czy chcesz zezwolić tej aplikacji na dostęp do swoich postów i kontaktów i/lub tworzenie nowych postów?"; +$a->strings["everybody"] = "wszyscy"; +$a->strings["Account"] = "Konto"; +$a->strings["Additional features"] = "Dodatkowe funkcje"; +$a->strings["Display"] = "Wyświetlanie"; +$a->strings["Social Networks"] = "Portale społecznościowe"; +$a->strings["Addons"] = "Dodatki"; +$a->strings["Connected apps"] = "Powiązane aplikacje"; +$a->strings["Export personal data"] = "Eksportuje dane personalne"; +$a->strings["Remove account"] = "Usuń konto"; +$a->strings["Missing some important data!"] = "Brakuje ważnych danych!"; +$a->strings["Update"] = "Zaktualizuj"; +$a->strings["Failed to connect with email account using the settings provided."] = "Połączenie z kontem email używając wybranych ustawień nie powiodło się."; +$a->strings["Email settings updated."] = "Zaktualizowano ustawienia email."; +$a->strings["Features updated"] = "Funkcje zaktualizowane"; +$a->strings["Relocate message has been send to your contacts"] = "Przeniesienie wiadomości zostało wysłane do Twoich kontaktów"; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Puste hasła są niedozwolone. Hasło niezmienione."; +$a->strings["Wrong password."] = "Złe hasło."; +$a->strings[" Please use a shorter name."] = "Proszę użyć krótszej nazwy."; +$a->strings[" Name too short."] = "Za krótka nazwa."; +$a->strings["Wrong Password"] = "Złe hasło"; +$a->strings["Invalid email."] = "Niepoprawny e-mail."; +$a->strings["Cannot change to that email."] = "Nie można zmienić tego e-maila."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Prywatne forum nie ma uprawnień do prywatności. Użyj domyślnej grupy prywatnej."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Prywatne forum nie ma uprawnień do prywatności ani domyślnej grupy prywatności."; +$a->strings["Settings updated."] = "Zaktualizowano ustawienia."; +$a->strings["Add application"] = "Dodaj aplikację"; +$a->strings["Save Settings"] = "Zapisz ustawienia"; +$a->strings["Name"] = "Nazwa"; +$a->strings["Consumer Key"] = "Klucz klienta"; +$a->strings["Consumer Secret"] = "Tajny klucz klienta"; +$a->strings["Redirect"] = "Przekierowanie"; +$a->strings["Icon url"] = "Adres Url ikony"; +$a->strings["You can't edit this application."] = "Nie możesz edytować tej aplikacji."; +$a->strings["Connected Apps"] = "Powiązane aplikacje"; +$a->strings["Client key starts with"] = "Klucz klienta zaczyna się od"; +$a->strings["No name"] = "Bez nazwy"; +$a->strings["Remove authorization"] = "Odwołaj upoważnienie"; +$a->strings["No Addon settings configured"] = "Brak skonfigurowanych ustawień Dodatków"; +$a->strings["Addon Settings"] = "Ustawienia Dodatków"; +$a->strings["Off"] = "Wyłącz"; +$a->strings["On"] = "Włącz"; +$a->strings["Additional Features"] = "Dodatkowe funkcje"; +$a->strings["enabled"] = "włączony"; +$a->strings["disabled"] = "wyłączony"; +$a->strings["Built-in support for %s connectivity is %s"] = "Wbudowane wsparcie dla %s łączność jest %s"; +$a->strings["GNU Social (OStatus)"] = "GNU Społeczny (OStatus)"; +$a->strings["Email access is disabled on this site."] = "Dostęp do e-maila nie jest w pełni sprawny na tej stronie"; +$a->strings["General Social Media Settings"] = "Ogólne ustawienia mediów społecznościowych"; +$a->strings["Disable Content Warning"] = "Wyłącz ostrzeżenie o treści"; +$a->strings["Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This disables the automatic collapsing and sets the content warning as the post title. Doesn't affect any other content filtering you eventually set up."] = "Użytkownicy w sieciach takich jak Mastodon lub Pleroma mogą ustawić pole ostrzeżenia o treści, które domyślnie zwijać będzie swój wpis. Powoduje wyłączenie automatycznego zwijania i ustawia ostrzeżenie o treści jako tytuł postu. Nie ma wpływu na żadne inne filtrowanie treści, które ostatecznie utworzyłeś."; +$a->strings["Disable intelligent shortening"] = "Wyłącz inteligentne skracanie"; +$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Zwykle system próbuje znaleźć najlepszy link do dodania do skróconych postów. Jeśli ta opcja jest włączona, każdy skrócony wpis zawsze wskazuje oryginalny post znajomej osoby."; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automatycznie podążaj za wszystkimi obserwatorami/rzecznikami GNU Społeczności (OStatus)"; +$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "Jeśli otrzymasz wiadomość od nieznanego użytkownika OStatus, ta opcja decyduje, co zrobić. Jeśli zostanie zaznaczone, dla każdego nieznanego użytkownika zostanie utworzony nowy kontakt."; +$a->strings["Default group for OStatus contacts"] = "Domyślna grupa dla kontaktów OStatus"; +$a->strings["Your legacy GNU Social account"] = "Twoje starsze konto społecznościowe GNU"; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "Jeśli podasz swoją starą nazwę konta GNU Social/Statusnet tutaj (w formacie user@domain.tld), twoje kontakty zostaną dodane automatycznie. Pole zostanie opróżnione po zakończeniu."; +$a->strings["Repair OStatus subscriptions"] = "Napraw subskrypcje OStatus"; +$a->strings["Email/Mailbox Setup"] = "Ustawienia emaila/skrzynki mailowej"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Jeśli chcesz komunikować się z kontaktami e-mail za pomocą tej usługi (opcjonalnie), określ sposób łączenia się ze skrzynką pocztową."; +$a->strings["Last successful email check:"] = "Ostatni sprawdzony e-mail:"; +$a->strings["IMAP server name:"] = "Nazwa serwera IMAP:"; +$a->strings["IMAP port:"] = "Port IMAP:"; +$a->strings["Security:"] = "Ochrona:"; +$a->strings["None"] = "Brak"; +$a->strings["Email login name:"] = "Nazwa logowania e-mail:"; +$a->strings["Email password:"] = "E-mail hasło:"; +$a->strings["Reply-to address:"] = "Adres zwrotny:"; +$a->strings["Send public posts to all email contacts:"] = "Wyślij publiczny post do wszystkich kontaktów e-mail"; +$a->strings["Action after import:"] = "Akcja po zaimportowaniu:"; +$a->strings["Move to folder"] = "Przenieś do folderu"; +$a->strings["Move to folder:"] = "Przenieś do folderu:"; +$a->strings["No special theme for mobile devices"] = "Brak specialnego motywu dla urządzeń mobilnych"; +$a->strings["%s - (Unsupported)"] = "%s - (Nieobsługiwane)"; +$a->strings["%s - (Experimental)"] = "%s- (Eksperymentalne)"; +$a->strings["Display Settings"] = "Wyświetl ustawienia"; +$a->strings["Display Theme:"] = "Wyświetl motyw:"; +$a->strings["Mobile Theme:"] = "Motyw dla urządzeń mobilnych:"; +$a->strings["Suppress warning of insecure networks"] = "Ukryj ostrzeżenie przed niebezpiecznymi sieciami"; +$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "System powinien pominąć ostrzeżenie, że bieżąca grupa zawiera członków sieci, którzy nie mogą otrzymywać komentarzy niepublicznych"; +$a->strings["Update browser every xx seconds"] = "Odświeżaj stronę co xx sekund"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum 10 sekund. Wprowadź -1, aby go wyłączyć."; +$a->strings["Number of items to display per page:"] = "Liczba elementów do wyświetlenia na stronie:"; +$a->strings["Maximum of 100 items"] = "Maksymalnie 100 elementów"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Liczba elementów do wyświetlenia na stronie podczas przeglądania z urządzenia mobilnego:"; +$a->strings["Don't show emoticons"] = "Nie pokazuj emotikonek"; +$a->strings["Calendar"] = "Kalendarz"; +$a->strings["Beginning of week:"] = "Początek tygodnia:"; +$a->strings["Don't show notices"] = "Nie pokazuj powiadomień"; +$a->strings["Infinite scroll"] = "Nieskończone przewijanie"; +$a->strings["Automatic updates only at the top of the network page"] = "Automatyczne aktualizacje tylko u góry strony sieci"; +$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "Po wyłączeniu strona sieciowa jest cały czas aktualizowana, co może być mylące podczas czytania."; +$a->strings["Bandwith Saver Mode"] = "Tryb oszczędzania przepustowości"; +$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "Po włączeniu wbudowana zawartość nie jest wyświetlana w automatycznych aktualizacjach, wyświetlają się tylko przy przeładowaniu strony."; +$a->strings["Smart Threading"] = "Inteligentne gwintowanie"; +$a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = "Włączenie tej opcji powoduje pomijanie wcięcia nitek zewnętrznych, zachowując je w dowolnym miejscu. Działa tylko wtedy, gdy wątki są dostępne i włączone."; +$a->strings["General Theme Settings"] = "Ogólne ustawienia motywu"; +$a->strings["Custom Theme Settings"] = "Niestandardowe ustawienia motywów"; +$a->strings["Content Settings"] = "Ustawienia zawartości"; +$a->strings["Theme settings"] = "Ustawienia motywu"; +$a->strings["Unable to find your profile. Please contact your admin."] = "Nie można znaleźć Twojego profilu. Skontaktuj się z administratorem."; +$a->strings["Account Types"] = "Rodzaje kont"; +$a->strings["Personal Page Subtypes"] = "Podtypy osobistych stron"; +$a->strings["Community Forum Subtypes"] = "Podtypy społeczności forum"; +$a->strings["Personal Page"] = "Strona osobista"; +$a->strings["Account for a personal profile."] = "Konto dla profilu osobistego."; +$a->strings["Organisation Page"] = "Strona Organizacji"; +$a->strings["Account for an organisation that automatically approves contact requests as \"Followers\"."] = "Konto dla organizacji, która automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"."; +$a->strings["News Page"] = "Strona Wiadomości"; +$a->strings["Account for a news reflector that automatically approves contact requests as \"Followers\"."] = "Konto dla reflektora wiadomości, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"."; +$a->strings["Community Forum"] = "Forum społecznościowe"; +$a->strings["Account for community discussions."] = "Konto do dyskusji w społeczności."; +$a->strings["Normal Account Page"] = "Normalna strona konta"; +$a->strings["Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"."] = "Konto dla zwykłego profilu osobistego, który wymaga ręcznej zgody \"Przyjaciół\" i \"Obserwatorów\"."; +$a->strings["Soapbox Page"] = "Strona Soapbox"; +$a->strings["Account for a public profile that automatically approves contact requests as \"Followers\"."] = "Konto dla profilu publicznego, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"."; +$a->strings["Public Forum"] = "Forum publiczne"; +$a->strings["Automatically approves all contact requests."] = "Automatycznie zatwierdza wszystkie prośby o kontakt."; +$a->strings["Automatic Friend Page"] = "Automatyczna strona znajomego"; +$a->strings["Account for a popular profile that automatically approves contact requests as \"Friends\"."] = "Konto popularnego profilu, które automatycznie zatwierdza prośby o kontakt jako \"Przyjaciele\"."; +$a->strings["Private Forum [Experimental]"] = "Prywatne Forum [Eksperymentalne]"; +$a->strings["Requires manual approval of contact requests."] = "Wymaga ręcznego zatwierdzania żądań kontaktów."; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opcjonalnie) Pozwól zalogować się na to konto przy pomocy OpenID."; +$a->strings["Publish your default profile in your local site directory?"] = "Opublikować Twój domyślny profil w Twoim lokalnym katalogu stron?"; +$a->strings["Your profile will be published in the global friendica directories (e.g. %s). Your profile will be visible in public."] = "Twój profil zostanie opublikowany w globalnych katalogach friendica (np.%s). Twój profil będzie widoczny publicznie."; +$a->strings["Publish your default profile in the global social directory?"] = "Opublikować Twój domyślny profil w globalnym, społecznościowym katalogu?"; +$a->strings["Your profile will be published in this node's local directory. Your profile details may be publicly visible depending on the system settings."] = "Twój profil zostanie opublikowany w lokalnym katalogu tego węzła. Dane Twojego profilu mogą być publicznie widoczne w zależności od ustawień systemu."; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Ukryć listę znajomych przed odwiedzającymi Twój profil?"; +$a->strings["Your contact list won't be shown in your default profile page. You can decide to show your contact list separately for each additional profile you create"] = "Twoja lista kontaktów nie będzie wyświetlana na domyślnej stronie profilu. Możesz zdecydować o wyświetleniu listy kontaktów osobno dla każdego tworzonego dodatkowego profilu."; +$a->strings["Hide your profile details from anonymous viewers?"] = "Ukryć dane Twojego profilu przed anonimowymi widzami?"; +$a->strings["Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Disables posting public messages to Diaspora and other networks."] = "Anonimowi użytkownicy zobaczą tylko Twoje zdjęcie profilowe, Twoją wyświetlaną nazwę i pseudonim, którego używasz na stronie profilu. Wyłącza wysyłanie publicznych wiadomości do Diaspory i innych sieci."; +$a->strings["Allow friends to post to your profile page?"] = "Zezwalać znajomym na publikowanie postów na stronie Twojego profilu?"; +$a->strings["Your contacts may write posts on your profile wall. These posts will be distributed to your contacts"] = "Twoi znajomi mogą pisać posty na stronie Twojego profilu. Posty zostaną przesłane do Twoich kontaktów."; +$a->strings["Allow friends to tag your posts?"] = "Zezwolić na oznaczanie Twoich postów przez znajomych?"; +$a->strings["Your contacts can add additional tags to your posts."] = "Twoje kontakty mogą dodawać do tagów dodatkowe posty."; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Zezwolić na zaproponowanie Cię jako potencjalnego przyjaciela dla nowych członków?"; +$a->strings["If you like, Friendica may suggest new members to add you as a contact."] = "Jeśli chcesz, Friendica może zaproponować nowym członkom dodanie Cię jako kontakt."; +$a->strings["Permit unknown people to send you private mail?"] = "Zezwolić nieznanym osobom na wysyłanie prywatnych wiadomości?"; +$a->strings["Friendica network users may send you private messages even if they are not in your contact list."] = "Użytkownicy sieci w serwisie Friendica mogą wysyłać prywatne wiadomości, nawet jeśli nie znajdują się one na liście kontaktów."; +$a->strings["Profile is not published."] = "Profil nie jest opublikowany"; +$a->strings["Your Identity Address is '%s' or '%s'."] = "Twój adres tożsamości to '%s' lub '%s'."; +$a->strings["Automatically expire posts after this many days:"] = "Posty wygasną automatycznie po następującej liczbie dni:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte."; +$a->strings["Advanced expiration settings"] = "Zaawansowane ustawienia wygasania"; +$a->strings["Advanced Expiration"] = "Zaawansowane wygasanie"; +$a->strings["Expire posts:"] = "Wygasające posty:"; +$a->strings["Expire personal notes:"] = "Wygasanie osobistych notatek:"; +$a->strings["Expire starred posts:"] = "Wygasaj posty oznaczone gwiazdką:"; +$a->strings["Expire photos:"] = "Wygasanie zdjęć:"; +$a->strings["Only expire posts by others:"] = "Wygaszaj tylko te posty, które zostały napisane przez inne osoby:"; +$a->strings["Account Settings"] = "Ustawienia konta"; +$a->strings["Password Settings"] = "Ustawienia hasła"; +$a->strings["New Password:"] = "Nowe hasło:"; +$a->strings["Confirm:"] = "Potwierdź:"; +$a->strings["Leave password fields blank unless changing"] = "Pozostaw pole hasła puste, chyba że chcesz je zmienić."; +$a->strings["Current Password:"] = "Aktualne hasło:"; +$a->strings["Your current password to confirm the changes"] = "Wpisz aktualne hasło, aby potwierdzić zmiany"; +$a->strings["Password:"] = "Hasło:"; +$a->strings["Basic Settings"] = "Ustawienia podstawowe"; +$a->strings["Email Address:"] = "Adres email:"; +$a->strings["Your Timezone:"] = "Twoja strefa czasowa:"; +$a->strings["Your Language:"] = "Twój język:"; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Wybierz język, którego używasz, aby pokazać interfejs użytkownika friendica i do wysłania Ci e-maili"; +$a->strings["Default Post Location:"] = "Domyślna lokalizacja wiadomości:"; +$a->strings["Use Browser Location:"] = "Użyj lokalizacji przeglądarki:"; +$a->strings["Security and Privacy Settings"] = "Ustawienia bezpieczeństwa i prywatności"; +$a->strings["Maximum Friend Requests/Day:"] = "Maksymalna dzienna liczba zaproszeń do grona przyjaciół:"; +$a->strings["(to prevent spam abuse)"] = "(aby zapobiec spamowaniu)"; +$a->strings["Default Post Permissions"] = "Domyślne prawa dostępu wiadomości"; +$a->strings["(click to open/close)"] = "(kliknij by otworzyć/zamknąć)"; +$a->strings["Show to Groups"] = "Pokaż Grupy"; +$a->strings["Show to Contacts"] = "Pokaż kontakty"; +$a->strings["Default Private Post"] = "Domyślny Prywatny Wpis"; +$a->strings["Default Public Post"] = "Domyślny Publiczny Post"; +$a->strings["Default Permissions for New Posts"] = "Uprawnienia domyślne dla nowych postów"; +$a->strings["Maximum private messages per day from unknown people:"] = "Maksymalna liczba prywatnych wiadomości dziennie od nieznanych osób:"; +$a->strings["Notification Settings"] = "Ustawienia powiadomień"; +$a->strings["By default post a status message when:"] = "Publikuj domyślnie komunikat o stanie, gdy:"; +$a->strings["accepting a friend request"] = "przyjęto prośbę o dodanie do znajomych"; +$a->strings["joining a forum/community"] = "dołączono do forum/społeczności"; +$a->strings["making an interesting profile change"] = "dokonano interesującej zmiany profilu"; +$a->strings["Send a notification email when:"] = "Wyślij powiadmonienia na email, kiedy:"; +$a->strings["You receive an introduction"] = "Otrzymałeś zaproszenie"; +$a->strings["Your introductions are confirmed"] = "Twoje zaproszenie jest potwierdzone"; +$a->strings["Someone writes on your profile wall"] = "Ktoś pisze na twoim profilu"; +$a->strings["Someone writes a followup comment"] = "Ktoś pisze komentarz nawiązujący."; +$a->strings["You receive a private message"] = "Otrzymałeś prywatną wiadomość"; +$a->strings["You receive a friend suggestion"] = "Otrzymałeś propozycję od znajomych"; +$a->strings["You are tagged in a post"] = "Jesteś oznaczony tagiem w poście"; +$a->strings["You are poked/prodded/etc. in a post"] = "Jesteś zaczepiony/zaczepiona/itp. w poście"; +$a->strings["Activate desktop notifications"] = "Aktywuj powiadomienia na pulpicie"; +$a->strings["Show desktop popup on new notifications"] = "Pokaż wyskakujące okienko dla nowych powiadomień"; +$a->strings["Text-only notification emails"] = "E-maile z powiadomieniami tekstowymi"; +$a->strings["Send text only notification emails, without the html part"] = "Wysyłaj tylko e-maile z powiadomieniami tekstowymi, bez części html"; +$a->strings["Show detailled notifications"] = "Pokaż szczegółowe powiadomienia"; +$a->strings["Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed."] = "Domyślne powiadomienia są skondensowane z jednym powiadomieniem dla każdego przedmiotu. Po włączeniu wyświetlane jest każde powiadomienie."; +$a->strings["Advanced Account/Page Type Settings"] = "Zaawansowane ustawienia konta/rodzaju strony"; +$a->strings["Change the behaviour of this account for special situations"] = "Zmień zachowanie tego konta w sytuacjach specjalnych"; +$a->strings["Relocate"] = "Przeniesienie"; +$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Jeśli ten profil został przeniesiony z innego serwera, a niektóre z Twoich kontaktów nie otrzymają aktualizacji, spróbuj nacisnąć ten przycisk."; +$a->strings["Resend relocate message to contacts"] = "Wyślij ponownie przenieść wiadomości do kontaktów"; +$a->strings["Account approved."] = "Konto zatwierdzone."; +$a->strings["Registration revoked for %s"] = "Rejestracja odwołana dla %s"; +$a->strings["Please login."] = "Proszę się zalogować."; $a->strings["Group created."] = "Grupa utworzona."; $a->strings["Could not create group."] = "Nie mogę stworzyć grupy"; $a->strings["Group not found."] = "Nie znaleziono grupy"; $a->strings["Group name changed."] = "Nazwa grupy zmieniona"; +$a->strings["Permission denied"] = "Odmowa dostępu"; $a->strings["Save Group"] = "Zapisz grupę"; $a->strings["Create a group of contacts/friends."] = "Stwórz grupę znajomych."; -$a->strings["Group Name: "] = "Nazwa grupy: "; $a->strings["Group removed."] = "Grupa usunięta."; $a->strings["Unable to remove group."] = "Nie można usunąć grupy."; $a->strings["Delete Group"] = "Usuń grupę"; @@ -613,353 +1271,17 @@ $a->strings["Group Editor"] = "Edytor grupy"; $a->strings["Edit Group Name"] = "Edytuj nazwę grupy"; $a->strings["Members"] = "Członkowie"; $a->strings["All Contacts"] = "Wszystkie kontakty"; -$a->strings["Group is empty"] = "Grupa jest pusta"; $a->strings["Remove Contact"] = "Usuń Kontakt"; $a->strings["Add Contact"] = "Dodaj Kontakt"; -$a->strings["New Message"] = "Nowa wiadomość"; -$a->strings["Unable to locate contact information."] = "Nie można znaleźć informacji kontaktowych."; -$a->strings["Messages"] = "Wiadomości"; -$a->strings["Do you really want to delete this message?"] = "Czy na pewno chcesz usunąć tę wiadomość?"; -$a->strings["Message deleted."] = "Wiadomość usunięta."; -$a->strings["Conversation removed."] = "Rozmowa usunięta."; -$a->strings["No messages."] = "Brak wiadomości."; -$a->strings["Message not available."] = "Wiadomość nie jest dostępna."; -$a->strings["Delete message"] = "Usuń wiadomość"; -$a->strings["D, d M Y - g:i A"] = "D, d M R - g:m AM/PM"; -$a->strings["Delete conversation"] = "Usuń rozmowę"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Brak bezpiecznej komunikacji. Możesz odpowiedzieć na stronie profilu nadawcy."; -$a->strings["Send Reply"] = "Odpowiedz"; -$a->strings["Unknown sender - %s"] = "Nieznany nadawca - %s"; -$a->strings["You and %s"] = "Ty i %s"; -$a->strings["%s and You"] = "%s i ty"; -$a->strings["%d message"] = [ - 0 => " %d wiadomość", - 1 => " %d wiadomości", - 2 => " %d wiadomości", - 3 => " %d wiadomości", -]; -$a->strings["Personal Notes"] = "Notatki"; -$a->strings["Photo Albums"] = "Albumy zdjęć"; -$a->strings["Recent Photos"] = "Ostatnio dodane zdjęcia"; -$a->strings["Upload New Photos"] = "Wyślij nowe zdjęcie"; -$a->strings["everybody"] = "wszyscy"; -$a->strings["Contact information unavailable"] = "Informacje kontaktowe są niedostępne."; -$a->strings["Album not found."] = "Album nie znaleziony"; -$a->strings["Delete Album"] = "Usuń album"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?"; -$a->strings["Delete Photo"] = "Usuń zdjęcie"; -$a->strings["Do you really want to delete this photo?"] = "Czy na pewno chcesz usunąć to zdjęcie ?"; -$a->strings["a photo"] = "zdjęcie"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$szostał oznaczony tagiem %2\$s przez %3\$s"; -$a->strings["Image upload didn't complete, please try again"] = "Przesyłanie zdjęć nie zostało zakończone, spróbuj ponownie"; -$a->strings["Image file is missing"] = "Brak pliku obrazu"; -$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "Serwer nie może teraz przyjąć nowego pliku, skontaktuj się z administratorem"; -$a->strings["Image file is empty."] = "Plik obrazka jest pusty."; -$a->strings["No photos selected"] = "Nie zaznaczono zdjęć"; -$a->strings["Access to this item is restricted."] = "Dostęp do tego obiektu jest ograniczony."; -$a->strings["Upload Photos"] = "Prześlij zdjęcia"; -$a->strings["New album name: "] = "Nazwa nowego albumu:"; -$a->strings["or existing album name: "] = "lub istniejąca nazwa albumu:"; -$a->strings["Do not show a status post for this upload"] = "Nie pokazuj statusu postów dla tego wysłania"; -$a->strings["Permissions"] = "Uprawnienia"; -$a->strings["Show to Groups"] = "Pokaż Grupy"; -$a->strings["Show to Contacts"] = "Pokaż kontakty"; -$a->strings["Edit Album"] = "Edytuj album"; -$a->strings["Show Newest First"] = "Najpierw pokaż najnowsze"; -$a->strings["Show Oldest First"] = "Najpierw pokaż najstarsze"; -$a->strings["View Photo"] = "Zobacz zdjęcie"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Odmowa dostępu. Dostęp do tych danych może być ograniczony."; -$a->strings["Photo not available"] = "Zdjęcie niedostępne"; -$a->strings["View photo"] = "Zobacz zdjęcie"; -$a->strings["Edit photo"] = "Edytuj zdjęcie"; -$a->strings["Use as profile photo"] = "Ustaw jako zdjęcie profilowe"; -$a->strings["Private Message"] = "Wiadomość prywatna"; -$a->strings["View Full Size"] = "Zobacz w pełnym rozmiarze"; -$a->strings["Tags: "] = "Tagi:"; -$a->strings["[Remove any tag]"] = "[Usunąć znacznik]"; -$a->strings["New album name"] = "Nazwa nowego albumu"; -$a->strings["Caption"] = "Zawartość"; -$a->strings["Add a Tag"] = "Dodaj tag"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Do not rotate"] = "Nie obracaj"; -$a->strings["Rotate CW (right)"] = "Obróć CW (w prawo)"; -$a->strings["Rotate CCW (left)"] = "Obróć CCW (w lewo)"; -$a->strings["I like this (toggle)"] = "Lubię to (zmień)"; -$a->strings["I don't like this (toggle)"] = "Nie lubię tego (zmień)"; -$a->strings["This is you"] = "To jesteś ty"; -$a->strings["Comment"] = "Komentarz"; -$a->strings["Map"] = "Mapa"; -$a->strings["View Album"] = "Zobacz album"; -$a->strings["Requested profile is not available."] = "Żądany profil jest niedostępny"; -$a->strings["%s's posts"] = "%s posty "; -$a->strings["%s's comments"] = "%s komentarze "; -$a->strings["%s's timeline"] = "%s oś czasu "; -$a->strings["Access to this profile has been restricted."] = "Dostęp do tego profilu został ograniczony."; -$a->strings["Tips for New Members"] = "Wskazówki dla nowych użytkowników"; -$a->strings["Do you really want to delete this video?"] = "Czy na pewno chcesz usunąć ten film wideo?"; -$a->strings["Delete Video"] = "Usuń wideo"; -$a->strings["No videos selected"] = "Nie zaznaczono filmów"; -$a->strings["Recent Videos"] = "Ostatnio dodane filmy"; -$a->strings["Upload New Videos"] = "Wstaw nowe filmy"; -$a->strings["Events"] = "Wydarzenia"; -$a->strings["View"] = "Widok"; -$a->strings["Previous"] = "Poprzedni"; -$a->strings["Next"] = "Następny"; -$a->strings["today"] = "dzisiaj"; -$a->strings["month"] = "miesiąc"; -$a->strings["week"] = "tydzień"; -$a->strings["day"] = "dzień"; -$a->strings["list"] = "lista"; -$a->strings["User not found"] = "Użytkownik nie znaleziony"; -$a->strings["This calendar format is not supported"] = "Ten format kalendarza nie jest obsługiwany"; -$a->strings["No exportable data found"] = "Nie znaleziono danych do eksportu"; -$a->strings["calendar"] = "kalendarz"; -$a->strings["%d contact edited."] = [ - 0 => "", - 1 => "", - 2 => "", - 3 => "", -]; -$a->strings["Could not access contact record."] = "Nie można uzyskać dostępu do rejestru kontaktów."; -$a->strings["Could not locate selected profile."] = "Nie można znaleźć wybranego profilu."; -$a->strings["Contact updated."] = "Kontakt zaktualizowany"; -$a->strings["Contact has been blocked"] = "Kontakt został zablokowany"; -$a->strings["Contact has been unblocked"] = "Kontakt został odblokowany"; -$a->strings["Contact has been ignored"] = "Kontakt jest ignorowany"; -$a->strings["Contact has been unignored"] = "Kontakt nie jest ignorowany"; -$a->strings["Contact has been archived"] = "Kontakt został zarchiwizowany"; -$a->strings["Contact has been unarchived"] = "Kontakt został przywrócony"; -$a->strings["Drop contact"] = "Usuń kontakt"; -$a->strings["Do you really want to delete this contact?"] = "Czy na pewno chcesz usunąć ten kontakt?"; -$a->strings["Contact has been removed."] = "Kontakt został usunięty."; -$a->strings["You are mutual friends with %s"] = "Jesteś już znajomym z %s"; -$a->strings["You are sharing with %s"] = "Współdzielisz z %s"; -$a->strings["%s is sharing with you"] = "%s współdzieli z tobą"; -$a->strings["Private communications are not available for this contact."] = "Prywatna rozmowa jest niemożliwa dla tego kontaktu"; -$a->strings["Never"] = "Nigdy"; -$a->strings["(Update was successful)"] = "(Aktualizacja przebiegła pomyślnie)"; -$a->strings["(Update was not successful)"] = "(Aktualizacja nie powiodła się)"; -$a->strings["Suggest friends"] = "Osoby, które możesz znać"; -$a->strings["Network type: %s"] = "Typ sieci: %s"; -$a->strings["Communications lost with this contact!"] = "Utracono komunikację z tym kontaktem!"; -$a->strings["Fetch further information for feeds"] = "Pobierz dalsze informacje dla kanałów"; -$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "Pobieranie informacji, takich jak zdjęcia podglądu, tytuł i zwiastun z elementu kanału. Możesz to aktywować, jeśli plik danych nie zawiera dużo tekstu. Słowa kluczowe są pobierane z nagłówka meta w elemencie kanału i są publikowane jako znaczniki haszowania."; -$a->strings["Disabled"] = "Wyłączony"; -$a->strings["Fetch information"] = "Pobierz informacje"; -$a->strings["Fetch keywords"] = "Pobierz słowa kluczowe"; -$a->strings["Fetch information and keywords"] = "Pobierz informacje i słowa kluczowe"; -$a->strings["Disconnect/Unfollow"] = "Rozłącz/Nie obserwuj"; -$a->strings["Contact"] = "Kontakt"; -$a->strings["Profile Visibility"] = "Widoczność profilu"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Wybierz profil, który chcesz bezpiecznie wyświetlić %s"; -$a->strings["Contact Information / Notes"] = "Informacje kontaktowe/Notatki"; -$a->strings["Their personal note"] = "Ich osobista uwaga"; -$a->strings["Edit contact notes"] = "Edytuj notatki kontaktu"; -$a->strings["Block/Unblock contact"] = "Zablokuj/odblokuj kontakt"; -$a->strings["Ignore contact"] = "Ignoruj kontakt"; -$a->strings["Repair URL settings"] = "Napraw ustawienia adresu"; -$a->strings["View conversations"] = "Wyświetl rozmowy"; -$a->strings["Last update:"] = "Ostatnia aktualizacja:"; -$a->strings["Update public posts"] = "Zaktualizuj publiczne posty"; -$a->strings["Update now"] = "Aktualizuj teraz"; -$a->strings["Unblock"] = "Odblokuj"; -$a->strings["Block"] = "Zablokuj"; -$a->strings["Unignore"] = "Odblokuj"; -$a->strings["Currently blocked"] = "Obecnie zablokowany"; -$a->strings["Currently ignored"] = "Obecnie zignorowany"; -$a->strings["Currently archived"] = "Obecnie zarchiwizowany"; -$a->strings["Awaiting connection acknowledge"] = "Oczekiwanie na potwierdzenie połączenia"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal mogą być widoczne"; -$a->strings["Notification for new posts"] = "Powiadomienie o nowych postach"; -$a->strings["Send a notification of every new post of this contact"] = "Wyślij powiadomienie o każdym nowym poście tego kontaktu"; -$a->strings["Blacklisted keywords"] = "Słowa kluczowe na czarnej liście"; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Rozdzielana przecinkami lista słów kluczowych, które nie powinny zostać przekonwertowane na hashtagi, gdy wybrana jest opcja 'Pobierz informacje i słowa kluczowe'"; -$a->strings["XMPP:"] = "XMPP:"; -$a->strings["Actions"] = "Akcja"; -$a->strings["Status"] = "Status"; -$a->strings["Contact Settings"] = "Ustawienia kontaktów"; -$a->strings["Suggestions"] = "Sugestie"; -$a->strings["Suggest potential friends"] = "Sugerowani znajomi"; -$a->strings["Show all contacts"] = "Pokaż wszystkie kontakty"; -$a->strings["Unblocked"] = "Odblokowany"; -$a->strings["Only show unblocked contacts"] = "Pokaż tylko odblokowane kontakty"; -$a->strings["Blocked"] = "Zablokowany"; -$a->strings["Only show blocked contacts"] = "Pokaż tylko zablokowane kontakty"; -$a->strings["Ignored"] = "Zignorowany"; -$a->strings["Only show ignored contacts"] = "Pokaż tylko ignorowane kontakty"; -$a->strings["Archived"] = "Zarchiwizowane"; -$a->strings["Only show archived contacts"] = "Pokaż tylko zarchiwizowane kontakty"; -$a->strings["Hidden"] = "Ukryty"; -$a->strings["Only show hidden contacts"] = "Pokaż tylko ukryte kontakty"; -$a->strings["Search your contacts"] = "Wyszukaj w kontaktach"; -$a->strings["Find"] = "Znajdź"; -$a->strings["Update"] = "Zaktualizuj"; -$a->strings["Archive"] = "Archiwum"; -$a->strings["Unarchive"] = "Przywróć z archiwum"; -$a->strings["Batch Actions"] = "Akcje wsadowe"; -$a->strings["Status Messages and Posts"] = "Status wiadomości i postów"; -$a->strings["Profile Details"] = "Szczegóły profilu"; -$a->strings["View all contacts"] = "Zobacz wszystkie kontakty"; -$a->strings["View all common friends"] = "Zobacz wszystkich popularnych znajomych"; -$a->strings["Advanced"] = "Zaawansowany"; -$a->strings["Advanced Contact Settings"] = "Zaawansowane ustawienia kontaktów"; -$a->strings["Mutual Friendship"] = "Wzajemna przyjaźń"; -$a->strings["is a fan of yours"] = "jest twoim fanem"; -$a->strings["you are a fan of"] = "jesteś fanem"; -$a->strings["Toggle Blocked status"] = "Przełącz na Zablokowany"; -$a->strings["Toggle Ignored status"] = "Przełącz ignorowany status"; -$a->strings["Toggle Archive status"] = "Przełącz status archiwum"; -$a->strings["Delete contact"] = "Usuń kontakt"; -$a->strings["Parent user not found."] = "Nie znaleziono użytkownika nadrzędnego."; -$a->strings["No parent user"] = "Brak nadrzędnego użytkownika"; -$a->strings["Parent Password:"] = "Hasło nadrzędne:"; -$a->strings["Please enter the password of the parent account to legitimize your request."] = "Wprowadź hasło konta nadrzędnego, aby legalizować swoje żądanie."; -$a->strings["Parent User"] = "Użytkownik nadrzędny"; -$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "Użytkownicy nadrzędni mają pełną kontrolę nad tym kontem, w tym także ustawienia konta. Sprawdź dokładnie, komu przyznasz ten dostęp."; -$a->strings["Save Settings"] = "Zapisz ustawienia"; -$a->strings["Delegate Page Management"] = "Deleguj zarządzanie stronami"; -$a->strings["Delegates"] = "Oddeleguj"; -$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Delegaci mogą zarządzać wszystkimi aspektami tego konta/strony, z wyjątkiem podstawowych ustawień konta. Nie przekazuj swojego konta osobistego nikomu, komu nie ufasz całkowicie."; -$a->strings["Existing Page Delegates"] = "Obecni delegaci stron"; -$a->strings["Potential Delegates"] = "Potencjalni delegaci"; -$a->strings["Add"] = "Dodaj"; -$a->strings["No entries."] = "Brak wpisów."; -$a->strings["Event can not end before it has started."] = "Wydarzenie nie może się zakończyć przed jego rozpoczęciem."; -$a->strings["Event title and start time are required."] = "Wymagany tytuł wydarzenia i czas rozpoczęcia."; -$a->strings["Create New Event"] = "Stwórz nowe wydarzenie"; -$a->strings["Event details"] = "Szczegóły wydarzenia"; -$a->strings["Starting date and Title are required."] = "Data rozpoczęcia i tytuł są wymagane."; -$a->strings["Event Starts:"] = "Rozpoczęcie wydarzenia:"; -$a->strings["Required"] = "Wymagany"; -$a->strings["Finish date/time is not known or not relevant"] = "Data/czas zakończenia nie jest znana lub jest nieistotna"; -$a->strings["Event Finishes:"] = "Zakończenie wydarzenia:"; -$a->strings["Adjust for viewer timezone"] = "Dopasuj dla strefy czasowej widza"; -$a->strings["Description:"] = "Opis:"; -$a->strings["Title:"] = "Tytuł:"; -$a->strings["Share this event"] = "Udostępnij te wydarzenie"; -$a->strings["Basic"] = "Podstawowy"; -$a->strings["Failed to remove event"] = "Nie udało się usunąć wydarzenia"; -$a->strings["Event removed"] = "Wydarzenie zostało usunięte"; -$a->strings["You must be logged in to use this module"] = "Musisz być zalogowany, aby korzystać z tego modułu"; -$a->strings["Source URL"] = "Źródłowy adres URL"; -$a->strings["Friendica Communications Server - Setup"] = "Friendica Serwer Komunikacyjny - Instalacja"; -$a->strings["Could not connect to database."] = "Nie można nawiązać połączenia z bazą danych"; -$a->strings["Could not create table."] = "Nie mogę stworzyć tabeli."; -$a->strings["Your Friendica site database has been installed."] = "Twoja baza danych witryny Friendica została zainstalowana."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Proszę przejrzeć plik \"INSTALL.txt\"."; -$a->strings["Database already in use."] = "Baza danych jest już w użyciu."; -$a->strings["System check"] = "Sprawdzanie systemu"; -$a->strings["Check again"] = "Sprawdź ponownie"; -$a->strings["Database connection"] = "Połączenie z bazą danych"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień ."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją."; -$a->strings["Database Server Name"] = "Nazwa serwera bazy danych"; -$a->strings["Database Login Name"] = "Nazwa użytkownika bazy danych"; -$a->strings["Database Login Password"] = "Hasło logowania do bazy danych"; -$a->strings["For security reasons the password must not be empty"] = "Ze względów bezpieczeństwa hasło nie może być puste"; -$a->strings["Database Name"] = "Nazwa bazy danych"; -$a->strings["Site administrator email address"] = "Adres e-mail administratora strony"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Adres e-mail konta musi pasować do tego, aby móc korzystać z panelu administracyjnego."; -$a->strings["Please select a default timezone for your website"] = "Proszę wybrać domyślną strefę czasową dla swojej strony"; -$a->strings["Site settings"] = "Ustawienia strony"; -$a->strings["System Language:"] = "Język systemu:"; -$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Ustaw domyślny język dla interfejsu instalacyjnego Friendica i wysyłaj e-maile."; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nie można znaleźć wersji PHP komendy w serwerze PATH"; -$a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'"] = "Jeśli nie masz zainstalowanej na serwerze wersji PHP z wiersza poleceń, nie będziesz mógł uruchomić przetwarzania w tle. Zobacz 'Konfiguracja pracownika'"; -$a->strings["PHP executable path"] = "Ścieżka wykonywalna PHP"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Wprowadź pełną ścieżkę do pliku wykonywalnego php. Możesz pozostawić to pole puste, aby kontynuować instalację."; -$a->strings["Command line PHP"] = "Linia komend PHP"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Plik wykonywalny PHP nie jest php cli binarny (może być wersją cgi-fgci)"; -$a->strings["Found PHP version: "] = "Znaleziono wersje PHP:"; -$a->strings["PHP cli binary"] = "PHP cli binarny"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Wersja linii poleceń PHP w twoim systemie nie ma aktywowanego \"register_argc_argv\"."; -$a->strings["This is required for message delivery to work."] = "Jest wymagane, aby dostarczanie wiadomości działało."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Błąd: funkcja \"openssl_pkey_new\" w tym systemie nie jest w stanie wygenerować kluczy szyfrujących"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Jeśli korzystasz z Windowsa, proszę odwiedzić \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Generuj klucz kodowania"; -$a->strings["libCurl PHP module"] = "Moduł libCurl PHP"; -$a->strings["GD graphics PHP module"] = "Moduł PHP-GD"; -$a->strings["OpenSSL PHP module"] = "Moduł PHP OpenSSL"; -$a->strings["PDO or MySQLi PHP module"] = "Moduł PDO lub MySQLi PHP"; -$a->strings["mb_string PHP module"] = "Moduł mb_string PHP"; -$a->strings["XML PHP module"] = "Moduł XML PHP"; -$a->strings["iconv PHP module"] = "Moduł PHP iconv"; -$a->strings["POSIX PHP module"] = "Moduł POSIX PHP"; -$a->strings["Apache mod_rewrite module"] = "Moduł Apache mod_rewrite"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Błąd: moduł Apache webserver mod-rewrite jest potrzebny, jednakże nie jest zainstalowany."; -$a->strings["Error: libCURL PHP module required but not installed."] = "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Błąd: moduł graficzny GD z PHP potrzebuje wsparcia technicznego JPEG, jednakże on nie jest zainstalowany."; -$a->strings["Error: openssl PHP module required but not installed."] = "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany."; -$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Błąd: Wymagany moduł PDO lub MySQLi PHP, ale nie zainstalowany."; -$a->strings["Error: The MySQL driver for PDO is not installed."] = "Błąd: Sterownik MySQL dla PDO nie jest zainstalowany."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Błąd: moduł PHP mb_string jest wymagany ale nie jest zainstalowany"; -$a->strings["Error: iconv PHP module required but not installed."] = "Błąd: wymagany moduł PHP iconv, ale nie zainstalowany."; -$a->strings["Error: POSIX PHP module required but not installed."] = "Błąd: wymagany moduł POSIX PHP, ale nie zainstalowany."; -$a->strings["Error, XML PHP module required but not installed."] = "Błąd, wymagany moduł XML PHP, ale nie zainstalowany."; -$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Instalator WWW musi być w stanie utworzyć plik o nazwie \". Htconfig.php\" i nie jest w stanie tego zrobić."; -$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Jest to najczęściej ustawienie uprawnień, ponieważ serwer sieciowy może nie być w stanie zapisywać plików w folderze - nawet jeśli możesz."; -$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Pod koniec tej procedury podamy Ci tekst do zapisania w pliku o nazwie .htconfig.php w twoim górnym folderze Friendica."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternatywnie można pominąć tę procedurę i wykonać ręczną instalację. Proszę zobaczyć plik 'INSTALL.txt' z instrukcjami."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php jest zapisywalny"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica używa silnika szablonów Smarty3 do renderowania swoich widoków. Smarty3 kompiluje szablony do PHP, aby przyspieszyć renderowanie."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Aby przechowywać te skompilowane szablony, serwer WWW musi mieć dostęp do zapisu do katalogu view/smarty3/ w folderze najwyższego poziomu Friendica."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Upewnij się, że użytkownik, na którym działa serwer WWW (np. www-data), ma prawo do zapisu do tego folderu."; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Uwaga: jako środek bezpieczeństwa, powinieneś dać serwerowi dostęp do zapisu view/smarty3/ jedynie - nie do plików szablonów (.tpl), które zawiera."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 jest zapisywalny"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Nie działa URL w .htaccess popraw. Sprawdź konfigurację serwera."; -$a->strings["Url rewrite is working"] = "Działający adres URL"; -$a->strings["ImageMagick PHP extension is not installed"] = "Rozszerzenie PHP ImageMagick nie jest zainstalowane"; -$a->strings["ImageMagick PHP extension is installed"] = "Rozszerzenie PHP ImageMagick jest zainstalowane"; -$a->strings["ImageMagick supports GIF"] = "ImageMagick obsługuje GIF"; -$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Konfiguracja bazy danych pliku \".htconfig.php\" nie mogła zostać zapisana. Proszę użyć załączonego tekstu, aby utworzyć folder konfiguracyjny w sieci serwera."; -$a->strings["

What next

"] = "

Co dalej

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "WAŻNE: Będziesz musiał [ręcznie] ustawić zaplanowane zadanie dla pracownika."; -$a->strings["Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = "Przejdź do strony rejestracji nowego węzła Friendica i zarejestruj się jako nowy użytkownik. Pamiętaj, aby użyć adresu e-mail wprowadzonego jako e-mail administratora. To pozwoli Ci wejść do panelu administratora witryny."; -$a->strings["Unable to locate original post."] = "Nie można zlokalizować oryginalnej wiadomości."; -$a->strings["Empty post discarded."] = "Pusty wpis został odrzucony."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Wiadomość została wysłana do ciebie od %s , członka portalu Friendica"; -$a->strings["You may visit them online at %s"] = "Możesz odwiedzić ich online pod adresem %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości."; -$a->strings["%s posted an update."] = "%s zaktualizował wpis."; -$a->strings["Post successful."] = "Post dodany pomyślnie"; -$a->strings["Subscribing to OStatus contacts"] = "Subskrybowanie kontaktów OStatus"; -$a->strings["No contact provided."] = "Brak kontaktu."; -$a->strings["Couldn't fetch information for contact."] = "Nie można pobrać informacji o kontakcie."; -$a->strings["Couldn't fetch friends for contact."] = "Nie można pobrać znajomych do kontaktu."; -$a->strings["success"] = "powodzenie"; -$a->strings["failed"] = "nie powiodło się"; -$a->strings["ignored"] = "Ignoruj"; -$a->strings["Image uploaded but image cropping failed."] = "Zdjęcie zostało przesłane, ale przycinanie obrazu nie powiodło się."; -$a->strings["Image size reduction [%s] failed."] = "Redukcja rozmiaru obrazka [%s] nie powiodła się."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ponownie załaduj stronę lub wyczyść pamięć podręczną przeglądarki, jeśli nowe zdjęcie nie pojawi się natychmiast."; -$a->strings["Unable to process image"] = "Nie udało się przetworzyć obrazu."; -$a->strings["Upload File:"] = "Wyślij plik:"; -$a->strings["Select a profile:"] = "Wybierz profil:"; -$a->strings["or"] = "lub"; -$a->strings["skip this step"] = "pomiń ten krok"; -$a->strings["select a photo from your photo albums"] = "wybierz zdjęcie z twojego albumu"; -$a->strings["Crop Image"] = "Przytnij zdjęcie"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Dostosuj kadrowanie obrazu, aby uzyskać optymalny obraz."; -$a->strings["Done Editing"] = "Zakończono edycję"; -$a->strings["Image uploaded successfully."] = "Zdjęcie wczytano pomyślnie "; -$a->strings["Contact wasn't found or can't be unfollowed."] = "Kontakt nie został znaleziony lub nie można go pominąć."; -$a->strings["Contact unfollowed"] = "Skontaktuj się z obserwowanym"; -$a->strings["You aren't a friend of this contact."] = "Nie jesteś przyjacielem tego kontaktu."; -$a->strings["Unfollowing is currently not supported by your network."] = "Brak obserwowania nie jest obecnie obsługiwany przez twoją sieć."; +$a->strings["Click on a contact to add or remove."] = "Kliknij na kontakt w celu dodania lub usunięcia."; +$a->strings["Files"] = "Pliki"; $a->strings["Theme settings updated."] = "Zaktualizowano ustawienia motywów."; -$a->strings["Information"] = "Informacje"; $a->strings["Overview"] = "Przegląd"; $a->strings["Federation Statistics"] = "Statystyki Organizacji"; $a->strings["Configuration"] = "Konfiguracja"; $a->strings["Site"] = "Strona"; $a->strings["Users"] = "Użytkownicy"; -$a->strings["Addons"] = "Dodatki"; $a->strings["Themes"] = "Wygląd"; -$a->strings["Additional features"] = "Dodatkowe funkcje"; -$a->strings["Terms of Service"] = "Warunki usługi"; $a->strings["Database"] = "Baza danych"; $a->strings["DB updates"] = "Aktualizacje DB"; $a->strings["Inspect Queue"] = "Sprawdź kolejkę"; @@ -973,7 +1295,6 @@ $a->strings["Diagnostics"] = "Diagnostyka"; $a->strings["PHP Info"] = "Informacje o PHP"; $a->strings["probe address"] = "adres sondy"; $a->strings["check webfinger"] = "sprawdź webfinger"; -$a->strings["Admin"] = "Administator"; $a->strings["Addon Features"] = "Funkcje dodatkowe"; $a->strings["User registrations waiting for confirmation"] = "Rejestracje użytkownika czekają na potwierdzenie."; $a->strings["Administration"] = "Administracja"; @@ -984,7 +1305,6 @@ $a->strings["Show some informations regarding the needed information to operate $a->strings["The Terms of Service"] = "Warunki świadczenia usług"; $a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = "Wprowadź tutaj Warunki świadczenia usług dla swojego węzła. Możesz użyć BBCode. Nagłówki sekcji powinny być [h2] i poniżej."; $a->strings["The blocked domain"] = "Zablokowana domena"; -$a->strings["Reason for the block"] = "Powód blokowania"; $a->strings["The reason why you blocked this domain."] = "Powód zablokowania tej domeny."; $a->strings["Delete domain"] = "Usuń domenę"; $a->strings["Check to delete this entry from the blocklist"] = "Zaznacz, aby usunąć ten wpis z listy bloków"; @@ -1001,8 +1321,6 @@ $a->strings["Delete entry from blocklist"] = "Usuń wpis z listy zablokowanych"; $a->strings["Delete entry from blocklist?"] = "Usunąć wpis z listy zablokowanych?"; $a->strings["Server added to blocklist."] = "Serwer dodany do listy zablokowanych."; $a->strings["Site blocklist updated."] = "Zaktualizowano listę bloków witryny."; -$a->strings["The contact has been blocked from the node"] = "Kontakt został zablokowany w węźle"; -$a->strings["Could not find any contact entry for this URL (%s)"] = "Nie można znaleźć żadnego kontaktu dla tego adresu URL (%s)"; $a->strings["%s contact unblocked"] = [ 0 => "", 1 => "", @@ -1014,11 +1332,13 @@ $a->strings["This page allows you to prevent any message from a remote contact t $a->strings["Block Remote Contact"] = "Zablokuj kontakt zdalny"; $a->strings["select all"] = "Zaznacz wszystko"; $a->strings["select none"] = "wybierz brak"; +$a->strings["Block"] = "Zablokuj"; +$a->strings["Unblock"] = "Odblokuj"; $a->strings["No remote contact is blocked from this node."] = "Z tego węzła nie jest blokowany kontakt zdalny."; $a->strings["Blocked Remote Contacts"] = "Zablokowane kontakty zdalne"; $a->strings["Block New Remote Contact"] = "Zablokuj nowy kontakt zdalny"; $a->strings["Photo"] = "Zdjęcie"; -$a->strings["Address"] = "Adres"; +$a->strings["Profile URL"] = "Adres URL profilu"; $a->strings["%s total blocked contact"] = [ 0 => "", 1 => "", @@ -1039,7 +1359,6 @@ $a->strings["Currently this node is aware of %d nodes with %d registered users f $a->strings["ID"] = "ID"; $a->strings["Recipient Name"] = "Nazwa odbiorcy"; $a->strings["Recipient Profile"] = "Profil odbiorcy"; -$a->strings["Network"] = "Sieć"; $a->strings["Created"] = "Utwórz"; $a->strings["Last Tried"] = "Ostatnia wypróbowana"; $a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = "Na tej stronie znajduje się zawartość kolejki dla wysyłek wychodzących. Są to posty, dla których początkowe wysyłanie nie powiodło się. Zostaną one ponownie wysłane później i ostatecznie usunięte, jeśli doręczenie zakończy się trwale."; @@ -1062,11 +1381,11 @@ $a->strings["Version"] = "Wersja"; $a->strings["Active addons"] = "Aktywne dodatki"; $a->strings["Can not parse base url. Must have at least ://"] = "Nie można zanalizować podstawowego adresu URL. Musi mieć co najmniej : //"; $a->strings["Site settings updated."] = "Ustawienia strony zaktualizowane"; -$a->strings["No special theme for mobile devices"] = "Brak specialnego motywu dla urządzeń mobilnych"; $a->strings["No community page"] = "Brak strony społeczności"; $a->strings["Public postings from users of this site"] = "Publikacje publiczne od użytkowników tej strony"; $a->strings["Public postings from the federated network"] = "Publikacje wpisy ze sfederowanej sieci"; $a->strings["Public postings from local users and the federated network"] = "Publikacje publiczne od użytkowników lokalnych i sieci federacyjnej"; +$a->strings["Disabled"] = "Wyłączony"; $a->strings["Users, Global Contacts"] = "Użytkownicy, kontakty globalne"; $a->strings["Users, Global Contacts/fallback"] = "Użytkownicy, kontakty globalne/awaryjne"; $a->strings["One month"] = "Miesiąc"; @@ -1074,9 +1393,9 @@ $a->strings["Three months"] = "Trzy miesiące"; $a->strings["Half a year"] = "Pół roku"; $a->strings["One year"] = "Rok"; $a->strings["Multi user instance"] = "Tryb wielu użytkowników"; -$a->strings["Closed"] = "Zamknięta"; +$a->strings["Closed"] = "Zamknięte"; $a->strings["Requires approval"] = "Wymagane zatwierdzenie."; -$a->strings["Open"] = "Otwarte"; +$a->strings["Open"] = "Otwarta"; $a->strings["No SSL policy, links will track page SSL state"] = "Brak SSL , linki będą śledzić stan SSL ."; $a->strings["Force all links to use SSL"] = "Wymuś by linki używały SSL."; $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Wewnętrzne Certyfikaty , użyj SSL tylko dla linków lokalnych . "; @@ -1085,8 +1404,8 @@ $a->strings["check the stable version"] = "sprawdź wersję stabilną"; $a->strings["check the development version"] = "sprawdź wersję rozwojową"; $a->strings["Republish users to directory"] = "Ponownie opublikuj użytkowników w katalogu"; $a->strings["Registration"] = "Rejestracja"; -$a->strings["File upload"] = "Plik załadowano"; -$a->strings["Policies"] = "zasady"; +$a->strings["File upload"] = "Przesyłanie plików"; +$a->strings["Policies"] = "Zasady"; $a->strings["Auto Discovered Contact Directory"] = "Katalog kontaktów automatycznie odkrytych"; $a->strings["Performance"] = "Ustawienia"; $a->strings["Worker"] = "Pracownik"; @@ -1119,9 +1438,9 @@ $a->strings["Make this instance multi-user or single-user for the named user"] = $a->strings["Maximum image size"] = "Maksymalny rozmiar zdjęcia"; $a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maksymalny rozmiar w bitach dla wczytywanego obrazu . Domyślnie jest to 0 , co oznacza bez limitu ."; $a->strings["Maximum image length"] = "Maksymalna długość obrazu"; -$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maksymalna długość najdłuższej strony przesyłanego obrazu w pikselach.\nDomyślnie jest to -1, co oznacza brak limitu."; -$a->strings["JPEG image quality"] = "jakość obrazu JPEG"; -$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Wczytywanie JPEGS będzie zapisane z tymi ustawieniami jakości [0-100] . Domyslnie jest ustawione 100 co oznacza brak strat jakości . "; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maksymalna długość w pikselach dłuższego boku przesyłanego obrazu. Wartością domyślną jest -1, co oznacza brak ograniczeń."; +$a->strings["JPEG image quality"] = "Jakość obrazu JPEG"; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Przesłane pliki JPEG zostaną zapisane w tym ustawieniu jakości [0-100]. Domyślna wartość to 100, która jest pełną jakością."; $a->strings["Register policy"] = "Zasady rejestracji"; $a->strings["Maximum Daily Registrations"] = "Maksymalna dzienna rejestracja"; $a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "Jeśli rejestracja powyżej jest dozwolona, to określa maksymalną liczbę nowych rejestracji użytkowników do zaakceptowania na dzień. Jeśli rejestracja jest ustawiona na \"Zamknięta\", to ustawienie to nie ma wpływu."; @@ -1130,7 +1449,7 @@ $a->strings["Will be displayed prominently on the registration page. You can use $a->strings["Accounts abandoned after x days"] = "Konto porzucone od x dni."; $a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Nie będzie marnować zasobów systemu wypytując zewnętrzne strony o opuszczone konta. Ustaw 0 dla braku limitu czasu ."; $a->strings["Allowed friend domains"] = "Dozwolone domeny przyjaciół"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista domen separowana przecinkami które mogą zaprzyjaźnić się z tą stroną . Wildcards są akceptowane . Pozostaw puste by zezwolić każdej domenie na zapryjaźnienie. "; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Rozdzielana przecinkami lista domen, które mogą nawiązywać przyjaźnie z tą witryną. Symbole wieloznaczne są akceptowane. Pozostaw puste by zezwolić każdej domenie na zaprzyjaźnienie."; $a->strings["Allowed email domains"] = "Dozwolone domeny e-mailowe"; $a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Rozdzielana przecinkami lista domen dozwolonych w adresach e-mail do rejestracji na tej stronie. Symbole wieloznaczne są akceptowane. Opróżnij, aby zezwolić na dowolne domeny"; $a->strings["No OEmbed rich content"] = "Brak treści multimedialnych ze znaczkiem HTML"; @@ -1180,7 +1499,7 @@ $a->strings["Proxy URL"] = "URL Proxy"; $a->strings["Network timeout"] = "Network timeout"; $a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Wartość jest w sekundach. Ustaw na 0 dla nieograniczonej (niezalecane)."; $a->strings["Maximum Load Average"] = "Maksymalne obciążenie średnie"; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maksymalne obciążenie systemu przed dostawą i odpytywaniem jest odroczone - domyślnie 50."; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maksymalne obciążenie systemu przed dostawą i odpytywaniem jest odłożone - domyślnie 50."; $a->strings["Maximum Load Average (Frontend)"] = "Maksymalne obciążenie średnie (Frontend)"; $a->strings["Maximum system load before the frontend quits service - default 50."] = "Maksymalne obciążenie systemu, zanim frontend zakończy pracę - domyślnie 50."; $a->strings["Minimal Memory"] = "Minimalna pamięć"; @@ -1261,7 +1580,6 @@ $a->strings["Mark success (if update was manually applied)"] = "Oznacz sukces (j $a->strings["Attempt to execute this update step automatically"] = "Spróbuj automatycznie wykonać ten krok aktualizacji"; $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\t\tSzanowny/a Panie/Pani %1\$s, \n\t\t\t\tadministrator %2\$s założył dla ciebie konto."; $a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\t\tThank you and welcome to %4\$s."] = "\n\t\t\tDane logowania są następuje:\n\t\t\tLokalizacja witryny:\t%1\$s\n\t\t\tNazwa użytkownika:%2\$s\n\t\t\tHasło:%3\$s\n\n\t\t\tPo zalogowaniu możesz zmienić hasło do swojego konta na stronie \"Ustawienia\"\n \t\t\tProszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie.\n\n\t\t\tMożesz również dodać podstawowe informacje do swojego domyślnego profilu\n\t\t\t(na stronie \"Profil\"), aby inne osoby mogły łatwo Cię znaleźć.\n\n\t\t\tZalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego,\n\t\t\tdodanie niektórych \"słów kluczowych\" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) - i\n\t\t\tbyć może w jakim kraju mieszkasz; jeśli nie chcesz być bardziej szczegółowy.\n\n\t\t\tW pełni szanujemy Twoje prawo do prywatności i żaden z tych elementów nie jest konieczny.\n\t\t\tJeśli jesteś nowy i nie znasz tutaj nikogo, oni mogą ci pomóc\n\t\t\tmożesz zdobyć nowych interesujących przyjaciół\n\n\t\t\tJeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić w %1\$s/Usuń konto\n\n\t\t\tDziękujemy i Zapraszamy do%4\$s"; -$a->strings["Registration details for %s"] = "Szczegóły rejestracji dla %s"; $a->strings["%s user blocked/unblocked"] = [ 0 => "", 1 => "", @@ -1277,17 +1595,18 @@ $a->strings["%s user deleted"] = [ $a->strings["User '%s' deleted"] = "Użytkownik '%s' usunięty"; $a->strings["User '%s' unblocked"] = "Użytkownik '%s' odblokowany"; $a->strings["User '%s' blocked"] = "Użytkownik '%s' zablokowany"; -$a->strings["Email"] = "E-mail"; +$a->strings["Private Forum"] = "Prywatne forum"; $a->strings["Register date"] = "Data rejestracji"; $a->strings["Last login"] = "Ostatnie logowanie"; $a->strings["Last item"] = "Ostatni element"; -$a->strings["Account"] = "Konto"; +$a->strings["Type"] = "Typu"; $a->strings["Add User"] = "Dodaj użytkownika"; -$a->strings["User registrations waiting for confirm"] = "zarejestrowany użytkownik czeka na potwierdzenie"; +$a->strings["User registrations waiting for confirm"] = "Zarejestrowani użytkownicy czekający na potwierdzenie"; $a->strings["User waiting for permanent deletion"] = "Użytkownik czekający na trwałe usunięcie"; $a->strings["Request date"] = "Data prośby"; -$a->strings["No registrations."] = "brak rejestracji"; +$a->strings["No registrations."] = "Brak rejestracji."; $a->strings["Note from the user"] = "Uwaga od użytkownika"; +$a->strings["Approve"] = "Zatwierdź"; $a->strings["Deny"] = "Odmów"; $a->strings["Site admin"] = "Administracja stroną"; $a->strings["Account expired"] = "Konto wygasło."; @@ -1326,11 +1645,414 @@ $a->strings["PHP logging"] = "Logowanie w PHP"; $a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "Aby włączyć rejestrowanie błędów i ostrzeżeń PHP, możesz dodać następujące dane do pliku .htconfig.php instalacji. Nazwa pliku ustawiona w linii 'error_log' odnosi się do katalogu najwyższego poziomu friendiki i musi być zapisywalna przez serwer WWW. Opcja '1' dla 'log_errors' i 'display_errors' polega na włączeniu tych opcji, ustawieniu na '0', aby je wyłączyć."; $a->strings["Error trying to open %1\$s log file.\\r\\n
Check to see if file %1\$s exist and is readable."] = "Błąd podczas próby otwarcia %1\$s pliku dziennika. \\r\\n
Sprawdź, czy plik %1\$s istnieje i czy można go odczytać."; $a->strings["Couldn't open %1\$s log file.\\r\\n
Check to see if file %1\$s is readable."] = "Nie można otworzyć %1\$spliku dziennika. \\r\\n
Sprawdź, czy plik %1\$s jest czytelny."; -$a->strings["Off"] = "Wyłącz"; -$a->strings["On"] = "Włącz"; $a->strings["Lock feature %s"] = "Funkcja blokady %s"; -$a->strings["Manage Additional Features"] = "Zarządzaj dodatkowymi funkcjami"; +$a->strings["Manage Additional Features"] = "Zarządzanie dodatkowymi funkcjami"; +$a->strings["Parent user not found."] = "Nie znaleziono użytkownika nadrzędnego."; +$a->strings["No parent user"] = "Brak nadrzędnego użytkownika"; +$a->strings["Parent Password:"] = "Hasło nadrzędne:"; +$a->strings["Please enter the password of the parent account to legitimize your request."] = "Wprowadź hasło konta nadrzędnego, aby legalizować swoje żądanie."; +$a->strings["Parent User"] = "Użytkownik nadrzędny"; +$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "Użytkownicy nadrzędni mają pełną kontrolę nad tym kontem, w tym także ustawienia konta. Sprawdź dokładnie, komu przyznasz ten dostęp."; +$a->strings["Delegates"] = "Oddeleguj"; +$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Delegaci mogą zarządzać wszystkimi aspektami tego konta/strony, z wyjątkiem podstawowych ustawień konta. Nie przekazuj swojego konta osobistego nikomu, komu nie ufasz całkowicie."; +$a->strings["Existing Page Delegates"] = "Obecni delegaci stron"; +$a->strings["Potential Delegates"] = "Potencjalni delegaci"; +$a->strings["Remove"] = "Usuń"; +$a->strings["Add"] = "Dodaj"; +$a->strings["No entries."] = "Brak wpisów."; +$a->strings["Recent Photos"] = "Ostatnio dodane zdjęcia"; +$a->strings["Upload New Photos"] = "Wyślij nowe zdjęcie"; +$a->strings["Contact information unavailable"] = "Informacje kontaktowe są niedostępne."; +$a->strings["Album not found."] = "Album nie znaleziony"; +$a->strings["Delete Album"] = "Usuń album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?"; +$a->strings["Delete Photo"] = "Usuń zdjęcie"; +$a->strings["Do you really want to delete this photo?"] = "Czy na pewno chcesz usunąć to zdjęcie ?"; +$a->strings["a photo"] = "zdjęcie"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$szostał oznaczony tagiem %2\$s przez %3\$s"; +$a->strings["Image upload didn't complete, please try again"] = "Przesyłanie zdjęć nie zostało zakończone, spróbuj ponownie"; +$a->strings["Image file is missing"] = "Brak pliku obrazu"; +$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "Serwer nie może teraz przyjąć nowego pliku, skontaktuj się z administratorem"; +$a->strings["Image file is empty."] = "Plik obrazka jest pusty."; +$a->strings["No photos selected"] = "Nie zaznaczono zdjęć"; +$a->strings["Access to this item is restricted."] = "Dostęp do tego obiektu jest ograniczony."; +$a->strings["Upload Photos"] = "Prześlij zdjęcia"; +$a->strings["New album name: "] = "Nazwa nowego albumu:"; +$a->strings["or existing album name: "] = "lub istniejąca nazwa albumu:"; +$a->strings["Do not show a status post for this upload"] = "Nie pokazuj statusu postów dla tego wysłania"; +$a->strings["Edit Album"] = "Edytuj album"; +$a->strings["Show Newest First"] = "Najpierw pokaż najnowsze"; +$a->strings["Show Oldest First"] = "Najpierw pokaż najstarsze"; +$a->strings["View Photo"] = "Zobacz zdjęcie"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Odmowa dostępu. Dostęp do tych danych może być ograniczony."; +$a->strings["Photo not available"] = "Zdjęcie niedostępne"; +$a->strings["View photo"] = "Zobacz zdjęcie"; +$a->strings["Edit photo"] = "Edytuj zdjęcie"; +$a->strings["Use as profile photo"] = "Ustaw jako zdjęcie profilowe"; +$a->strings["View Full Size"] = "Zobacz w pełnym rozmiarze"; +$a->strings["Tags: "] = "Tagi:"; +$a->strings["[Remove any tag]"] = "[Usunąć znacznik]"; +$a->strings["New album name"] = "Nazwa nowego albumu"; +$a->strings["Caption"] = "Zawartość"; +$a->strings["Add a Tag"] = "Dodaj tag"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Do not rotate"] = "Nie obracaj"; +$a->strings["Rotate CW (right)"] = "Obróć CW (w prawo)"; +$a->strings["Rotate CCW (left)"] = "Obróć CCW (w lewo)"; +$a->strings["Map"] = "Mapa"; +$a->strings["View Album"] = "Zobacz album"; +$a->strings["Edit contact"] = "Edytuj kontakt"; +$a->strings["Contacts who are not members of a group"] = "Kontakty spoza członków grupy"; +$a->strings["Community option not available."] = "Opcja wspólnotowa jest niedostępna."; +$a->strings["Not available."] = "Niedostępne."; +$a->strings["Local Community"] = "Lokalna społeczność"; +$a->strings["Posts from local users on this server"] = "Wpisy od lokalnych użytkowników na tym serwerze"; +$a->strings["Global Community"] = "Globalna społeczność"; +$a->strings["Posts from users of the whole federated network"] = "Wpisy od użytkowników całej sieci stowarzyszonej"; +$a->strings["No results."] = "Brak wyników."; +$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "Ten strumień społeczności pokazuje wszystkie publiczne posty otrzymane przez ten węzeł. Mogą nie odzwierciedlać opinii użytkowników tego węzła."; +$a->strings["No recipient selected."] = "Nie wybrano odbiorcy."; +$a->strings["Unable to locate contact information."] = "Nie można znaleźć informacji kontaktowych."; +$a->strings["Message could not be sent."] = "Wiadomość nie może zostać wysłana"; +$a->strings["Message collection failure."] = "Błąd zbierania komunikatów."; +$a->strings["Message sent."] = "Wysłano."; +$a->strings["Do you really want to delete this message?"] = "Czy na pewno chcesz usunąć tę wiadomość?"; +$a->strings["Message deleted."] = "Wiadomość usunięta."; +$a->strings["Conversation removed."] = "Rozmowa usunięta."; +$a->strings["Send Private Message"] = "Wyślij prywatną wiadomość"; +$a->strings["To:"] = "Do:"; +$a->strings["Subject:"] = "Temat:"; +$a->strings["No messages."] = "Brak wiadomości."; +$a->strings["Message not available."] = "Wiadomość nie jest dostępna."; +$a->strings["Delete message"] = "Usuń wiadomość"; +$a->strings["D, d M Y - g:i A"] = "D, d M R - g:m AM/PM"; +$a->strings["Delete conversation"] = "Usuń rozmowę"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Brak bezpiecznej komunikacji. Możesz odpowiedzieć na stronie profilu nadawcy."; +$a->strings["Send Reply"] = "Odpowiedz"; +$a->strings["Unknown sender - %s"] = "Nieznany nadawca - %s"; +$a->strings["You and %s"] = "Ty i %s"; +$a->strings["%s and You"] = "%s i ty"; +$a->strings["%d message"] = [ + 0 => " %d wiadomość", + 1 => " %d wiadomości", + 2 => " %d wiadomości", + 3 => " %d wiadomości", +]; +$a->strings["Do you really want to delete this video?"] = "Czy na pewno chcesz usunąć ten film wideo?"; +$a->strings["Delete Video"] = "Usuń wideo"; +$a->strings["No videos selected"] = "Nie zaznaczono filmów"; +$a->strings["Recent Videos"] = "Ostatnio dodane filmy"; +$a->strings["Upload New Videos"] = "Wstaw nowe filmy"; +$a->strings["Credits"] = "Zaufany"; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica to projekt społecznościowy, który nie byłby możliwy bez pomocy wielu osób. Oto lista osób, które przyczyniły się do tworzenia kodu lub tłumaczenia Friendica. Dziękuję wam wszystkim!"; +$a->strings["Contact wasn't found or can't be unfollowed."] = "Kontakt nie został znaleziony lub nie można go pominąć."; +$a->strings["Contact unfollowed"] = "Skontaktuj się z obserwowanym"; +$a->strings["Submit Request"] = "Wyślij zgłoszenie"; +$a->strings["You aren't a friend of this contact."] = "Nie jesteś przyjacielem tego kontaktu."; +$a->strings["Unfollowing is currently not supported by your network."] = "Brak obserwowania nie jest obecnie obsługiwany przez twoją sieć."; +$a->strings["Disconnect/Unfollow"] = "Rozłącz/Nie obserwuj"; +$a->strings["Your Identity Address:"] = "Twój adres tożsamości:"; +$a->strings["Invalid request."] = "Nieprawidłowe żądanie."; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Przepraszam, może twój przesyłany plik jest większy niż pozwala konfiguracja PHP"; +$a->strings["Or - did you try to upload an empty file?"] = "Lub - czy próbowałeś załadować pusty plik?"; +$a->strings["File exceeds size limit of %s"] = "Plik przekracza limit rozmiaru wynoszący %s"; +$a->strings["File upload failed."] = "Przesyłanie pliku nie powiodło się."; +$a->strings["Tips for New Members"] = "Wskazówki dla nowych użytkowników"; +$a->strings["Time Conversion"] = "Zmiana czasu"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica udostępnia tę usługę do udostępniania wydarzeń innym sieciom i znajomym w nieznanych strefach czasowych."; +$a->strings["UTC time: %s"] = "Czas UTC %s"; +$a->strings["Current timezone: %s"] = "Obecna strefa czasowa: %s"; +$a->strings["Converted localtime: %s"] = "Zmień strefę czasową: %s"; +$a->strings["Please select your timezone:"] = "Wybierz swoją strefę czasową:"; +$a->strings["This introduction has already been accepted."] = "To wprowadzenie zostało już zaakceptowane."; +$a->strings["Profile location is not valid or does not contain profile information."] = "Lokalizacja profilu jest nieprawidłowa lub nie zawiera informacji o profilu."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik."; +$a->strings["Warning: profile location has no profile photo."] = "Ostrzeżenie: położenie profilu nie zawiera zdjęcia."; +$a->strings["%d required parameter was not found at the given location"] = [ + 0 => "%d wymagany parametr nie został znaleziony w podanej lokacji", + 1 => "%d wymagane parametry nie zostały znalezione w podanej lokacji", + 2 => "%d wymagany parametr nie został znaleziony w podanej lokacji", + 3 => "%d wymagany parametr nie został znaleziony w podanej lokacji", +]; +$a->strings["Introduction complete."] = "Wprowadzanie zakończone."; +$a->strings["Unrecoverable protocol error."] = "Nieodwracalny błąd protokołu."; +$a->strings["Profile unavailable."] = "Profil niedostępny."; +$a->strings["%s has received too many connection requests today."] = "%s otrzymał dziś zbyt wiele żądań połączeń."; +$a->strings["Spam protection measures have been invoked."] = "Wprowadzono zabezpieczenia przed spamem."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Przyjaciele namawiają do spróbowania za 24h."; +$a->strings["Invalid locator"] = "Nieprawidłowy lokalizator"; +$a->strings["You have already introduced yourself here."] = "Już się tu przedstawiłeś."; +$a->strings["Apparently you are already friends with %s."] = "Wygląda na to, że już jesteście przyjaciółmi z %s"; +$a->strings["Invalid profile URL."] = "Nieprawidłowy URL profilu."; +$a->strings["Failed to update contact record."] = "Aktualizacja rekordu kontaktu nie powiodła się."; +$a->strings["Your introduction has been sent."] = "Twoje dane zostały wysłane."; +$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Zdalnej subskrypcji nie można wykonać dla swojej sieci. Proszę zasubskrybuj bezpośrednio w swoim systemie."; +$a->strings["Please login to confirm introduction."] = "Zaloguj się, aby potwierdzić wprowadzenie."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego użytkownika. "; +$a->strings["Confirm"] = "Potwierdź"; +$a->strings["Hide this contact"] = "Ukryj kontakt"; +$a->strings["Welcome home %s."] = "Welcome home %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Wprowadź swój 'Adres tożsamości' z jednej z następujących obsługiwanych sieci komunikacyjnych:"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Jeśli nie jesteś jeszcze członkiem darmowej sieci społecznościowej, kliknij ten link, aby znaleźć publiczną witrynę Friendica i dołącz do nas już dziś."; +$a->strings["Friend/Connection Request"] = "Przyjaciel/Prośba o połączenie"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"] = "Przykłady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"; +$a->strings["Please answer the following:"] = "Proszę odpowiedzieć na następujące pytania:"; +$a->strings["Does %s know you?"] = "Czy %s Cię zna?"; +$a->strings["Add a personal note:"] = "Dodaj osobistą notkę:"; +$a->strings["GNU Social (Pleroma, Mastodon)"] = "GNU Social (Pleroma, Mastodon)"; +$a->strings["Diaspora (Socialhome, Hubzilla)"] = "Diaspora (Socialhome, Hubzilla)"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- proszę nie używać tego formularza. Zamiast tego wpisz %s do paska wyszukiwania Diaspory."; +$a->strings["Contact settings applied."] = "Ustawienia kontaktu zaktualizowane."; +$a->strings["Contact update failed."] = "Nie udało się zaktualizować kontaktu."; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "OSTRZEŻENIE: Jest to bardzo zaawansowane i jeśli wprowadzisz niepoprawne informacje, twoja komunikacja z tym kontaktem może przestać działać."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj teraz przycisku 'powrót' na swojej przeglądarce."; +$a->strings["No mirroring"] = "Bez dublowania"; +$a->strings["Mirror as forwarded posting"] = "Przesłany lustrzany post"; +$a->strings["Mirror as my own posting"] = "Lustro mojego własnego komentarza"; +$a->strings["Return to contact editor"] = "Wróć do edytora kontaktów"; +$a->strings["Refetch contact data"] = "Odśwież dane kontaktowe"; +$a->strings["Remote Self"] = "Zdalny Self"; +$a->strings["Mirror postings from this contact"] = "Publikacje lustrzane od tego kontaktu"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Oznacz ten kontakt jako remote_self, spowoduje to, że friendica odeśle nowe wpisy z tego kontaktu."; +$a->strings["Account Nickname"] = "Nazwa konta"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Zmienna - zastępuje Imię/Pseudonim"; +$a->strings["Account URL"] = "URL konta"; +$a->strings["Friend Request URL"] = "URL żądajacy znajomości"; +$a->strings["Friend Confirm URL"] = "URL potwierdzający znajomość"; +$a->strings["Notification Endpoint URL"] = "Zgłoszenie Punktu Końcowego URL"; +$a->strings["Poll/Feed URL"] = "Adres Ankiety/RSS"; +$a->strings["New photo from this URL"] = "Nowe zdjęcie z tego adresu URL"; +$a->strings["Welcome to %s"] = "Witamy w %s"; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s witamy %2\$s"; +$a->strings["Poke/Prod"] = "Zaczepić"; +$a->strings["poke, prod or do other things to somebody"] = ""; +$a->strings["Recipient"] = "Odbiorca"; +$a->strings["Choose what you wish to do to recipient"] = "Wybierz, co chcesz zrobić"; +$a->strings["Make this post private"] = "Ustaw ten post jako prywatny"; +$a->strings["Post successful."] = "Post dodany pomyślnie"; +$a->strings["Access denied."] = "Brak dostępu"; +$a->strings["Invalid request identifier."] = "Nieprawidłowe żądanie identyfikatora."; +$a->strings["Discard"] = "Odrzuć"; +$a->strings["Ignore"] = "Ignoruj"; +$a->strings["Network Notifications"] = "Powiadomienia sieciowe"; +$a->strings["Personal Notifications"] = "Prywatne powiadomienia"; +$a->strings["Home Notifications"] = "Powiadomienia domowe"; +$a->strings["Show Ignored Requests"] = "Pokaż ignorowane żądania"; +$a->strings["Hide Ignored Requests"] = "Ukryj zignorowane prośby"; +$a->strings["Notification type: "] = "Typ powiadomienia:"; +$a->strings["suggested by %s"] = "zaproponowane przez %s"; +$a->strings["Hide this contact from others"] = "Ukryj ten kontakt przed innymi"; +$a->strings["Post a new friend activity"] = "Opublikuj aktywność nowego znajomego"; +$a->strings["if applicable"] = "jeśli dotyczy"; +$a->strings["Claims to be known to you: "] = "Twierdzi, że go znasz:"; +$a->strings["yes"] = "tak"; +$a->strings["no"] = "nie"; +$a->strings["Shall your connection be bidirectional or not?"] = "Czy twoje połączenie ma być dwukierunkowe, czy nie?"; +$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Przyjmowanie %s jako znajomego pozwala %s zasubskrybować twoje posty, a także otrzymywać od nich aktualizacje w swoim kanale wiadomości."; +$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Zaakceptowanie %s jako subskrybenta umożliwia im subskrybowanie Twoich postów, ale nie otrzymasz od nich aktualizacji w swoim kanale wiadomości."; +$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Akceptowanie %s jako udostępniający pozwala im subskrybować twoje posty, ale nie otrzymasz od nich aktualizacji w swoim kanale wiadomości."; +$a->strings["Friend"] = "Znajomy"; +$a->strings["Sharer"] = "Udostępniający/a"; +$a->strings["Subscriber"] = "Subskrybent"; +$a->strings["No introductions."] = "Brak dostępu."; +$a->strings["Show unread"] = "Pokaż nieprzeczytane"; +$a->strings["Show all"] = "Pokaż wszystko"; +$a->strings["No more %s notifications."] = "Nigdy więcej %s powiadomień."; +$a->strings["Not Extended"] = "Nie przedłużony"; +$a->strings["Not Found"] = "Nie znaleziono"; +$a->strings["The contact could not be added."] = "Nie można dodać kontaktu."; +$a->strings["You already added this contact."] = "Już dodałeś ten kontakt."; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Obsługa Diaspory nie jest włączona. Kontakt nie może zostać dodany."; +$a->strings["OStatus support is disabled. Contact can't be added."] = "Obsługa OStatus jest wyłączona. Kontakt nie może zostać dodany."; +$a->strings["The network type couldn't be detected. Contact can't be added."] = "Nie można wykryć typu sieci. Kontakt nie może zostać dodany."; +$a->strings["This calendar format is not supported"] = "Ten format kalendarza nie jest obsługiwany"; +$a->strings["No exportable data found"] = "Nie znaleziono danych do eksportu"; +$a->strings["calendar"] = "kalendarz"; +$a->strings["%d contact edited."] = [ + 0 => "", + 1 => "", + 2 => "", + 3 => "", +]; +$a->strings["Could not access contact record."] = "Nie można uzyskać dostępu do rejestru kontaktów."; +$a->strings["Could not locate selected profile."] = "Nie można znaleźć wybranego profilu."; +$a->strings["Contact updated."] = "Kontakt zaktualizowany"; +$a->strings["Contact has been blocked"] = "Kontakt został zablokowany"; +$a->strings["Contact has been unblocked"] = "Kontakt został odblokowany"; +$a->strings["Contact has been ignored"] = "Kontakt jest ignorowany"; +$a->strings["Contact has been unignored"] = "Kontakt nie jest ignorowany"; +$a->strings["Contact has been archived"] = "Kontakt został zarchiwizowany"; +$a->strings["Contact has been unarchived"] = "Kontakt został przywrócony"; +$a->strings["Drop contact"] = "Usuń kontakt"; +$a->strings["Do you really want to delete this contact?"] = "Czy na pewno chcesz usunąć ten kontakt?"; +$a->strings["Contact has been removed."] = "Kontakt został usunięty."; +$a->strings["You are mutual friends with %s"] = "Jesteś już znajomym z %s"; +$a->strings["You are sharing with %s"] = "Współdzielisz z %s"; +$a->strings["%s is sharing with you"] = "%s współdzieli z tobą"; +$a->strings["Private communications are not available for this contact."] = "Prywatna rozmowa jest niemożliwa dla tego kontaktu"; +$a->strings["Never"] = "Nigdy"; +$a->strings["(Update was successful)"] = "(Aktualizacja przebiegła pomyślnie)"; +$a->strings["(Update was not successful)"] = "(Aktualizacja nie powiodła się)"; +$a->strings["Suggest friends"] = "Osoby, które możesz znać"; +$a->strings["Network type: %s"] = "Typ sieci: %s"; +$a->strings["Communications lost with this contact!"] = "Utracono komunikację z tym kontaktem!"; +$a->strings["Fetch further information for feeds"] = "Pobierz dalsze informacje dla kanałów"; +$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "Pobieranie informacji, takich jak zdjęcia podglądu, tytuł i zwiastun z elementu kanału. Możesz to aktywować, jeśli plik danych nie zawiera dużo tekstu. Słowa kluczowe są pobierane z nagłówka meta w elemencie kanału i są publikowane jako znaczniki haszowania."; +$a->strings["Fetch information"] = "Pobierz informacje"; +$a->strings["Fetch keywords"] = "Pobierz słowa kluczowe"; +$a->strings["Fetch information and keywords"] = "Pobierz informacje i słowa kluczowe"; +$a->strings["Contact"] = "Kontakt"; +$a->strings["Profile Visibility"] = "Widoczność profilu"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Wybierz profil, który chcesz bezpiecznie wyświetlić %s"; +$a->strings["Contact Information / Notes"] = "Informacje kontaktowe/Notatki"; +$a->strings["Their personal note"] = "Ich osobista uwaga"; +$a->strings["Edit contact notes"] = "Edytuj notatki kontaktu"; +$a->strings["Block/Unblock contact"] = "Zablokuj/odblokuj kontakt"; +$a->strings["Ignore contact"] = "Ignoruj kontakt"; +$a->strings["Repair URL settings"] = "Napraw ustawienia adresu"; +$a->strings["View conversations"] = "Wyświetl rozmowy"; +$a->strings["Last update:"] = "Ostatnia aktualizacja:"; +$a->strings["Update public posts"] = "Zaktualizuj publiczne posty"; +$a->strings["Update now"] = "Aktualizuj teraz"; +$a->strings["Unignore"] = "Odblokuj"; +$a->strings["Currently blocked"] = "Obecnie zablokowany"; +$a->strings["Currently ignored"] = "Obecnie zignorowany"; +$a->strings["Currently archived"] = "Obecnie zarchiwizowany"; +$a->strings["Awaiting connection acknowledge"] = "Oczekiwanie na potwierdzenie połączenia"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal mogą być widoczne"; +$a->strings["Notification for new posts"] = "Powiadomienie o nowych postach"; +$a->strings["Send a notification of every new post of this contact"] = "Wyślij powiadomienie o każdym nowym poście tego kontaktu"; +$a->strings["Blacklisted keywords"] = "Słowa kluczowe na czarnej liście"; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Rozdzielana przecinkami lista słów kluczowych, które nie powinny zostać przekonwertowane na hashtagi, gdy wybrana jest opcja 'Pobierz informacje i słowa kluczowe'"; +$a->strings["Actions"] = "Akcja"; +$a->strings["Contact Settings"] = "Ustawienia kontaktów"; +$a->strings["Suggestions"] = "Sugestie"; +$a->strings["Suggest potential friends"] = "Sugerowani znajomi"; +$a->strings["Show all contacts"] = "Pokaż wszystkie kontakty"; +$a->strings["Unblocked"] = "Odblokowany"; +$a->strings["Only show unblocked contacts"] = "Pokaż tylko odblokowane kontakty"; +$a->strings["Blocked"] = "Zablokowany"; +$a->strings["Only show blocked contacts"] = "Pokaż tylko zablokowane kontakty"; +$a->strings["Ignored"] = "Zignorowany"; +$a->strings["Only show ignored contacts"] = "Pokaż tylko ignorowane kontakty"; +$a->strings["Archived"] = "Zarchiwizowane"; +$a->strings["Only show archived contacts"] = "Pokaż tylko zarchiwizowane kontakty"; +$a->strings["Hidden"] = "Ukryty"; +$a->strings["Only show hidden contacts"] = "Pokaż tylko ukryte kontakty"; +$a->strings["Search your contacts"] = "Wyszukaj w kontaktach"; +$a->strings["Results for: %s"] = "Wyniki dla: %s"; +$a->strings["Archive"] = "Archiwum"; +$a->strings["Unarchive"] = "Przywróć z archiwum"; +$a->strings["Batch Actions"] = "Akcje wsadowe"; +$a->strings["View all contacts"] = "Zobacz wszystkie kontakty"; +$a->strings["Common Friends"] = "Wspólni znajomi"; +$a->strings["View all common friends"] = "Zobacz wszystkich popularnych znajomych"; +$a->strings["Advanced Contact Settings"] = "Zaawansowane ustawienia kontaktów"; +$a->strings["Mutual Friendship"] = "Wzajemna przyjaźń"; +$a->strings["is a fan of yours"] = "jest twoim fanem"; +$a->strings["you are a fan of"] = "jesteś fanem"; +$a->strings["Toggle Blocked status"] = "Przełącz na Zablokowany"; +$a->strings["Toggle Ignored status"] = "Przełącz ignorowany status"; +$a->strings["Toggle Archive status"] = "Przełącz status archiwum"; +$a->strings["Delete contact"] = "Usuń kontakt"; +$a->strings["The post was created"] = "Post został utworzony"; +$a->strings["No valid account found."] = "Nie znaleziono ważnego konta."; +$a->strings["Password reset request issued. Check your email."] = "Prośba o zresetowanie hasła została zatwierdzona. Sprawdź swój e-mail."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tDrodzy %1\$s, \n\t\t\tOtrzymano niedawno prośbę o ''%2\$s\" zresetowanie konta \n\t\thasło. Aby potwierdzić tę prośbę, wybierz link weryfikacyjny \n\t\tponiżej lub wklej go na pasek adresu przeglądarki internetowej. \n \n\t\tJeśli NIE poprosiłeś o tę zmianę, NIE wykonuj tego linku \n\t\tpod warunkiem, że zignorujesz i/lub usuniesz ten e-mail, prośba wkrótce wygaśnie. \n \n\t\tTwoje hasło nie zostanie zmienione, chyba że będziemy mogli to potwierdzić \n\t\twydał to żądanie."; +$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nWkrótce skorzystaj z tego linku, aby zweryfikować swoją tożsamość: \n\n\t\t%1\$s\n\n\t\tOtrzymasz następnie komunikat uzupełniający zawierający nowe hasło. \n\t\tMożesz zmienić to hasło ze strony ustawień swojego konta po zalogowaniu. \n \n\t\tDane logowania są następujące: \n \nLokalizacja strony: \t%2\$s\nNazwa użytkownika:\t%3\$s"; +$a->strings["Password reset requested at %s"] = "Prośba o reset hasła na %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Prośba nie może być zweryfikowana. (Mogłeś już ją poprzednio wysłać.) Reset hasła nie powiódł się."; +$a->strings["Request has expired, please make a new one."] = "Żądanie wygasło. Zrób nowe."; +$a->strings["Forgot your Password?"] = "Zapomniałeś hasła?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Wpisz swój adres email i wyślij, aby zresetować hasło. Później sprawdź swojego emaila w celu uzyskania dalszych instrukcji."; +$a->strings["Reset"] = "Zresetuj"; +$a->strings["Your password has been reset as requested."] = "Twoje hasło zostało zresetowane zgodnie z żądaniem."; +$a->strings["Your new password is"] = "Twoje nowe hasło to"; +$a->strings["Save or copy your new password - and then"] = "Zapisz lub skopiuj nowe hasło - a następnie"; +$a->strings["click here to login"] = "Kliknij tutaj aby się zalogować"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Twoje hasło może być zmienione w Ustawieniach po udanym zalogowaniu."; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "\n\t\t\tDrogi %1\$s, \n\t\t\t\tTwoje hasło zostało zmienione zgodnie z życzeniem. Proszę, zachowaj te \n\t\t\tinformacje dotyczące twoich rekordów (lub natychmiast zmień hasło na \n\t\t\tcoś, co zapamiętasz).\n\t\t"; +$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\n\t\t\tDane logowania są następujące:\n\n\t\t\tLokalizacja witryny:\t%1\$s\n\t\t\tNazwa użytkownika:\t%2\$s\n\t\t\tHasło:\t%3\$s\n\n\t\t\tMożesz zmienić hasło na stronie ustawień konta po zalogowaniu.\n\t\t"; +$a->strings["Your password has been changed at %s"] = "Twoje hasło zostało zmienione na %s"; +$a->strings["Friendica Communications Server - Setup"] = "Friendica Serwer Komunikacyjny - Instalacja"; +$a->strings["Could not connect to database."] = "Nie można nawiązać połączenia z bazą danych"; +$a->strings["Could not create table."] = "Nie mogę stworzyć tabeli."; +$a->strings["Your Friendica site database has been installed."] = "Twoja baza danych witryny Friendica została zainstalowana."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Proszę przejrzeć plik \"INSTALL.txt\"."; +$a->strings["Database already in use."] = "Baza danych jest już w użyciu."; +$a->strings["System check"] = "Sprawdzanie systemu"; +$a->strings["Check again"] = "Sprawdź ponownie"; +$a->strings["Database connection"] = "Połączenie z bazą danych"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień ."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją."; +$a->strings["Database Server Name"] = "Nazwa serwera bazy danych"; +$a->strings["Database Login Name"] = "Nazwa użytkownika bazy danych"; +$a->strings["Database Login Password"] = "Hasło logowania do bazy danych"; +$a->strings["For security reasons the password must not be empty"] = "Ze względów bezpieczeństwa hasło nie może być puste"; +$a->strings["Database Name"] = "Nazwa bazy danych"; +$a->strings["Site administrator email address"] = "Adres e-mail administratora strony"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Adres e-mail konta musi pasować do tego, aby móc korzystać z panelu administracyjnego."; +$a->strings["Please select a default timezone for your website"] = "Proszę wybrać domyślną strefę czasową dla swojej strony"; +$a->strings["Site settings"] = "Ustawienia strony"; +$a->strings["System Language:"] = "Język systemu:"; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Ustaw domyślny język dla interfejsu instalacyjnego Friendica i wysyłaj e-maile."; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nie można znaleźć wersji PHP komendy w serwerze PATH"; +$a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'"] = "Jeśli nie masz zainstalowanej na serwerze wersji PHP z wiersza poleceń, nie będziesz mógł uruchomić przetwarzania w tle. Zobacz 'Konfiguracja pracownika'"; +$a->strings["PHP executable path"] = "Ścieżka wykonywalna PHP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Wprowadź pełną ścieżkę do pliku wykonywalnego php. Możesz pozostawić to pole puste, aby kontynuować instalację."; +$a->strings["Command line PHP"] = "Linia komend PHP"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Plik wykonywalny PHP nie jest php cli binarny (może być wersją cgi-fgci)"; +$a->strings["Found PHP version: "] = "Znaleziono wersje PHP:"; +$a->strings["PHP cli binary"] = "PHP cli binarny"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Wersja linii poleceń PHP w twoim systemie nie ma aktywowanego \"register_argc_argv\"."; +$a->strings["This is required for message delivery to work."] = "Jest wymagane, aby dostarczanie wiadomości działało."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Błąd: funkcja \"openssl_pkey_new\" w tym systemie nie jest w stanie wygenerować kluczy szyfrujących"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Jeśli korzystasz z Windowsa, proszę odwiedzić \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Generuj klucz kodowania"; +$a->strings["libCurl PHP module"] = "Moduł libCurl PHP"; +$a->strings["GD graphics PHP module"] = "Moduł PHP-GD"; +$a->strings["OpenSSL PHP module"] = "Moduł PHP OpenSSL"; +$a->strings["PDO or MySQLi PHP module"] = "Moduł PDO lub MySQLi PHP"; +$a->strings["mb_string PHP module"] = "Moduł mb_string PHP"; +$a->strings["XML PHP module"] = "Moduł XML PHP"; +$a->strings["iconv PHP module"] = "Moduł PHP iconv"; +$a->strings["POSIX PHP module"] = "Moduł POSIX PHP"; +$a->strings["Apache mod_rewrite module"] = "Moduł Apache mod_rewrite"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Błąd: moduł Apache webserver mod-rewrite jest potrzebny, jednakże nie jest zainstalowany."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Błąd: moduł graficzny GD z PHP potrzebuje wsparcia technicznego JPEG, jednakże on nie jest zainstalowany."; +$a->strings["Error: openssl PHP module required but not installed."] = "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany."; +$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Błąd: Wymagany moduł PDO lub MySQLi PHP, ale nie zainstalowany."; +$a->strings["Error: The MySQL driver for PDO is not installed."] = "Błąd: Sterownik MySQL dla PDO nie jest zainstalowany."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Błąd: moduł PHP mb_string jest wymagany ale nie jest zainstalowany"; +$a->strings["Error: iconv PHP module required but not installed."] = "Błąd: wymagany moduł PHP iconv, ale nie zainstalowany."; +$a->strings["Error: POSIX PHP module required but not installed."] = "Błąd: wymagany moduł POSIX PHP, ale nie zainstalowany."; +$a->strings["Error, XML PHP module required but not installed."] = "Błąd, wymagany moduł XML PHP, ale nie zainstalowany."; +$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Instalator WWW musi być w stanie utworzyć plik o nazwie \". Htconfig.php\" i nie jest w stanie tego zrobić."; +$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Jest to najczęściej ustawienie uprawnień, ponieważ serwer sieciowy może nie być w stanie zapisywać plików w folderze - nawet jeśli możesz."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Pod koniec tej procedury podamy Ci tekst do zapisania w pliku o nazwie .htconfig.php w twoim górnym folderze Friendica."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternatywnie można pominąć tę procedurę i wykonać ręczną instalację. Proszę zobaczyć plik 'INSTALL.txt' z instrukcjami."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php jest zapisywalny"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica używa silnika szablonów Smarty3 do renderowania swoich widoków. Smarty3 kompiluje szablony do PHP, aby przyspieszyć renderowanie."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Aby przechowywać te skompilowane szablony, serwer WWW musi mieć dostęp do zapisu do katalogu view/smarty3/ w folderze najwyższego poziomu Friendica."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Upewnij się, że użytkownik, na którym działa serwer WWW (np. www-data), ma prawo do zapisu do tego folderu."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Uwaga: jako środek bezpieczeństwa, powinieneś dać serwerowi dostęp do zapisu view/smarty3/ jedynie - nie do plików szablonów (.tpl), które zawiera."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 jest zapisywalny"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Nie działa URL w .htaccess popraw. Sprawdź konfigurację serwera."; +$a->strings["Url rewrite is working"] = "Działający adres URL"; +$a->strings["ImageMagick PHP extension is not installed"] = "Rozszerzenie PHP ImageMagick nie jest zainstalowane"; +$a->strings["ImageMagick PHP extension is installed"] = "Rozszerzenie PHP ImageMagick jest zainstalowane"; +$a->strings["ImageMagick supports GIF"] = "ImageMagick obsługuje GIF"; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Konfiguracja bazy danych pliku \".htconfig.php\" nie mogła zostać zapisana. Proszę użyć załączonego tekstu, aby utworzyć folder konfiguracyjny w sieci serwera."; +$a->strings["

What next

"] = "

Co dalej

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "WAŻNE: Będziesz musiał [ręcznie] ustawić zaplanowane zadanie dla pracownika."; +$a->strings["Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = "Przejdź do strony rejestracji nowego węzła Friendica i zarejestruj się jako nowy użytkownik. Pamiętaj, aby użyć adresu e-mail wprowadzonego jako e-mail administratora. To pozwoli Ci wejść do panelu administratora witryny."; $a->strings["Source input"] = "Źródło wejściowe"; +$a->strings["BBCode::toPlaintext"] = "BBCode::na prosty tekst"; $a->strings["BBCode::convert (raw HTML)"] = "BBCode:: konwersjia (raw HTML)"; $a->strings["BBCode::convert"] = "BBCode::przekształć"; $a->strings["BBCode::convert => HTML::toBBCode"] = "BBCode::przekształć => HTML::toBBCode"; @@ -1348,182 +2070,77 @@ $a->strings["Source text"] = "Tekst źródłowy"; $a->strings["BBCode"] = "BBCode"; $a->strings["Markdown"] = "Markdown"; $a->strings["HTML"] = "HTML"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Strona główna:"; -$a->strings["Global Directory"] = "Globalny Katalog"; -$a->strings["Find on this site"] = "Znajdź na tej stronie"; -$a->strings["Results for:"] = "Wyniki dla:"; -$a->strings["Site Directory"] = "Katalog Witryny"; -$a->strings["No entries (some entries may be hidden)."] = "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)."; -$a->strings["People Search - %s"] = "Szukaj osób - %s"; -$a->strings["Forum Search - %s"] = "Przeszukiwanie forum - %s"; -$a->strings["The contact could not be added."] = "Nie można dodać kontaktu."; -$a->strings["You already added this contact."] = "Już dodałeś ten kontakt."; -$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Obsługa Diaspory nie jest włączona. Kontakt nie może zostać dodany."; -$a->strings["OStatus support is disabled. Contact can't be added."] = "Obsługa OStatus jest wyłączona. Kontakt nie może zostać dodany."; -$a->strings["The network type couldn't be detected. Contact can't be added."] = "Nie można wykryć typu sieci. Kontakt nie może zostać dodany."; -$a->strings["This is Friendica, version"] = "To jest Friendica, wersja"; -$a->strings["running at web location"] = "otwierane na serwerze"; -$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = "Odwiedź stronę Friendi.ca aby dowiedzieć się więcej o projekcie Friendica."; -$a->strings["Bug reports and issues: please visit"] = "Raporty o błędach i problemy: odwiedź stronę"; -$a->strings["the bugtracker at github"] = "bugtracker na github"; -$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Sugestie, pochwały itp. - napisz e-mail \"info\" na \"friendi - kropka - ca"; -$a->strings["Installed addons/apps:"] = "Zainstalowane dodatki/aplikacje:"; -$a->strings["No installed addons/apps"] = "Brak zainstalowanych dodatków/aplikacji"; -$a->strings["Read about the Terms of Service of this node."] = "Przeczytaj o Warunkach świadczenia usług tego węzła."; -$a->strings["On this server the following remote servers are blocked."] = "Na tym serwerze następujące serwery zdalne są blokowane."; -$a->strings["Total invitation limit exceeded."] = "Przekroczono limit zaproszeń ogółem."; -$a->strings["%s : Not a valid email address."] = "%s : Nieprawidłowy adres e-mail."; -$a->strings["Please join us on Friendica"] = "Dołącz do nas na Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Przekroczono limit zaproszeń. Skontaktuj się z administratorem witryny."; -$a->strings["%s : Message delivery failed."] = "%s : Nie udało się dostarczyć wiadomości."; -$a->strings["%d message sent."] = [ - 0 => "%d wiadomość wysłana.", - 1 => "%d wiadomości wysłane.", - 2 => "%d wysłano .", - 3 => "%d wiadomość wysłano.", -]; -$a->strings["You have no more invitations available"] = "Nie masz już dostępnych zaproszeń"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Odwiedź %s listę publicznych witryn, do których możesz dołączyć. Członkowie Friendica na innych stronach mogą łączyć się ze sobą, jak również z członkami wielu innych sieci społecznościowych."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Aby zaakceptować to zaproszenie, odwiedź i zarejestruj się %s lub w dowolnej innej publicznej witrynie internetowej Friendica."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Strony Friendica łączą się ze sobą, tworząc ogromną sieć społecznościową o zwiększonej prywatności, która jest własnością i jest kontrolowana przez jej członków. Mogą również łączyć się z wieloma tradycyjnymi sieciami społecznościowymi. Zobacz %s listę alternatywnych witryn Friendica, do których możesz dołączyć."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Przepraszamy. System nie jest obecnie skonfigurowany do łączenia się z innymi publicznymi witrynami lub zapraszania członków."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = "Strony Friendica łączą się ze sobą, tworząc ogromną sieć społecznościową o zwiększonej prywatności, która jest własnością i jest kontrolowana przez jej członków. Mogą również łączyć się z wieloma tradycyjnymi sieciami społecznościowymi."; -$a->strings["To accept this invitation, please visit and register at %s."] = "Aby zaakceptować to zaproszenie, odwiedź stronę i zarejestruj się na stronie %s."; -$a->strings["Send invitations"] = "Wyślij zaproszenie"; -$a->strings["Enter email addresses, one per line:"] = "Wprowadź adresy e-mail, po jednym w wierszu:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Serdecznie zapraszam do przyłączenia się do mnie i innych bliskich znajomych na stronie Friendica - i pomóż nam stworzyć lepszą sieć społecznościową."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Musisz podać ten kod zaproszenia: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Po rejestracji połącz się ze mną na stronie mojego profilu pod adresem:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "Aby uzyskać więcej informacji na temat projektu Friendica i dlaczego uważamy, że jest to ważne, odwiedź http://friendi.ca"; -$a->strings["No valid account found."] = "Nie znaleziono ważnego konta."; -$a->strings["Password reset request issued. Check your email."] = "Prośba o zresetowanie hasła została zatwierdzona. Sprawdź swój e-mail."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tDrodzy %1\$s, \n\t\t\tOtrzymano niedawno prośbę o ''%2\$s\" zresetowanie konta \n\t\thasło. Aby potwierdzić tę prośbę, wybierz link weryfikacyjny \n\t\tponiżej lub wklej go na pasek adresu przeglądarki internetowej. \n \n\t\tJeśli NIE poprosiłeś o tę zmianę, NIE wykonuj tego linku \n\t\tpod warunkiem, że zignorujesz i/lub usuniesz ten e-mail, prośba wkrótce wygaśnie. \n \n\t\tTwoje hasło nie zostanie zmienione, chyba że będziemy mogli to potwierdzić \n\t\twydał to żądanie."; -$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nWkrótce skorzystaj z tego linku, aby zweryfikować swoją tożsamość: \n\n\t\t%1\$s\n\n\t\tOtrzymasz następnie komunikat uzupełniający zawierający nowe hasło. \n\t\tMożesz zmienić to hasło ze strony ustawień swojego konta po zalogowaniu. \n \n\t\tDane logowania są następujące: \n \nLokalizacja strony: \t%2\$s\nNazwa użytkownika:\t%3\$s"; -$a->strings["Password reset requested at %s"] = "Prośba o reset hasła na %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Prośba nie może być zweryfikowana. (Mogłeś już ją poprzednio wysłać.) Reset hasła nie powiódł się."; -$a->strings["Request has expired, please make a new one."] = "Żądanie wygasło. Zrób nowe."; -$a->strings["Forgot your Password?"] = "Zapomniałeś hasła?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Wpisz swój adres email i wyślij, aby zresetować hasło. Później sprawdź swojego emaila w celu uzyskania dalszych instrukcji."; -$a->strings["Nickname or Email: "] = "Pseudonim lub Email:"; -$a->strings["Reset"] = "Zresetuj"; -$a->strings["Password Reset"] = "Zresetuj hasło"; -$a->strings["Your password has been reset as requested."] = "Twoje hasło zostało zresetowane zgodnie z żądaniem."; -$a->strings["Your new password is"] = "Twoje nowe hasło to"; -$a->strings["Save or copy your new password - and then"] = "Zapisz lub skopiuj nowe hasło - a następnie"; -$a->strings["click here to login"] = "Kliknij tutaj aby się zalogować"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Twoje hasło może być zmienione w Ustawieniach po udanym zalogowaniu."; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "\n\t\t\tDrogi %1\$s, \n\t\t\t\tTwoje hasło zostało zmienione zgodnie z życzeniem. Proszę, zachowaj te \n\t\t\tinformacje dotyczące twoich rekordów (lub natychmiast zmień hasło na \n\t\t\tcoś, co zapamiętasz).\n\t\t"; -$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\n\t\t\tDane logowania są następujące:\n\n\t\t\tLokalizacja witryny:\t%1\$s\n\t\t\tNazwa użytkownika:\t%2\$s\n\t\t\tHasło:\t%3\$s\n\n\t\t\tMożesz zmienić hasło na stronie ustawień konta po zalogowaniu.\n\t\t"; -$a->strings["Your password has been changed at %s"] = "Twoje hasło zostało zmienione na %s"; -$a->strings["add"] = "dodaj"; -$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [ - 0 => "", - 1 => "", - 2 => "", - 3 => "", -]; -$a->strings["Messages in this group won't be send to these receivers."] = "Wiadomości z tej grupy nie będą wysyłane do tych odbiorców."; -$a->strings["No such group"] = "Nie ma takiej grupy"; -$a->strings["Group: %s"] = "Grupa: %s"; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione "; -$a->strings["Invalid contact."] = "Nieprawidłowy kontakt."; -$a->strings["Commented Order"] = "Porządek według komentarzy"; -$a->strings["Sort by Comment Date"] = "Sortuj według daty komentarza"; -$a->strings["Posted Order"] = "Porządek według wpisów"; -$a->strings["Sort by Post Date"] = "Sortuj według daty postów"; -$a->strings["Personal"] = "Osobiste"; -$a->strings["Posts that mention or involve you"] = "Posty, które wspominają lub angażują Ciebie"; -$a->strings["New"] = "Nowy"; -$a->strings["Activity Stream - by date"] = "Strumień aktywności - według daty"; -$a->strings["Shared Links"] = "Udostępnione łącza"; -$a->strings["Interesting Links"] = "Interesujące linki"; -$a->strings["Starred"] = "Ulubione"; -$a->strings["Favourite Posts"] = "Ulubione posty"; -$a->strings["Profile deleted."] = "Konto usunięte."; -$a->strings["Profile-"] = "Profil-"; -$a->strings["New profile created."] = "Utworzono nowy profil."; -$a->strings["Profile unavailable to clone."] = "Nie można powileić profilu "; -$a->strings["Profile Name is required."] = "Nazwa Profilu jest wymagana"; -$a->strings["Marital Status"] = "Stan cywilny"; -$a->strings["Romantic Partner"] = "Romantyczny partner"; -$a->strings["Work/Employment"] = "Praca/Zatrudnienie"; -$a->strings["Religion"] = "Religia"; -$a->strings["Political Views"] = "Poglądy polityczne"; -$a->strings["Gender"] = "Płeć"; -$a->strings["Sexual Preference"] = "Orientacja seksualna"; -$a->strings["XMPP"] = "XMPP"; -$a->strings["Homepage"] = "Strona Główna"; -$a->strings["Interests"] = "Zainteresowania"; -$a->strings["Location"] = "Lokalizacja"; -$a->strings["Profile updated."] = "Profil zaktualizowany."; -$a->strings[" and "] = " i "; -$a->strings["public profile"] = "profil publiczny"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$szmienione %2\$s na “%3\$s”"; -$a->strings[" - Visit %1\$s's %2\$s"] = " - Odwiedź %1\$s's %2\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$sma zaktualizowany %2\$s, zmiana%3\$s."; -$a->strings["Hide contacts and friends:"] = "Ukryj kontakty i znajomych:"; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Czy chcesz ukryć listę kontaktów dla przeglądających to konto?"; -$a->strings["Show more profile fields:"] = "Pokaż więcej pól profilu:"; -$a->strings["Profile Actions"] = "Akcje profilowe"; -$a->strings["Edit Profile Details"] = "Edytuj profil."; -$a->strings["Change Profile Photo"] = "Zmień zdjęcie profilowe"; -$a->strings["View this profile"] = "Wyświetl ten profil"; -$a->strings["Edit visibility"] = "Edytuj widoczność"; -$a->strings["Create a new profile using these settings"] = "Stwórz nowy profil wykorzystując te ustawienia"; -$a->strings["Clone this profile"] = "Sklonuj ten profil"; -$a->strings["Delete this profile"] = "Usuń ten profil"; -$a->strings["Basic information"] = "Podstawowe informacje"; -$a->strings["Profile picture"] = "Zdjęcie profilowe"; -$a->strings["Preferences"] = "Preferencje"; -$a->strings["Status information"] = "Informacje o stanie"; -$a->strings["Additional information"] = "Dodatkowe informacje"; -$a->strings["Relation"] = "Relacje"; -$a->strings["Miscellaneous"] = "Różny"; -$a->strings["Your Gender:"] = "Płeć:"; -$a->strings[" Marital Status:"] = " Stan cywilny:"; -$a->strings["Sexual Preference:"] = "Preferencje seksualne:"; -$a->strings["Example: fishing photography software"] = "Przykład: oprogramowanie do fotografowania ryb"; -$a->strings["Profile Name:"] = "Nazwa profilu:"; -$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "To jest Twój publiczny profil.
Może zostać wyświetlony przez każdego kto używa internetu."; -$a->strings["Your Full Name:"] = "Imię i Nazwisko:"; -$a->strings["Title/Description:"] = "Tytuł/Opis :"; -$a->strings["Street Address:"] = "Ulica:"; -$a->strings["Locality/City:"] = "Miejscowość/Miasto:"; -$a->strings["Region/State:"] = "Region/Państwo:"; -$a->strings["Postal/Zip Code:"] = "Kod Pocztowy:"; -$a->strings["Country:"] = "Kraj:"; -$a->strings["Age: "] = "Wiek: "; -$a->strings["Who: (if applicable)"] = "Kto: (jeśli dotyczy)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Przykłady: cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = "Od [data]:"; -$a->strings["Tell us about yourself..."] = "Napisz o sobie..."; -$a->strings["XMPP (Jabber) address:"] = "Adres XMPP (Jabber):"; -$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "Adres XMPP będzie propagowany do Twoich kontaktów, aby mogli Cię śledzić."; -$a->strings["Homepage URL:"] = "Adres URL strony domowej:"; -$a->strings["Hometown:"] = "Miasto rodzinne:"; -$a->strings["Political Views:"] = "Poglądy polityczne:"; -$a->strings["Religious Views:"] = "Poglądy religijne:"; -$a->strings["Public Keywords:"] = "Publiczne słowa kluczowe:"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)"; -$a->strings["Private Keywords:"] = "Prywatne słowa kluczowe:"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Używany do wyszukiwania profili, niepokazywany innym)"; -$a->strings["Likes:"] = "Lubią to:"; -$a->strings["Dislikes:"] = "Nie lubię tego:"; -$a->strings["Musical interests"] = "Muzyka"; -$a->strings["Books, literature"] = "Literatura"; -$a->strings["Television"] = "Telewizja"; -$a->strings["Film/dance/culture/entertainment"] = "Film/taniec/kultura/rozrywka"; -$a->strings["Hobbies/Interests"] = "Zainteresowania"; -$a->strings["Love/romance"] = "Miłość/romans"; -$a->strings["Work/employment"] = "Praca/zatrudnienie"; -$a->strings["School/education"] = "Szkoła/edukacja"; -$a->strings["Contact information and Social Networks"] = "Dane kontaktowe i Sieci społecznościowe"; -$a->strings["Profile Image"] = "Zdjęcie profilowe"; -$a->strings["visible to everybody"] = "widoczne dla wszystkich"; -$a->strings["Edit/Manage Profiles"] = "Edycja/Zarządzanie profilami"; -$a->strings["Change profile photo"] = "Zmień zdjęcie profilowe"; -$a->strings["Create New Profile"] = "Utwórz nowy profil"; +$a->strings["Remote privacy information not available."] = "Dane prywatne nie są zdalnie dostępne"; +$a->strings["Visible to:"] = "Widoczne dla:"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Dzienny limit wiadomości %s został przekroczony. Wiadomość została odrzucona."; +$a->strings["Unable to check your home location."] = "Nie można sprawdzić twojej lokalizacji."; +$a->strings["No recipient."] = "Brak odbiorcy."; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Jeśli chcesz %s odpowiedzieć, sprawdź, czy ustawienia prywatności w Twojej witrynie zezwalają na prywatne wiadomości od nieznanych nadawców."; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Brak pasujących słów kluczowych. Dodaj słowa kluczowe do domyślnego profilu."; +$a->strings["is interested in:"] = "interesuje się:"; +$a->strings["Profile Match"] = "Dopasowanie profilu"; +$a->strings["System down for maintenance"] = "System wyłączony w celu konserwacji"; +$a->strings["Tag removed"] = "Tag usunięty"; +$a->strings["Remove Item Tag"] = "Usuń pozycję Tag"; +$a->strings["Select a tag to remove: "] = "Wybierz tag do usunięcia"; +$a->strings["You must be logged in to use this module"] = "Musisz być zalogowany, aby korzystać z tego modułu"; +$a->strings["Source URL"] = "Źródłowy adres URL"; +$a->strings["Only logged in users are permitted to perform a search."] = "Tylko zalogowani użytkownicy mogą wyszukiwać."; +$a->strings["Too Many Requests"] = "Zbyt dużo próśb"; +$a->strings["Only one search per minute is permitted for not logged in users."] = "Dla niezalogowanych użytkowników dozwolone jest tylko jedno wyszukiwanie na minutę."; +$a->strings["Items tagged with: %s"] = "Przedmioty oznaczone tagiem: %s"; +$a->strings["Export account"] = "Eksportuj konto"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Eksportuj informacje o swoim koncie i kontaktach. Użyj tego do utworzenia kopii zapasowej konta i/lub przeniesienia go na inny serwer."; +$a->strings["Export all"] = "Eksportuj wszystko"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Wyeksportuj informacje o koncie, kontaktach i wszystkie swoje pozycje jako json. Może to być bardzo duży plik i może zająć dużo czasu. Użyj tej opcji, aby utworzyć pełną kopię zapasową swojego konta (zdjęcia nie są eksportowane)"; +$a->strings["Welcome to Friendica"] = "Witamy na Friendica"; +$a->strings["New Member Checklist"] = "Lista nowych członków"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie."; +$a->strings["Getting Started"] = "Pierwsze kroki"; +$a->strings["Friendica Walk-Through"] = "Friendica Przejdź-Przez"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Na stronie Szybki start - znajdź krótkie wprowadzenie do swojego profilu i kart sieciowych, stwórz nowe połączenia i znajdź kilka grup do przyłączenia się."; +$a->strings["Go to Your Settings"] = "Idź do swoich ustawień"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Na stronie Ustawienia - zmień swoje początkowe hasło. Zanotuj także swój adres tożsamości. Wygląda to jak adres e-mail - i będzie przydatny w nawiązywaniu znajomości w bezpłatnej sieci społecznościowej."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Przejrzyj pozostałe ustawienia, w szczególności ustawienia prywatności. Niepublikowany wykaz katalogów jest podobny do niepublicznego numeru telefonu. Ogólnie rzecz biorąc, powinieneś opublikować swój wpis - chyba, że wszyscy twoi znajomi i potencjalni znajomi dokładnie wiedzą, jak Cię znaleźć."; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty."; +$a->strings["Edit Your Profile"] = "Edytuj własny profil"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Edytuj swój domyślny profil do swoich potrzeb. Przejrzyj ustawienia ukrywania listy znajomych i ukrywania profilu przed nieznanymi użytkownikami."; +$a->strings["Profile Keywords"] = "Słowa kluczowe profilu"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Ustaw kilka publicznych słów kluczowych dla swojego domyślnego profilu, które opisują Twoje zainteresowania. Możemy znaleźć inne osoby o podobnych zainteresowaniach i zaproponować przyjaźnie."; +$a->strings["Connecting"] = "Łączę się..."; +$a->strings["Importing Emails"] = "Importuję emaile..."; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Wprowadź informacje dotyczące dostępu do poczty e-mail na stronie Ustawienia oprogramowania, jeśli chcesz importować i wchodzić w interakcje z przyjaciółmi lub listami adresowymi z poziomu konta e-mail INBOX"; +$a->strings["Go to Your Contacts Page"] = "Idź do strony z Twoimi kontaktami"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Strona Kontakty jest twoją bramą do zarządzania przyjaciółmi i łączenia się z przyjaciółmi w innych sieciach. Zazwyczaj podaje się adres lub adres URL strony w oknie dialogowym Dodaj nowy kontakt."; +$a->strings["Go to Your Site's Directory"] = "Idż do twojej strony"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "Strona Katalog umożliwia znalezienie innych osób w tej sieci lub innych witrynach stowarzyszonych. Poszukaj łącza Połącz lub Śledź na stronie profilu. Jeśli chcesz, podaj swój własny adres tożsamości."; +$a->strings["Finding New People"] = "Znajdowanie nowych osób"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Na bocznym panelu strony Kontaktów znajduje się kilka narzędzi do znajdowania nowych przyjaciół. Możemy dopasować osoby według zainteresowań, wyszukiwać osoby według nazwisk i zainteresowań oraz dostarczać sugestie oparte na relacjach sieciowych. Na zupełnie nowej stronie sugestie znajomych zwykle zaczynają być wypełniane w ciągu 24 godzin"; +$a->strings["Group Your Contacts"] = "Grupuj Swoje kontakty"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Gdy zaprzyjaźnisz się z przyjaciółmi, uporządkuj je w prywatne grupy konwersacji na pasku bocznym na stronie Kontakty, a następnie możesz wchodzić w interakcje z każdą grupą prywatnie na stronie Sieć."; +$a->strings["Why Aren't My Posts Public?"] = "Dlaczego moje posty nie są publiczne?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica szanuje Twoją prywatność. Domyślnie Twoje wpisy będą wyświetlane tylko osobom, które dodałeś jako znajomi. Aby uzyskać więcej informacji, zobacz sekcję pomocy na powyższym łączu."; +$a->strings["Getting Help"] = "Otrzymaj pomoc"; +$a->strings["Go to the Help Section"] = "Przejdź do sekcji pomocy"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Na naszych stronach pomocy można znaleźć szczegółowe informacje na temat innych funkcji programu i zasobów."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Może się to zdarzyć, gdy kontakt został zgłoszony przez obie osoby i został już zatwierdzony."; +$a->strings["Response from remote site was not understood."] = "Odpowiedź do zdalnej strony nie została zrozumiana"; +$a->strings["Unexpected response from remote site: "] = "Nieoczekiwana odpowiedź od strony zdalnej:"; +$a->strings["Confirmation completed successfully."] = "Potwierdzenie zostało pomyślnie zakończone."; +$a->strings["Temporary failure. Please wait and try again."] = "Tymczasowa awaria. Proszę czekać i spróbuj ponownie."; +$a->strings["Introduction failed or was revoked."] = "Wprowadzenie nie powiodło się lub zostało odwołane."; +$a->strings["Remote site reported: "] = "Zdalna witryna zgłoszona:"; +$a->strings["Unable to set contact photo."] = "Nie można ustawić zdjęcia kontaktu."; +$a->strings["No user record found for '%s' "] = "Nie znaleziono użytkownika dla '%s'"; +$a->strings["Our site encryption key is apparently messed up."] = "Klucz kodujący jest najwyraźniej uszkodzony."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Został podany pusty adres URL witryny lub nie można go odszyfrować."; +$a->strings["Contact record was not found for you on our site."] = "Nie znaleziono kontaktu na naszej stronie"; +$a->strings["Site public key not available in contact record for URL %s."] = "Publiczny klucz witryny jest niedostępny w rekordzie kontaktu dla adresu URL %s"; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Identyfikator dostarczony przez Twój system jest duplikatem w naszym systemie. Powinien działać, jeśli spróbujesz ponownie."; +$a->strings["Unable to set your contact credentials on our system."] = "Nie można ustawić danych kontaktowych w naszym systemie."; +$a->strings["Unable to update your contact profile details on our system"] = "Nie można zaktualizować danych Twojego profilu kontaktowego w naszym systemie"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s dołączył/a do %2\$s"; +$a->strings["- select -"] = "- wybierz -"; $a->strings["Registration successful. Please check your email for further instructions."] = "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila."; $a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Nie udało się wysłać wiadomości e-mail. Tutaj szczegóły twojego konta:
login: %s
hasło: %s

Możesz zmienić swoje hasło po zalogowaniu."; $a->strings["Registration successful."] = "Rejestracja udana."; @@ -1539,223 +2156,32 @@ $a->strings["Membership on this site is by invitation only."] = "Członkostwo na $a->strings["Your invitation code: "] = "Twój kod zaproszenia:"; $a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Twoje Imię i Nazwisko (np. Jan Kowalski, prawdziwe lub wyglądające na prawdziwe):"; $a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "Twój adres e-mail: (Informacje początkowe zostaną wysłane tam, więc musi to być istniejący adres)."; -$a->strings["New Password:"] = "Nowe hasło:"; $a->strings["Leave empty for an auto generated password."] = "Pozostaw puste dla wygenerowanego automatycznie hasła."; -$a->strings["Confirm:"] = "Potwierdź:"; $a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@%s'."] = "Wybierz pseudonim profilu. Nazwa musi zaczynać się od znaku tekstowego. Twój adres profilu na tej stronie będzie wówczas 'pseudonimem%s'."; $a->strings["Choose a nickname: "] = "Wybierz pseudonim:"; -$a->strings["Register"] = "Zarejestruj"; $a->strings["Import your profile to this friendica instance"] = "Zaimportuj swój profil do tej instancji friendica"; -$a->strings["User deleted their account"] = "Użytkownik usunął swoje konto"; -$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "W twoim węźle Friendica użytkownik usunął swoje konto. Upewnij się, że ich dane zostały usunięte z kopii zapasowych."; -$a->strings["The user id is %d"] = "Identyfikatorem użytkownika jest %d"; -$a->strings["Remove My Account"] = "Usuń moje konto"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Spowoduje to całkowite usunięcie Twojego konta. Po wykonaniu tej czynności nie można jej cofnąć."; -$a->strings["Please enter your password for verification:"] = "Wprowadź hasło w celu weryfikacji."; -$a->strings["Display"] = "Wyświetlanie"; -$a->strings["Social Networks"] = "Portale społecznościowe"; -$a->strings["Delegations"] = "Delegowanie"; -$a->strings["Connected apps"] = "Powiązane aplikacje"; -$a->strings["Remove account"] = "Usuń konto"; -$a->strings["Missing some important data!"] = "Brakuje ważnych danych!"; -$a->strings["Failed to connect with email account using the settings provided."] = "Połączenie z kontem email używając wybranych ustawień nie powiodło się."; -$a->strings["Email settings updated."] = "Zaktualizowano ustawienia email."; -$a->strings["Features updated"] = "Funkcje zaktualizowane"; -$a->strings["Relocate message has been send to your contacts"] = "Przeniesienie wiadomości zostało wysłane do Twoich kontaktów"; -$a->strings["Passwords do not match. Password unchanged."] = "Hasła nie pasują do siebie. Hasło niezmienione."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Puste hasła są niedozwolone. Hasło niezmienione."; -$a->strings["The new password has been exposed in a public data dump, please choose another."] = "Nowe hasło zostało ujawnione w publicznym zrzucie danych, wybierz inne."; -$a->strings["Wrong password."] = "Złe hasło."; -$a->strings["Password changed."] = "Hasło zostało zmianione."; -$a->strings["Password update failed. Please try again."] = "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie."; -$a->strings[" Please use a shorter name."] = "Proszę użyć krótszej nazwy."; -$a->strings[" Name too short."] = "Za krótka nazwa."; -$a->strings["Wrong Password"] = "Złe hasło"; -$a->strings["Invalid email."] = "Niepoprawny e-mail."; -$a->strings["Cannot change to that email."] = "Nie można zmienić tego e-maila."; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Prywatne forum nie ma uprawnień do prywatności. Użyj domyślnej grupy prywatnej."; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Prywatne forum nie ma uprawnień do prywatności ani domyślnej grupy prywatności."; -$a->strings["Settings updated."] = "Zaktualizowano ustawienia."; -$a->strings["Add application"] = "Dodaj aplikację"; -$a->strings["Consumer Key"] = "Klucz klienta"; -$a->strings["Consumer Secret"] = "Tajny klucz klienta"; -$a->strings["Redirect"] = "Przekierowanie"; -$a->strings["Icon url"] = "Adres Url ikony"; -$a->strings["You can't edit this application."] = "Nie możesz edytować tej aplikacji."; -$a->strings["Connected Apps"] = "Powiązane aplikacje"; -$a->strings["Edit"] = "Edytuj"; -$a->strings["Client key starts with"] = "Klucz klienta zaczyna się od"; -$a->strings["No name"] = "Bez nazwy"; -$a->strings["Remove authorization"] = "Odwołaj upoważnienie"; -$a->strings["No Addon settings configured"] = "Brak skonfigurowanych ustawień Dodatków"; -$a->strings["Addon Settings"] = "Ustawienia Dodatków"; -$a->strings["Additional Features"] = "Dodatkowe funkcje"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["enabled"] = "włączony"; -$a->strings["disabled"] = "wyłączony"; -$a->strings["Built-in support for %s connectivity is %s"] = "Wbudowane wsparcie dla %s łączność jest %s"; -$a->strings["GNU Social (OStatus)"] = "GNU Społeczny (OStatus)"; -$a->strings["Email access is disabled on this site."] = "Dostęp do e-maila nie jest w pełni sprawny na tej stronie"; -$a->strings["General Social Media Settings"] = "Ogólne ustawienia mediów społecznościowych"; -$a->strings["Disable Content Warning"] = "Wyłącz ostrzeżenie o treści"; -$a->strings["Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This disables the automatic collapsing and sets the content warning as the post title. Doesn't affect any other content filtering you eventually set up."] = "Użytkownicy w sieciach takich jak Mastodon lub Pleroma mogą ustawić pole ostrzeżenia o treści, które domyślnie zwijać będzie swój wpis. Powoduje wyłączenie automatycznego zwijania i ustawia ostrzeżenie o treści jako tytuł postu. Nie ma wpływu na żadne inne filtrowanie treści, które ostatecznie utworzyłeś."; -$a->strings["Disable intelligent shortening"] = "Wyłącz inteligentne skracanie"; -$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Zwykle system próbuje znaleźć najlepszy link do dodania do skróconych postów. Jeśli ta opcja jest włączona, każdy skrócony wpis zawsze wskazuje oryginalny post znajomej osoby."; -$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automatycznie podążaj za wszystkimi obserwatorami/rzecznikami GNU Społeczności (OStatus)"; -$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "Jeśli otrzymasz wiadomość od nieznanego użytkownika OStatus, ta opcja decyduje, co zrobić. Jeśli zostanie zaznaczone, dla każdego nieznanego użytkownika zostanie utworzony nowy kontakt."; -$a->strings["Default group for OStatus contacts"] = "Domyślna grupa dla kontaktów OStatus"; -$a->strings["Your legacy GNU Social account"] = "Twoje starsze konto społecznościowe GNU"; -$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "Jeśli podasz swoją starą nazwę konta GNU Social/Statusnet tutaj (w formacie user@domain.tld), twoje kontakty zostaną dodane automatycznie. Pole zostanie opróżnione po zakończeniu."; -$a->strings["Repair OStatus subscriptions"] = "Napraw subskrypcje OStatus"; -$a->strings["Email/Mailbox Setup"] = "Ustawienia emaila/skrzynki mailowej"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Jeśli chcesz komunikować się z kontaktami e-mail za pomocą tej usługi (opcjonalnie), określ sposób łączenia się ze skrzynką pocztową."; -$a->strings["Last successful email check:"] = "Ostatni sprawdzony e-mail:"; -$a->strings["IMAP server name:"] = "Nazwa serwera IMAP:"; -$a->strings["IMAP port:"] = "Port IMAP:"; -$a->strings["Security:"] = "Ochrona:"; -$a->strings["None"] = "Brak"; -$a->strings["Email login name:"] = "Nazwa logowania e-mail:"; -$a->strings["Email password:"] = "E-mail hasło:"; -$a->strings["Reply-to address:"] = "Adres zwrotny:"; -$a->strings["Send public posts to all email contacts:"] = "Wyślij publiczny post do wszystkich kontaktów e-mail"; -$a->strings["Action after import:"] = "Akcja po zaimportowaniu:"; -$a->strings["Mark as seen"] = "Oznacz jako przeczytane"; -$a->strings["Move to folder"] = "Przenieś do folderu"; -$a->strings["Move to folder:"] = "Przenieś do folderu:"; -$a->strings["%s - (Unsupported)"] = "%s - (Nieobsługiwane)"; -$a->strings["%s - (Experimental)"] = "%s- (Eksperymentalne)"; -$a->strings["Display Settings"] = "Wyświetl ustawienia"; -$a->strings["Display Theme:"] = "Wyświetl motyw:"; -$a->strings["Mobile Theme:"] = "Motyw dla urządzeń mobilnych:"; -$a->strings["Suppress warning of insecure networks"] = "Ukryj ostrzeżenie przed niebezpiecznymi sieciami"; -$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "System powinien pominąć ostrzeżenie, że bieżąca grupa zawiera członków sieci, którzy nie mogą otrzymywać komentarzy niepublicznych"; -$a->strings["Update browser every xx seconds"] = "Odświeżaj stronę co xx sekund"; -$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum 10 sekund. Wprowadź -1, aby go wyłączyć."; -$a->strings["Number of items to display per page:"] = "Liczba elementów do wyświetlenia na stronie:"; -$a->strings["Maximum of 100 items"] = "Maksymalnie 100 elementów"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = "Liczba elementów do wyświetlenia na stronie podczas przeglądania z urządzenia mobilnego:"; -$a->strings["Don't show emoticons"] = "Nie pokazuj emotikonek"; -$a->strings["Calendar"] = "Kalendarz"; -$a->strings["Beginning of week:"] = "Początek tygodnia:"; -$a->strings["Don't show notices"] = "Nie pokazuj powiadomień"; -$a->strings["Infinite scroll"] = "Nieskończone przewijanie"; -$a->strings["Automatic updates only at the top of the network page"] = "Automatyczne aktualizacje tylko u góry strony sieci"; -$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "Po wyłączeniu strona sieciowa jest cały czas aktualizowana, co może być mylące podczas czytania."; -$a->strings["Bandwith Saver Mode"] = "Tryb oszczędzania przepustowości"; -$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "Po włączeniu wbudowana zawartość nie jest wyświetlana w automatycznych aktualizacjach, wyświetlają się tylko przy przeładowaniu strony."; -$a->strings["Smart Threading"] = "Inteligentne gwintowanie"; -$a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = "Włączenie tej opcji powoduje pomijanie wcięcia nitek zewnętrznych, zachowując je w dowolnym miejscu. Działa tylko wtedy, gdy wątki są dostępne i włączone."; -$a->strings["General Theme Settings"] = "Ogólne ustawienia motywu"; -$a->strings["Custom Theme Settings"] = "Niestandardowe ustawienia motywów"; -$a->strings["Content Settings"] = "Ustawienia zawartości"; -$a->strings["Theme settings"] = "Ustawienia motywu"; -$a->strings["Unable to find your profile. Please contact your admin."] = "Nie można znaleźć Twojego profilu. Skontaktuj się z administratorem."; -$a->strings["Account Types"] = "Rodzaje kont"; -$a->strings["Personal Page Subtypes"] = "Podtypy osobistych stron"; -$a->strings["Community Forum Subtypes"] = "Podtypy społeczności forum"; -$a->strings["Personal Page"] = "Strona osobista"; -$a->strings["Account for a personal profile."] = "Konto dla profilu osobistego."; -$a->strings["Organisation Page"] = "Strona Organizacji"; -$a->strings["Account for an organisation that automatically approves contact requests as \"Followers\"."] = "Konto dla organizacji, która automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"."; -$a->strings["News Page"] = "Strona Wiadomości"; -$a->strings["Account for a news reflector that automatically approves contact requests as \"Followers\"."] = "Konto dla reflektora wiadomości, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"."; -$a->strings["Community Forum"] = "Forum społecznościowe"; -$a->strings["Account for community discussions."] = "Konto do dyskusji w społeczności."; -$a->strings["Normal Account Page"] = "Normalna strona konta"; -$a->strings["Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"."] = "Konto dla zwykłego profilu osobistego, który wymaga ręcznej zgody \"Przyjaciół\" i \"Obserwatorów\"."; -$a->strings["Soapbox Page"] = "Strona Soapbox"; -$a->strings["Account for a public profile that automatically approves contact requests as \"Followers\"."] = "Konto dla profilu publicznego, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"."; -$a->strings["Public Forum"] = "Forum publiczne"; -$a->strings["Automatically approves all contact requests."] = "Automatycznie zatwierdza wszystkie prośby o kontakt."; -$a->strings["Automatic Friend Page"] = "Automatyczna strona znajomego"; -$a->strings["Account for a popular profile that automatically approves contact requests as \"Friends\"."] = "Konto popularnego profilu, które automatycznie zatwierdza prośby o kontakt jako \"Przyjaciele\"."; -$a->strings["Private Forum [Experimental]"] = "Prywatne Forum [Eksperymentalne]"; -$a->strings["Requires manual approval of contact requests."] = "Wymaga ręcznego zatwierdzania żądań kontaktów."; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opcjonalnie) Pozwól zalogować się na to konto przy pomocy OpenID."; -$a->strings["Publish your default profile in your local site directory?"] = "Opublikować Twój domyślny profil w Twoim lokalnym katalogu stron?"; -$a->strings["Your profile will be published in the global friendica directories (e.g. %s). Your profile will be visible in public."] = "Twój profil zostanie opublikowany w globalnych katalogach friendica (np.%s). Twój profil będzie widoczny publicznie."; -$a->strings["Publish your default profile in the global social directory?"] = "Opublikować Twój domyślny profil w globalnym, społecznościowym katalogu?"; -$a->strings["Your profile will be published in this node's local directory. Your profile details may be publicly visible depending on the system settings."] = "Twój profil zostanie opublikowany w lokalnym katalogu tego węzła. Dane Twojego profilu mogą być publicznie widoczne w zależności od ustawień systemu."; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Ukryć listę znajomych przed odwiedzającymi Twój profil?"; -$a->strings["Your contact list won't be shown in your default profile page. You can decide to show your contact list separately for each additional profile you create"] = "Twoja lista kontaktów nie będzie wyświetlana na domyślnej stronie profilu. Możesz zdecydować o wyświetleniu listy kontaktów osobno dla każdego tworzonego dodatkowego profilu."; -$a->strings["Hide your profile details from anonymous viewers?"] = "Ukryć dane Twojego profilu przed anonimowymi widzami?"; -$a->strings["Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Disables posting public messages to Diaspora and other networks."] = "Anonimowi użytkownicy zobaczą tylko Twoje zdjęcie profilowe, Twoją wyświetlaną nazwę i pseudonim, którego używasz na stronie profilu. Wyłącza wysyłanie publicznych wiadomości do Diaspory i innych sieci."; -$a->strings["Allow friends to post to your profile page?"] = "Zezwalać znajomym na publikowanie postów na stronie Twojego profilu?"; -$a->strings["Your contacts may write posts on your profile wall. These posts will be distributed to your contacts"] = "Twoi znajomi mogą pisać posty na stronie Twojego profilu. Posty zostaną przesłane do Twoich kontaktów."; -$a->strings["Allow friends to tag your posts?"] = "Zezwolić na oznaczanie Twoich postów przez znajomych?"; -$a->strings["Your contacts can add additional tags to your posts."] = "Twoje kontakty mogą dodawać do tagów dodatkowe posty."; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Pozwól zasugerować Cię jako potencjalnego przyjaciela dla nowych członków?"; -$a->strings["If you like, Friendica may suggest new members to add you as a contact."] = "Jeśli chcesz, Friendica może zaproponować nowym członkom dodanie Cię jako kontakt."; -$a->strings["Permit unknown people to send you private mail?"] = "Zezwolić nieznanym osobom na wysyłanie prywatnych wiadomości?"; -$a->strings["Friendica network users may send you private messages even if they are not in your contact list."] = "Użytkownicy sieci w serwisie Friendica mogą wysyłać prywatne wiadomości, nawet jeśli nie znajdują się one na liście kontaktów."; -$a->strings["Profile is not published."] = "Profil nie jest opublikowany"; -$a->strings["Your Identity Address is '%s' or '%s'."] = "Twój adres tożsamości to '%s' lub '%s'."; -$a->strings["Automatically expire posts after this many days:"] = "Posty wygasną automatycznie po następującej liczbie dni:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte."; -$a->strings["Advanced expiration settings"] = "Zaawansowane ustawienia wygasania"; -$a->strings["Advanced Expiration"] = "Zaawansowane wygasanie"; -$a->strings["Expire posts:"] = "Wygasające posty:"; -$a->strings["Expire personal notes:"] = "Wygasanie osobistych notatek:"; -$a->strings["Expire starred posts:"] = "Wygasaj posty oznaczone gwiazdką:"; -$a->strings["Expire photos:"] = "Wygasanie zdjęć:"; -$a->strings["Only expire posts by others:"] = "Wygaszaj tylko te posty, które zostały napisane przez inne osoby:"; -$a->strings["Account Settings"] = "Ustawienia konta"; -$a->strings["Password Settings"] = "Ustawienia hasła"; -$a->strings["Leave password fields blank unless changing"] = "Pozostaw pola hasła puste, chyba że chcesz je zmienić."; -$a->strings["Current Password:"] = "Aktualne hasło:"; -$a->strings["Your current password to confirm the changes"] = "Twoje aktualne hasło, potwierdź zmiany"; -$a->strings["Password:"] = "Hasło:"; -$a->strings["Basic Settings"] = "Ustawienia podstawowe"; -$a->strings["Full Name:"] = "Imię i Nazwisko:"; -$a->strings["Email Address:"] = "Adres email:"; -$a->strings["Your Timezone:"] = "Twoja strefa czasowa:"; -$a->strings["Your Language:"] = "Twój język:"; -$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Ustaw język, którego używasz, aby pokazać interfejs użytkownika friendica i do wysłania Ci e-maili"; -$a->strings["Default Post Location:"] = "Standardowa lokalizacja wiadomości:"; -$a->strings["Use Browser Location:"] = "Użyj położenia przeglądarki:"; -$a->strings["Security and Privacy Settings"] = "Ustawienia bezpieczeństwa i prywatności"; -$a->strings["Maximum Friend Requests/Day:"] = "Maksymalna dzienna liczba zaproszeń do grona przyjaciół:"; -$a->strings["(to prevent spam abuse)"] = "(aby zapobiec spamowaniu)"; -$a->strings["Default Post Permissions"] = "Domyślne prawa dostępu wiadomości"; -$a->strings["(click to open/close)"] = "(kliknij by otworzyć/zamknąć)"; -$a->strings["Default Private Post"] = "Domyślny Prywatny Wpis"; -$a->strings["Default Public Post"] = "Domyślny Publiczny Post"; -$a->strings["Default Permissions for New Posts"] = "Uprawnienia domyślne dla nowych postów"; -$a->strings["Maximum private messages per day from unknown people:"] = "Maksymalna liczba prywatnych wiadomości dziennie od nieznanych osób:"; -$a->strings["Notification Settings"] = "Ustawienia powiadomień"; -$a->strings["By default post a status message when:"] = "Domyślnie publikuj komunikat o stanie, gdy:"; -$a->strings["accepting a friend request"] = "przyjęto prośbę o dodanie do znajomych"; -$a->strings["joining a forum/community"] = "dołączono do forum/społeczności"; -$a->strings["making an interesting profile change"] = "dokonano interesującej zmiany profilu"; -$a->strings["Send a notification email when:"] = "Wyślij powiadmonienia na email, kiedy:"; -$a->strings["You receive an introduction"] = "Otrzymałeś zaproszenie"; -$a->strings["Your introductions are confirmed"] = "Twoje zaproszenie jest potwierdzone"; -$a->strings["Someone writes on your profile wall"] = "Ktoś pisze na twoim profilu"; -$a->strings["Someone writes a followup comment"] = "Ktoś pisze komentarz nawiązujący."; -$a->strings["You receive a private message"] = "Otrzymałeś prywatną wiadomość"; -$a->strings["You receive a friend suggestion"] = "Otrzymałeś propozycję od znajomych"; -$a->strings["You are tagged in a post"] = "Jesteś oznaczony tagiem w poście"; -$a->strings["You are poked/prodded/etc. in a post"] = "Jesteś zaczepiony/zaczepiona/itp. w poście"; -$a->strings["Activate desktop notifications"] = "Aktywuj powiadomienia na pulpicie"; -$a->strings["Show desktop popup on new notifications"] = "Pokaż wyskakujące okienko dla nowych powiadomień"; -$a->strings["Text-only notification emails"] = "E-maile z powiadomieniami tekstowymi"; -$a->strings["Send text only notification emails, without the html part"] = "Wysyłaj tylko e-maile z powiadomieniami tekstowymi, bez części html"; -$a->strings["Show detailled notifications"] = "Pokaż szczegółowe powiadomienia"; -$a->strings["Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed."] = "Domyślne powiadomienia są skondensowane z jednym powiadomieniem dla każdego przedmiotu. Po włączeniu wyświetlane jest każde powiadomienie."; -$a->strings["Advanced Account/Page Type Settings"] = "Zaawansowane ustawienia konta/rodzaju strony"; -$a->strings["Change the behaviour of this account for special situations"] = "Zmień zachowanie tego konta w sytuacjach specjalnych"; -$a->strings["Relocate"] = "Przeniesienie"; -$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Jeśli ten profil został przeniesiony z innego serwera, a niektóre z Twoich kontaktów nie otrzymają aktualizacji, spróbuj nacisnąć ten przycisk."; -$a->strings["Resend relocate message to contacts"] = "Wyślij ponownie przenieść wiadomości do kontaktów"; -$a->strings["default"] = "standardowe"; -$a->strings["greenzero"] = "greenzero"; -$a->strings["purplezero"] = "purplezero"; -$a->strings["easterbunny"] = "Zajączek wielkanocny"; -$a->strings["darkzero"] = "darkzero"; -$a->strings["comix"] = "comix"; -$a->strings["slackr"] = ""; -$a->strings["Variations"] = "Zmiana"; +$a->strings["No contacts in common."] = "Brak wspólnych kontaktów."; +$a->strings["Only logged in users are permitted to perform a probing."] = "Tylko zalogowani użytkownicy mogą wykonywać sondowanie."; +$a->strings["Help:"] = "Pomoc:"; +$a->strings["Page not found."] = "Strona nie znaleziona."; +$a->strings["Invalid profile identifier."] = "Nieprawidłowa nazwa użytkownika."; +$a->strings["Profile Visibility Editor"] = "Ustawienia widoczności profilu"; +$a->strings["Visible To"] = "Widoczne dla"; +$a->strings["All Contacts (with secure profile access)"] = "Wszystkie kontakty (z bezpiecznym dostępem do profilu)"; +$a->strings["Unable to locate original post."] = "Nie można zlokalizować oryginalnej wiadomości."; +$a->strings["Empty post discarded."] = "Pusty wpis został odrzucony."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Wiadomość została wysłana do ciebie od %s , członka portalu Friendica"; +$a->strings["You may visit them online at %s"] = "Możesz odwiedzić ich online pod adresem %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości."; +$a->strings["%s posted an update."] = "%s zaktualizował wpis."; +$a->strings["Item not found"] = "Nie znaleziono elementu"; +$a->strings["Edit post"] = "Edytuj post"; +$a->strings["Alignment"] = "Wyrównanie"; +$a->strings["Left"] = "Lewo"; +$a->strings["Center"] = "Środek"; +$a->strings["Color scheme"] = "Zestaw kolorów"; +$a->strings["Posts font size"] = "Rozmiar czcionki postów"; +$a->strings["Textareas font size"] = "Rozmiar czcionki Textareas"; $a->strings["Repeat the image"] = "Powtórz obraz"; $a->strings["Will repeat your image to fill the background."] = "Powtarza twój obraz, aby wypełnić tło."; $a->strings["Stretch"] = "Rozwiń"; @@ -1779,28 +2205,7 @@ $a->strings["Login page background color"] = "Kolor tła strony logowania"; $a->strings["Leave background image and color empty for theme defaults"] = "Pozostaw obraz tła i kolor pusty dla domyślnych ustawień kompozycji"; $a->strings["Guest"] = "Gość"; $a->strings["Visitor"] = "Odwiedzający"; -$a->strings["Logout"] = "Wyloguj się"; -$a->strings["End this session"] = "Zakończ sesję"; -$a->strings["Your posts and conversations"] = "Twoje posty i rozmowy"; -$a->strings["Your profile page"] = "Twoja strona profilowa"; -$a->strings["Your photos"] = "Twoje zdjęcia"; -$a->strings["Videos"] = "Filmy"; -$a->strings["Your videos"] = "Twoje filmy"; -$a->strings["Your events"] = "Twoje wydarzenia"; -$a->strings["Conversations from your friends"] = "Rozmowy Twoich przyjaciół"; -$a->strings["Events and Calendar"] = "Wydarzenia i kalendarz"; -$a->strings["Private mail"] = "Prywatne maile"; -$a->strings["Account settings"] = "Ustawienia konta"; -$a->strings["Manage/edit friends and contacts"] = "Zarządzaj listą przyjaciół i kontaktami"; -$a->strings["Alignment"] = "Wyrównanie"; -$a->strings["Left"] = "Lewo"; -$a->strings["Center"] = "Środek"; -$a->strings["Color scheme"] = "Zestaw kolorów"; -$a->strings["Posts font size"] = "Rozmiar czcionki postów"; -$a->strings["Textareas font size"] = "Rozmiar czcionki Textareas"; $a->strings["Comma separated list of helper forums"] = "Lista pomocników oddzielona przecinkami"; -$a->strings["don't show"] = "nie pokazuj"; -$a->strings["show"] = "pokaż"; $a->strings["Set style"] = "Ustaw styl"; $a->strings["Community Pages"] = "Strony społeczności"; $a->strings["Community Profiles"] = "Profile społeczności"; @@ -1809,417 +2214,12 @@ $a->strings["Connect Services"] = "Połączone serwisy"; $a->strings["Find Friends"] = "Znajdź znajomych"; $a->strings["Last users"] = "Ostatni użytkownicy"; $a->strings["Local Directory"] = "Katalog lokalny"; -$a->strings["Similar Interests"] = "Podobne zainteresowania"; -$a->strings["Invite Friends"] = "Zaproś znajomych"; -$a->strings["External link to forum"] = "Zewnętrzny link do forum"; $a->strings["Quick Start"] = "Szybki start"; -$a->strings["Error decoding account file"] = "Błąd podczas odczytu pliku konta"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Błąd! Brak danych wersji w pliku! To nie jest plik konta Friendica?"; -$a->strings["User '%s' already exists on this server!"] = "Użytkownik '%s' już istnieje na tym serwerze!"; -$a->strings["User creation error"] = "Błąd tworzenia użytkownika"; -$a->strings["User profile creation error"] = "Błąd tworzenia profilu użytkownika"; -$a->strings["%d contact not imported"] = [ - 0 => "Nie zaimportowano %d kontaktu.", - 1 => "Nie zaimportowano %d kontaktów.", - 2 => "Nie zaimportowano %d kontaktów.", - 3 => "%dkontakty nie zostały zaimportowane ", -]; -$a->strings["Done. You can now login with your username and password"] = "Gotowe. Możesz teraz zalogować się, podając swoją nazwę użytkownika i hasło."; -$a->strings["Post to Email"] = "Prześlij e-mailem"; -$a->strings["Hide your profile details from unknown viewers?"] = "Ukryć szczegóły twojego profilu przed nieznajomymi?"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Wtyczki są wyłączone, ponieważ \"%s\" jest włączone."; -$a->strings["Visible to everybody"] = "Widoczny dla wszystkich"; -$a->strings["Close"] = "Zamknij"; -$a->strings["Enter new password: "] = "Wprowadź nowe hasło:"; -$a->strings["Password can't be empty"] = "Hasło nie może być puste"; -$a->strings["System"] = "System"; -$a->strings["Home"] = "Strona domowa"; -$a->strings["Introductions"] = "Wstępy"; -$a->strings["%s commented on %s's post"] = "%s skomentował wpis %s"; -$a->strings["%s created a new post"] = "%s dodał nowy wpis"; -$a->strings["%s liked %s's post"] = "%s polubił wpis %s"; -$a->strings["%s disliked %s's post"] = "%s nie lubi tych %s postów"; -$a->strings["%s is attending %s's event"] = "%suczestniczy %sw wydarzeniu "; -$a->strings["%s is not attending %s's event"] = "%snie uczestniczy %s w wydarzeniu "; -$a->strings["%s may attend %s's event"] = "%smoże uczestniczyć %s w wydarzeniu"; -$a->strings["%s is now friends with %s"] = "%s jest teraz znajomym %s"; -$a->strings["Friend Suggestion"] = "Propozycja znajomych"; -$a->strings["Friend/Connect Request"] = "Prośba o dodanie do przyjaciół/powiązanych"; -$a->strings["New Follower"] = "Nowy obserwujący"; -$a->strings["Birthday:"] = "Urodziny:"; -$a->strings["YYYY-MM-DD or MM-DD"] = "RRRR-MM-DD lub MM-DD"; -$a->strings["never"] = "nigdy"; -$a->strings["less than a second ago"] = "mniej niż sekundę temu"; -$a->strings["year"] = "rok"; -$a->strings["years"] = "lata"; -$a->strings["months"] = "miesiące"; -$a->strings["weeks"] = "tygodnie"; -$a->strings["days"] = "dni"; -$a->strings["hour"] = "godzina"; -$a->strings["hours"] = "godziny"; -$a->strings["minute"] = "minuta"; -$a->strings["minutes"] = "minuty"; -$a->strings["second"] = "sekunda"; -$a->strings["seconds"] = "sekundy"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s temu"; -$a->strings["view full size"] = "Zobacz w pełnym wymiarze"; -$a->strings["Image/photo"] = "Obrazek/zdjęcie"; -$a->strings["%2\$s %3\$s"] = "%2\$s%3\$s"; -$a->strings["$1 wrote:"] = "$1 napisał:"; -$a->strings["Encrypted content"] = "Szyfrowana treść"; -$a->strings["Invalid source protocol"] = "Nieprawidłowy protokół źródłowy"; -$a->strings["Invalid link protocol"] = "Niepoprawny link protokołu"; -$a->strings["Nothing new here"] = "Brak nowych zdarzeń"; -$a->strings["Clear notifications"] = "Wyczyść powiadomienia"; -$a->strings["Personal notes"] = "Notatki"; -$a->strings["Your personal notes"] = "Twoje prywatne notatki"; -$a->strings["Sign in"] = "Zaloguj się"; -$a->strings["Home Page"] = "Strona startowa"; -$a->strings["Create an account"] = "Załóż konto"; -$a->strings["Help and documentation"] = "Pomoc i dokumentacja"; -$a->strings["Apps"] = "Aplikacje"; -$a->strings["Addon applications, utilities, games"] = "Wtyczki, aplikacje, narzędzia, gry"; -$a->strings["Search site content"] = "Przeszukaj zawartość strony"; -$a->strings["Community"] = "Społeczność"; -$a->strings["Conversations on this and other servers"] = "Rozmowy na tym i innych serwerach"; -$a->strings["Directory"] = "Katalog"; -$a->strings["People directory"] = "Katalog osób"; -$a->strings["Information about this friendica instance"] = "Informacje o tej instancji friendica"; -$a->strings["Network Reset"] = "Resetowanie sieci"; -$a->strings["Load Network page with no filters"] = "Załaduj stronę sieci bez filtrów"; -$a->strings["Friend Requests"] = "Prośba o przyjęcie do grona znajomych"; -$a->strings["See all notifications"] = "Zobacz wszystkie powiadomienia"; -$a->strings["Mark all system notifications seen"] = "Oznacz wszystkie powiadomienia systemu jako przeczytane"; -$a->strings["Inbox"] = "Odebrane"; -$a->strings["Outbox"] = "Wysłane"; -$a->strings["Manage"] = "Zarządzaj"; -$a->strings["Manage other pages"] = "Zarządzaj innymi stronami"; -$a->strings["Profiles"] = "Profile"; -$a->strings["Manage/Edit Profiles"] = "Zarządzaj/Edytuj profile"; -$a->strings["Site setup and configuration"] = "Konfiguracja i ustawienia instancji"; -$a->strings["Navigation"] = "Nawigacja"; -$a->strings["Site map"] = "Mapa strony"; -$a->strings["General Features"] = "Funkcje ogólne"; -$a->strings["Multiple Profiles"] = "Wiele profili"; -$a->strings["Ability to create multiple profiles"] = "Możliwość tworzenia wielu profili"; -$a->strings["Photo Location"] = "Lokalizacja zdjęcia"; -$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Metadane zdjęć są zwykle usuwane. Wyodrębnia to położenie (jeśli jest obecne) przed usunięciem metadanych i łączy je z mapą."; -$a->strings["Export Public Calendar"] = "Eksportuj kalendarz publiczny"; -$a->strings["Ability for visitors to download the public calendar"] = "Możliwość pobierania kalendarza publicznego przez odwiedzających"; -$a->strings["Post Composition Features"] = "Ustawienia funkcji postów"; -$a->strings["Post Preview"] = "Podgląd posta"; -$a->strings["Allow previewing posts and comments before publishing them"] = "Zezwalaj na podgląd postów i komentarzy przed ich opublikowaniem"; -$a->strings["Auto-mention Forums"] = "Automatyczne wymienianie forów"; -$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Dodaj/usuń wzmiankę, gdy strona forum zostanie wybrana/cofnięta w oknie ACL."; -$a->strings["Network Sidebar Widgets"] = "Widgety paska bocznego sieci"; -$a->strings["Search by Date"] = "Szukanie wg daty"; -$a->strings["Ability to select posts by date ranges"] = "Wybierz wpisy według zakresów dat"; -$a->strings["List Forums"] = "Lista forów"; -$a->strings["Enable widget to display the forums your are connected with"] = "Włącz widżet, aby wyświetlić fora, z którymi jesteś połączony"; -$a->strings["Group Filter"] = "Filtr grupowy"; -$a->strings["Enable widget to display Network posts only from selected group"] = "Włącz widżet, aby wyświetlać posty sieciowe tylko z wybranej grupy"; -$a->strings["Network Filter"] = "Filtr sieciowy"; -$a->strings["Enable widget to display Network posts only from selected network"] = "Włącz widżet, aby wyświetlać posty sieciowe tylko z wybranej sieci"; -$a->strings["Save search terms for re-use"] = "Zapisz wyszukiwane hasła do ponownego użycia"; -$a->strings["Network Tabs"] = "Etykiety sieciowe"; -$a->strings["Network Personal Tab"] = "Etykieta Sieć Osobista"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Włącz etykietę, by wyświetlać posty tylko z sieci, z którymi współpracujesz"; -$a->strings["Network New Tab"] = "Etykieta Nowe Posty Sieciowe"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Włącz etykietę, aby wyświetlić tylko nowe posty sieciowe (z ostatnich 12 godzin)"; -$a->strings["Network Shared Links Tab"] = "Etykieta Udostępnianie Łącz Sieciowych"; -$a->strings["Enable tab to display only Network posts with links in them"] = "Włącz etykietę, aby wyświetlić tylko posty sieciowe z łączami do nich"; -$a->strings["Post/Comment Tools"] = "Narzędzia post/komentarz"; -$a->strings["Multiple Deletion"] = "Wielokrotne Usuwanie"; -$a->strings["Select and delete multiple posts/comments at once"] = "Wybierz i usuń wiele postów/komentarzy jednocześnie"; -$a->strings["Edit Sent Posts"] = "Edytuj wysłane posty"; -$a->strings["Edit and correct posts and comments after sending"] = "Edycja i poprawianie wpisów i komentarzy po wysłaniu"; -$a->strings["Tagging"] = "Tagowanie"; -$a->strings["Ability to tag existing posts"] = "Możliwość oznaczania istniejących postów"; -$a->strings["Post Categories"] = "Kategorie postów"; -$a->strings["Add categories to your posts"] = "Dodaj kategorie do twoich postów"; -$a->strings["Saved Folders"] = "Zapisane foldery"; -$a->strings["Ability to file posts under folders"] = "Możliwość przesyłania postów do folderów"; -$a->strings["Dislike Posts"] = "Nie lubię Postów"; -$a->strings["Ability to dislike posts/comments"] = "Możliwa niechęć do postów/komentarzy"; -$a->strings["Star Posts"] = "Oznacz posty gwiazdką"; -$a->strings["Ability to mark special posts with a star indicator"] = "Oznacz specjalne posty gwiazdką"; -$a->strings["Mute Post Notifications"] = "Ignoruj ​​powiadomienia pocztą"; -$a->strings["Ability to mute notifications for a thread"] = "Ignoruj powiadomienia dla wątku"; -$a->strings["Advanced Profile Settings"] = "Zaawansowane ustawienia profilu"; -$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Wyświetlaj publiczne fora społeczności na stronie profilu zaawansowanego"; -$a->strings["Tag Cloud"] = "Chmura tagów"; -$a->strings["Provide a personal tag cloud on your profile page"] = "Podaj osobistą chmurę tagów na stronie profilu"; -$a->strings["Display Membership Date"] = "Wyświetl datę członkostwa"; -$a->strings["Display membership date in profile"] = "Wyświetl datę członkostwa w profilu"; -$a->strings["Embedding disabled"] = "Osadzanie wyłączone"; -$a->strings["Embedded content"] = "Osadzona zawartość"; -$a->strings["Export"] = "Eksport"; -$a->strings["Export calendar as ical"] = "Wyeksportuj kalendarz jako ical"; -$a->strings["Export calendar as csv"] = "Eksportuj kalendarz jako csv"; -$a->strings["Add New Contact"] = "Dodaj nowy kontakt"; -$a->strings["Enter address or web location"] = "Wpisz adres lub lokalizację sieciową"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Przykład: bob@przykład.com, http://przykład.com/barbara"; -$a->strings["%d invitation available"] = [ - 0 => "%d zaproszenie dostępne", - 1 => "%d zaproszeń dostępnych", - 2 => "%d zaproszenia dostępne", - 3 => "%d zaproszenia dostępne", -]; -$a->strings["Find People"] = "Znajdź ludzi"; -$a->strings["Enter name or interest"] = "Wpisz nazwę lub zainteresowanie"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Przykład: Jan Kowalski, Wędkarstwo"; -$a->strings["Random Profile"] = "Domyślny profil"; -$a->strings["View Global Directory"] = "Wyświetl globalny katalog"; -$a->strings["Networks"] = "Sieci"; -$a->strings["All Networks"] = "Wszystkie Sieci"; -$a->strings["Everything"] = "Wszystko"; -$a->strings["Categories"] = "Kategorie"; -$a->strings["%d contact in common"] = [ - 0 => "", - 1 => "", - 2 => "", - 3 => "", -]; -$a->strings["Frequently"] = "Często"; -$a->strings["Hourly"] = "Co godzinę"; -$a->strings["Twice daily"] = "Dwa razy dziennie"; -$a->strings["Daily"] = "Codziennie"; -$a->strings["Weekly"] = "Co tydzień"; -$a->strings["Monthly"] = "Miesięczne"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = "Google+"; -$a->strings["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Łącze Diaspora"; -$a->strings["GNU Social Connector"] = "GNU Połączenie Społecznościowe"; -$a->strings["pnut"] = "orzech"; -$a->strings["App.net"] = "App.net"; -$a->strings["Male"] = "Mężczyzna"; -$a->strings["Female"] = "Kobieta"; -$a->strings["Currently Male"] = "Obecnie mężczyzna"; -$a->strings["Currently Female"] = "Obecnie Kobieta"; -$a->strings["Mostly Male"] = "Głównie mężczyzna"; -$a->strings["Mostly Female"] = "Głównie kobieta"; -$a->strings["Transgender"] = "Transseksualny"; -$a->strings["Intersex"] = "Interseksualne"; -$a->strings["Transsexual"] = "Transseksualny"; -$a->strings["Hermaphrodite"] = "Hermafrodyta"; -$a->strings["Neuter"] = "Rodzaj nijaki"; -$a->strings["Non-specific"] = "Niespecyficzne"; -$a->strings["Other"] = "Inne"; -$a->strings["Males"] = "Mężczyźni"; -$a->strings["Females"] = "Kobiety"; -$a->strings["Gay"] = "Gej"; -$a->strings["Lesbian"] = "Lesbijka"; -$a->strings["No Preference"] = "Brak preferencji"; -$a->strings["Bisexual"] = "Biseksualny"; -$a->strings["Autosexual"] = "Niezidentyfikowany"; -$a->strings["Abstinent"] = "Abstynent"; -$a->strings["Virgin"] = "Dziewica"; -$a->strings["Deviant"] = "Zboczeniec"; -$a->strings["Fetish"] = "Fetysz"; -$a->strings["Oodles"] = "Nadmiar"; -$a->strings["Nonsexual"] = "Nieseksualny"; -$a->strings["Single"] = "Singiel"; -$a->strings["Lonely"] = "Samotny"; -$a->strings["Available"] = "Dostępny"; -$a->strings["Unavailable"] = "Niedostępny"; -$a->strings["Has crush"] = "Ma sympatii"; -$a->strings["Infatuated"] = "Zakochany"; -$a->strings["Dating"] = "Randki"; -$a->strings["Unfaithful"] = "Niewierny"; -$a->strings["Sex Addict"] = "Uzależniony od seksu"; -$a->strings["Friends"] = "Przyjaciele"; -$a->strings["Friends/Benefits"] = "Przyjaciele/Korzyści"; -$a->strings["Casual"] = "Przypadkowy"; -$a->strings["Engaged"] = "Zaręczeni"; -$a->strings["Married"] = "Małżeństwo"; -$a->strings["Imaginarily married"] = "Fikcyjnie w związku małżeńskim"; -$a->strings["Partners"] = "Partnerzy"; -$a->strings["Cohabiting"] = "Konkubinat"; -$a->strings["Common law"] = "Prawo zwyczajowe"; -$a->strings["Happy"] = "Szczęśliwy"; -$a->strings["Not looking"] = "Nie patrzę"; -$a->strings["Swinger"] = "Swinger"; -$a->strings["Betrayed"] = "Zdradzony"; -$a->strings["Separated"] = "W separacji"; -$a->strings["Unstable"] = "Niestabilny"; -$a->strings["Divorced"] = "Rozwiedzeni"; -$a->strings["Imaginarily divorced"] = "Fikcyjnie rozwiedziony/a"; -$a->strings["Widowed"] = "Wdowiec"; -$a->strings["Uncertain"] = "Nieokreślony"; -$a->strings["It's complicated"] = "To skomplikowane"; -$a->strings["Don't care"] = "Nie przejmuj się"; -$a->strings["Ask me"] = "Zapytaj mnie "; -$a->strings["There are no tables on MyISAM."] = "W MyISAM nie ma tabel."; -$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\t\tDeweloperzy friendica wydali niedawno aktualizację %s,\n\t\t\t\tale podczas próby instalacji, coś poszło nie tak.\n\t\t\t\tZostanie to naprawione wkrótce i nie mogę tego zrobić sam. Proszę skontaktować się z \n\t\t\t\tprogramistami friendica, jeśli nie możesz mi pomóc na własną rękę. Moja baza danych może być nieprawidłowa."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "Komunikat o błędzie jest \n[pre]%s[/ pre]"; -$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nWystąpił błąd %d podczas aktualizacji bazy danych:\n%s\n"; -$a->strings["Errors encountered performing database changes: "] = "Napotkane błędy powodujące zmiany w bazie danych:"; -$a->strings[": Database update"] = ": Aktualizacja bazy danych"; -$a->strings["%s: updating %s table."] = "%s: aktualizowanie %s tabeli."; -$a->strings["[no subject]"] = "[bez tematu]"; -$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$suczestniczy %2\$s's %3\$s "; -$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$snie uczestniczy %2\$s's %3\$s "; -$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$smogą uczestniczyć %2\$s's %3\$s "; -$a->strings["Drop Contact"] = "Upuść kontakt"; -$a->strings["Organisation"] = "Organizacja"; -$a->strings["News"] = "Aktualności"; -$a->strings["Forum"] = "Forum"; -$a->strings["Connect URL missing."] = "Brak adresu URL połączenia."; -$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "Nie można dodać kontaktu. Sprawdź odpowiednie poświadczenia sieciowe na stronie Ustawienia -> Sieci społecznościowe."; -$a->strings["This site is not configured to allow communications with other networks."] = "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami"; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Nie znaleziono żadnych kompatybilnych protokołów komunikacyjnych ani źródeł."; -$a->strings["The profile address specified does not provide adequate information."] = "Dany adres profilu nie dostarcza odpowiednich informacji."; -$a->strings["An author or name was not found."] = "Autor lub nazwa nie zostało znalezione."; -$a->strings["No browser URL could be matched to this address."] = "Przeglądarka WWW nie może odnaleźć podanego adresu"; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Nie można dopasować @-stylu Adres identyfikacyjny ze znanym protokołem lub kontaktem e-mail."; -$a->strings["Use mailto: in front of address to force email check."] = "Użyj mailto: przed adresem, aby wymusić sprawdzanie poczty e-mail."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Określony adres profilu należy do sieci, która została wyłączona na tej stronie."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie."; -$a->strings["Unable to retrieve contact information."] = "Nie można otrzymać informacji kontaktowych"; -$a->strings["%s's birthday"] = "Urodziny %s"; -$a->strings["Happy Birthday %s"] = "Urodziny %s"; -$a->strings["Starts:"] = "Rozpoczęcie:"; -$a->strings["Finishes:"] = "Zakończenie:"; -$a->strings["all-day"] = "cały dzień"; -$a->strings["Jun"] = "cze"; -$a->strings["Sept"] = "wrz"; -$a->strings["No events to display"] = "Brak wydarzeń do wyświetlenia"; -$a->strings["l, F j"] = "d, M d "; -$a->strings["Edit event"] = "Edytuj wydarzenie"; -$a->strings["Duplicate event"] = "Zduplikowane zdarzenie"; -$a->strings["Delete event"] = "Usuń wydarzenie"; -$a->strings["D g:i A"] = ""; -$a->strings["g:i A"] = ""; -$a->strings["Show map"] = "Pokaż mapę"; -$a->strings["Hide map"] = "Ukryj mapę"; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Skasowana grupa o tej nazwie została przywrócona. Istniejące uprawnienia do pozycji mogą dotyczyć tej grupy i wszystkich przyszłych członków. Jeśli nie jest to zamierzone, utwórz inną grupę o innej nazwie."; -$a->strings["Default privacy group for new contacts"] = "Domyślne ustawienia prywatności dla nowych kontaktów"; -$a->strings["Everybody"] = "Wszyscy"; -$a->strings["edit"] = "edytuj"; -$a->strings["Edit group"] = "Edytuj grupy"; -$a->strings["Contacts not in any group"] = "Kontakt nie jest w żadnej grupie"; -$a->strings["Create a new group"] = "Stwórz nową grupę"; -$a->strings["Edit groups"] = "Edytuj grupy"; -$a->strings["Requested account is not available."] = "Żądane konto jest niedostępne."; -$a->strings["Edit profile"] = "Edytuj profil"; -$a->strings["Atom feed"] = "Kanał Atom"; -$a->strings["Manage/edit profiles"] = "Zarządzaj profilami"; -$a->strings["g A l F d"] = "g A I F d"; -$a->strings["F d"] = ""; -$a->strings["[today]"] = "[dziś]"; -$a->strings["Birthday Reminders"] = "Przypomnienia o urodzinach"; -$a->strings["Birthdays this week:"] = "Urodziny w tym tygodniu:"; -$a->strings["[No description]"] = "[Brak opisu]"; -$a->strings["Event Reminders"] = "Przypominacze wydarzeń"; -$a->strings["Events this week:"] = "Wydarzenia w tym tygodniu:"; -$a->strings["Member since:"] = "Członek od:"; -$a->strings["j F, Y"] = "d M, R"; -$a->strings["j F"] = "d M"; -$a->strings["Age:"] = "Wiek:"; -$a->strings["for %1\$d %2\$s"] = "od %1\$d %2\$s"; -$a->strings["Religion:"] = "Religia:"; -$a->strings["Hobbies/Interests:"] = "Hobby/Zainteresowania:"; -$a->strings["Contact information and Social Networks:"] = "Informacje kontaktowe i sieci społeczne"; -$a->strings["Musical interests:"] = "Zainteresowania muzyczne:"; -$a->strings["Books, literature:"] = "Książki, literatura:"; -$a->strings["Television:"] = "Telewizja:"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/taniec/kultura/rozrywka"; -$a->strings["Love/Romance:"] = "Miłość/Romans:"; -$a->strings["Work/employment:"] = "Praca/zatrudnienie:"; -$a->strings["School/education:"] = "Szkoła/edukacja:"; -$a->strings["Forums:"] = "Fora:"; -$a->strings["Only You Can See This"] = "Tylko ty możesz to zobaczyć"; -$a->strings["Login failed"] = "Logowanie nieudane"; -$a->strings["Not enough information to authenticate"] = "Za mało informacji do uwierzytelnienia"; -$a->strings["An invitation is required."] = "Wymagane zaproszenie."; -$a->strings["Invitation could not be verified."] = "Zaproszenie niezweryfikowane."; -$a->strings["Invalid OpenID url"] = "Nieprawidłowy adres url OpenID"; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Napotkaliśmy problem podczas logowania z podanym przez nas identyfikatorem OpenID. Sprawdź poprawną pisownię identyfikatora."; -$a->strings["The error message was:"] = "Komunikat o błędzie:"; -$a->strings["Please enter the required information."] = "Wprowadź wymagane informacje"; -$a->strings["Please use a shorter name."] = "Użyj dłuższej nazwy."; -$a->strings["Name too short."] = "Nazwa jest za krótka."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Wydaje mi się, że to nie jest twoje pełne imię (pierwsze imię) i nazwisko."; -$a->strings["Your email domain is not among those allowed on this site."] = "Twoja domena internetowa nie jest obsługiwana na tej stronie."; -$a->strings["Not a valid email address."] = "Niepoprawny adres e mail.."; -$a->strings["Cannot use that email."] = "Nie możesz użyć tego e-maila. "; -$a->strings["Your nickname can only contain a-z, 0-9 and _."] = "Twój pseudonim może zawierać tylko a-z, 0-9 i _."; -$a->strings["Nickname is already registered. Please choose another."] = "Ten login jest zajęty. Wybierz inny."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń."; -$a->strings["An error occurred during registration. Please try again."] = "Wystąpił bład podczas rejestracji, Spróbuj ponownie."; -$a->strings["An error occurred creating your default profile. Please try again."] = "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie."; -$a->strings["An error occurred creating your self contact. Please try again."] = "Wystąpił błąd podczas tworzenia własnego kontaktu. Proszę spróbuj ponownie."; -$a->strings["An error occurred creating your default contact group. Please try again."] = "Wystąpił błąd podczas tworzenia domyślnej grupy kontaktów. Proszę spróbuj ponownie."; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t\t"] = "\n\t\t\tDrodzy %1\$s, \n\t\t\t\tDziękujemy za rejestrację na stronie %2\$s. Twoje konto czeka na zatwierdzenie przez administratora."; -$a->strings["Registration at %s"] = "Rejestracja w %s"; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t"] = "\n\t\t\tDrodzy %1\$s, \n\t\t\t\tDziękujemy za rejestrację na stronie %2\$s. Twoje konto zostało utworzone."; -$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = "\n\t\t\tDane logowania są następuje:\n\t\t\tLokalizacja witryny:\t%3\$s\n\t\t\tNazwa użytkownika:\t\t%1\$s\n\t\t\tHasło:\t\t%5\$s\n\n\t\t\tPo zalogowaniu możesz zmienić hasło do swojego konta na stronie \"Ustawienia\"\n \t\t\tProszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie.\n\n\t\t\tMożesz również dodać podstawowe informacje do swojego domyślnego profilu\n\t\t\t(na stronie \"Profil\"), aby inne osoby mogły łatwo Cię znaleźć.\n\n\t\t\tZalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego,\n\t\t\tdodanie niektórych \"słów kluczowych\" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) - i\n\t\t\tbyć może w jakim kraju mieszkasz; jeśli nie chcesz być bardziej szczegółowy.\n\n\t\t\tW pełni szanujemy Twoje prawo do prywatności i żaden z tych elementów nie jest konieczny.\n\t\t\tJeśli jesteś nowy i nie znasz tutaj nikogo, oni mogą ci pomóc\n\t\t\tmożesz zdobyć nowych interesujących przyjaciół\n\n\t\t\tJeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić w %3\$s/Usuń konto\n\n\t\t\tDziękujemy i Zapraszamy do %2\$s."; -$a->strings["%s is now following %s."] = "%sjest teraz następujące %s. "; -$a->strings["following"] = "następujący"; -$a->strings["%s stopped following %s."] = "%sprzestał śledzić %s. "; -$a->strings["stopped following"] = "przestał śledzić"; -$a->strings["%s\\'s birthday"] = "%s\\'s urodziny"; -$a->strings["Sharing notification from Diaspora network"] = "Wspólne powiadomienie z sieci Diaspora"; -$a->strings["Attachments:"] = "Załączniki:"; -$a->strings["(no subject)"] = "(bez tematu)"; -$a->strings["Create a New Account"] = "Załóż nowe konto"; -$a->strings["Password: "] = "Hasło:"; -$a->strings["Remember me"] = "Zapamiętaj mnie"; -$a->strings["Or login using OpenID: "] = "Lub zaloguj się korzystając z OpenID:"; -$a->strings["Forgot your password?"] = "Zapomniałeś swojego hasła?"; -$a->strings["Website Terms of Service"] = "Warunki korzystania z witryny"; -$a->strings["terms of service"] = "warunki użytkowania"; -$a->strings["Website Privacy Policy"] = "Polityka Prywatności Witryny"; -$a->strings["privacy policy"] = "polityka prywatności"; -$a->strings["Logged out."] = "Wyloguj"; -$a->strings["Privacy Statement"] = "Oświadczenie o prywatności"; -$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = "W momencie rejestracji oraz w celu zapewnienia komunikacji między kontem użytkownika, a jego kontaktami, użytkownik musi podać nazwę wyświetlaną (pseudonim), nazwę użytkownika (przydomek) i działający adres e-mail. Nazwy będą dostępne na stronie profilu konta dla każdego odwiedzającego stronę, nawet jeśli inne szczegóły profilu nie zostaną wyświetlone. Adres e-mail będzie używany tylko do wysyłania powiadomień użytkownika o interakcjach, ale nie będzie wyświetlany w widoczny sposób. Lista kont w katalogu użytkownika węzła lub globalnym katalogu użytkownika jest opcjonalna i może być kontrolowana w ustawieniach użytkownika, nie jest konieczna do komunikacji."; -$a->strings["This data is required for communication and is passed on to the nodes of the communication partners. Users can enter additional private data that may be transmitted to the communication partners accounts."] = "Te dane są wymagane do komunikacji i przekazywane do węzłów partnerów komunikacyjnych. Użytkownicy mogą wprowadzać dodatkowe prywatne dane, które mogą być przesyłane na konta partnerów komunikacyjnych."; -$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent."] = "W dowolnym momencie zalogowany użytkownik może wyeksportować dane swojego konta z ustawień konta. Jeśli użytkownik chce usunąć swoje konto, może to zrobić w %1\$s/usuń mnie. Usunięcie konta będzie trwałe."; -$a->strings["This entry was edited"] = "Ten wpis został zedytowany"; -$a->strings["save to folder"] = "zapisz w folderze"; -$a->strings["I will attend"] = "Będę uczestniczyć"; -$a->strings["I will not attend"] = "Nie będę uczestniczyć"; -$a->strings["I might attend"] = "Mogę wziąć udział"; -$a->strings["add star"] = "dodaj gwiazdkę"; -$a->strings["remove star"] = "anuluj gwiazdkę"; -$a->strings["toggle star status"] = "włącz status gwiazdy"; -$a->strings["starred"] = "gwiazdką"; -$a->strings["ignore thread"] = "zignoruj ​​wątek"; -$a->strings["unignore thread"] = "odignoruj ​​wątek"; -$a->strings["toggle ignore status"] = "przełącz status ignorowania"; -$a->strings["add tag"] = "dodaj tag"; -$a->strings["like"] = "lubię to"; -$a->strings["dislike"] = "nie lubię tego"; -$a->strings["Share this"] = "Udostępnij to"; -$a->strings["share"] = "udostępnij"; -$a->strings["to"] = "do"; -$a->strings["via"] = "przez"; -$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; -$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; -$a->strings["%d comment"] = [ - 0 => " %d komentarz", - 1 => " %d komentarzy", - 2 => " %d komentarzy", - 3 => " %d komentarzy", -]; -$a->strings["Bold"] = "Pogrubienie"; -$a->strings["Italic"] = "Kursywa"; -$a->strings["Underline"] = "Podkreślenie"; -$a->strings["Quote"] = "Cytat"; -$a->strings["Code"] = "Kod"; -$a->strings["Image"] = "Obraz"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Video"; -$a->strings["Delete this item?"] = "Usunąć ten element?"; -$a->strings["show fewer"] = "Pokaż mniej"; -$a->strings["Update %s failed. See error logs."] = "Aktualizacja %s nie powiodła się. Zobacz dziennik błędów."; +$a->strings["greenzero"] = "greenzero"; +$a->strings["purplezero"] = "purplezero"; +$a->strings["easterbunny"] = "Zajączek wielkanocny"; +$a->strings["darkzero"] = "darkzero"; +$a->strings["comix"] = "comix"; +$a->strings["slackr"] = ""; +$a->strings["Variations"] = "Zmiana"; $a->strings["toggle mobile"] = "przełącz na mobilny"; diff --git a/view/templates/field_checkbox.tpl b/view/templates/field_checkbox.tpl index b66cced87..8275d4595 100644 --- a/view/templates/field_checkbox.tpl +++ b/view/templates/field_checkbox.tpl @@ -1,6 +1,8 @@
- + + {{if $field.3}} {{$field.3}} + {{/if}}
diff --git a/view/templates/field_combobox.tpl b/view/templates/field_combobox.tpl index 458655016..876e607cd 100644 --- a/view/templates/field_combobox.tpl +++ b/view/templates/field_combobox.tpl @@ -13,6 +13,8 @@ {{foreach $field.4 as $opt=>$val}}{{/foreach}} - {{$field.3}} + {{if $field.3}} + {{$field.3}} + {{/if}} diff --git a/view/templates/field_custom.tpl b/view/templates/field_custom.tpl index 0b0928402..6649b0ff9 100644 --- a/view/templates/field_custom.tpl +++ b/view/templates/field_custom.tpl @@ -3,5 +3,7 @@
{{$field.2}} - {{$field.3}} + {{if $field.3}} + {{$field.3}} + {{/if}}
diff --git a/view/templates/field_input.tpl b/view/templates/field_input.tpl index 495493f2f..850656bb8 100644 --- a/view/templates/field_input.tpl +++ b/view/templates/field_input.tpl @@ -2,5 +2,7 @@
+ {{if $field.3}} {{$field.3}} + {{/if}}
diff --git a/view/templates/field_intcheckbox.tpl b/view/templates/field_intcheckbox.tpl index 73bdf6041..9c5f04e79 100644 --- a/view/templates/field_intcheckbox.tpl +++ b/view/templates/field_intcheckbox.tpl @@ -3,5 +3,7 @@
+ {{if $field.4}} {{$field.4}} + {{/if}}
diff --git a/view/templates/field_openid.tpl b/view/templates/field_openid.tpl index 062ac6ac6..9a18bbc13 100644 --- a/view/templates/field_openid.tpl +++ b/view/templates/field_openid.tpl @@ -2,5 +2,7 @@
- {{$field.3}} + {{if $field.3}} + {{$field.3}} + {{/if}}
diff --git a/view/templates/field_password.tpl b/view/templates/field_password.tpl index 333ce67c3..4b4d4f2b2 100644 --- a/view/templates/field_password.tpl +++ b/view/templates/field_password.tpl @@ -2,5 +2,7 @@
+ {{if $field.3}} {{$field.3}} + {{/if}}
diff --git a/view/templates/field_radio.tpl b/view/templates/field_radio.tpl index 6b880ed99..1e1d8e0b1 100644 --- a/view/templates/field_radio.tpl +++ b/view/templates/field_radio.tpl @@ -1,5 +1,7 @@
+ {{if $field.3}} {{$field.3}} + {{/if}}
diff --git a/view/templates/field_richtext.tpl b/view/templates/field_richtext.tpl index 67553bb95..bc346ddb0 100644 --- a/view/templates/field_richtext.tpl +++ b/view/templates/field_richtext.tpl @@ -3,5 +3,7 @@
- {{$field.3}} + {{if $field.3}} + {{$field.3}} + {{/if}}
diff --git a/view/templates/field_select.tpl b/view/templates/field_select.tpl index 2d037439d..87a2ab9ff 100644 --- a/view/templates/field_select.tpl +++ b/view/templates/field_select.tpl @@ -5,5 +5,7 @@ - {{$field.3}} + {{if $field.3}} + {{$field.3}} + {{/if}} diff --git a/view/templates/field_select_raw.tpl b/view/templates/field_select_raw.tpl index 4c826a042..147c028ef 100644 --- a/view/templates/field_select_raw.tpl +++ b/view/templates/field_select_raw.tpl @@ -5,5 +5,7 @@ - {{$field.3}} + {{if $field.3}} + {{$field.3}} + {{/if}} diff --git a/view/templates/field_textarea.tpl b/view/templates/field_textarea.tpl index c37537d6e..60594a266 100644 --- a/view/templates/field_textarea.tpl +++ b/view/templates/field_textarea.tpl @@ -3,5 +3,7 @@
- {{$field.3}} + {{if $field.3}} + {{$field.3}} + {{/if}}
diff --git a/view/templates/field_themeselect.tpl b/view/templates/field_themeselect.tpl index 51f6057ae..5f56c187e 100644 --- a/view/templates/field_themeselect.tpl +++ b/view/templates/field_themeselect.tpl @@ -5,6 +5,8 @@ - {{$field.3}} + {{if $field.3}} + {{$field.3}} + {{/if}} {{if $field.5}}
{{/if}} diff --git a/view/templates/field_yesno.tpl b/view/templates/field_yesno.tpl index 155d0488b..7e7c3cc4e 100644 --- a/view/templates/field_yesno.tpl +++ b/view/templates/field_yesno.tpl @@ -10,5 +10,7 @@ {{if $field.4}}{{$field.4.1}}{{else}}ON{{/if}}
- {{$field.3}} + {{if $field.3}} + {{$field.3}} + {{/if}} diff --git a/view/templates/htconfig.tpl b/view/templates/htconfig.tpl index d72307fb5..1325a6177 100644 --- a/view/templates/htconfig.tpl +++ b/view/templates/htconfig.tpl @@ -107,7 +107,7 @@ $a->config['system']['no_regfullname'] = true; //$a->config['system']['block_local_dir'] = false; // Location of the global directory -$a->config['system']['directory'] = 'http://dir.friendica.social'; +$a->config['system']['directory'] = 'https://dir.friendica.social'; // Authentication cookie lifetime, in days $a->config['system']['auth_cookie_lifetime'] = 7; diff --git a/view/templates/install_checks.tpl b/view/templates/install_checks.tpl index 10a197482..f96072911 100644 --- a/view/templates/install_checks.tpl +++ b/view/templates/install_checks.tpl @@ -16,7 +16,13 @@ {{/if}} {{if $check.required}}(required){{/if}} {{if $check.help}} -
{{$check.help}}
+ +
{{$check.help}}
+ {{if $check.error_msg}} +
{{$check.error_msg.head}}
{{$check.error_msg.url}}
+
{{$check.error_msg.msg}}
+ {{/if}} + {{/if}} {{/foreach}} diff --git a/view/templates/login.tpl b/view/templates/login.tpl index e1e8c5f3a..029ebb034 100644 --- a/view/templates/login.tpl +++ b/view/templates/login.tpl @@ -4,11 +4,14 @@
-
{{$login}}
+

{{$login}}

{{include file="field_input.tpl" field=$lname}} {{include file="field_password.tpl" field=$lpassword}} +
{{if $openid}} @@ -17,16 +20,11 @@
{{/if}} - {{include file="field_checkbox.tpl" field=$lremember}} - - -
+ + {{include file="field_checkbox.tpl" field=$lremember}} {{foreach $hiddens as $k=>$v}} @@ -35,5 +33,11 @@ +{{if $register}} + +{{/if}} diff --git a/view/theme/frio/README.md b/view/theme/frio/README.md index 037028ff4..c729d1282 100644 --- a/view/theme/frio/README.md +++ b/view/theme/frio/README.md @@ -37,11 +37,11 @@ Don't blame me too much for ugly code and hacks. Fix it ;-) **Theme - Settings** ![Theme - Settings](https://github.com/rabuzarus/frio/blob/master/img/screenshots/screenshot-settings.png) -**Red schema** -![Red schema](https://github.com/rabuzarus/frio/blob/master/img/screenshots/screenshot-schema-red.png) +**Red scheme** +![Red scheme](https://github.com/rabuzarus/frio/blob/master/img/screenshots/screenshot-scheme-red.png) -**Love Music schema** -![Love Music schema](https://github.com/rabuzarus/frio/blob/master/img/screenshots/screenshot-schema-love-music.png) +**Love Music scheme** +![Love Music scheme](https://github.com/rabuzarus/frio/blob/master/img/screenshots/screenshot-scheme-love-music.png) **frio on mobile** diff --git a/view/theme/frio/config.php b/view/theme/frio/config.php index 9081d9df4..55a653696 100644 --- a/view/theme/frio/config.php +++ b/view/theme/frio/config.php @@ -8,128 +8,134 @@ use Friendica\Core\System; require_once 'view/theme/frio/php/Image.php'; -function theme_post(App $a) { +function theme_post(App $a) +{ if (!local_user()) { return; } if (isset($_POST['frio-settings-submit'])) { - PConfig::set(local_user(), 'frio', 'schema', $_POST["frio_schema"]); - PConfig::set(local_user(), 'frio', 'nav_bg', $_POST["frio_nav_bg"]); - PConfig::set(local_user(), 'frio', 'nav_icon_color', $_POST["frio_nav_icon_color"]); - PConfig::set(local_user(), 'frio', 'link_color', $_POST["frio_link_color"]); - PConfig::set(local_user(), 'frio', 'background_color', $_POST["frio_background_color"]); - PConfig::set(local_user(), 'frio', 'contentbg_transp', $_POST["frio_contentbg_transp"]); - PConfig::set(local_user(), 'frio', 'background_image', $_POST["frio_background_image"]); - PConfig::set(local_user(), 'frio', 'bg_image_option', $_POST["frio_bg_image_option"]); + PConfig::set(local_user(), 'frio', 'scheme', $_POST['frio_scheme']); + PConfig::set(local_user(), 'frio', 'nav_bg', $_POST['frio_nav_bg']); + PConfig::set(local_user(), 'frio', 'nav_icon_color', $_POST['frio_nav_icon_color']); + PConfig::set(local_user(), 'frio', 'link_color', $_POST['frio_link_color']); + PConfig::set(local_user(), 'frio', 'background_color', $_POST['frio_background_color']); + PConfig::set(local_user(), 'frio', 'contentbg_transp', $_POST['frio_contentbg_transp']); + PConfig::set(local_user(), 'frio', 'background_image', $_POST['frio_background_image']); + PConfig::set(local_user(), 'frio', 'bg_image_option', $_POST['frio_bg_image_option']); PConfig::set(local_user(), 'frio', 'css_modified', time()); } } -function theme_admin_post(App $a) { +function theme_admin_post(App $a) +{ if (!local_user()) { return; } if (isset($_POST['frio-settings-submit'])) { - Config::set('frio', 'schema', $_POST["frio_schema"]); - Config::set('frio', 'nav_bg', $_POST["frio_nav_bg"]); - Config::set('frio', 'nav_icon_color', $_POST["frio_nav_icon_color"]); - Config::set('frio', 'link_color', $_POST["frio_link_color"]); - Config::set('frio', 'background_color', $_POST["frio_background_color"]); - Config::set('frio', 'contentbg_transp', $_POST["frio_contentbg_transp"]); - Config::set('frio', 'background_image', $_POST["frio_background_image"]); - Config::set('frio', 'bg_image_option', $_POST["frio_bg_image_option"]); - Config::set('frio', 'login_bg_image', $_POST["frio_login_bg_image"]); - Config::set('frio', 'login_bg_color', $_POST["frio_login_bg_color"]); + Config::set('frio', 'scheme', $_POST['frio_scheme']); + Config::set('frio', 'nav_bg', $_POST['frio_nav_bg']); + Config::set('frio', 'nav_icon_color', $_POST['frio_nav_icon_color']); + Config::set('frio', 'link_color', $_POST['frio_link_color']); + Config::set('frio', 'background_color', $_POST['frio_background_color']); + Config::set('frio', 'contentbg_transp', $_POST['frio_contentbg_transp']); + Config::set('frio', 'background_image', $_POST['frio_background_image']); + Config::set('frio', 'bg_image_option', $_POST['frio_bg_image_option']); + Config::set('frio', 'login_bg_image', $_POST['frio_login_bg_image']); + Config::set('frio', 'login_bg_color', $_POST['frio_login_bg_color']); Config::set('frio', 'css_modified', time()); } } -function theme_content(App $a) { +function theme_content(App $a) +{ if (!local_user()) { return; } $arr = []; - $arr["schema"] = PConfig::get(local_user(), 'frio', 'schema'); - $arr["nav_bg"] = PConfig::get(local_user(), 'frio', 'nav_bg'); - $arr["nav_icon_color"] = PConfig::get(local_user(), 'frio', 'nav_icon_color'); - $arr["link_color"] = PConfig::get(local_user(), 'frio', 'link_color'); - $arr["bgcolor"] = PConfig::get(local_user(), 'frio', 'background_color'); - $arr["contentbg_transp"] = PConfig::get(local_user(), 'frio', 'contentbg_transp'); - $arr["background_image"] = PConfig::get(local_user(), 'frio', 'background_image'); - $arr["bg_image_option"] = PConfig::get(local_user(), 'frio', 'bg_image_option'); + $arr['scheme'] = PConfig::get(local_user(), 'frio', 'scheme', PConfig::get(local_user(), 'frio', 'schema')); + $arr['nav_bg'] = PConfig::get(local_user(), 'frio', 'nav_bg'); + $arr['nav_icon_color'] = PConfig::get(local_user(), 'frio', 'nav_icon_color'); + $arr['link_color'] = PConfig::get(local_user(), 'frio', 'link_color'); + $arr['background_color'] = PConfig::get(local_user(), 'frio', 'background_color'); + $arr['contentbg_transp'] = PConfig::get(local_user(), 'frio', 'contentbg_transp'); + $arr['background_image'] = PConfig::get(local_user(), 'frio', 'background_image'); + $arr['bg_image_option'] = PConfig::get(local_user(), 'frio', 'bg_image_option'); return frio_form($arr); } -function theme_admin(App $a) { +function theme_admin(App $a) +{ if (!local_user()) { return; } $arr = []; - $arr["schema"] = Config::get('frio', 'schema'); - $arr["nav_bg"] = Config::get('frio', 'nav_bg'); - $arr["nav_icon_color"] = Config::get('frio', 'nav_icon_color'); - $arr["link_color"] = Config::get('frio', 'link_color'); - $arr["bgcolor"] = Config::get('frio', 'background_color'); - $arr["contentbg_transp"] = Config::get('frio', 'contentbg_transp'); - $arr["background_image"] = Config::get('frio', 'background_image'); - $arr["bg_image_option"] = Config::get('frio', 'bg_image_option'); - $arr["login_bg_image"] = Config::get('frio', 'login_bg_image'); - $arr["login_bg_color"] = Config::get('frio', 'login_bg_color'); + $arr['scheme'] = Config::get('frio', 'scheme', Config::get('frio', 'scheme')); + $arr['nav_bg'] = Config::get('frio', 'nav_bg'); + $arr['nav_icon_color'] = Config::get('frio', 'nav_icon_color'); + $arr['link_color'] = Config::get('frio', 'link_color'); + $arr['background_color'] = Config::get('frio', 'background_color'); + $arr['contentbg_transp'] = Config::get('frio', 'contentbg_transp'); + $arr['background_image'] = Config::get('frio', 'background_image'); + $arr['bg_image_option'] = Config::get('frio', 'bg_image_option'); + $arr['login_bg_image'] = Config::get('frio', 'login_bg_image'); + $arr['login_bg_color'] = Config::get('frio', 'login_bg_color'); return frio_form($arr); } -function frio_form($arr) { - require_once("view/theme/frio/php/schema.php"); +function frio_form($arr) +{ + require_once 'view/theme/frio/php/scheme.php'; - $scheme_info = get_schema_info($arr["schema"]); - $disable = $scheme_info["overwrites"]; + $scheme_info = get_scheme_info($arr['scheme']); + $disable = $scheme_info['overwrites']; if (!is_array($disable)) { $disable = []; } $scheme_choices = []; - $scheme_choices["---"] = L10n::t("Default"); - $files = glob('view/theme/frio/schema/*.php'); + $scheme_choices['---'] = L10n::t('Custom'); + $files = glob('view/theme/frio/scheme/*.php'); if ($files) { foreach ($files as $file) { - $f = basename($file, ".php"); + $f = basename($file, '.php'); if ($f != 'default') { - $scheme_name = $f; + $scheme_name = ucfirst($f); $scheme_choices[$f] = $scheme_name; } } } - $background_image_help = "" . L10n::t("Note"). ": ".L10n::t("Check image permissions if all users are allowed to visit the image"); + $background_image_help = '' . L10n::t('Note') . ': ' . L10n::t('Check image permissions if all users are allowed to see the image'); $t = get_markup_template('theme_settings.tpl'); $ctx = [ '$submit' => L10n::t('Submit'), '$baseurl' => System::baseUrl(), - '$title' => L10n::t("Theme settings"), - '$schema' => ['frio_schema', L10n::t("Select scheme"), $arr["schema"], '', $scheme_choices], - '$nav_bg' => array_key_exists("nav_bg", $disable) ? "" : ['frio_nav_bg', L10n::t('Navigation bar background color'), $arr['nav_bg'], '', false], - '$nav_icon_color' => array_key_exists("nav_icon_color", $disable) ? "" : ['frio_nav_icon_color', L10n::t('Navigation bar icon color '), $arr['nav_icon_color'], '', false], - '$link_color' => array_key_exists("link_color", $disable) ? "" : ['frio_link_color', L10n::t('Link color'), $arr['link_color'], '', false], - '$bgcolor' => array_key_exists("bgcolor", $disable) ? "" : ['frio_background_color', L10n::t('Set the background color'), $arr['bgcolor'], '', false], - '$contentbg_transp' => array_key_exists("contentbg_transp", $disable) ? "" : ['frio_contentbg_transp', L10n::t("Content background opacity"), ((isset($arr["contentbg_transp"]) && $arr["contentbg_transp"] != "") ? $arr["contentbg_transp"] : 100), ''], - '$background_image' => array_key_exists("background_image", $disable) ? "" : ['frio_background_image', L10n::t('Set the background image'), $arr['background_image'], $background_image_help, false], + '$title' => L10n::t('Theme settings'), + '$scheme' => ['frio_scheme', L10n::t('Select color scheme'), $arr['scheme'], '', $scheme_choices], + '$nav_bg' => array_key_exists('nav_bg', $disable) ? '' : ['frio_nav_bg', L10n::t('Navigation bar background color'), $arr['nav_bg'], '', false], + '$nav_icon_color' => array_key_exists('nav_icon_color', $disable) ? '' : ['frio_nav_icon_color', L10n::t('Navigation bar icon color '), $arr['nav_icon_color'], '', false], + '$link_color' => array_key_exists('link_color', $disable) ? '' : ['frio_link_color', L10n::t('Link color'), $arr['link_color'], '', false], + '$background_color' => array_key_exists('background_color', $disable) ? '' : ['frio_background_color', L10n::t('Set the background color'), $arr['background_color'], '', false], + '$contentbg_transp' => array_key_exists('contentbg_transp', $disable) ? '' : ['frio_contentbg_transp', L10n::t('Content background opacity'), defaults($arr, 'contentbg_transp', 100), ''], + '$background_image' => array_key_exists('background_image', $disable) ? '' : ['frio_background_image', L10n::t('Set the background image'), $arr['background_image'], $background_image_help, false], + '$bg_image_options_title' => L10n::t('Background image style'), '$bg_image_options' => Image::get_options($arr), ]; - if (array_key_exists("login_bg_image", $arr) && !array_key_exists("login_bg_image", $disable)) { - $ctx['$login_bg_image'] = ['frio_login_bg_image', L10n::t('Login page background image'), $arr['login_bg_image'], $background_image_help, false]; - } - if (array_key_exists("login_bg_color", $arr) && !array_key_exists("login_bg_color", $disable)) { - $ctx['$login_bg_color'] = ['frio_login_bg_color', L10n::t('Login page background color'), $arr['login_bg_color'], L10n::t('Leave background image and color empty for theme defaults'), false]; + if (array_key_exists('login_bg_image', $arr) && !array_key_exists('login_bg_image', $disable)) { + $ctx['$login_bg_image'] = ['frio_login_bg_image', L10n::t('Login page background image'), $arr['login_bg_image'], $background_image_help, false]; } + if (array_key_exists('login_bg_color', $arr) && !array_key_exists('login_bg_color', $disable)) { + $ctx['$login_bg_color'] = ['frio_login_bg_color', L10n::t('Login page background color'), $arr['login_bg_color'], L10n::t('Leave background image and color empty for theme defaults'), false]; + } $o = replace_macros($t, $ctx); diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index 3b3e32f75..e1ac4f4da 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -24,9 +24,10 @@ and open the template in the editor. body { padding-top: 110px; - background-color: $bgcolor; + background-color: $background_color; background-image: url("$background_image"); background-size: $background_size_img; + background-repeat: $background_repeat; background-attachment: fixed; color: #777; /*color: #555;*/ @@ -3154,12 +3155,30 @@ section .profile-match-wrapper { * Login page */ #login-submit-wrapper { - display: flex; - flex-wrap: wrap; - justify-content: space-between; - align-items: center; + float: right; } #lost-password-link { flex-grow: 2; } +#login-lost-password-link { + margin-bottom: 10px; + float: right; +} +#div_id_remember { + float: left; +} +#id_password_wrapper { + margin-bottom: unset; +} +#login_openid { + clear: both; +} +#register-link { + color: white; + background: #8ad0a1; + width: 100%; +} +#login-end { + clear: both; +} .mod-home.is-not-singleuser, .mod-login { @@ -3184,12 +3203,15 @@ section .profile-match-wrapper { margin-top: 2.5%; } +.mod-home.is-not-singleuser .login-form > #login-extra-links { + margin-top: 4em; +} + .mod-home.is-not-singleuser .login-form > #login-form label, .mod-login #content #login-form label { color: #eee; } - .mod-home.is-not-singleuser .login-panel-content, .mod-login .login-panel-content { background-color: rgba(255,255,255,.85); @@ -3203,11 +3225,15 @@ section .profile-match-wrapper { } .mod-home.is-not-singleuser .login-form > #login-form, + .mod-home.is-not-singleuser .login-form > #login-extra-links, .mod-login #content #login-form { background-color: #fff; padding: 1em; position: relative; - margin-top: 4em; + } + .mod-home.is-not-singleuser .login-form > #login-extra-links { + margin-top: unset; + background-color: white; } .mod-home.is-not-singleuser .login-form > #login-form label, @@ -3215,7 +3241,7 @@ section .profile-match-wrapper { color: #444; } - .mod-home.is-not-singleuser .login-form > #login-form::before, + .mod-home.is-not-singleuser .login-form::before, .mod-login #content #login-form::before { display: block; position: absolute; @@ -3228,7 +3254,7 @@ section .profile-match-wrapper { z-index: -1; } - .mod-home.is-not-singleuser .login-form > #login-form::after, + .mod-home.is-not-singleuser .login-form::after, .mod-login #content #login-form::after { display: block; position: absolute; diff --git a/view/theme/frio/img/screenshots/screenshot-schema-love-music.png b/view/theme/frio/img/screenshots/screenshot-scheme-love-music.png similarity index 100% rename from view/theme/frio/img/screenshots/screenshot-schema-love-music.png rename to view/theme/frio/img/screenshots/screenshot-scheme-love-music.png diff --git a/view/theme/frio/img/screenshots/screenshot-schema-red.png b/view/theme/frio/img/screenshots/screenshot-scheme-red.png similarity index 100% rename from view/theme/frio/img/screenshots/screenshot-schema-red.png rename to view/theme/frio/img/screenshots/screenshot-scheme-red.png diff --git a/view/theme/frio/php/Image.php b/view/theme/frio/php/Image.php index 2dc0345c7..72026cf02 100644 --- a/view/theme/frio/php/Image.php +++ b/view/theme/frio/php/Image.php @@ -21,14 +21,10 @@ class Image public static function get_options($arr) { $bg_image_options = [ - 'repeat' => [ - 'frio_bg_image_option', L10n::t("Repeat the image"), "repeat", L10n::t("Will repeat your image to fill the background."), ($arr["bg_image_option"] == "repeat")], - 'stretch' => [ - 'frio_bg_image_option', L10n::t("Stretch"), "stretch", L10n::t("Will stretch to width/height of the image."), ($arr["bg_image_option"] == "stretch")], - 'cover' => [ - 'frio_bg_image_option', L10n::t("Resize fill and-clip"), "cover", L10n::t("Resize to fill and retain aspect ratio."), ($arr["bg_image_option"] == "cover")], - 'contain' => [ - 'frio_bg_image_option', L10n::t("Resize best fit"), "contain", L10n::t("Resize to best fit and retain aspect ratio."), ($arr["bg_image_option"] == "contain")], + 'stretch' => ['frio_bg_image_option', L10n::t('Top Banner'), 'stretch', L10n::t('Resize image to the width of the screen and show background color below on long pages.'), ($arr['bg_image_option'] == 'stretch')], + 'cover' => ['frio_bg_image_option', L10n::t('Full screen'), 'cover', L10n::t('Resize image to fill entire screen, clipping either the right or the bottom.'), ($arr['bg_image_option'] == 'cover')], + 'contain' => ['frio_bg_image_option', L10n::t('Single row mosaic'), 'contain', L10n::t('Resize image to repeat it on a single row, either vertical or horizontal.'), ($arr['bg_image_option'] == 'contain')], + 'repeat' => ['frio_bg_image_option', L10n::t('Mosaic'), 'repeat', L10n::t('Repeat image to fill the screen.'), ($arr['bg_image_option'] == 'repeat')], ]; return $bg_image_options; diff --git a/view/theme/frio/php/default.php b/view/theme/frio/php/default.php index 62b98b79c..428d88788 100644 --- a/view/theme/frio/php/default.php +++ b/view/theme/frio/php/default.php @@ -43,10 +43,10 @@ if (!isset($minimal)) { if (is_null($uid)) { $uid = Profile::getThemeUid(); } - $schema = PConfig::get($uid, 'frio', 'schema'); - if (($schema) && ($schema != '---')) { - if (file_exists('view/theme/frio/schema/' . $schema . '.php')) { - $schemefile = 'view/theme/frio/schema/' . $schema . '.php'; + $scheme = PConfig::get($uid, 'frio', 'scheme', PConfig::get($uid, 'frio', 'schema')); + if (($scheme) && ($scheme != '---')) { + if (file_exists('view/theme/frio/scheme/' . $scheme . '.php')) { + $schemefile = 'view/theme/frio/scheme/' . $scheme . '.php'; require_once $schemefile; } } else { diff --git a/view/theme/frio/php/frio_boot.php b/view/theme/frio/php/frio_boot.php index 1f816c5b2..3f8ed1ed0 100644 --- a/view/theme/frio/php/frio_boot.php +++ b/view/theme/frio/php/frio_boot.php @@ -14,24 +14,23 @@ use Friendica\App; * * @todo Check if this is really needed. */ -function load_page(App $a) { - if(isset($_GET["mode"]) && ($_GET["mode"] == "minimal")) { - require "view/theme/frio/minimal.php"; - } elseif((isset($_GET["mode"]) && ($_GET["mode"] == "none"))) { - require "view/theme/frio/none.php"; +function load_page(App $a) +{ + if (isset($_GET['mode']) && ($_GET['mode'] == 'minimal')) { + require 'view/theme/frio/minimal.php'; + } elseif ((isset($_GET['mode']) && ($_GET['mode'] == 'none'))) { + require 'view/theme/frio/none.php'; } else { - $template = 'view/theme/' . current_theme() . '/' - . ((x($a->page,'template')) ? $a->page['template'] : 'default' ) . '.php'; - if(file_exists($template)) - require_once($template); - else - require_once(str_replace('theme/' . current_theme() . '/', '', $template)); + $template = 'view/theme/' . $a->getCurrentTheme() . '/' + . ((x($a->page, 'template')) ? $a->page['template'] : 'default' ) . '.php'; + if (file_exists($template)) { + require_once $template; + } else { + require_once str_replace('theme/' . $a->getCurrentTheme() . '/', '', $template); + } } - - } - /** * @brief Check if page is a modal page * diff --git a/view/theme/frio/php/schema.php b/view/theme/frio/php/schema.php deleted file mode 100644 index 83aad53b7..000000000 --- a/view/theme/frio/php/schema.php +++ /dev/null @@ -1,74 +0,0 @@ - Author Name - * 'description' => Schema description - * 'version' => Schema version - * 'overwrites' => Variables which overwriting custom settings - */ - -use Friendica\Core\PConfig; - -function get_schema_info($schema){ - - $theme = current_theme(); - $themepath = "view/theme/" . $theme . "/"; - $schema = PConfig::get(local_user(),'frio', 'schema'); - - $info=[ - 'name' => $schema, - 'description' => "", - 'author' => [], - 'version' => "", - 'overwrites' => [] - ]; - - if (!is_file($themepath . "schema/" . $schema . ".php")) return $info; - - $f = file_get_contents($themepath . "schema/" . $schema . ".php"); - - $r = preg_match("|/\*.*\*/|msU", $f, $m); - - if ($r){ - $ll = explode("\n", $m[0]); - foreach( $ll as $l ) { - $l = trim($l,"\t\n\r */"); - if ($l!=""){ - list($k,$v) = array_map("trim", explode(":",$l,2)); - $k= strtolower($k); - if ($k=="author"){ - $r=preg_match("|([^<]+)<([^>]+)>|", $v, $m); - if ($r) { - $info['author'][] = ['name'=>$m[1], 'link'=>$m[2]]; - } else { - $info['author'][] = ['name'=>$v]; - } - } elseif ($k == "overwrites") { - $theme_settings = explode(',',str_replace(' ','', $v)); - foreach ($theme_settings as $key => $value) { - $info["overwrites"][$value] = true; - } - } else { - if (array_key_exists($k,$info)){ - $info[$k]=$v; - } - } - - } - } - - } - return $info; -} diff --git a/view/theme/frio/php/scheme.php b/view/theme/frio/php/scheme.php new file mode 100644 index 000000000..538839b2c --- /dev/null +++ b/view/theme/frio/php/scheme.php @@ -0,0 +1,73 @@ + Author Name + * 'description' => Scheme description + * 'version' => Scheme version + * 'overwrites' => Variables which overwriting custom settings + */ +use Friendica\Core\PConfig; + +require_once 'boot.php'; + +function get_scheme_info($scheme) +{ + $theme = get_app()->getCurrentTheme(); + $themepath = 'view/theme/' . $theme . '/'; + $scheme = PConfig::get(local_user(), 'frio', 'scheme', PConfig::get(local_user(), 'frio', 'scheme')); + + $info = [ + 'name' => $scheme, + 'description' => '', + 'author' => [], + 'version' => '', + 'overwrites' => [] + ]; + + if (!is_file($themepath . 'scheme/' . $scheme . '.php')) return $info; + + $f = file_get_contents($themepath . 'scheme/' . $scheme . '.php'); + + $r = preg_match('|/\*.*\*/|msU', $f, $m); + + if ($r) { + $ll = explode("\n", $m[0]); + foreach ($ll as $l) { + $l = trim($l, "\t\n\r */"); + if ($l != '') { + list($k, $v) = array_map('trim', explode(':', $l, 2)); + $k = strtolower($k); + if ($k == 'author') { + $r = preg_match('|([^<]+)<([^>]+)>|', $v, $m); + if ($r) { + $info['author'][] = ['name' => $m[1], 'link' => $m[2]]; + } else { + $info['author'][] = ['name' => $v]; + } + } elseif ($k == 'overwrites') { + $theme_settings = explode(',', str_replace(' ', '', $v)); + foreach ($theme_settings as $key => $value) { + $info['overwrites'][$value] = true; + } + } else { + if (array_key_exists($k, $info)) { + $info[$k] = $v; + } + } + } + } + } + + return $info; +} diff --git a/view/theme/frio/php/standard.php b/view/theme/frio/php/standard.php index edfec573b..64c4544cd 100644 --- a/view/theme/frio/php/standard.php +++ b/view/theme/frio/php/standard.php @@ -16,7 +16,7 @@ -"; + Skip to main content module !== 'install') { PConfig::load($uid, 'frio'); // Load the profile owners pconfig. - $schema = PConfig::get($uid, "frio", "schema"); - $nav_bg = PConfig::get($uid, "frio", "nav_bg"); - $nav_icon_color = PConfig::get($uid, "frio", "nav_icon_color"); - $link_color = PConfig::get($uid, "frio", "link_color"); - $bgcolor = PConfig::get($uid, "frio", "background_color"); - $contentbg_transp = PConfig::get($uid, "frio", "contentbg_transp"); - $background_image = PConfig::get($uid, "frio", "background_image"); - $bg_image_option = PConfig::get($uid, "frio", "bg_image_option"); - $modified = PConfig::get($uid, "frio", "css_modified"); + $scheme = PConfig::get($uid, 'frio', 'scheme', PConfig::get($uid, 'frio', 'schema')); + $nav_bg = PConfig::get($uid, 'frio', 'nav_bg'); + $nav_icon_color = PConfig::get($uid, 'frio', 'nav_icon_color'); + $link_color = PConfig::get($uid, 'frio', 'link_color'); + $background_color = PConfig::get($uid, 'frio', 'background_color'); + $contentbg_transp = PConfig::get($uid, 'frio', 'contentbg_transp'); + $background_image = PConfig::get($uid, 'frio', 'background_image'); + $bg_image_option = PConfig::get($uid, 'frio', 'bg_image_option'); + $modified = PConfig::get($uid, 'frio', 'css_modified'); // There is maybe the case that the user did never modify the theme settings. // In this case we store the present time. @@ -38,17 +38,17 @@ if ($a->module !== 'install') { Config::load('frio'); // Load frios system config. - $schema = Config::get("frio", "schema"); - $nav_bg = Config::get("frio", "nav_bg"); - $nav_icon_color = Config::get("frio", "nav_icon_color"); - $link_color = Config::get("frio", "link_color"); - $bgcolor = Config::get("frio", "background_color"); - $contentbg_transp = Config::get("frio", "contentbg_transp"); - $background_image = Config::get("frio", "background_image"); - $bg_image_option = Config::get("frio", "bg_image_option"); - $login_bg_image = Config::get("frio", "login_bg_image"); - $login_bg_color = Config::get("frio", "login_bg_color"); - $modified = Config::get("frio", "css_modified"); + $scheme = Config::get('frio', 'scheme', Config::get('frio', 'schema')); + $nav_bg = Config::get('frio', 'nav_bg'); + $nav_icon_color = Config::get('frio', 'nav_icon_color'); + $link_color = Config::get('frio', 'link_color'); + $background_color = Config::get('frio', 'background_color'); + $contentbg_transp = Config::get('frio', 'contentbg_transp'); + $background_image = Config::get('frio', 'background_image'); + $bg_image_option = Config::get('frio', 'bg_image_option'); + $login_bg_image = Config::get('frio', 'login_bg_image'); + $login_bg_color = Config::get('frio', 'login_bg_color'); + $modified = Config::get('frio', 'css_modified'); // There is maybe the case that the user did never modify the theme settings. // In this case we store the present time. @@ -59,60 +59,59 @@ if ($a->module !== 'install') { } // Now load the scheme. If a value is changed above, we'll keep the settings -// If not, we'll keep those defined by the schema -// Setting $schema to '' wasn't working for some reason, so we'll check it's +// If not, we'll keep those defined by the scheme +// Setting $scheme to '' wasn't working for some reason, so we'll check it's // not --- like the mobile theme does instead. -// Allow layouts to over-ride the schema. -if (x($_REQUEST, 'schema')) { - $schema = $_REQUEST['schema']; +// Allow layouts to over-ride the scheme. +if (x($_REQUEST, 'scheme')) { + $scheme = $_REQUEST['scheme']; } // Sanitize the data. -$schema = !empty($schema) ? basename($schema) : ""; +$scheme = !empty($scheme) ? basename($scheme) : ''; -if (($schema) && ($schema != '---')) { - if (file_exists('view/theme/frio/schema/' . $schema . '.php')) { - $schemefile = 'view/theme/frio/schema/' . $schema . '.php'; +if (($scheme) && ($scheme != '---')) { + if (file_exists('view/theme/frio/scheme/' . $scheme . '.php')) { + $schemefile = 'view/theme/frio/scheme/' . $scheme . '.php'; require_once $schemefile; } - if (file_exists('view/theme/frio/schema/' . $schema . '.css')) { - $schemecssfile = 'view/theme/frio/schema/' . $schema . '.css'; + if (file_exists('view/theme/frio/scheme/' . $scheme . '.css')) { + $schemecssfile = 'view/theme/frio/scheme/' . $scheme . '.css'; } } -// If we haven't got a schema, load the default. We shouldn't touch this - we +// If we haven't got a scheme, load the default. We shouldn't touch this - we // should leave it for admins to define for themselves. -// default.php and default.css MUST be symlinks to existing schema files. -if (! $schema) { - if (file_exists('view/theme/frio/schema/default.php')) { - $schemefile = 'view/theme/frio/schema/default.php'; +// default.php and default.css MUST be symlinks to existing scheme files. +if (!$scheme) { + if (file_exists('view/theme/frio/scheme/default.php')) { + $schemefile = 'view/theme/frio/scheme/default.php'; require_once $schemefile; } - if (file_exists('view/theme/frio/schema/default.css')) { - $schemecssfile = 'view/theme/frio/schema/default.css'; + if (file_exists('view/theme/frio/scheme/default.css')) { + $schemecssfile = 'view/theme/frio/scheme/default.css'; } } //Set some defaults - we have to do this after pulling owner settings, and we have to check for each setting //individually. If we don't, we'll have problems if a user has set one, but not all options. -$nav_bg = (empty($nav_bg) ? "#708fa0" : $nav_bg); -$nav_icon_color = (empty($nav_icon_color) ? "#fff" : $nav_icon_color); -$link_color = (empty($link_color) ? "#6fdbe8" : $link_color); -$bgcolor = (empty($bgcolor) ? "#ededed" : $bgcolor); +$nav_bg = (empty($nav_bg) ? '#708fa0' : $nav_bg); +$nav_icon_color = (empty($nav_icon_color) ? '#fff' : $nav_icon_color); +$link_color = (empty($link_color) ? '#6fdbe8' : $link_color); +$background_color = (empty($background_color) ? '#ededed' : $background_color); // The background image can not be empty. So we use a dummy jpg if no image was set. $background_image = (empty($background_image) ? 'img/none.jpg' : $background_image); -$modified = (empty($modified) ? time() :$modified); +$modified = (empty($modified) ? time() : $modified); // set a default login bg image if no custom image and no custom bg color are set. if (empty($login_bg_image) && empty($login_bg_color)) { - $login_bg_image = (empty($login_bg_image) ? 'img/login_bg.jpg' : $login_bg_image); + $login_bg_image = 'img/login_bg.jpg'; } -$login_bg_color = (empty($login_bg_color) ? "#ededed" : $login_bg_color); +$login_bg_color = (empty($login_bg_color) ? '#ededed' : $login_bg_color); - -$contentbg_transp = ((isset($contentbg_transp) && $contentbg_transp != "") ? $contentbg_transp : 100); +$contentbg_transp = ((isset($contentbg_transp) && $contentbg_transp != '') ? $contentbg_transp : 100); // Calculate some colors in dependance of existing colors. // Some colors are calculated to don't have too many selection @@ -153,29 +152,35 @@ if (!isset($link_hover_color)) { if (!isset($bg_image_option)) { $bg_image_option = null; } + switch ($bg_image_option) { - case "stretch": - $background_size_img = "100%"; + case 'stretch': + $background_size_img = '100%'; + $background_repeat = 'no-repeat'; break; - case "cover": - $background_size_img ="cover"; + case 'cover': + $background_size_img = 'cover'; + $background_repeat = 'no-repeat'; break; - case "repeat": - $background_size_img = "auto"; + case 'repeat': + $background_size_img = 'auto'; + $background_repeat = 'repeat'; break; - case "contain": - $background_size_img = "contain"; + case 'contain': + $background_size_img = 'contain'; + $background_repeat = 'repeat'; break; default: - $background_size_img = "auto"; + $background_size_img = 'auto'; + $background_repeat = 'no-repeat'; break; } // Convert transparency level from percentage to opacity value. $contentbg_transp = $contentbg_transp / 100; -$options = [ +$options = [ '$nav_bg' => $nav_bg, '$nav_icon_color' => $nav_icon_color, '$nav_icon_hover_color' => $nav_icon_hover_color, @@ -184,10 +189,11 @@ $options = [ '$menu_background_hover_color' => $menu_background_hover_color, '$btn_primary_color' => $nav_icon_color, '$btn_primary_hover_color' => $menu_background_hover_color, - '$bgcolor' => $bgcolor, + '$background_color' => $background_color, '$contentbg_transp' => $contentbg_transp, '$background_image' => $background_image, '$background_size_img' => $background_size_img, + '$background_repeat' => $background_repeat, '$login_bg_image' => $login_bg_image, '$login_bg_color' => $login_bg_color ]; @@ -214,13 +220,13 @@ $etag = md5($css); // Set a header for caching. header('Cache-Control: public'); -header('ETag: "'.$etag.'"'); -header('Last-Modified: '.$modified); +header('ETag: "' . $etag . '"'); +header('Last-Modified: ' . $modified); // Only send the CSS file if it was changed. if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) || isset($_SERVER['HTTP_IF_NONE_MATCH'])) { $cached_modified = gmdate('r', strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE'])); - $cached_etag = str_replace(['"', "-gzip"], ['', ''], + $cached_etag = str_replace(['"', '-gzip'], ['', ''], stripslashes($_SERVER['HTTP_IF_NONE_MATCH'])); if (($cached_modified == $modified) && ($cached_etag == $etag)) { diff --git a/view/theme/frio/templates/field_checkbox.tpl b/view/theme/frio/templates/field_checkbox.tpl index 787a82ebd..1fde3634a 100644 --- a/view/theme/frio/templates/field_checkbox.tpl +++ b/view/theme/frio/templates/field_checkbox.tpl @@ -4,6 +4,8 @@ - \ No newline at end of file + diff --git a/view/theme/frio/templates/field_colorinput.tpl b/view/theme/frio/templates/field_colorinput.tpl index 886d647e9..704db346d 100644 --- a/view/theme/frio/templates/field_colorinput.tpl +++ b/view/theme/frio/templates/field_colorinput.tpl @@ -6,6 +6,8 @@ {{if $field.4}}{{$field.4}}{{/if}} - {{$field.3}} + {{if $field.3}} + {{$field.3}} + {{/if}}
diff --git a/view/theme/frio/templates/field_custom.tpl b/view/theme/frio/templates/field_custom.tpl index 20f529278..158073a64 100644 --- a/view/theme/frio/templates/field_custom.tpl +++ b/view/theme/frio/templates/field_custom.tpl @@ -2,5 +2,7 @@
{{$field.2}} - {{$field.3}} + {{if $field.3}} + {{$field.3}} + {{/if}}
diff --git a/view/theme/frio/templates/field_fileinput.tpl b/view/theme/frio/templates/field_fileinput.tpl index 721a6535f..c5f8ac86d 100644 --- a/view/theme/frio/templates/field_fileinput.tpl +++ b/view/theme/frio/templates/field_fileinput.tpl @@ -6,6 +6,8 @@ {{if $field.4}}{{$field.4}}{{/if}} - {{$field.3}} + {{if $field.3}} + {{$field.3}} + {{/if}}
diff --git a/view/theme/frio/templates/field_input.tpl b/view/theme/frio/templates/field_input.tpl index bbd7535e5..62a7d72e8 100644 --- a/view/theme/frio/templates/field_input.tpl +++ b/view/theme/frio/templates/field_input.tpl @@ -2,6 +2,8 @@
- {{$field.3}} + {{if $field.3}} + {{$field.3}} + {{/if}}
diff --git a/view/theme/frio/templates/field_intcheckbox.tpl b/view/theme/frio/templates/field_intcheckbox.tpl index 8863d14c4..f898c87fa 100644 --- a/view/theme/frio/templates/field_intcheckbox.tpl +++ b/view/theme/frio/templates/field_intcheckbox.tpl @@ -2,6 +2,8 @@
- {{$field.4}} + {{if $field.4}} + {{$field.4}} + {{/if}}
diff --git a/view/theme/frio/templates/field_openid.tpl b/view/theme/frio/templates/field_openid.tpl index 8081f9cf1..66f8c9e80 100644 --- a/view/theme/frio/templates/field_openid.tpl +++ b/view/theme/frio/templates/field_openid.tpl @@ -2,6 +2,8 @@
- {{$field.3}} + {{if $field.3}} + {{$field.3}} + {{/if}}
diff --git a/view/theme/frio/templates/field_password.tpl b/view/theme/frio/templates/field_password.tpl index 31defaf33..7bef420a1 100644 --- a/view/theme/frio/templates/field_password.tpl +++ b/view/theme/frio/templates/field_password.tpl @@ -2,6 +2,8 @@
- {{$field.3}} + {{if $field.3}} + {{$field.3}} + {{/if}}
diff --git a/view/theme/frio/templates/field_radio.tpl b/view/theme/frio/templates/field_radio.tpl index 42c145e3a..725e1c96a 100644 --- a/view/theme/frio/templates/field_radio.tpl +++ b/view/theme/frio/templates/field_radio.tpl @@ -4,7 +4,9 @@ - \ No newline at end of file + diff --git a/view/theme/frio/templates/field_select.tpl b/view/theme/frio/templates/field_select.tpl index 9c0315121..594b91002 100644 --- a/view/theme/frio/templates/field_select.tpl +++ b/view/theme/frio/templates/field_select.tpl @@ -4,5 +4,7 @@ - {{$field.3}} - \ No newline at end of file + {{if $field.3}} + {{$field.3}} + {{/if}} + diff --git a/view/theme/frio/templates/field_select_raw.tpl b/view/theme/frio/templates/field_select_raw.tpl index d4f476860..52b63079c 100644 --- a/view/theme/frio/templates/field_select_raw.tpl +++ b/view/theme/frio/templates/field_select_raw.tpl @@ -4,5 +4,7 @@ - {{$field.3}} - \ No newline at end of file + {{if $field.3}} + {{$field.3}} + {{/if}} + diff --git a/view/theme/frio/templates/field_textarea.tpl b/view/theme/frio/templates/field_textarea.tpl index 8ef56babb..1aea484de 100644 --- a/view/theme/frio/templates/field_textarea.tpl +++ b/view/theme/frio/templates/field_textarea.tpl @@ -2,6 +2,8 @@
- {{$field.3}} + {{if $field.3}} + {{$field.3}} + {{/if}}
diff --git a/view/theme/frio/templates/field_themeselect.tpl b/view/theme/frio/templates/field_themeselect.tpl index 3b2cb780c..fc1f7243a 100644 --- a/view/theme/frio/templates/field_themeselect.tpl +++ b/view/theme/frio/templates/field_themeselect.tpl @@ -5,6 +5,8 @@ + {{if $field.3}} {{$field.3}} + {{/if}} {{if $field.5=="preview"}}
{{/if}} - \ No newline at end of file + diff --git a/view/theme/frio/templates/field_yesno.tpl b/view/theme/frio/templates/field_yesno.tpl index 85096c70e..47649fe67 100644 --- a/view/theme/frio/templates/field_yesno.tpl +++ b/view/theme/frio/templates/field_yesno.tpl @@ -14,6 +14,8 @@ + {{if $field.3}} {{$field.3}} + {{/if}}
diff --git a/view/theme/frio/templates/login.tpl b/view/theme/frio/templates/login.tpl index aaa42d24b..ae586a3e6 100644 --- a/view/theme/frio/templates/login.tpl +++ b/view/theme/frio/templates/login.tpl @@ -8,6 +8,10 @@
{{include file="field_input.tpl" field=$lname}} {{include file="field_password.tpl" field=$lpassword}} + +
{{if $openid}} @@ -19,10 +23,7 @@ {{include file="field_checkbox.tpl" field=$lremember}}
- {{$lostlink}} -
- {{if $register}}{{$register.desc}}{{/if}}
@@ -32,7 +33,15 @@ {{/foreach}} +
+{{if $register}} + +{{/if}} + diff --git a/view/theme/frio/templates/theme_settings.tpl b/view/theme/frio/templates/theme_settings.tpl index adc2150cf..50a8934d1 100644 --- a/view/theme/frio/templates/theme_settings.tpl +++ b/view/theme/frio/templates/theme_settings.tpl @@ -4,13 +4,13 @@ -{{include file="field_select.tpl" field=$schema}} +{{include file="field_select.tpl" field=$scheme}} {{if $nav_bg}}{{include file="field_colorinput.tpl" field=$nav_bg}}{{/if}} {{if $nav_icon_color}}{{include file="field_colorinput.tpl" field=$nav_icon_color}}{{/if}} {{if $link_color}}{{include file="field_colorinput.tpl" field=$link_color}}{{/if}} -{{if $bgcolor}}{{include file="field_colorinput.tpl" field=$bgcolor}}{{/if}} +{{if $background_color}}{{include file="field_colorinput.tpl" field=$background_color}}{{/if}} {{* The slider for the content opacity - We use no template for this since it is only used at this page *}} {{if $contentbg_transp}} @@ -25,6 +25,7 @@ {{if $background_image}}{{include file="field_fileinput.tpl" field=$background_image}}{{/if}}