]> git.mxchange.org Git - friendica.git/commitdiff
Merge develop into 20180425_-_fix_help_aside
authorrabuzarus <trebor@central-unit>
Mon, 30 Apr 2018 12:56:25 +0000 (14:56 +0200)
committerrabuzarus <trebor@central-unit>
Mon, 30 Apr 2018 12:56:25 +0000 (14:56 +0200)
89 files changed:
.gitignore
boot.php
include/conversation.php
include/dba.php
include/text.php
index.php
mod/admin.php
mod/install.php
mod/network.php
mod/settings.php
src/App.php
src/Core/Addon.php
src/Core/Console/AutomaticInstallation.php
src/Core/Install.php [new file with mode: 0644]
src/Core/Theme.php
src/Model/Item.php
src/Model/Profile.php
src/Protocol/DFRN.php
src/Protocol/Diaspora.php
src/Render/FriendicaSmarty.php
src/Render/FriendicaSmartyEngine.php
src/Util/Network.php
src/Worker/Delivery.php
src/Worker/OnePoll.php
src/Worker/PubSubPublish.php
util/htconfig.vagrant.php
util/messages.po
view/install/style.css
view/lang/fi-fi/messages.po
view/lang/fi-fi/strings.php
view/lang/pl/messages.po
view/lang/pl/strings.php
view/templates/field_checkbox.tpl
view/templates/field_combobox.tpl
view/templates/field_custom.tpl
view/templates/field_input.tpl
view/templates/field_intcheckbox.tpl
view/templates/field_openid.tpl
view/templates/field_password.tpl
view/templates/field_radio.tpl
view/templates/field_richtext.tpl
view/templates/field_select.tpl
view/templates/field_select_raw.tpl
view/templates/field_textarea.tpl
view/templates/field_themeselect.tpl
view/templates/field_yesno.tpl
view/templates/htconfig.tpl
view/templates/install_checks.tpl
view/templates/login.tpl
view/theme/frio/README.md
view/theme/frio/config.php
view/theme/frio/css/style.css
view/theme/frio/img/screenshots/screenshot-schema-love-music.png [deleted file]
view/theme/frio/img/screenshots/screenshot-schema-red.png [deleted file]
view/theme/frio/img/screenshots/screenshot-scheme-love-music.png [new file with mode: 0644]
view/theme/frio/img/screenshots/screenshot-scheme-red.png [new file with mode: 0644]
view/theme/frio/php/Image.php
view/theme/frio/php/default.php
view/theme/frio/php/frio_boot.php
view/theme/frio/php/schema.php [deleted file]
view/theme/frio/php/scheme.php [new file with mode: 0644]
view/theme/frio/php/standard.php
view/theme/frio/schema/love-music.css [deleted file]
view/theme/frio/schema/love-music.php [deleted file]
view/theme/frio/schema/red.php [deleted file]
view/theme/frio/scheme/blue.php [new file with mode: 0644]
view/theme/frio/scheme/love-music.css [new file with mode: 0644]
view/theme/frio/scheme/love-music.php [new file with mode: 0644]
view/theme/frio/scheme/red.php [new file with mode: 0644]
view/theme/frio/style.php
view/theme/frio/templates/field_checkbox.tpl
view/theme/frio/templates/field_colorinput.tpl
view/theme/frio/templates/field_custom.tpl
view/theme/frio/templates/field_fileinput.tpl
view/theme/frio/templates/field_input.tpl
view/theme/frio/templates/field_intcheckbox.tpl
view/theme/frio/templates/field_openid.tpl
view/theme/frio/templates/field_password.tpl
view/theme/frio/templates/field_radio.tpl
view/theme/frio/templates/field_select.tpl
view/theme/frio/templates/field_select_raw.tpl
view/theme/frio/templates/field_textarea.tpl
view/theme/frio/templates/field_themeselect.tpl
view/theme/frio/templates/field_yesno.tpl
view/theme/frio/templates/login.tpl
view/theme/frio/templates/theme_settings.tpl
view/theme/frio/theme.php
view/theme/vier/mobile.css
view/theme/vier/style.css

index 8d86b95875c44d3b384f3f98bce53ee9e8ad2d2a..9e6504184c03c4347f630441b34c0fc8e133c13c 100644 (file)
@@ -9,6 +9,7 @@ include/jquery-1.4.2.min.js
 favicon.*\r
 home.html\r
 addon\r
+*.orig\r
 *~\r
 robots.txt\r
 \r
@@ -57,4 +58,4 @@ venv/
 /view/asset\r
 \r
 #ignore config files from JetBrains\r
-/.idea
\ No newline at end of file
+/.idea\r
index 1ca8b8d8d8ccf720c977887789c6ebd5f8ade8cf..ae2f4b1a06306d484f96ea4d723c8db48f0ec837 100644 (file)
--- 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);
index 41f10959b2c9524974046f907b6e969c50f501c3..0d6f852c83bf7fc53d266b498223df66150b84fa 100644 (file)
@@ -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
+       );
 }
 
 /**
index d2f631c0640d84e936b5466ca4373e5e5f029ebe..1d3b432141d525e015539b5b3a6864f5153749ca 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 
+use Friendica\App;
 use Friendica\Core\L10n;
 use Friendica\Core\System;
 use Friendica\Database\DBM;
@@ -24,7 +25,7 @@ class dba {
        private static $in_transaction = false;
        private static $relation = [];
 
-       public static function connect($serveraddr, $user, $pass, $db, $install = false) {
+       public static function connect($serveraddr, $user, $pass, $db) {
                if (!is_null(self::$db)) {
                        return true;
                }
@@ -51,7 +52,7 @@ class dba {
                        return false;
                }
 
-               if ($install) {
+               if ($a->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");
index 5e189d58f14857f480d4b291e8d513a16dacc0b3..4c9a8864d595d6dca9d10c9f221d5a9e4627542b 100644 (file)
@@ -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']);
                }
index 2f23ea791a6e525009f5109652c911742c18096c..aeda999825bb3569b34186c08dc59fac678e43d4 100644 (file)
--- 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'];
 }
index 7749cff6dcd3be23fb95a79e2ae5f294beb03964..3090376bea5b4453c33b77c3d49676c5280e0c23 100644 (file)
@@ -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');
index eb740c7b64785ad09fa315815d0c4da951344b6d..4596f9a251a552573d31787ff11eeb8016953ece 100644 (file)
@@ -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);
-
-                       $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();
-
+                       dba::connect($dbhost, $dbuser, $dbpass, $dbdata);
 
-                       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 <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-worker'>'Setup the worker'</a>") . 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?" (<tt>$phpath</tt>)":""), $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: ')."<tt>$result</tt>";
-               }
-               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
index a35f0619beb9ecac212dc1255257175f048c1307..87594a77c4b76ade3a5c350f9043c17b1bf53235 100644 (file)
@@ -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;
                }
index aec2b2a0501d8f8eb7a9a12ce045eab88f8ffd76..3102fef2335d82b5d5f06ff17725d4b9bf6034ac 100644 (file)
@@ -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),
index d76351b97ac6a9db60470c9b7d999836ece1f799..f08f6f66dca4a32955e82c0ab2ce718fc9d2fb7e 100644 (file)
@@ -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());
+       }
 }
index 3adc7fc0ec284d0714fa96135a42c8e8ff161287..50247d240f42fbffb1480493273b3416412c59a4 100644 (file)
@@ -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;
                }
 
index 6318b19a88279be8c8db5c4845a8e9a2f3af992a..e888d5a4908cded5b7d018271d24457868329dd5 100644 (file)
@@ -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 (file)
index 0000000..4ebc663
--- /dev/null
@@ -0,0 +1,428 @@
+<?php\r
+/**\r
+ * @file src/Core/Install.php\r
+ */\r
+namespace Friendica\Core;\r
+\r
+use Friendica\BaseObject;\r
+use Friendica\App;\r
+use Friendica\Database\DBStructure;\r
+use Friendica\Object\Image;\r
+use Friendica\Util\Network;\r
+\r
+use Exception;\r
+use DOMDocument;\r
+\r
+/**\r
+ * Contains methods for installation purpose of Friendica\r
+ */\r
+class Install extends BaseObject\r
+{\r
+       /**\r
+        * Sets the install-mode for further methods\r
+        */\r
+       public static function setInstallMode()\r
+       {\r
+               self::getApp()->mode = App::MODE_INSTALL;\r
+       }\r
+\r
+       /**\r
+        * Checks the current installation environment. There are optional and mandatory checks.\r
+        *\r
+        * @param string $phpath Optional path to the PHP binary (Default is 'php')\r
+        *\r
+        * @return array First element is a list of all checks and their results,\r
+        *               the second element is a list of passed checks\r
+        */\r
+       public static function check($phpath = 'php')\r
+       {\r
+               $checks = [];\r
+\r
+               self::checkFunctions($checks);\r
+\r
+               self::checkImagick($checks);\r
+\r
+               self::checkHtConfig($checks);\r
+\r
+               self::checkSmarty3($checks);\r
+\r
+               self::checkKeys($checks);\r
+\r
+               self::checkPHP($phpath, $checks);\r
+\r
+               self::checkHtAccess($checks);\r
+\r
+               $checkspassed = array_reduce($checks,\r
+                       function ($v, $c) {\r
+                               if ($c['require']) {\r
+                                       $v = $v && $c['status'];\r
+                               }\r
+                               return $v;\r
+                       },\r
+                       true);\r
+\r
+               return array($checks, $checkspassed);\r
+       }\r
+\r
+       /**\r
+        * Executes the installation of Friendica in the given environment.\r
+        * - Creates `.htconfig.php`\r
+        * - Installs Database Structure\r
+        *\r
+        * @param string        $urlpath        Path based on the URL of Friendica (e.g. '/friendica')\r
+        * @param string        $dbhost         Hostname/IP of the Friendica Database\r
+        * @param string        $dbuser         Username of the Database connection credentials\r
+        * @param string        $dbpass         Password of the Database connection credentials\r
+        * @param string        $dbdata         Name of the Database\r
+        * @param string        $phpath         Path to the PHP-Binary (e.g. 'php' or '/usr/bin/php')\r
+        * @param string        $timezone       Timezone of the Friendica Installaton (e.g. 'Europe/Berlin')\r
+        * @param string        $language       2-letter ISO 639-1 code (eg. 'en')\r
+        * @param string        $adminmail      Mail-Adress of the administrator\r
+        * @param int           $rino           Rino-enabled (1 = true, 0 = false)\r
+        */\r
+       public static function install($urlpath, $dbhost, $dbuser, $dbpass, $dbdata, $phpath, $timezone, $language, $adminmail, $rino = 1)\r
+       {\r
+               $tpl = get_markup_template('htconfig.tpl');\r
+               $txt = replace_macros($tpl,[\r
+                       '$dbhost' => $dbhost,\r
+                       '$dbuser' => $dbuser,\r
+                       '$dbpass' => $dbpass,\r
+                       '$dbdata' => $dbdata,\r
+                       '$timezone' => $timezone,\r
+                       '$language' => $language,\r
+                       '$urlpath' => $urlpath,\r
+                       '$phpath' => $phpath,\r
+                       '$adminmail' => $adminmail,\r
+                       '$rino' => $rino\r
+               ]);\r
+\r
+               $result = file_put_contents('.htconfig.php', $txt);\r
+               if (! $result) {\r
+                       self::getApp()->data['txt'] = $txt;\r
+               }\r
+\r
+               $errors = self::installDatabaseStructure();\r
+\r
+               if ($errors) {\r
+                       self::getApp()->data['db_failed'] = $errors;\r
+               } else {\r
+                       self::getApp()->data['db_installed'] = true;\r
+               }\r
+       }\r
+\r
+       /**\r
+        * Adds new checks to the array $checks\r
+        *\r
+        * @param array $checks The list of all checks (by-ref parameter!)\r
+        * @param string $title The title of the current check\r
+        * @param bool $status 1 = check passed, 0 = check not passed\r
+        * @param bool $required 1 = check is mandatory, 0 = check is optional\r
+        * @param string $help A help-string for the current check\r
+        * @param string $error_msg Optional. A error message, if the current check failed\r
+        */\r
+       private static function addCheck(&$checks, $title, $status, $required, $help, $error_msg = "")\r
+       {\r
+               $checks[] = [\r
+                       'title' => $title,\r
+                       'status' => $status,\r
+                       'required' => $required,\r
+                       'help' => $help,\r
+                       'error_msg' => $error_msg,\r
+               ];\r
+       }\r
+\r
+       /**\r
+        * PHP Check\r
+        *\r
+        * Checks the PHP environment.\r
+        *\r
+        * - Checks if a PHP binary is available\r
+        * - Checks if it is the CLI version\r
+        * - Checks if "register_argc_argv" is enabled\r
+        *\r
+        * @param string $phpath Optional. The Path to the PHP-Binary\r
+        * @param array $checks The list of all checks (by-ref parameter!)\r
+        */\r
+       public static function checkPHP(&$phpath, &$checks)\r
+       {\r
+               $passed = $passed2 = $passed3 = false;\r
+               if (strlen($phpath)) {\r
+                       $passed = file_exists($phpath);\r
+               } else {\r
+                       $phpath = trim(shell_exec('which php'));\r
+                       $passed = strlen($phpath);\r
+               }\r
+               $help = "";\r
+               if (!$passed) {\r
+                       $help .= L10n::t('Could not find a command line version of PHP in the web server PATH.') . EOL;\r
+                       $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 <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-worker'>'Setup the worker'</a>") . EOL;\r
+                       $help .= EOL . EOL;\r
+                       $tpl = get_markup_template('field_input.tpl');\r
+                       $help .= replace_macros($tpl, [\r
+                               '$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.')],\r
+                       ]);\r
+                       $phpath = "";\r
+               }\r
+\r
+               self::addCheck($checks, L10n::t('Command line PHP').($passed?" (<tt>$phpath</tt>)":""), $passed, false, $help);\r
+\r
+               if ($passed) {\r
+                       $cmd = "$phpath -v";\r
+                       $result = trim(shell_exec($cmd));\r
+                       $passed2 = (strpos($result, "(cli)") !== false);\r
+                       list($result) = explode("\n", $result);\r
+                       $help = "";\r
+                       if (!$passed2) {\r
+                               $help .= L10n::t("PHP executable is not the php cli binary \x28could be cgi-fgci version\x29") . EOL;\r
+                               $help .= L10n::t('Found PHP version: ') . "<tt>$result</tt>";\r
+                       }\r
+                       self::addCheck($checks, L10n::t('PHP cli binary'), $passed2, true, $help);\r
+               }\r
+\r
+               if ($passed2) {\r
+                       $str = autoname(8);\r
+                       $cmd = "$phpath testargs.php $str";\r
+                       $result = trim(shell_exec($cmd));\r
+                       $passed3 = $result == $str;\r
+                       $help = "";\r
+                       if (!$passed3) {\r
+                               $help .= L10n::t('The command line version of PHP on your system does not have "register_argc_argv" enabled.') . EOL;\r
+                               $help .= L10n::t('This is required for message delivery to work.');\r
+                       }\r
+                       self::addCheck($checks, L10n::t('PHP register_argc_argv'), $passed3, true, $help);\r
+               }\r
+       }\r
+\r
+       /**\r
+        * OpenSSL Check\r
+        *\r
+        * Checks the OpenSSL Environment\r
+        *\r
+        * - Checks, if the command "openssl_pkey_new" is available\r
+        *\r
+        * @param array $checks The list of all checks (by-ref parameter!)\r
+        */\r
+       public static function checkKeys(&$checks)\r
+       {\r
+               $help = '';\r
+               $res = false;\r
+\r
+               if (function_exists('openssl_pkey_new')) {\r
+                       $res = openssl_pkey_new([\r
+                               'digest_alg' => 'sha1',\r
+                               'private_key_bits' => 4096,\r
+                               'encrypt_key' => false\r
+                       ]);\r
+               }\r
+\r
+               // Get private key\r
+               if (!$res) {\r
+                       $help .= L10n::t('Error: the "openssl_pkey_new" function on this system is not able to generate encryption keys') . EOL;\r
+                       $help .= L10n::t('If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".');\r
+               }\r
+               self::addCheck($checks, L10n::t('Generate encryption keys'), $res, true, $help);\r
+       }\r
+\r
+       /**\r
+        * PHP functions Check\r
+        *\r
+        * Checks the following PHP functions\r
+        * - libCurl\r
+        * - GD Graphics\r
+        * - OpenSSL\r
+        * - PDO or MySQLi\r
+        * - mb_string\r
+        * - XML\r
+        * - iconv\r
+        * - POSIX\r
+        *\r
+        * @param array $checks The list of all checks (by-ref parameter!)\r
+        */\r
+       public static function checkFunctions(&$checks)\r
+       {\r
+               $ck_funcs = [];\r
+               self::addCheck($ck_funcs, L10n::t('libCurl PHP module'), true, true, "");\r
+               self::addCheck($ck_funcs, L10n::t('GD graphics PHP module'), true, true, "");\r
+               self::addCheck($ck_funcs, L10n::t('OpenSSL PHP module'), true, true, "");\r
+               self::addCheck($ck_funcs, L10n::t('PDO or MySQLi PHP module'), true, true, "");\r
+               self::addCheck($ck_funcs, L10n::t('mb_string PHP module'), true, true, "");\r
+               self::addCheck($ck_funcs, L10n::t('XML PHP module'), true, true, "");\r
+               self::addCheck($ck_funcs, L10n::t('iconv PHP module'), true, true, "");\r
+               self::addCheck($ck_funcs, L10n::t('POSIX PHP module'), true, true, "");\r
+\r
+               if (function_exists('apache_get_modules')) {\r
+                       if (! in_array('mod_rewrite',apache_get_modules())) {\r
+                               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.'));\r
+                       } else {\r
+                               self::addCheck($ck_funcs, L10n::t('Apache mod_rewrite module'), true, true, "");\r
+                       }\r
+               }\r
+\r
+               if (!function_exists('curl_init')) {\r
+                       $ck_funcs[0]['status'] = false;\r
+                       $ck_funcs[0]['help'] = L10n::t('Error: libCURL PHP module required but not installed.');\r
+               }\r
+               if (!function_exists('imagecreatefromjpeg')) {\r
+                       $ck_funcs[1]['status'] = false;\r
+                       $ck_funcs[1]['help'] = L10n::t('Error: GD graphics PHP module with JPEG support required but not installed.');\r
+               }\r
+               if (!function_exists('openssl_public_encrypt')) {\r
+                       $ck_funcs[2]['status'] = false;\r
+                       $ck_funcs[2]['help'] = L10n::t('Error: openssl PHP module required but not installed.');\r
+               }\r
+               if (!function_exists('mysqli_connect') && !class_exists('pdo')) {\r
+                       $ck_funcs[3]['status'] = false;\r
+                       $ck_funcs[3]['help'] = L10n::t('Error: PDO or MySQLi PHP module required but not installed.');\r
+               }\r
+               if (!function_exists('mysqli_connect') && class_exists('pdo') && !in_array('mysql', PDO::getAvailableDrivers())) {\r
+                       $ck_funcs[3]['status'] = false;\r
+                       $ck_funcs[3]['help'] = L10n::t('Error: The MySQL driver for PDO is not installed.');\r
+               }\r
+               if (!function_exists('mb_strlen')) {\r
+                       $ck_funcs[4]['status'] = false;\r
+                       $ck_funcs[4]['help'] = L10n::t('Error: mb_string PHP module required but not installed.');\r
+               }\r
+               if (!function_exists('iconv_strlen')) {\r
+                       $ck_funcs[6]['status'] = false;\r
+                       $ck_funcs[6]['help'] = L10n::t('Error: iconv PHP module required but not installed.');\r
+               }\r
+               if (!function_exists('posix_kill')) {\r
+                       $ck_funcs[7]['status'] = false;\r
+                       $ck_funcs[7]['help'] = L10n::t('Error: POSIX PHP module required but not installed.');\r
+               }\r
+\r
+               $checks = array_merge($checks, $ck_funcs);\r
+\r
+               // check for XML DOM Documents being able to be generated\r
+               try {\r
+                       $xml = new DOMDocument();\r
+               } catch (Exception $e) {\r
+                       $ck_funcs[5]['status'] = false;\r
+                       $ck_funcs[5]['help'] = L10n::t('Error, XML PHP module required but not installed.');\r
+               }\r
+       }\r
+\r
+       /**\r
+        * ".htconfig.php" - Check\r
+        *\r
+        * Checks if it's possible to create the ".htconfig.php"\r
+        *\r
+        * @param array $checks The list of all checks (by-ref parameter!)\r
+        */\r
+       public static function checkHtConfig(&$checks)\r
+       {\r
+               $status = true;\r
+               $help = "";\r
+               if ((file_exists('.htconfig.php') && !is_writable('.htconfig.php')) ||\r
+                       (!file_exists('.htconfig.php') && !is_writable('.'))) {\r
+\r
+                       $status = false;\r
+                       $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;\r
+                       $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;\r
+                       $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;\r
+                       $help .= L10n::t('You can alternatively skip this procedure and perform a manual installation. Please see the file "INSTALL.txt" for instructions.') . EOL;\r
+               }\r
+\r
+               self::addCheck($checks, L10n::t('.htconfig.php is writable'), $status, false, $help);\r
+\r
+       }\r
+\r
+       /**\r
+        * Smarty3 Template Check\r
+        *\r
+        * Checks, if the directory of Smarty3 is writable\r
+        *\r
+        * @param array $checks The list of all checks (by-ref parameter!)\r
+        */\r
+       public static function checkSmarty3(&$checks)\r
+       {\r
+               $status = true;\r
+               $help = "";\r
+               if (!is_writable('view/smarty3')) {\r
+\r
+                       $status = false;\r
+                       $help = L10n::t('Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering.') . EOL;\r
+                       $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;\r
+                       $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;\r
+                       $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;\r
+               }\r
+\r
+               self::addCheck($checks, L10n::t('view/smarty3 is writable'), $status, true, $help);\r
+       }\r
+\r
+       /**\r
+        * ".htaccess" - Check\r
+        *\r
+        * Checks, if "url_rewrite" is enabled in the ".htaccess" file\r
+        *\r
+        * @param array $checks The list of all checks (by-ref parameter!)\r
+        */\r
+       public static function checkHtAccess(&$checks)\r
+       {\r
+               $status = true;\r
+               $help = "";\r
+               $error_msg = "";\r
+               if (function_exists('curl_init')) {\r
+                       $test = Network::fetchUrlFull(System::baseUrl() . "/install/testrewrite");\r
+\r
+                       $url = normalise_link(System::baseUrl() . "/install/testrewrite");\r
+                       if ($test['body'] != "ok") {\r
+                               $test = Network::fetchUrlFull($url);\r
+                       }\r
+\r
+                       if ($test['body'] != "ok") {\r
+                               $status = false;\r
+                               $help = L10n::t('Url rewrite in .htaccess is not working. Check your server configuration.');\r
+                               $error_msg = [];\r
+                               $error_msg['head'] = L10n::t('Error message from Curl when fetching');\r
+                               $error_msg['url'] = $test['redirect_url'];\r
+                               $error_msg['msg'] = $test['error'];\r
+                       }\r
+                       self::addCheck($checks, L10n::t('Url rewrite is working'), $status, true, $help, $error_msg);\r
+               } else {\r
+                       // cannot check modrewrite if libcurl is not installed\r
+                       /// @TODO Maybe issue warning here?\r
+               }\r
+       }\r
+\r
+       /**\r
+        * Imagick Check\r
+        *\r
+        * Checks, if the imagick module is available\r
+        *\r
+        * @param array $checks The list of all checks (by-ref parameter!)\r
+        */\r
+       public static function checkImagick(&$checks)\r
+       {\r
+               $imagick = false;\r
+               $gif = false;\r
+\r
+               if (class_exists('Imagick')) {\r
+                       $imagick = true;\r
+                       $supported = Image::supportedTypes();\r
+                       if (array_key_exists('image/gif', $supported)) {\r
+                               $gif = true;\r
+                       }\r
+               }\r
+               if ($imagick == false) {\r
+                       self::addCheck($checks, L10n::t('ImageMagick PHP extension is not installed'), $imagick, false, "");\r
+               } else {\r
+                       self::addCheck($checks, L10n::t('ImageMagick PHP extension is installed'), $imagick, false, "");\r
+                       if ($imagick) {\r
+                               self::addCheck($checks, L10n::t('ImageMagick supports GIF'), $gif, false, "");\r
+                       }\r
+               }\r
+       }\r
+\r
+       /**\r
+        * Installs the Database structure\r
+        *\r
+        * @return string A possible error\r
+        */\r
+       public static function installDatabaseStructure()\r
+       {\r
+               $errors = DBStructure::update(false, true, true);\r
+\r
+               return $errors;\r
+       }\r
+}\r
index 9133eae187a4d5505e54e1b439ecf4d981fd118c..c64ed08d3babdd315dd570c041878c89b8ea644d 100644 (file)
@@ -1,7 +1,9 @@
 <?php
+
 /**
  * @file src/Core/Theme.php
  */
+
 namespace Friendica\Core;
 
 use Friendica\Core\System;
@@ -13,177 +15,190 @@ require_once 'boot.php';
  */
 class Theme
 {
-    /**
-     * @brief Parse theme comment in search of theme infos.
-     *
-     * like
-     * \code
-     * ..* Name: My Theme
-     *   * Description: My Cool Theme
-     * . * Version: 1.2.3
-     *   * Author: John <profile url>
-     *   * Maintainer: Jane <profile url>
-     *   *
-     * \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' => false,
-            'unsupported' => false
-        ];
-
-        if (file_exists("view/theme/$theme/experimental"))
-            $info['experimental'] = true;
-        if (file_exists("view/theme/$theme/unsupported"))
-            $info['unsupported'] = true;
-
-        if (!is_file("view/theme/$theme/theme.php")) return $info;
-
-        $a = get_app();
-        $stamp1 = microtime(true);
-        $f = file_get_contents("view/theme/$theme/theme.php");
-        $a->save_timestamp($stamp1, "file");
-
-        $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 == "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;
-    }
-
-    /**
-     * @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');
-    }
-
-    // install and uninstall theme
-    public static function uninstall($theme)
-    {
-        logger("Addons: uninstalling theme " . $theme);
-
-        include_once("view/theme/$theme/theme.php");
-        if (function_exists("{$theme}_uninstall")) {
-            $func = "{$theme}_uninstall";
-            $func();
-        }
-    }
-
-    public static function install($theme)
-    {
-        // silently fail if theme was removed
-
-        if (! file_exists("view/theme/$theme/theme.php")) {
-            return false;
-        }
-
-        logger("Addons: installing theme $theme");
-
-        include_once("view/theme/$theme/theme.php");
-
-        if (function_exists("{$theme}_install")) {
-            $func = "{$theme}_install";
-            $func();
-            return true;
-        } else {
-            logger("Addons: FAILED installing theme $theme");
-            return false;
-        }
-
-    }
-
-    /**
-     * @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 '';
-    }
+       /**
+        * @brief Parse theme comment in search of theme infos.
+        *
+        * like
+        * \code
+        * ..* Name: My Theme
+        *   * Description: My Cool Theme
+        * . * Version: 1.2.3
+        *   * Author: John <profile url>
+        *   * Maintainer: Jane <profile url>
+        *   *
+        * \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")
+               ];
+
+               if (!is_file("view/theme/$theme/theme.php")) {
+                       return $info;
+               }
+
+               $a = get_app();
+               $stamp1 = microtime(true);
+               $theme_file = file_get_contents("view/theme/$theme/theme.php");
+               $a->save_timestamp($stamp1, "file");
+
+               $result = preg_match("|/\*.*\*/|msU", $theme_file, $matches);
+
+               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;
+       }
+
+       /**
+        * @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');
+       }
+
+       // install and uninstall theme
+       public static function uninstall($theme)
+       {
+               logger("Addons: uninstalling theme " . $theme);
+
+               include_once "view/theme/$theme/theme.php";
+               if (function_exists("{$theme}_uninstall")) {
+                       $func = "{$theme}_uninstall";
+                       $func();
+               }
+       }
+
+       public static function install($theme)
+       {
+               // silently fail if theme was removed
+
+               if (!file_exists("view/theme/$theme/theme.php")) {
+                       return false;
+               }
+
+               logger("Addons: installing theme $theme");
+
+               include_once "view/theme/$theme/theme.php";
+
+               if (function_exists("{$theme}_install")) {
+                       $func = "{$theme}_install";
+                       $func();
+                       return true;
+               } else {
+                       logger("Addons: FAILED installing theme $theme");
+                       return false;
+               }
+       }
+
+       /**
+        * @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 = 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 '';
+       }
+
+       /**
+        * @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;
+               }
+
+               return 'view/theme/' . $theme . '/style.css';
+       }
 }
index c16281ae3ea204c5a875e5926936d64e5b9ca55f..54abc49d602b851c0e4b43d6c0d93edde6e231a8 100644 (file)
@@ -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);
+                       }
+               }
        }
 
         /**
index f86fce9b21a61c9348e04955801d76ab6f64c853..8bb519448e32d18a2fd179f7fe881b0668ab86c4 100644 (file)
@@ -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,
index 74975159ea6221db720437b8af13c86f2946fa50..ad7658a7641a8fc8737e94bb019bbf51e2461071 100644 (file)
@@ -1405,27 +1405,29 @@ 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('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 (empty($contact['addr'])) {
+                                       logger('Unable to find contact handle for ' . $contact['id'] . ' - ' . $contact['url']);
+                                       Contact::markForArchival($contact);
+                                       return -21;
+                               }
                        }
 
-                       if (empty($contact['addr'])) {
-                               logger('Unable to find contact handle for ' . $contact['id'] . ' - ' . $contact['url']);
+                       $fcontact = Diaspora::personByHandle($contact['addr']);
+                       if (empty($fcontact)) {
+                               logger('Unable to find contact details for ' . $contact['id'] . ' - ' . $contact['addr']);
                                Contact::markForArchival($contact);
-                               return -21;
+                               return -22;
                        }
                }
 
-               $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);
 
                // Create the endpoint for public posts. This is some WIP and should later be added to the probing
@@ -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;
index 6f03c0df87ad559cd0137034cb2d9d6f0f8d5a93..f4a649b51ccbe4de5740416d87965b64cd8a1edd 100644 (file)
@@ -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)) {
+               if (!DBM::is_result($item)) {
+                       if (empty($orig_author)) {
+                               logger('Empty author for guid ' . $guid . '. Quitting.');
+                               return false;
+                       }
+
                        $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);
+                       $stored = self::storeByGuid($guid, $server);
 
-                       if (!$item_id) {
+                       if (!$stored) {
                                $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);
+                               logger("2nd try: reshared message ".$guid." will be fetched without SSL from the server ".$server);
+                               $stored = self::storeByGuid($guid, $server);
                        }
 
-                       if ($item_id) {
+                       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)) {
index ab19993081a293e972e95769861281a7e11a345d..8c8e637630dd1c37214dd2537d46a951cd805f27 100644 (file)
@@ -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
index 949ac58c82d1f4b1a82c9babeac4acc1a7ea512e..c6e95ee068498ca0505577597057e761f5ac273e 100644 (file)
@@ -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")) {
index 4a11f9259579e31272b57fdfbe9a1c6d363a8212..c1ea6e354765c7d2da1fffbaaf38e0c0aaca34eb 100644 (file)
@@ -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']);
        }
 
        /**
index 0a71e6ce29b4d26de3fd750c65bb274be9e884e0..f874e5f23024069200f284e6fa7edff11655073c 100644 (file)
@@ -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;
-
-               logger('delivery: invoked: '.$cmd.': '.$item_id.' to '.$contact_id, LOGGER_DEBUG);
+       public static function execute($cmd, $item_id, $contact_id)
+       {
+               logger('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'])) {
-                               return;
-                       }
-
-                       $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)) {
+                       $item = dba::selectFirst('item', ['parent'], ['id' => $item_id]);
+                       if (!DBM::is_result($item) || empty($item['parent'])) {
                                return;
                        }
-
-                       $icontacts = null;
-                       $contacts_arr = [];
-                       foreach ($items as $item) {
-                               if (!in_array($item['contact-id'],$contacts_arr)) {
-                                       $contacts_arr[] = intval($item['contact-id']);
+                       $parent_id = intval($item['parent']);
+
+                       $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);
 
-                       // avoid race condition with deleting entries
+                       $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,175 +175,278 @@ class Delivery {
                                break;
 
                        case NETWORK_MAIL:
+                               self::deliverMail($cmd, $contact, $owner, $target_item);
+                               break;
 
-                               if (Config::get('system','dfrn_only')) {
-                                       break;
-                               }
-                               // WARNING: does not currently convert to RFC2047 header encodings, etc.
+                       default:
+                               break;
+               }
 
-                               $addr = $contact['addr'];
-                               if (!strlen($addr)) {
-                                       break;
+               return;
+       }
+
+       /**
+        * @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)
+       {
+               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);
+               }
 
-                               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;
-                                       }
+               logger('Notifier entry: ' . $contact["url"] . ' ' . $target_item["guid"] . ' entry: ' . $atom, LOGGER_DATA);
 
-                                       $local_user = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
-                                               intval($uid)
-                                       );
-                                       if (!count($local_user)) {
-                                               break;
-                                       }
+               $basepath =  implode('/', array_slice(explode('/', $contact['url']), 0, 3));
 
-                                       $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'];
-                                       }
+               // perform local delivery if we are on the same site
 
-                                       $subject  = (($it['title']) ? Email::encodeHeader($it['title'],'UTF-8') : L10n::t("\x28no subject\x29")) ;
+               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;
+                               }
+                       }
 
-                                       // only expose our real email address to true friends
+                       // 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);
 
-                                       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') . ' <noreply@' . $a->get_hostname() . '>' . "\n";
-                                       }
+                       // This should never fail
+                       if (!DBM::is_result($target_importer)) {
+                               return;
+                       }
 
-                                       //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;
+                       // 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;
+               }
 
-                       case NETWORK_DIASPORA:
-                               if ($public_message) {
-                                       $loc = 'public batch '.$contact['batch'];
-                               } else {
-                                       $loc = $contact['name'];
-                               }
+               // 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);
 
-                               logger('delivery: diaspora batch deliver: '.$loc);
+                       $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);
+               }
 
-                               if (Config::get('system','dfrn_only') || !Config::get('system','diaspora_enabled')) {
-                                       break;
-                               }
-                               if ($mail) {
-                                       Diaspora::sendMail($item,$owner,$contact);
-                                       break;
-                               }
+               logger('Delivery to ' . $contact["url"] . ' with guid ' . $target_item["guid"] . ' returns ' . $deliver_status);
 
-                               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;
-                               }
+               if ($deliver_status < 0) {
+                       logger('Delivery failed: queuing message ' . $target_item["guid"] );
+                       Queue::add($contact['id'], NETWORK_DFRN, $atom, false, $target_item['guid']);
+               }
 
-                               logger('delivery: diaspora unknown mode: '.$contact['name']);
+               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);
+               }
+       }
 
-                               break;
+       /**
+        * @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);
 
-                       default:
-                               break;
+               if ($public_message) {
+                       $loc = 'public batch ' . $contact['batch'];
+               } else {
+                       $loc = $contact['addr'];
                }
 
-               return;
+               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);
        }
 
-       private static function getItemContact($item, $contacts)
+       /**
+        * @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 (!count($contacts) || !is_array($item)) {
-                       return false;
+               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;
                }
-               foreach ($contacts as $contact) {
-                       if ($contact['id'] == $item['contact-id']) {
-                               return $contact;
+
+               $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') . ' <noreply@' . self::getApp()->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);
        }
 }
index c1c6fdd1a8da8b2f216044bc2b2eabdcefd60e93..aa3eabf57d039bc861c8df290d26814d336b3c4c 100644 (file)
@@ -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';
                        }
 
index de26eab9c14cee66e9219466c9a5eb42ee2e18f3..bd4aa0390b953b1b952d648254314aee8409730d 100644 (file)
@@ -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();
index 9c96687e71af4b53418c878ef3b5293b42676de4..623b587ef014e84ef0fb341659b83a1bcbf31c48 100644 (file)
@@ -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;
index 36c004bbb096c7b1cc235812b6c64635784c5e87..47ab4a7722f591008a0c9a0a6c872a4318a28d3f 100644 (file)
@@ -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 <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\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
+#: include/conversation.php:1176
 #, php-format
 msgid "%s likes this."
 msgstr ""
 
-#: include/conversation.php:1176
+#: include/conversation.php:1179
 #, php-format
 msgid "%s doesn't like this."
 msgstr ""
 
-#: include/conversation.php:1179
+#: include/conversation.php:1182
 #, php-format
 msgid "%s attends."
 msgstr ""
 
-#: include/conversation.php:1182
+#: include/conversation.php:1185
 #, php-format
 msgid "%s doesn't attend."
 msgstr ""
 
-#: include/conversation.php:1185
+#: 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 "<span  %1$s>%2$d people</span> 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 "<span  %1$s>%2$d people</span> 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 "<span  %1$s>%2$d people</span> 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 "<span  %1$s>%2$d people</span> 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 "<span  %1$s>%2$d people</span> 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 <strong>everybody</strong>"
 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,2347 +1149,2403 @@ 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."
-msgstr ""
-
-#: include/items.php:382
-msgid "Do you really want to delete this item?"
+#: mod/allfriends.php:51
+msgid "No friends to display."
 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"
+#: 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 ""
 
-#: 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."
+#: mod/api.php:85 mod/api.php:107
+msgid "Authorize application connection"
 msgstr ""
 
-#: include/items.php:471
-msgid "Archives"
+#: mod/api.php:86
+msgid "Return to your app and insert this Securty Code:"
 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"
+#: mod/api.php:95
+msgid "Please login to continue."
 msgstr ""
 
-#: src/Model/Item.php:1677
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
+#: 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/Item.php:1682
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
+#: 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/Item.php:1687
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
+#: mod/apps.php:14 index.php:273
+msgid "You must be logged in to use addons. "
 msgstr ""
 
-#: src/Model/Contact.php:657
-msgid "Drop Contact"
+#: mod/apps.php:19
+msgid "Applications"
 msgstr ""
 
-#: src/Model/Contact.php:1060
-msgid "Organisation"
+#: mod/apps.php:22
+msgid "No installed applications."
 msgstr ""
 
-#: src/Model/Contact.php:1063
-msgid "News"
+#: mod/attach.php:15
+msgid "Item not available."
 msgstr ""
 
-#: src/Model/Contact.php:1066
-msgid "Forum"
+#: mod/attach.php:25
+msgid "Item was not found."
 msgstr ""
 
-#: src/Model/Contact.php:1235 mod/dfrn_request.php:345
-msgid "Disallowed profile URL."
+#: mod/common.php:91
+msgid "No contacts in common."
 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"
+#: mod/common.php:140 mod/contacts.php:886
+msgid "Common Friends"
 msgstr ""
 
-#: src/Model/Contact.php:1245
-msgid "Connect URL missing."
+#: mod/credits.php:18
+msgid "Credits"
 msgstr ""
 
-#: src/Model/Contact.php:1254
+#: mod/credits.php:19
 msgid ""
-"The contact could not be added. Please check the relevant network "
-"credentials in your Settings -> Social Networks page."
+"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/Contact.php:1301
-msgid ""
-"This site is not configured to allow communications with other networks."
+#: mod/crepair.php:87
+msgid "Contact settings applied."
 msgstr ""
 
-#: src/Model/Contact.php:1302 src/Model/Contact.php:1316
-msgid "No compatible communication protocols or feeds were discovered."
+#: mod/crepair.php:89
+msgid "Contact update failed."
 msgstr ""
 
-#: src/Model/Contact.php:1314
-msgid "The profile address specified does not provide adequate information."
+#: mod/crepair.php:110 mod/dfrn_confirm.php:131 mod/fsuggest.php:30
+#: mod/fsuggest.php:96
+msgid "Contact not found."
 msgstr ""
 
-#: src/Model/Contact.php:1319
-msgid "An author or name was not found."
+#: mod/crepair.php:114
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
+"information your communications with this contact may stop working."
 msgstr ""
 
-#: src/Model/Contact.php:1322
-msgid "No browser URL could be matched to this address."
+#: mod/crepair.php:115
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
 msgstr ""
 
-#: src/Model/Contact.php:1325
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
+#: mod/crepair.php:129 mod/crepair.php:131
+msgid "No mirroring"
 msgstr ""
 
-#: src/Model/Contact.php:1326
-msgid "Use mailto: in front of address to force email check."
+#: mod/crepair.php:129
+msgid "Mirror as forwarded posting"
 msgstr ""
 
-#: src/Model/Contact.php:1332
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
+#: mod/crepair.php:129 mod/crepair.php:131
+msgid "Mirror as my own posting"
 msgstr ""
 
-#: src/Model/Contact.php:1337
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
+#: mod/crepair.php:144
+msgid "Return to contact editor"
 msgstr ""
 
-#: src/Model/Contact.php:1388
-msgid "Unable to retrieve contact information."
+#: mod/crepair.php:146
+msgid "Refetch contact data"
 msgstr ""
 
-#: src/Model/Contact.php:1537 mod/dfrn_request.php:568 mod/dfrn_confirm.php:661
-msgid "[Name Withheld]"
+#: 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/Contact.php:1605 src/Protocol/DFRN.php:1482
-#, php-format
-msgid "%s's birthday"
+#: mod/crepair.php:149
+msgid "Remote Self"
 msgstr ""
 
-#: src/Model/Contact.php:1606 src/Protocol/DFRN.php:1483
-#, php-format
-msgid "Happy Birthday %s"
+#: mod/crepair.php:152
+msgid "Mirror postings from this contact"
 msgstr ""
 
-#: src/Model/Mail.php:40 src/Model/Mail.php:174
-msgid "[no subject]"
+#: 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:97
-msgid "Requested account is not available."
+#: 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:118 mod/profile.php:37
-msgid "Requested profile is not available."
+#: mod/crepair.php:159
+msgid "Account Nickname"
 msgstr ""
 
-#: src/Model/Profile.php:168 src/Model/Profile.php:399
-#: src/Model/Profile.php:863
-msgid "Edit profile"
+#: mod/crepair.php:160
+msgid "@Tagname - overrides Name/Nickname"
 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
-msgid "Connect"
+#: mod/crepair.php:161
+msgid "Account URL"
 msgstr ""
 
-#: src/Model/Profile.php:336
-msgid "Atom feed"
+#: mod/crepair.php:162
+msgid "Friend Request URL"
 msgstr ""
 
-#: src/Model/Profile.php:372 src/Content/Nav.php:205
-msgid "Profiles"
+#: mod/crepair.php:163
+msgid "Friend Confirm URL"
 msgstr ""
 
-#: src/Model/Profile.php:372
-msgid "Manage/edit profiles"
+#: mod/crepair.php:164
+msgid "Notification Endpoint URL"
 msgstr ""
 
-#: src/Model/Profile.php:379 src/Model/Profile.php:401 mod/profiles.php:777
-msgid "Change profile photo"
+#: mod/crepair.php:165
+msgid "Poll/Feed URL"
 msgstr ""
 
-#: src/Model/Profile.php:380 mod/profiles.php:778
-msgid "Create New Profile"
+#: mod/crepair.php:166
+msgid "New photo from this URL"
 msgstr ""
 
-#: src/Model/Profile.php:389 mod/profiles.php:767
-msgid "Profile Image"
+#: 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:392 mod/profiles.php:769
-msgid "visible to everybody"
+#: 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/Profile.php:393 mod/profiles.php:675 mod/profiles.php:770
-msgid "Edit visibility"
-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/fbrowser.php:105 mod/fbrowser.php:136 mod/profile_photo.php:250
+msgid "Upload"
 msgstr ""
 
-#: src/Model/Profile.php:420 src/Model/Profile.php:749 mod/directory.php:151
-#: mod/notifications.php:253
-msgid "Gender:"
+#: mod/fbrowser.php:131
+msgid "Files"
 msgstr ""
 
-#: src/Model/Profile.php:421 src/Model/Profile.php:773 mod/directory.php:152
-msgid "Status:"
+#: 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 ""
 
-#: src/Model/Profile.php:422 src/Model/Profile.php:790 mod/directory.php:153
-msgid "Homepage:"
+#: mod/hcard.php:18
+msgid "No profile"
 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/help.php:48
+msgid "Help:"
 msgstr ""
 
-#: src/Model/Profile.php:424 mod/contacts.php:662
-msgid "XMPP:"
+#: mod/help.php:54 view/theme/vier/theme.php:297 src/Content/Nav.php:134
+msgid "Help"
 msgstr ""
 
-#: src/Model/Profile.php:520 mod/notifications.php:261 mod/contacts.php:71
-msgid "Network:"
+#: mod/help.php:63 index.php:325
+msgid "Page not found."
 msgstr ""
 
-#: src/Model/Profile.php:550 src/Model/Profile.php:643
-msgid "g A l F d"
+#: mod/home.php:39
+#, php-format
+msgid "Welcome to %s"
 msgstr ""
 
-#: src/Model/Profile.php:551
-msgid "F d"
+#: mod/lockview.php:38 mod/lockview.php:46
+msgid "Remote privacy information not available."
 msgstr ""
 
-#: src/Model/Profile.php:608 src/Model/Profile.php:707
-msgid "[today]"
+#: mod/lockview.php:55
+msgid "Visible to:"
 msgstr ""
 
-#: src/Model/Profile.php:619
-msgid "Birthday Reminders"
+#: mod/maintenance.php:24
+msgid "System down for maintenance"
 msgstr ""
 
-#: src/Model/Profile.php:620
-msgid "Birthdays this week:"
+#: mod/newmember.php:11
+msgid "Welcome to Friendica"
 msgstr ""
 
-#: src/Model/Profile.php:694
-msgid "[No description]"
+#: mod/newmember.php:12
+msgid "New Member Checklist"
 msgstr ""
 
-#: src/Model/Profile.php:721
-msgid "Event Reminders"
+#: 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/Profile.php:722
-msgid "Events this week:"
+#: mod/newmember.php:15
+msgid "Getting Started"
 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/newmember.php:17
+msgid "Friendica Walk-Through"
 msgstr ""
 
-#: src/Model/Profile.php:742 mod/settings.php:1209
-msgid "Full Name:"
+#: mod/newmember.php:17
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to "
+"join."
 msgstr ""
 
-#: src/Model/Profile.php:745
-msgid "Member since:"
+#: 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 ""
 
-#: src/Model/Profile.php:753
-msgid "j F, Y"
+#: mod/newmember.php:21
+msgid "Go to Your Settings"
 msgstr ""
 
-#: src/Model/Profile.php:754
-msgid "j F"
+#: mod/newmember.php:21
+msgid ""
+"On your <em>Settings</em> 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 ""
 
-#: src/Model/Profile.php:762 src/Util/Temporal.php:147
-msgid "Birthday:"
+#: 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 ""
 
-#: src/Model/Profile.php:769
-msgid "Age:"
+#: 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 ""
 
-#: src/Model/Profile.php:782
-#, php-format
-msgid "for %1$d %2$s"
+#: mod/newmember.php:26 mod/profile_photo.php:249 mod/profiles.php:691
+msgid "Upload Profile Photo"
 msgstr ""
 
-#: src/Model/Profile.php:786 mod/profiles.php:694
-msgid "Sexual Preference:"
+#: 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 ""
 
-#: src/Model/Profile.php:794 mod/profiles.php:721
-msgid "Hometown:"
+#: mod/newmember.php:27
+msgid "Edit Your Profile"
 msgstr ""
 
-#: src/Model/Profile.php:798 mod/notifications.php:251 mod/follow.php:174
-#: mod/contacts.php:666
-msgid "Tags:"
+#: mod/newmember.php:27
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown "
+"visitors."
 msgstr ""
 
-#: src/Model/Profile.php:802 mod/profiles.php:722
-msgid "Political Views:"
+#: mod/newmember.php:28
+msgid "Profile Keywords"
 msgstr ""
 
-#: src/Model/Profile.php:806
-msgid "Religion:"
+#: 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 ""
 
-#: src/Model/Profile.php:814
-msgid "Hobbies/Interests:"
+#: mod/newmember.php:30
+msgid "Connecting"
 msgstr ""
 
-#: src/Model/Profile.php:818 mod/profiles.php:726
-msgid "Likes:"
+#: mod/newmember.php:36
+msgid "Importing Emails"
 msgstr ""
 
-#: src/Model/Profile.php:822 mod/profiles.php:727
-msgid "Dislikes:"
+#: 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 ""
 
-#: src/Model/Profile.php:826
-msgid "Contact information and Social Networks:"
+#: mod/newmember.php:39
+msgid "Go to Your Contacts Page"
 msgstr ""
 
-#: src/Model/Profile.php:830
-msgid "Musical interests:"
+#: 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 <em>Add New Contact</em> dialog."
 msgstr ""
 
-#: src/Model/Profile.php:834
-msgid "Books, literature:"
+#: mod/newmember.php:40
+msgid "Go to Your Site's Directory"
 msgstr ""
 
-#: src/Model/Profile.php:838
-msgid "Television:"
+#: mod/newmember.php:40
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
 msgstr ""
 
-#: src/Model/Profile.php:842
-msgid "Film/dance/culture/entertainment:"
+#: mod/newmember.php:41
+msgid "Finding New People"
 msgstr ""
 
-#: src/Model/Profile.php:846
-msgid "Love/Romance:"
+#: 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 ""
 
-#: src/Model/Profile.php:850
-msgid "Work/employment:"
+#: mod/newmember.php:43 src/Model/Group.php:414
+msgid "Groups"
 msgstr ""
 
-#: src/Model/Profile.php:854
-msgid "School/education:"
+#: mod/newmember.php:45
+msgid "Group Your Contacts"
 msgstr ""
 
-#: src/Model/Profile.php:859
-msgid "Forums:"
+#: 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 ""
 
-#: src/Model/Profile.php:868 mod/events.php:531
-msgid "Basic"
+#: mod/newmember.php:48
+msgid "Why Aren't My Posts Public?"
 msgstr ""
 
-#: src/Model/Profile.php:869 mod/events.php:532 mod/admin.php:1351
-#: mod/contacts.php:895
-msgid "Advanced"
+#: 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 ""
 
-#: 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"
+#: mod/newmember.php:52
+msgid "Getting Help"
 msgstr ""
 
-#: src/Model/Profile.php:895 mod/unfollow.php:132 mod/follow.php:186
-#: mod/contacts.php:858
-msgid "Status Messages and Posts"
+#: mod/newmember.php:54
+msgid "Go to the Help Section"
 msgstr ""
 
-#: src/Model/Profile.php:903 mod/contacts.php:866
-msgid "Profile Details"
+#: mod/newmember.php:54
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program "
+"features and resources."
 msgstr ""
 
-#: src/Model/Profile.php:908 src/Content/Nav.php:102 mod/fbrowser.php:34
-#: view/theme/frio/theme.php:261
-msgid "Photos"
+#: 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 ""
 
-#: src/Model/Profile.php:911 mod/photos.php:108
-msgid "Photo Albums"
+#: mod/nogroup.php:43 mod/contacts.php:960
+msgid "Edit contact"
 msgstr ""
 
-#: src/Model/Profile.php:916 src/Model/Profile.php:919 src/Content/Nav.php:103
-#: view/theme/frio/theme.php:262
-msgid "Videos"
+#: mod/nogroup.php:63
+msgid "Contacts who are not members of a group"
 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"
+#: mod/p.php:14
+msgid "Not Extended"
 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"
+#: mod/repair_ostatus.php:18
+msgid "Resubscribing to OStatus contacts"
 msgstr ""
 
-#: src/Model/Profile.php:950 mod/notes.php:52
-msgid "Personal Notes"
+#: mod/repair_ostatus.php:34
+msgid "Error"
 msgstr ""
 
-#: src/Model/Profile.php:953
-msgid "Only You Can See This"
+#: mod/repair_ostatus.php:48 mod/ostatus_subscribe.php:64
+msgid "Done"
 msgstr ""
 
-#: src/Model/Event.php:36 src/Model/Event.php:814 mod/localtime.php:19
-msgid "l F d, Y \\@ g:i A"
+#: mod/repair_ostatus.php:54 mod/ostatus_subscribe.php:88
+msgid "Keep this window open until done."
 msgstr ""
 
-#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419
-#: src/Model/Event.php:882
-msgid "Starts:"
+#: mod/suggest.php:36
+msgid "Do you really want to delete this suggestion?"
 msgstr ""
 
-#: src/Model/Event.php:56 src/Model/Event.php:76 src/Model/Event.php:420
-#: src/Model/Event.php:886
-msgid "Finishes:"
+#: mod/suggest.php:73
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
 msgstr ""
 
-#: src/Model/Event.php:368
-msgid "all-day"
+#: mod/suggest.php:84 mod/suggest.php:104
+msgid "Ignore/Hide"
 msgstr ""
 
-#: src/Model/Event.php:391
-msgid "Jun"
+#: mod/suggest.php:114 view/theme/vier/theme.php:204 src/Content/Widget.php:64
+msgid "Friend Suggestions"
 msgstr ""
 
-#: src/Model/Event.php:394
-msgid "Sept"
+#: 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 ""
 
-#: src/Model/Event.php:412 mod/events.php:400 mod/cal.php:280
-msgid "today"
+#: 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 ""
 
-#: src/Model/Event.php:413 src/Util/Temporal.php:304 mod/events.php:401
-#: mod/cal.php:281
-msgid "month"
+#: mod/uimport.php:70 mod/register.php:285
+msgid "Import"
 msgstr ""
 
-#: src/Model/Event.php:414 src/Util/Temporal.php:305 mod/events.php:402
-#: mod/cal.php:282
-msgid "week"
+#: mod/uimport.php:72
+msgid "Move account"
 msgstr ""
 
-#: src/Model/Event.php:415 src/Util/Temporal.php:306 mod/events.php:403
-#: mod/cal.php:283
-msgid "day"
+#: mod/uimport.php:73
+msgid "You can import an account from another Friendica server."
 msgstr ""
 
-#: src/Model/Event.php:417
-msgid "No events to display"
+#: 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 ""
 
-#: src/Model/Event.php:543
-msgid "l, F j"
+#: 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 ""
 
-#: src/Model/Event.php:566
-msgid "Edit event"
+#: mod/uimport.php:76
+msgid "Account file"
 msgstr ""
 
-#: src/Model/Event.php:567
-msgid "Duplicate event"
+#: mod/uimport.php:76
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
 msgstr ""
 
-#: src/Model/Event.php:568
-msgid "Delete event"
+#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543
+#, php-format
+msgid "%1$s welcomes %2$s"
 msgstr ""
 
-#: src/Model/Event.php:815
-msgid "D g:i A"
+#: mod/match.php:48
+msgid "No keywords to match. Please add keywords to your default profile."
 msgstr ""
 
-#: src/Model/Event.php:816
-msgid "g:i A"
+#: mod/match.php:104
+msgid "is interested in:"
 msgstr ""
 
-#: src/Model/Event.php:901 src/Model/Event.php:903
-msgid "Show map"
+#: mod/match.php:120
+msgid "Profile Match"
 msgstr ""
 
-#: src/Model/Event.php:902
-msgid "Hide map"
+#: mod/match.php:125 mod/dirfind.php:253
+msgid "No matches"
 msgstr ""
 
-#: src/Model/Group.php:44
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
+#: mod/notifications.php:37
+msgid "Invalid request identifier."
 msgstr ""
 
-#: src/Model/Group.php:341
-msgid "Default privacy group for new contacts"
+#: mod/notifications.php:46 mod/notifications.php:183 mod/notifications.php:230
+msgid "Discard"
 msgstr ""
 
-#: src/Model/Group.php:374
-msgid "Everybody"
+#: 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 ""
 
-#: src/Model/Group.php:394
-msgid "edit"
+#: mod/notifications.php:98 src/Content/Nav.php:187
+msgid "Notifications"
 msgstr ""
 
-#: src/Model/Group.php:413 mod/network.php:202
-msgid "add"
+#: mod/notifications.php:107
+msgid "Network Notifications"
 msgstr ""
 
-#: src/Model/Group.php:414 mod/newmember.php:43
-msgid "Groups"
+#: mod/notifications.php:113 mod/notify.php:81
+msgid "System Notifications"
 msgstr ""
 
-#: src/Model/Group.php:418
-msgid "Edit group"
+#: mod/notifications.php:119
+msgid "Personal Notifications"
 msgstr ""
 
-#: src/Model/Group.php:419
-msgid "Contacts not in any group"
+#: mod/notifications.php:125
+msgid "Home Notifications"
 msgstr ""
 
-#: src/Model/Group.php:420
-msgid "Create a new group"
+#: mod/notifications.php:155
+msgid "Show Ignored Requests"
 msgstr ""
 
-#: src/Model/Group.php:421 mod/group.php:103 mod/group.php:199
-msgid "Group Name: "
+#: mod/notifications.php:155
+msgid "Hide Ignored Requests"
 msgstr ""
 
-#: src/Model/Group.php:422
-msgid "Edit groups"
+#: mod/notifications.php:167 mod/notifications.php:237
+msgid "Notification type: "
 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
-msgid "Contact Photos"
+#: mod/notifications.php:170
+#, php-format
+msgid "suggested by %s"
 msgstr ""
 
-#: src/Model/User.php:154
-msgid "Login failed"
+#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646
+msgid "Hide this contact from others"
 msgstr ""
 
-#: src/Model/User.php:185
-msgid "Not enough information to authenticate"
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "Post a new friend activity"
 msgstr ""
 
-#: src/Model/User.php:214 src/Core/Console/NewPassword.php:74 mod/cal.php:297
-msgid "User not found"
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "if applicable"
 msgstr ""
 
-#: src/Model/User.php:335 mod/settings.php:384
-msgid "Passwords do not match. Password unchanged."
+#: mod/notifications.php:179 mod/notifications.php:264 mod/admin.php:1812
+msgid "Approve"
 msgstr ""
 
-#: src/Model/User.php:342
-msgid "An invitation is required."
+#: mod/notifications.php:198
+msgid "Claims to be known to you: "
 msgstr ""
 
-#: src/Model/User.php:346
-msgid "Invitation could not be verified."
+#: mod/notifications.php:199
+msgid "yes"
 msgstr ""
 
-#: src/Model/User.php:353
-msgid "Invalid OpenID url"
+#: mod/notifications.php:199
+msgid "no"
 msgstr ""
 
-#: src/Model/User.php:366 src/Module/Login.php:100
+#: 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 ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
+"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 ""
 
-#: src/Model/User.php:366 src/Module/Login.php:100
-msgid "The error message was:"
+#: 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 ""
 
-#: src/Model/User.php:372
-msgid "Please enter the required information."
+#: 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 ""
 
-#: src/Model/User.php:385
-msgid "Please use a shorter name."
+#: mod/notifications.php:218
+msgid "Friend"
 msgstr ""
 
-#: src/Model/User.php:388
-msgid "Name too short."
+#: mod/notifications.php:219
+msgid "Sharer"
 msgstr ""
 
-#: src/Model/User.php:396
-msgid "That doesn't appear to be your full (First Last) name."
+#: mod/notifications.php:219
+msgid "Subscriber"
 msgstr ""
 
-#: src/Model/User.php:401
-msgid "Your email domain is not among those allowed on this site."
+#: 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 ""
 
-#: src/Model/User.php:405
-msgid "Not a valid email address."
+#: 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 ""
 
-#: src/Model/User.php:409 src/Model/User.php:417
-msgid "Cannot use that email."
+#: mod/notifications.php:251 mod/contacts.php:666 mod/follow.php:174
+#: src/Model/Profile.php:792
+msgid "Tags:"
 msgstr ""
 
-#: src/Model/User.php:424
-msgid "Your nickname can only contain a-z, 0-9 and _."
+#: mod/notifications.php:253 mod/directory.php:151 src/Model/Profile.php:416
+#: src/Model/Profile.php:743
+msgid "Gender:"
 msgstr ""
 
-#: src/Model/User.php:431 src/Model/User.php:487
-msgid "Nickname is already registered. Please choose another."
+#: 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 ""
 
-#: src/Model/User.php:441
-msgid "SERIOUS ERROR: Generation of security keys failed."
+#: mod/notifications.php:261 mod/contacts.php:71 src/Model/Profile.php:516
+msgid "Network:"
 msgstr ""
 
-#: src/Model/User.php:474 src/Model/User.php:478
-msgid "An error occurred during registration. Please try again."
+#: mod/notifications.php:275
+msgid "No introductions."
 msgstr ""
 
-#: src/Model/User.php:498 view/theme/duepuntozero/config.php:54
-msgid "default"
+#: mod/notifications.php:316
+msgid "Show unread"
 msgstr ""
 
-#: src/Model/User.php:503
-msgid "An error occurred creating your default profile. Please try again."
+#: mod/notifications.php:316
+msgid "Show all"
 msgstr ""
 
-#: src/Model/User.php:510
-msgid "An error occurred creating your self contact. Please try again."
+#: mod/notifications.php:322
+#, php-format
+msgid "No more %s notifications."
 msgstr ""
 
-#: src/Model/User.php:515 src/Content/ContactSelector.php:169
-msgid "Friends"
+#: mod/openid.php:29
+msgid "OpenID protocol error. No ID returned."
 msgstr ""
 
-#: src/Model/User.php:519
+#: mod/openid.php:66
 msgid ""
-"An error occurred creating your default contact group. Please try again."
+"Account not found and OpenID registration is not permitted on this site."
 msgstr ""
 
-#: src/Model/User.php:593
-#, 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"
+#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:134
+msgid "Login failed."
 msgstr ""
 
-#: src/Model/User.php:603
-#, php-format
-msgid "Registration at %s"
+#: 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 ""
 
-#: src/Model/User.php:621
-#, php-format
+#: mod/dfrn_confirm.php:132
 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"
+"This may occasionally happen if contact was requested by both persons and it "
+"has already been approved."
 msgstr ""
 
-#: 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."
+#: mod/dfrn_confirm.php:242
+msgid "Response from remote site was not understood."
 msgstr ""
 
-#: src/Model/User.php:659 mod/admin.php:1611
-#, php-format
-msgid "Registration details for %s"
+#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254
+msgid "Unexpected response from remote site: "
 msgstr ""
 
-#: src/Content/Text/BBCode.php:416
-msgid "view full size"
+#: mod/dfrn_confirm.php:263
+msgid "Confirmation completed successfully."
 msgstr ""
 
-#: src/Content/Text/BBCode.php:842 src/Content/Text/BBCode.php:1611
-#: src/Content/Text/BBCode.php:1612
-msgid "Image/photo"
+#: mod/dfrn_confirm.php:275
+msgid "Temporary failure. Please wait and try again."
 msgstr ""
 
-#: src/Content/Text/BBCode.php:980
-#, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+#: mod/dfrn_confirm.php:278
+msgid "Introduction failed or was revoked."
 msgstr ""
 
-#: src/Content/Text/BBCode.php:1538 src/Content/Text/BBCode.php:1560
-msgid "$1 wrote:"
+#: mod/dfrn_confirm.php:283
+msgid "Remote site reported: "
 msgstr ""
 
-#: src/Content/Text/BBCode.php:1620 src/Content/Text/BBCode.php:1621
-msgid "Encrypted content"
+#: mod/dfrn_confirm.php:396
+msgid "Unable to set contact photo."
 msgstr ""
 
-#: src/Content/Text/BBCode.php:1740
-msgid "Invalid source protocol"
+#: mod/dfrn_confirm.php:498
+#, php-format
+msgid "No user record found for '%s' "
 msgstr ""
 
-#: src/Content/Text/BBCode.php:1751
-msgid "Invalid link protocol"
+#: mod/dfrn_confirm.php:508
+msgid "Our site encryption key is apparently messed up."
 msgstr ""
 
-#: src/Content/Feature.php:79
-msgid "General Features"
+#: mod/dfrn_confirm.php:519
+msgid "Empty site URL was provided or URL could not be decrypted by us."
 msgstr ""
 
-#: src/Content/Feature.php:81
-msgid "Multiple Profiles"
-msgstr ""
-
-#: src/Content/Feature.php:81
-msgid "Ability to create multiple profiles"
+#: mod/dfrn_confirm.php:535
+msgid "Contact record was not found for you on our site."
 msgstr ""
 
-#: src/Content/Feature.php:82
-msgid "Photo Location"
+#: mod/dfrn_confirm.php:549
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
 msgstr ""
 
-#: src/Content/Feature.php:82
+#: mod/dfrn_confirm.php:565
 msgid ""
-"Photo metadata is normally stripped. This extracts the location (if present) "
-"prior to stripping metadata and links it to a map."
-msgstr ""
-
-#: src/Content/Feature.php:83
-msgid "Export Public Calendar"
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
 msgstr ""
 
-#: src/Content/Feature.php:83
-msgid "Ability for visitors to download the public calendar"
+#: mod/dfrn_confirm.php:576
+msgid "Unable to set your contact credentials on our system."
 msgstr ""
 
-#: src/Content/Feature.php:88
-msgid "Post Composition Features"
+#: mod/dfrn_confirm.php:631
+msgid "Unable to update your contact profile details on our system"
 msgstr ""
 
-#: src/Content/Feature.php:89
-msgid "Post Preview"
+#: mod/dfrn_confirm.php:661 mod/dfrn_request.php:568 src/Model/Contact.php:1537
+msgid "[Name Withheld]"
 msgstr ""
 
-#: src/Content/Feature.php:89
-msgid "Allow previewing posts and comments before publishing them"
+#: mod/dfrn_confirm.php:694
+#, php-format
+msgid "%1$s has joined %2$s"
 msgstr ""
 
-#: src/Content/Feature.php:90
-msgid "Auto-mention Forums"
+#: mod/manage.php:180
+msgid "Manage Identities and/or Pages"
 msgstr ""
 
-#: src/Content/Feature.php:90
+#: mod/manage.php:181
 msgid ""
-"Add/remove mention when a forum page is selected/deselected in ACL window."
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
 msgstr ""
 
-#: src/Content/Feature.php:95
-msgid "Network Sidebar Widgets"
+#: mod/manage.php:182
+msgid "Select an identity to manage: "
 msgstr ""
 
-#: src/Content/Feature.php:96
-msgid "Search by Date"
+#: 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 ""
 
-#: src/Content/Feature.php:96
-msgid "Ability to select posts by date ranges"
+#: mod/wall_attach.php:101
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
 msgstr ""
 
-#: src/Content/Feature.php:97 src/Content/Feature.php:127
-msgid "List Forums"
+#: mod/wall_attach.php:101
+msgid "Or - did you try to upload an empty file?"
 msgstr ""
 
-#: src/Content/Feature.php:97
-msgid "Enable widget to display the forums your are connected with"
+#: mod/wall_attach.php:112
+#, php-format
+msgid "File exceeds size limit of %s"
 msgstr ""
 
-#: src/Content/Feature.php:98
-msgid "Group Filter"
+#: mod/wall_attach.php:136 mod/wall_attach.php:152
+msgid "File upload failed."
 msgstr ""
 
-#: src/Content/Feature.php:98
-msgid "Enable widget to display Network posts only from selected group"
+#: mod/dfrn_request.php:94
+msgid "This introduction has already been accepted."
 msgstr ""
 
-#: src/Content/Feature.php:99
-msgid "Network Filter"
+#: mod/dfrn_request.php:112 mod/dfrn_request.php:359
+msgid "Profile location is not valid or does not contain profile information."
 msgstr ""
 
-#: src/Content/Feature.php:99
-msgid "Enable widget to display Network posts only from selected network"
+#: mod/dfrn_request.php:116 mod/dfrn_request.php:363
+msgid "Warning: profile location has no identifiable owner name."
 msgstr ""
 
-#: src/Content/Feature.php:100 mod/network.php:201 mod/search.php:46
-msgid "Saved Searches"
+#: mod/dfrn_request.php:119 mod/dfrn_request.php:366
+msgid "Warning: profile location has no profile photo."
 msgstr ""
 
-#: src/Content/Feature.php:100
-msgid "Save search terms for re-use"
+#: 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 ""
 
-#: src/Content/Feature.php:105
-msgid "Network Tabs"
+#: mod/dfrn_request.php:199
+msgid "Unrecoverable protocol error."
 msgstr ""
 
-#: src/Content/Feature.php:106
-msgid "Network Personal Tab"
+#: mod/dfrn_request.php:226
+msgid "Profile unavailable."
 msgstr ""
 
-#: src/Content/Feature.php:106
-msgid "Enable tab to display only Network posts that you've interacted on"
+#: mod/dfrn_request.php:248
+#, php-format
+msgid "%s has received too many connection requests today."
 msgstr ""
 
-#: src/Content/Feature.php:107
-msgid "Network New Tab"
+#: mod/dfrn_request.php:249
+msgid "Spam protection measures have been invoked."
 msgstr ""
 
-#: src/Content/Feature.php:107
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+#: mod/dfrn_request.php:250
+msgid "Friends are advised to please try again in 24 hours."
 msgstr ""
 
-#: src/Content/Feature.php:108
-msgid "Network Shared Links Tab"
+#: mod/dfrn_request.php:280
+msgid "Invalid locator"
 msgstr ""
 
-#: src/Content/Feature.php:108
-msgid "Enable tab to display only Network posts with links in them"
+#: mod/dfrn_request.php:316
+msgid "You have already introduced yourself here."
 msgstr ""
 
-#: src/Content/Feature.php:113
-msgid "Post/Comment Tools"
+#: mod/dfrn_request.php:319
+#, php-format
+msgid "Apparently you are already friends with %s."
 msgstr ""
 
-#: src/Content/Feature.php:114
-msgid "Multiple Deletion"
+#: mod/dfrn_request.php:339
+msgid "Invalid profile URL."
 msgstr ""
 
-#: src/Content/Feature.php:114
-msgid "Select and delete multiple posts/comments at once"
+#: mod/dfrn_request.php:345 src/Model/Contact.php:1235
+msgid "Disallowed profile URL."
 msgstr ""
 
-#: src/Content/Feature.php:115
-msgid "Edit Sent Posts"
+#: 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 ""
 
-#: src/Content/Feature.php:115
-msgid "Edit and correct posts and comments after sending"
+#: mod/dfrn_request.php:419 mod/contacts.php:230
+msgid "Failed to update contact record."
 msgstr ""
 
-#: src/Content/Feature.php:116
-msgid "Tagging"
+#: mod/dfrn_request.php:439
+msgid "Your introduction has been sent."
 msgstr ""
 
-#: src/Content/Feature.php:116
-msgid "Ability to tag existing posts"
+#: mod/dfrn_request.php:477
+msgid ""
+"Remote subscription can't be done for your network. Please subscribe "
+"directly on your system."
 msgstr ""
 
-#: src/Content/Feature.php:117
-msgid "Post Categories"
+#: mod/dfrn_request.php:493
+msgid "Please login to confirm introduction."
 msgstr ""
 
-#: src/Content/Feature.php:117
-msgid "Add categories to your posts"
+#: mod/dfrn_request.php:501
+msgid ""
+"Incorrect identity currently logged in. Please login to <strong>this</"
+"strong> profile."
 msgstr ""
 
-#: src/Content/Feature.php:118 src/Content/Widget.php:200
-msgid "Saved Folders"
+#: mod/dfrn_request.php:515 mod/dfrn_request.php:532
+msgid "Confirm"
 msgstr ""
 
-#: src/Content/Feature.php:118
-msgid "Ability to file posts under folders"
+#: mod/dfrn_request.php:527
+msgid "Hide this contact"
 msgstr ""
 
-#: src/Content/Feature.php:119
-msgid "Dislike Posts"
+#: mod/dfrn_request.php:530
+#, php-format
+msgid "Welcome home %s."
 msgstr ""
 
-#: src/Content/Feature.php:119
-msgid "Ability to dislike posts/comments"
+#: mod/dfrn_request.php:531
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
 msgstr ""
 
-#: src/Content/Feature.php:120
-msgid "Star Posts"
+#: 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 ""
 
-#: src/Content/Feature.php:120
-msgid "Ability to mark special posts with a star indicator"
+#: mod/dfrn_request.php:642
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
 msgstr ""
 
-#: src/Content/Feature.php:121
-msgid "Mute Post Notifications"
+#: mod/dfrn_request.php:645
+#, php-format
+msgid ""
+"If you are not yet a member of the free social web, <a href=\"%s\">follow "
+"this link to find a public Friendica site and join us today</a>."
 msgstr ""
 
-#: src/Content/Feature.php:121
-msgid "Ability to mute notifications for a thread"
+#: mod/dfrn_request.php:650
+msgid "Friend/Connection Request"
 msgstr ""
 
-#: src/Content/Feature.php:126
-msgid "Advanced Profile Settings"
+#: mod/dfrn_request.php:651
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@gnusocial.de"
 msgstr ""
 
-#: src/Content/Feature.php:127
-msgid "Show visitors public community forums at the Advanced Profile Page"
+#: mod/dfrn_request.php:652 mod/follow.php:149
+msgid "Please answer the following:"
 msgstr ""
 
-#: src/Content/Feature.php:128
-msgid "Tag Cloud"
+#: mod/dfrn_request.php:653 mod/follow.php:150
+#, php-format
+msgid "Does %s know you?"
 msgstr ""
 
-#: src/Content/Feature.php:128
-msgid "Provide a personal tag cloud on your profile page"
+#: mod/dfrn_request.php:654 mod/follow.php:151
+msgid "Add a personal note:"
 msgstr ""
 
-#: src/Content/Feature.php:129
-msgid "Display Membership Date"
+#: mod/dfrn_request.php:656 src/Content/ContactSelector.php:79
+msgid "Friendica"
 msgstr ""
 
-#: src/Content/Feature.php:129
-msgid "Display membership date in profile"
+#: mod/dfrn_request.php:657
+msgid "GNU Social (Pleroma, Mastodon)"
 msgstr ""
 
-#: src/Content/Widget/CalendarExport.php:61
-msgid "Export"
+#: mod/dfrn_request.php:658
+msgid "Diaspora (Socialhome, Hubzilla)"
 msgstr ""
 
-#: src/Content/Widget/CalendarExport.php:62
-msgid "Export calendar as ical"
+#: mod/dfrn_request.php:659
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search "
+"bar."
 msgstr ""
 
-#: src/Content/Widget/CalendarExport.php:63
-msgid "Export calendar as csv"
+#: mod/dfrn_request.php:660 mod/unfollow.php:113 mod/follow.php:157
+msgid "Your Identity Address:"
 msgstr ""
 
-#: src/Content/Widget.php:33
-msgid "Add New Contact"
+#: mod/dfrn_request.php:662 mod/unfollow.php:65 mod/follow.php:62
+msgid "Submit Request"
 msgstr ""
 
-#: src/Content/Widget.php:34
-msgid "Enter address or web location"
+#: mod/filer.php:34
+msgid "- select -"
 msgstr ""
 
-#: src/Content/Widget.php:35
-msgid "Example: bob@example.com, http://example.com/barbara"
+#: mod/localtime.php:19 src/Model/Event.php:36 src/Model/Event.php:814
+msgid "l F d, Y \\@ g:i A"
 msgstr ""
 
-#: src/Content/Widget.php:53
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] ""
-msgstr[1] ""
+#: mod/localtime.php:33
+msgid "Time Conversion"
+msgstr ""
 
-#: src/Content/Widget.php:59
-msgid "Find People"
+#: mod/localtime.php:35
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
 msgstr ""
 
-#: src/Content/Widget.php:60
-msgid "Enter name or interest"
+#: mod/localtime.php:39
+#, php-format
+msgid "UTC time: %s"
 msgstr ""
 
-#: src/Content/Widget.php:62
-msgid "Examples: Robert Morgenstein, Fishing"
+#: mod/localtime.php:42
+#, php-format
+msgid "Current timezone: %s"
 msgstr ""
 
-#: src/Content/Widget.php:63 mod/directory.php:209 mod/contacts.php:820
-msgid "Find"
+#: mod/localtime.php:46
+#, php-format
+msgid "Converted localtime: %s"
 msgstr ""
 
-#: src/Content/Widget.php:64 mod/suggest.php:114 view/theme/vier/theme.php:203
-msgid "Friend Suggestions"
+#: mod/localtime.php:52
+msgid "Please select your timezone:"
 msgstr ""
 
-#: src/Content/Widget.php:65 view/theme/vier/theme.php:202
-msgid "Similar Interests"
+#: mod/notify.php:77
+msgid "No more system notifications."
 msgstr ""
 
-#: src/Content/Widget.php:66
-msgid "Random Profile"
+#: mod/ping.php:292
+msgid "{0} wants to be your friend"
 msgstr ""
 
-#: src/Content/Widget.php:67 view/theme/vier/theme.php:204
-msgid "Invite Friends"
+#: mod/ping.php:307
+msgid "{0} sent you a message"
 msgstr ""
 
-#: src/Content/Widget.php:68
-msgid "View Global Directory"
+#: mod/ping.php:322
+msgid "{0} requested registration"
 msgstr ""
 
-#: src/Content/Widget.php:159
-msgid "Networks"
+#: mod/poke.php:192
+msgid "Poke/Prod"
 msgstr ""
 
-#: src/Content/Widget.php:162
-msgid "All Networks"
+#: mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
 msgstr ""
 
-#: src/Content/Widget.php:203 src/Content/Widget.php:243
-msgid "Everything"
+#: mod/poke.php:194
+msgid "Recipient"
 msgstr ""
 
-#: src/Content/Widget.php:240
-msgid "Categories"
+#: mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
 msgstr ""
 
-#: src/Content/Widget.php:307
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] ""
-msgstr[1] ""
+#: mod/poke.php:198
+msgid "Make this post private"
+msgstr ""
 
-#: src/Content/ContactSelector.php:55
-msgid "Frequently"
+#: mod/probe.php:14 mod/webfinger.php:17
+msgid "Only logged in users are permitted to perform a probing."
 msgstr ""
 
-#: src/Content/ContactSelector.php:56
-msgid "Hourly"
+#: mod/profperm.php:28 mod/group.php:83 index.php:443
+msgid "Permission denied"
 msgstr ""
 
-#: src/Content/ContactSelector.php:57
-msgid "Twice daily"
+#: mod/profperm.php:34 mod/profperm.php:65
+msgid "Invalid profile identifier."
 msgstr ""
 
-#: src/Content/ContactSelector.php:58
-msgid "Daily"
+#: mod/profperm.php:111
+msgid "Profile Visibility Editor"
 msgstr ""
 
-#: src/Content/ContactSelector.php:59
-msgid "Weekly"
+#: mod/profperm.php:115 mod/group.php:265
+msgid "Click on a contact to add or remove."
 msgstr ""
 
-#: src/Content/ContactSelector.php:60
-msgid "Monthly"
+#: mod/profperm.php:124
+msgid "Visible To"
 msgstr ""
 
-#: src/Content/ContactSelector.php:79 mod/dfrn_request.php:656
-msgid "Friendica"
+#: mod/profperm.php:140
+msgid "All Contacts (with secure profile access)"
 msgstr ""
 
-#: src/Content/ContactSelector.php:80
-msgid "OStatus"
+#: mod/regmod.php:68
+msgid "Account approved."
 msgstr ""
 
-#: src/Content/ContactSelector.php:81
-msgid "RSS/Atom"
+#: mod/regmod.php:93
+#, php-format
+msgid "Registration revoked for %s"
 msgstr ""
 
-#: src/Content/ContactSelector.php:82 mod/admin.php:1796 mod/admin.php:1807
-#: mod/admin.php:1820 mod/admin.php:1838
-msgid "Email"
+#: mod/regmod.php:102
+msgid "Please login."
 msgstr ""
 
-#: src/Content/ContactSelector.php:83 mod/settings.php:805
-msgid "Diaspora"
+#: mod/search.php:37 mod/network.php:194
+msgid "Remove term"
 msgstr ""
 
-#: src/Content/ContactSelector.php:84
-msgid "Facebook"
+#: mod/search.php:46 mod/network.php:201 src/Content/Feature.php:100
+msgid "Saved Searches"
 msgstr ""
 
-#: src/Content/ContactSelector.php:85
-msgid "Zot!"
+#: mod/search.php:105
+msgid "Only logged in users are permitted to perform a search."
 msgstr ""
 
-#: src/Content/ContactSelector.php:86
-msgid "LinkedIn"
+#: mod/search.php:129
+msgid "Too Many Requests"
 msgstr ""
 
-#: src/Content/ContactSelector.php:87
-msgid "XMPP/IM"
+#: mod/search.php:130
+msgid "Only one search per minute is permitted for not logged in users."
 msgstr ""
 
-#: src/Content/ContactSelector.php:88
-msgid "MySpace"
+#: mod/search.php:228 mod/community.php:141
+msgid "No results."
 msgstr ""
 
-#: src/Content/ContactSelector.php:89
-msgid "Google+"
+#: mod/search.php:234
+#, php-format
+msgid "Items tagged with: %s"
 msgstr ""
 
-#: src/Content/ContactSelector.php:90
-msgid "pump.io"
+#: mod/search.php:236 mod/contacts.php:819
+#, php-format
+msgid "Results for: %s"
 msgstr ""
 
-#: src/Content/ContactSelector.php:91
-msgid "Twitter"
+#: mod/subthread.php:113
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
 msgstr ""
 
-#: src/Content/ContactSelector.php:92
-msgid "Diaspora Connector"
+#: mod/tagrm.php:47
+msgid "Tag removed"
 msgstr ""
 
-#: src/Content/ContactSelector.php:93
-msgid "GNU Social Connector"
+#: mod/tagrm.php:85
+msgid "Remove Item Tag"
 msgstr ""
 
-#: src/Content/ContactSelector.php:94
-msgid "pnut"
+#: mod/tagrm.php:87
+msgid "Select a tag to remove: "
 msgstr ""
 
-#: src/Content/ContactSelector.php:95
-msgid "App.net"
+#: mod/tagrm.php:98 mod/delegate.php:177
+msgid "Remove"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Male"
+#: mod/uexport.php:44
+msgid "Export account"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Female"
+#: 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 ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Currently Male"
+#: mod/uexport.php:45
+msgid "Export all"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Currently Female"
+#: 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 ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Mostly Male"
+#: mod/uexport.php:52 mod/settings.php:108
+msgid "Export personal data"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Mostly Female"
+#: mod/viewcontacts.php:87
+msgid "No contacts."
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Transgender"
+#: mod/viewsrc.php:12 mod/community.php:34
+msgid "Access denied."
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Intersex"
+#: 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 ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Transsexual"
+#: mod/wall_upload.php:200 mod/photos.php:818 mod/profile_photo.php:162
+msgid "Unable to process image."
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Hermaphrodite"
+#: 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 ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Neuter"
+#: mod/wall_upload.php:239 mod/photos.php:847 mod/profile_photo.php:307
+msgid "Image upload failed."
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Non-specific"
+#: mod/wallmessage.php:49 mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Other"
+#: mod/wallmessage.php:57 mod/message.php:73
+msgid "No recipient selected."
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Males"
+#: mod/wallmessage.php:60
+msgid "Unable to check your home location."
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Females"
+#: mod/wallmessage.php:63 mod/message.php:80
+msgid "Message could not be sent."
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Gay"
+#: mod/wallmessage.php:66 mod/message.php:83
+msgid "Message collection failure."
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Lesbian"
+#: mod/wallmessage.php:69 mod/message.php:86
+msgid "Message sent."
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "No Preference"
+#: mod/wallmessage.php:86 mod/wallmessage.php:95
+msgid "No recipient."
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Bisexual"
+#: mod/wallmessage.php:132 mod/message.php:250
+msgid "Send Private Message"
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Autosexual"
+#: 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 ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Abstinent"
+#: mod/wallmessage.php:134 mod/message.php:251 mod/message.php:421
+msgid "To:"
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Virgin"
+#: mod/wallmessage.php:135 mod/message.php:255 mod/message.php:423
+msgid "Subject:"
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Deviant"
+#: mod/wallmessage.php:141 mod/message.php:259 mod/message.php:426
+#: mod/invite.php:149
+msgid "Your message:"
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Fetish"
+#: mod/bookmarklet.php:23 src/Content/Nav.php:114 src/Module/Login.php:312
+msgid "Login"
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Oodles"
+#: mod/bookmarklet.php:51
+msgid "The post was created"
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Nonsexual"
+#: mod/editpost.php:25 mod/editpost.php:35
+msgid "Item not found"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Single"
+#: mod/editpost.php:42
+msgid "Edit post"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Lonely"
+#: mod/editpost.php:134 src/Core/ACL.php:315
+msgid "CC: email addresses"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Available"
+#: mod/editpost.php:141 src/Core/ACL.php:316
+msgid "Example: bob@example.com, mary@example.com"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Unavailable"
+#: mod/fsuggest.php:72
+msgid "Friend suggestion sent."
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Has crush"
+#: mod/fsuggest.php:101
+msgid "Suggest Friends"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Infatuated"
+#: mod/fsuggest.php:103
+#, php-format
+msgid "Suggest a friend for %s"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Dating"
+#: mod/group.php:36
+msgid "Group created."
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Unfaithful"
+#: mod/group.php:42
+msgid "Could not create group."
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Sex Addict"
+#: mod/group.php:56 mod/group.php:157
+msgid "Group not found."
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Friends/Benefits"
+#: mod/group.php:70
+msgid "Group name changed."
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Casual"
+#: mod/group.php:97
+msgid "Save Group"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Engaged"
+#: mod/group.php:102
+msgid "Create a group of contacts/friends."
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Married"
+#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421
+msgid "Group Name: "
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Imaginarily married"
+#: mod/group.php:127
+msgid "Group removed."
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Partners"
+#: mod/group.php:129
+msgid "Unable to remove group."
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Cohabiting"
+#: mod/group.php:192
+msgid "Delete Group"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Common law"
+#: mod/group.php:198
+msgid "Group Editor"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Happy"
+#: mod/group.php:203
+msgid "Edit Group Name"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Not looking"
+#: mod/group.php:213
+msgid "Members"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Swinger"
+#: mod/group.php:215 mod/contacts.php:719
+msgid "All Contacts"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Betrayed"
+#: mod/group.php:216 mod/network.php:639
+msgid "Group is empty"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Separated"
+#: mod/group.php:229
+msgid "Remove Contact"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Unstable"
+#: mod/group.php:253
+msgid "Add Contact"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Divorced"
+#: mod/message.php:30 src/Content/Nav.php:195
+msgid "New Message"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Imaginarily divorced"
+#: mod/message.php:77
+msgid "Unable to locate contact information."
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Widowed"
+#: mod/message.php:112 view/theme/frio/theme.php:268 src/Content/Nav.php:192
+msgid "Messages"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Uncertain"
+#: mod/message.php:136
+msgid "Do you really want to delete this message?"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "It's complicated"
+#: mod/message.php:156
+msgid "Message deleted."
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Don't care"
+#: mod/message.php:185
+msgid "Conversation removed."
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Ask me"
+#: mod/message.php:291
+msgid "No messages."
 msgstr ""
 
-#: src/Content/OEmbed.php:253
-msgid "Embedding disabled"
+#: mod/message.php:330
+msgid "Message not available."
 msgstr ""
 
-#: src/Content/OEmbed.php:373
-msgid "Embedded content"
+#: mod/message.php:397
+msgid "Delete message"
 msgstr ""
 
-#: src/Content/ForumManager.php:127 view/theme/vier/theme.php:256
-msgid "External link to forum"
+#: mod/message.php:399 mod/message.php:500
+msgid "D, d M Y - g:i A"
 msgstr ""
 
-#: src/Content/Nav.php:53
-msgid "Nothing new here"
+#: mod/message.php:414 mod/message.php:497
+msgid "Delete conversation"
 msgstr ""
 
-#: src/Content/Nav.php:57
-msgid "Clear notifications"
+#: mod/message.php:416
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
 msgstr ""
 
-#: src/Content/Nav.php:97 src/Module/Login.php:311
-#: view/theme/frio/theme.php:256
-msgid "Logout"
+#: mod/message.php:420
+msgid "Send Reply"
 msgstr ""
 
-#: src/Content/Nav.php:97 view/theme/frio/theme.php:256
-msgid "End this session"
+#: mod/message.php:471
+#, php-format
+msgid "Unknown sender - %s"
 msgstr ""
 
-#: src/Content/Nav.php:100 src/Content/Nav.php:181
-#: view/theme/frio/theme.php:259
-msgid "Your posts and conversations"
+#: mod/message.php:473
+#, php-format
+msgid "You and %s"
 msgstr ""
 
-#: src/Content/Nav.php:101 view/theme/frio/theme.php:260
-msgid "Your profile page"
+#: mod/message.php:475
+#, php-format
+msgid "%s and You"
 msgstr ""
 
-#: src/Content/Nav.php:102 view/theme/frio/theme.php:261
-msgid "Your photos"
-msgstr ""
+#: mod/message.php:503
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] ""
+msgstr[1] ""
 
-#: src/Content/Nav.php:103 view/theme/frio/theme.php:262
-msgid "Your videos"
+#: mod/notes.php:52 src/Model/Profile.php:944
+msgid "Personal Notes"
 msgstr ""
 
-#: src/Content/Nav.php:104 view/theme/frio/theme.php:263
-msgid "Your events"
+#: mod/photos.php:108 src/Model/Profile.php:905
+msgid "Photo Albums"
 msgstr ""
 
-#: src/Content/Nav.php:105
-msgid "Personal notes"
+#: mod/photos.php:109 mod/photos.php:1713
+msgid "Recent Photos"
 msgstr ""
 
-#: src/Content/Nav.php:105
-msgid "Your personal notes"
+#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715
+msgid "Upload New Photos"
 msgstr ""
 
-#: src/Content/Nav.php:114 src/Module/Login.php:312 mod/bookmarklet.php:23
-msgid "Login"
+#: mod/photos.php:126 mod/settings.php:51
+msgid "everybody"
 msgstr ""
 
-#: src/Content/Nav.php:114
-msgid "Sign in"
+#: mod/photos.php:184
+msgid "Contact information unavailable"
 msgstr ""
 
-#: src/Content/Nav.php:124 src/Content/Nav.php:181
-#: src/Core/NotificationsManager.php:192
-msgid "Home"
+#: mod/photos.php:204
+msgid "Album not found."
 msgstr ""
 
-#: src/Content/Nav.php:124
-msgid "Home Page"
+#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161
+msgid "Delete Album"
 msgstr ""
 
-#: src/Content/Nav.php:128 src/Module/Login.php:283 mod/register.php:279
-msgid "Register"
+#: mod/photos.php:243
+msgid "Do you really want to delete this photo album and all its photos?"
 msgstr ""
 
-#: src/Content/Nav.php:128
-msgid "Create an account"
+#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446
+msgid "Delete Photo"
 msgstr ""
 
-#: src/Content/Nav.php:134 mod/help.php:54 view/theme/vier/theme.php:298
-msgid "Help"
+#: mod/photos.php:319
+msgid "Do you really want to delete this photo?"
 msgstr ""
 
-#: src/Content/Nav.php:134
-msgid "Help and documentation"
+#: mod/photos.php:667
+msgid "a photo"
 msgstr ""
 
-#: src/Content/Nav.php:138
-msgid "Apps"
+#: mod/photos.php:667
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
 msgstr ""
 
-#: src/Content/Nav.php:138
-msgid "Addon applications, utilities, games"
+#: mod/photos.php:769
+msgid "Image upload didn't complete, please try again"
 msgstr ""
 
-#: src/Content/Nav.php:142
-msgid "Search site content"
+#: mod/photos.php:772
+msgid "Image file is missing"
 msgstr ""
 
-#: src/Content/Nav.php:165
-msgid "Community"
+#: mod/photos.php:777
+msgid ""
+"Server can't accept new file upload at this time, please contact your "
+"administrator"
 msgstr ""
 
-#: src/Content/Nav.php:165
-msgid "Conversations on this and other servers"
+#: mod/photos.php:803
+msgid "Image file is empty."
 msgstr ""
 
-#: src/Content/Nav.php:172
-msgid "Directory"
+#: mod/photos.php:940
+msgid "No photos selected"
 msgstr ""
 
-#: src/Content/Nav.php:172
-msgid "People directory"
+#: mod/photos.php:1036 mod/videos.php:309
+msgid "Access to this item is restricted."
 msgstr ""
 
-#: src/Content/Nav.php:174 mod/admin.php:179
-msgid "Information"
+#: mod/photos.php:1090
+msgid "Upload Photos"
 msgstr ""
 
-#: src/Content/Nav.php:174
-msgid "Information about this friendica instance"
+#: mod/photos.php:1094 mod/photos.php:1156
+msgid "New album name: "
 msgstr ""
 
-#: src/Content/Nav.php:178 src/Core/NotificationsManager.php:178
-#: mod/admin.php:758 view/theme/frio/theme.php:266
-msgid "Network"
+#: mod/photos.php:1095
+msgid "or existing album name: "
 msgstr ""
 
-#: src/Content/Nav.php:178 view/theme/frio/theme.php:266
-msgid "Conversations from your friends"
+#: mod/photos.php:1096
+msgid "Do not show a status post for this upload"
 msgstr ""
 
-#: src/Content/Nav.php:179
-msgid "Network Reset"
+#: mod/photos.php:1098 mod/photos.php:1441 mod/events.php:533
+#: src/Core/ACL.php:318
+msgid "Permissions"
 msgstr ""
 
-#: src/Content/Nav.php:179
-msgid "Load Network page with no filters"
+#: mod/photos.php:1106 mod/photos.php:1449 mod/settings.php:1231
+msgid "Show to Groups"
 msgstr ""
 
-#: src/Content/Nav.php:185 src/Core/NotificationsManager.php:199
-msgid "Introductions"
+#: mod/photos.php:1107 mod/photos.php:1450 mod/settings.php:1232
+msgid "Show to Contacts"
 msgstr ""
 
-#: src/Content/Nav.php:185
-msgid "Friend Requests"
+#: mod/photos.php:1167
+msgid "Edit Album"
 msgstr ""
 
-#: src/Content/Nav.php:186 mod/notifications.php:98
-msgid "Notifications"
+#: mod/photos.php:1172
+msgid "Show Newest First"
 msgstr ""
 
-#: src/Content/Nav.php:187
-msgid "See all notifications"
+#: mod/photos.php:1174
+msgid "Show Oldest First"
 msgstr ""
 
-#: src/Content/Nav.php:188 mod/settings.php:870
-msgid "Mark as seen"
+#: mod/photos.php:1195 mod/photos.php:1698
+msgid "View Photo"
 msgstr ""
 
-#: src/Content/Nav.php:188
-msgid "Mark all system notifications seen"
+#: mod/photos.php:1236
+msgid "Permission denied. Access to this item may be restricted."
 msgstr ""
 
-#: src/Content/Nav.php:191 mod/message.php:112 view/theme/frio/theme.php:268
-msgid "Messages"
+#: mod/photos.php:1238
+msgid "Photo not available"
 msgstr ""
 
-#: src/Content/Nav.php:191 view/theme/frio/theme.php:268
-msgid "Private mail"
+#: mod/photos.php:1301
+msgid "View photo"
 msgstr ""
 
-#: src/Content/Nav.php:192
-msgid "Inbox"
+#: mod/photos.php:1301
+msgid "Edit photo"
 msgstr ""
 
-#: src/Content/Nav.php:193
-msgid "Outbox"
+#: mod/photos.php:1302
+msgid "Use as profile photo"
 msgstr ""
 
-#: src/Content/Nav.php:194 mod/message.php:30
-msgid "New Message"
+#: mod/photos.php:1308 src/Object/Post.php:149
+msgid "Private Message"
 msgstr ""
 
-#: src/Content/Nav.php:197
-msgid "Manage"
+#: mod/photos.php:1327
+msgid "View Full Size"
 msgstr ""
 
-#: src/Content/Nav.php:197
-msgid "Manage other pages"
+#: mod/photos.php:1414
+msgid "Tags: "
 msgstr ""
 
-#: src/Content/Nav.php:200 mod/settings.php:93
-msgid "Delegations"
+#: mod/photos.php:1417
+msgid "[Remove any tag]"
 msgstr ""
 
-#: src/Content/Nav.php:200 mod/delegate.php:169
-msgid "Delegate Page Management"
+#: mod/photos.php:1432
+msgid "New album name"
 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"
+#: mod/photos.php:1433
+msgid "Caption"
 msgstr ""
 
-#: src/Content/Nav.php:202 view/theme/frio/theme.php:269
-msgid "Account settings"
+#: mod/photos.php:1434
+msgid "Add a Tag"
 msgstr ""
 
-#: src/Content/Nav.php:205
-msgid "Manage/Edit Profiles"
+#: mod/photos.php:1434
+msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 msgstr ""
 
-#: src/Content/Nav.php:208 view/theme/frio/theme.php:270
-msgid "Manage/edit friends and contacts"
+#: mod/photos.php:1435
+msgid "Do not rotate"
 msgstr ""
 
-#: src/Content/Nav.php:213 mod/admin.php:222
-msgid "Admin"
+#: mod/photos.php:1436
+msgid "Rotate CW (right)"
 msgstr ""
 
-#: src/Content/Nav.php:213
-msgid "Site setup and configuration"
+#: mod/photos.php:1437
+msgid "Rotate CCW (left)"
 msgstr ""
 
-#: src/Content/Nav.php:216
-msgid "Navigation"
+#: mod/photos.php:1471 src/Object/Post.php:296
+msgid "I like this (toggle)"
 msgstr ""
 
-#: src/Content/Nav.php:216
-msgid "Site map"
+#: mod/photos.php:1472 src/Object/Post.php:297
+msgid "I don't like this (toggle)"
 msgstr ""
 
-#: src/Worker/Delivery.php:390
-msgid "(no subject)"
+#: 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 ""
 
-#: src/App.php:511
-msgid "Delete this item?"
+#: 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 ""
 
-#: src/App.php:513
-msgid "show fewer"
+#: mod/photos.php:1634
+msgid "Map"
 msgstr ""
 
-#: src/Module/Login.php:86 src/Module/Login.php:134 mod/openid.php:116
-msgid "Login failed."
+#: mod/photos.php:1704 mod/videos.php:387
+msgid "View Album"
 msgstr ""
 
-#: src/Module/Login.php:282
-msgid "Create a New Account"
+#: mod/videos.php:139
+msgid "Do you really want to delete this video?"
 msgstr ""
 
-#: src/Module/Login.php:314 mod/lostpass.php:119
-msgid "Nickname or Email: "
+#: mod/videos.php:144
+msgid "Delete Video"
 msgstr ""
 
-#: src/Module/Login.php:315
-msgid "Password: "
+#: mod/videos.php:207
+msgid "No videos selected"
 msgstr ""
 
-#: src/Module/Login.php:316
-msgid "Remember me"
+#: mod/videos.php:396
+msgid "Recent Videos"
 msgstr ""
 
-#: src/Module/Login.php:319
-msgid "Or login using OpenID: "
+#: mod/videos.php:398
+msgid "Upload New Videos"
 msgstr ""
 
-#: src/Module/Login.php:325
-msgid "Forgot your password?"
+#: mod/cal.php:142 mod/display.php:313 mod/profile.php:173
+msgid "Access to this profile has been restricted."
 msgstr ""
 
-#: src/Module/Login.php:326 mod/lostpass.php:136
-msgid "Password Reset"
+#: 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 ""
 
-#: src/Module/Login.php:328
-msgid "Website Terms of Service"
+#: mod/cal.php:275 mod/events.php:392
+msgid "View"
 msgstr ""
 
-#: src/Module/Login.php:329
-msgid "terms of service"
+#: mod/cal.php:276 mod/events.php:394
+msgid "Previous"
 msgstr ""
 
-#: src/Module/Login.php:331
-msgid "Website Privacy Policy"
+#: mod/cal.php:277 mod/events.php:395 mod/install.php:209
+msgid "Next"
 msgstr ""
 
-#: src/Module/Login.php:332
-msgid "privacy policy"
+#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412
+msgid "today"
 msgstr ""
 
-#: src/Module/Tos.php:48 mod/admin.php:188 mod/admin.php:302
-#: mod/register.php:288
-msgid "Terms of Service"
+#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304
+#: src/Model/Event.php:413
+msgid "month"
 msgstr ""
 
-#: src/Module/Tos.php:51
-msgid "Privacy Statement"
+#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305
+#: src/Model/Event.php:414
+msgid "week"
 msgstr ""
 
-#: 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."
+#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306
+#: src/Model/Event.php:415
+msgid "day"
 msgstr ""
 
-#: 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."
+#: mod/cal.php:284 mod/events.php:404
+msgid "list"
 msgstr ""
 
-#: src/Module/Tos.php:54
-#, php-format
-msgid ""
-"At any point in time a logged in user can export their account data from the "
-"<a href=\"%1$s/settings/uexport\">account settings</a>. If the user wants to "
-"delete their account they can do so at <a href=\"%1$s/removeme\">%1$s/"
-"removeme</a>. The deletion of the account will be permanent."
+#: mod/cal.php:297 src/Core/Console/NewPassword.php:73 src/Model/User.php:214
+msgid "User not found"
 msgstr ""
 
-#: src/Module/Logout.php:28
-msgid "Logged out."
+#: mod/cal.php:313
+msgid "This calendar format is not supported"
 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"
+#: mod/cal.php:315
+msgid "No exportable data found"
 msgstr ""
 
-#: src/Object/Post.php:128
-msgid "This entry was edited"
+#: mod/cal.php:332
+msgid "calendar"
 msgstr ""
 
-#: src/Object/Post.php:149 mod/photos.php:1308
-msgid "Private Message"
-msgstr ""
+#: mod/contacts.php:157
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] ""
+msgstr[1] ""
 
-#: src/Object/Post.php:155 src/Object/Post.php:157 mod/settings.php:737
-msgid "Edit"
+#: mod/contacts.php:184 mod/contacts.php:400
+msgid "Could not access contact record."
 msgstr ""
 
-#: src/Object/Post.php:182
-msgid "save to folder"
+#: mod/contacts.php:194
+msgid "Could not locate selected profile."
 msgstr ""
 
-#: src/Object/Post.php:235
-msgid "I will attend"
+#: mod/contacts.php:228
+msgid "Contact updated."
 msgstr ""
 
-#: src/Object/Post.php:235
-msgid "I will not attend"
+#: mod/contacts.php:421
+msgid "Contact has been blocked"
 msgstr ""
 
-#: src/Object/Post.php:235
-msgid "I might attend"
+#: mod/contacts.php:421
+msgid "Contact has been unblocked"
 msgstr ""
 
-#: src/Object/Post.php:263
-msgid "add star"
+#: mod/contacts.php:432
+msgid "Contact has been ignored"
 msgstr ""
 
-#: src/Object/Post.php:264
-msgid "remove star"
+#: mod/contacts.php:432
+msgid "Contact has been unignored"
 msgstr ""
 
-#: src/Object/Post.php:265
-msgid "toggle star status"
+#: mod/contacts.php:443
+msgid "Contact has been archived"
 msgstr ""
 
-#: src/Object/Post.php:268
-msgid "starred"
+#: mod/contacts.php:443
+msgid "Contact has been unarchived"
 msgstr ""
 
-#: src/Object/Post.php:274
-msgid "ignore thread"
+#: mod/contacts.php:467
+msgid "Drop contact"
 msgstr ""
 
-#: src/Object/Post.php:275
-msgid "unignore thread"
+#: mod/contacts.php:470 mod/contacts.php:823
+msgid "Do you really want to delete this contact?"
 msgstr ""
 
-#: src/Object/Post.php:276
-msgid "toggle ignore status"
+#: mod/contacts.php:488
+msgid "Contact has been removed."
 msgstr ""
 
-#: src/Object/Post.php:279 mod/ostatus_subscribe.php:83
-msgid "ignored"
+#: mod/contacts.php:519
+#, php-format
+msgid "You are mutual friends with %s"
 msgstr ""
 
-#: src/Object/Post.php:285
-msgid "add tag"
+#: mod/contacts.php:523
+#, php-format
+msgid "You are sharing with %s"
 msgstr ""
 
-#: src/Object/Post.php:296 mod/photos.php:1471
-msgid "I like this (toggle)"
+#: mod/contacts.php:527
+#, php-format
+msgid "%s is sharing with you"
 msgstr ""
 
-#: src/Object/Post.php:296
-msgid "like"
+#: mod/contacts.php:547
+msgid "Private communications are not available for this contact."
 msgstr ""
 
-#: src/Object/Post.php:297 mod/photos.php:1472
-msgid "I don't like this (toggle)"
+#: mod/contacts.php:549
+msgid "Never"
 msgstr ""
 
-#: src/Object/Post.php:297
-msgid "dislike"
+#: mod/contacts.php:552
+msgid "(Update was successful)"
 msgstr ""
 
-#: src/Object/Post.php:300
-msgid "Share this"
+#: mod/contacts.php:552
+msgid "(Update was not successful)"
 msgstr ""
 
-#: src/Object/Post.php:300
-msgid "share"
+#: mod/contacts.php:554 mod/contacts.php:992
+msgid "Suggest friends"
 msgstr ""
 
-#: src/Object/Post.php:365
-msgid "to"
+#: mod/contacts.php:558
+#, php-format
+msgid "Network type: %s"
 msgstr ""
 
-#: src/Object/Post.php:366
-msgid "via"
+#: mod/contacts.php:563
+msgid "Communications lost with this contact!"
 msgstr ""
 
-#: src/Object/Post.php:367
-msgid "Wall-to-Wall"
+#: mod/contacts.php:569
+msgid "Fetch further information for feeds"
 msgstr ""
 
-#: src/Object/Post.php:368
-msgid "via Wall-To-Wall:"
+#: 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 ""
 
-#: src/Object/Post.php:399 src/Object/Post.php:795 mod/photos.php:1490
-#: mod/photos.php:1529 mod/photos.php:1602
-msgid "Comment"
+#: mod/contacts.php:572 mod/admin.php:1274 mod/admin.php:1437
+#: mod/admin.php:1447
+msgid "Disabled"
 msgstr ""
 
-#: src/Object/Post.php:427
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] ""
-msgstr[1] ""
+#: mod/contacts.php:573
+msgid "Fetch information"
+msgstr ""
 
-#: 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"
+#: mod/contacts.php:574
+msgid "Fetch keywords"
 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"
+#: mod/contacts.php:575
+msgid "Fetch information and keywords"
 msgstr ""
 
-#: src/Object/Post.php:797
-msgid "Bold"
+#: mod/contacts.php:599 mod/unfollow.php:100
+msgid "Disconnect/Unfollow"
 msgstr ""
 
-#: src/Object/Post.php:798
-msgid "Italic"
+#: mod/contacts.php:608
+msgid "Contact"
 msgstr ""
 
-#: src/Object/Post.php:799
-msgid "Underline"
+#: mod/contacts.php:611
+msgid "Profile Visibility"
 msgstr ""
 
-#: src/Object/Post.php:800
-msgid "Quote"
+#: mod/contacts.php:612
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
 msgstr ""
 
-#: src/Object/Post.php:801
-msgid "Code"
+#: mod/contacts.php:613
+msgid "Contact Information / Notes"
 msgstr ""
 
-#: src/Object/Post.php:802
-msgid "Image"
+#: mod/contacts.php:614
+msgid "Their personal note"
 msgstr ""
 
-#: src/Object/Post.php:803
-msgid "Link"
+#: mod/contacts.php:616
+msgid "Edit contact notes"
 msgstr ""
 
-#: src/Object/Post.php:804
-msgid "Video"
+#: mod/contacts.php:620
+msgid "Block/Unblock contact"
 msgstr ""
 
-#: src/Database/DBStructure.php:32
-msgid "There are no tables on MyISAM."
+#: mod/contacts.php:621
+msgid "Ignore contact"
 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."
+#: mod/contacts.php:622
+msgid "Repair URL settings"
 msgstr ""
 
-#: src/Database/DBStructure.php:80
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
+#: mod/contacts.php:623
+msgid "View conversations"
 msgstr ""
 
-#: src/Database/DBStructure.php:191
-#, php-format
-msgid ""
-"\n"
-"Error %d occurred during database update:\n"
-"%s\n"
+#: mod/contacts.php:628
+msgid "Last update:"
 msgstr ""
 
-#: src/Database/DBStructure.php:194
-msgid "Errors encountered performing database changes: "
+#: mod/contacts.php:630
+msgid "Update public posts"
 msgstr ""
 
-#: src/Database/DBStructure.php:210
-msgid ": Database update"
+#: mod/contacts.php:632 mod/contacts.php:1002
+msgid "Update now"
 msgstr ""
 
-#: src/Database/DBStructure.php:460
-#, php-format
-msgid "%s: updating %s table."
+#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
+#: mod/admin.php:485 mod/admin.php:1816
+msgid "Unblock"
 msgstr ""
 
-#: src/Core/UserImport.php:104
-msgid "Error decoding account file"
+#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
+#: mod/admin.php:484 mod/admin.php:1815
+msgid "Block"
 msgstr ""
 
-#: src/Core/UserImport.php:110
-msgid "Error! No version data in file! This is not a Friendica account file?"
+#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
+msgid "Unignore"
 msgstr ""
 
-#: src/Core/UserImport.php:118
-#, php-format
-msgid "User '%s' already exists on this server!"
+#: mod/contacts.php:642
+msgid "Currently blocked"
 msgstr ""
 
-#: src/Core/UserImport.php:151
-msgid "User creation error"
+#: mod/contacts.php:643
+msgid "Currently ignored"
 msgstr ""
 
-#: src/Core/UserImport.php:169
-msgid "User profile creation error"
+#: mod/contacts.php:644
+msgid "Currently archived"
 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"
+#: mod/contacts.php:645
+msgid "Awaiting connection acknowledge"
 msgstr ""
 
-#: src/Core/Console/NewPassword.php:78 mod/settings.php:394
+#: mod/contacts.php:646
 msgid ""
-"The new password has been exposed in a public data dump, please choose "
-"another."
+"Replies/likes to your public posts <strong>may</strong> still be visible"
 msgstr ""
 
-#: src/Core/Console/NewPassword.php:82 mod/settings.php:409
-msgid "Password update failed. Please try again."
+#: mod/contacts.php:647
+msgid "Notification for new posts"
 msgstr ""
 
-#: src/Core/Console/NewPassword.php:85 mod/settings.php:407
-msgid "Password changed."
+#: mod/contacts.php:647
+msgid "Send a notification of every new post of this contact"
 msgstr ""
 
-#: src/Core/Console/GlobalCommunityBlock.php:69 mod/admin.php:443
-#, php-format
-msgid "Could not find any contact entry for this URL (%s)"
+#: mod/contacts.php:650
+msgid "Blacklisted keywords"
 msgstr ""
 
-#: src/Core/Console/GlobalCommunityBlock.php:72 mod/admin.php:441
-msgid "The contact has been blocked from the node"
+#: 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 ""
 
-#: src/Core/ACL.php:295
-msgid "Post to Email"
+#: mod/contacts.php:662 src/Model/Profile.php:420
+msgid "XMPP:"
 msgstr ""
 
-#: src/Core/ACL.php:301
-msgid "Hide your profile details from unknown viewers?"
+#: mod/contacts.php:667
+msgid "Actions"
 msgstr ""
 
-#: src/Core/ACL.php:300
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
+#: 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 ""
 
-#: src/Core/ACL.php:307
-msgid "Visible to everybody"
+#: mod/contacts.php:670
+msgid "Contact Settings"
 msgstr ""
 
-#: src/Core/ACL.php:308 view/theme/vier/config.php:115
-msgid "show"
+#: mod/contacts.php:711
+msgid "Suggestions"
 msgstr ""
 
-#: src/Core/ACL.php:309 view/theme/vier/config.php:115
-msgid "don't show"
+#: mod/contacts.php:714
+msgid "Suggest potential friends"
 msgstr ""
 
-#: src/Core/ACL.php:315 mod/editpost.php:134
-msgid "CC: email addresses"
+#: mod/contacts.php:722
+msgid "Show all contacts"
 msgstr ""
 
-#: src/Core/ACL.php:316 mod/editpost.php:141
-msgid "Example: bob@example.com, mary@example.com"
+#: mod/contacts.php:727
+msgid "Unblocked"
 msgstr ""
 
-#: src/Core/ACL.php:318 mod/events.php:533 mod/photos.php:1098
-#: mod/photos.php:1441
-msgid "Permissions"
+#: mod/contacts.php:730
+msgid "Only show unblocked contacts"
 msgstr ""
 
-#: src/Core/ACL.php:319
-msgid "Close"
+#: mod/contacts.php:735
+msgid "Blocked"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:171
-msgid "System"
+#: mod/contacts.php:738
+msgid "Only show blocked contacts"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:185 mod/network.php:955
-#: mod/profiles.php:687
-msgid "Personal"
+#: mod/contacts.php:743
+msgid "Ignored"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268
-#, php-format
-msgid "%s commented on %s's post"
+#: mod/contacts.php:746
+msgid "Only show ignored contacts"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:267
-#, php-format
-msgid "%s created a new post"
+#: mod/contacts.php:751
+msgid "Archived"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:281
-#, php-format
-msgid "%s liked %s's post"
+#: mod/contacts.php:754
+msgid "Only show archived contacts"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:294
-#, php-format
-msgid "%s disliked %s's post"
+#: mod/contacts.php:759
+msgid "Hidden"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:307
-#, php-format
-msgid "%s is attending %s's event"
+#: mod/contacts.php:762
+msgid "Only show hidden contacts"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:320
-#, php-format
-msgid "%s is not attending %s's event"
+#: mod/contacts.php:818
+msgid "Search your contacts"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:333
-#, php-format
-msgid "%s may attend %s's event"
+#: mod/contacts.php:820 mod/directory.php:209 view/theme/vier/theme.php:203
+#: src/Content/Widget.php:63
+msgid "Find"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:350
-#, php-format
-msgid "%s is now friends with %s"
+#: mod/contacts.php:826 mod/settings.php:171 mod/settings.php:703
+msgid "Update"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:825
-msgid "Friend Suggestion"
+#: mod/contacts.php:829 mod/contacts.php:1027
+msgid "Archive"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:851
-msgid "Friend/Connect Request"
+#: mod/contacts.php:829 mod/contacts.php:1027
+msgid "Unarchive"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:851
-msgid "New Follower"
+#: mod/contacts.php:832
+msgid "Batch Actions"
 msgstr ""
 
-#: src/Util/Temporal.php:81 src/Util/Temporal.php:83 mod/profiles.php:689
-msgid "Miscellaneous"
+#: mod/contacts.php:858 mod/unfollow.php:132 mod/follow.php:186
+#: src/Model/Profile.php:889
+msgid "Status Messages and Posts"
 msgstr ""
 
-#: src/Util/Temporal.php:149 mod/profiles.php:712
-msgid "Age: "
+#: mod/contacts.php:866 src/Model/Profile.php:897
+msgid "Profile Details"
 msgstr ""
 
-#: src/Util/Temporal.php:151
-msgid "YYYY-MM-DD or MM-DD"
+#: mod/contacts.php:878
+msgid "View all contacts"
 msgstr ""
 
-#: src/Util/Temporal.php:294
-msgid "never"
+#: mod/contacts.php:889
+msgid "View all common friends"
 msgstr ""
 
-#: src/Util/Temporal.php:300
-msgid "less than a second ago"
+#: mod/contacts.php:895 mod/events.php:532 mod/admin.php:1353
+#: src/Model/Profile.php:863
+msgid "Advanced"
 msgstr ""
 
-#: src/Util/Temporal.php:303
-msgid "year"
+#: mod/contacts.php:898
+msgid "Advanced Contact Settings"
 msgstr ""
 
-#: src/Util/Temporal.php:303
-msgid "years"
+#: mod/contacts.php:930
+msgid "Mutual Friendship"
 msgstr ""
 
-#: src/Util/Temporal.php:304
-msgid "months"
+#: mod/contacts.php:934
+msgid "is a fan of yours"
 msgstr ""
 
-#: src/Util/Temporal.php:305
-msgid "weeks"
+#: mod/contacts.php:938
+msgid "you are a fan of"
 msgstr ""
 
-#: src/Util/Temporal.php:306
-msgid "days"
+#: mod/contacts.php:1013
+msgid "Toggle Blocked status"
 msgstr ""
 
-#: src/Util/Temporal.php:307
-msgid "hour"
+#: mod/contacts.php:1021
+msgid "Toggle Ignored status"
 msgstr ""
 
-#: src/Util/Temporal.php:307
-msgid "hours"
+#: mod/contacts.php:1029
+msgid "Toggle Archive status"
 msgstr ""
 
-#: src/Util/Temporal.php:308
-msgid "minute"
+#: mod/contacts.php:1037
+msgid "Delete contact"
 msgstr ""
 
-#: src/Util/Temporal.php:308
-msgid "minutes"
+#: mod/delegate.php:37
+msgid "Parent user not found."
 msgstr ""
 
-#: src/Util/Temporal.php:309
-msgid "second"
+#: mod/delegate.php:144
+msgid "No parent user"
 msgstr ""
 
-#: src/Util/Temporal.php:309
-msgid "seconds"
+#: mod/delegate.php:159
+msgid "Parent Password:"
 msgstr ""
 
-#: src/Util/Temporal.php:318
-#, php-format
-msgid "%1$d %2$s ago"
+#: mod/delegate.php:159
+msgid ""
+"Please enter the password of the parent account to legitimize your request."
 msgstr ""
 
-#: src/Protocol/OStatus.php:1251 mod/profile.php:80
-#, php-format
-msgid "%s's timeline"
+#: mod/delegate.php:164
+msgid "Parent User"
 msgstr ""
 
-#: src/Protocol/OStatus.php:1252 mod/profile.php:78
-#, php-format
-msgid "%s's posts"
+#: 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 ""
 
-#: src/Protocol/OStatus.php:1253 mod/profile.php:79
-#, php-format
-msgid "%s's comments"
+#: 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 ""
 
-#: src/Protocol/OStatus.php:1799
-#, php-format
-msgid "%s is now following %s."
+#: mod/delegate.php:169 src/Content/Nav.php:201
+msgid "Delegate Page Management"
 msgstr ""
 
-#: src/Protocol/OStatus.php:1800
-msgid "following"
+#: mod/delegate.php:170
+msgid "Delegates"
 msgstr ""
 
-#: src/Protocol/OStatus.php:1803
-#, php-format
-msgid "%s stopped following %s."
+#: 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 ""
 
-#: src/Protocol/OStatus.php:1804
-msgid "stopped following"
+#: mod/delegate.php:173
+msgid "Existing Page Delegates"
 msgstr ""
 
-#: src/Protocol/Diaspora.php:2680
-msgid "Sharing notification from Diaspora network"
+#: mod/delegate.php:175
+msgid "Potential Delegates"
 msgstr ""
 
-#: src/Protocol/Diaspora.php:3756
-msgid "Attachments:"
+#: mod/delegate.php:178
+msgid "Add"
 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."
+#: mod/delegate.php:179
+msgid "No entries."
 msgstr ""
 
-#: mod/directory.php:202 view/theme/vier/theme.php:201
-msgid "Global Directory"
+#: mod/events.php:105 mod/events.php:107
+msgid "Event can not end before it has started."
 msgstr ""
 
-#: mod/directory.php:204
-msgid "Find on this site"
+#: mod/events.php:114 mod/events.php:116
+msgid "Event title and start time are required."
 msgstr ""
 
-#: mod/directory.php:206
-msgid "Results for:"
+#: mod/events.php:393
+msgid "Create New Event"
 msgstr ""
 
-#: mod/directory.php:208
-msgid "Site Directory"
+#: mod/events.php:506
+msgid "Event details"
 msgstr ""
 
-#: mod/directory.php:213
-msgid "No entries (some entries may be hidden)."
+#: mod/events.php:507
+msgid "Starting date and Title are required."
 msgstr ""
 
-#: mod/dirfind.php:49
-#, php-format
-msgid "People Search - %s"
+#: mod/events.php:508 mod/events.php:509
+msgid "Event Starts:"
 msgstr ""
 
-#: mod/dirfind.php:60
-#, php-format
-msgid "Forum Search - %s"
+#: mod/events.php:508 mod/events.php:520 mod/profiles.php:700
+msgid "Required"
 msgstr ""
 
-#: mod/dirfind.php:253 mod/match.php:125
-msgid "No matches"
+#: mod/events.php:510 mod/events.php:526
+msgid "Finish date/time is not known or not relevant"
 msgstr ""
 
-#: mod/repair_ostatus.php:18
-msgid "Resubscribing to OStatus contacts"
+#: mod/events.php:512 mod/events.php:513
+msgid "Event Finishes:"
 msgstr ""
 
-#: mod/repair_ostatus.php:34
-msgid "Error"
+#: mod/events.php:514 mod/events.php:527
+msgid "Adjust for viewer timezone"
 msgstr ""
 
-#: mod/repair_ostatus.php:48 mod/ostatus_subscribe.php:64
-msgid "Done"
+#: mod/events.php:516
+msgid "Description:"
 msgstr ""
 
-#: mod/repair_ostatus.php:54 mod/ostatus_subscribe.php:88
-msgid "Keep this window open until done."
+#: mod/events.php:520 mod/events.php:522
+msgid "Title:"
 msgstr ""
 
-#: mod/ping.php:292
-msgid "{0} wants to be your friend"
+#: mod/events.php:523 mod/events.php:524
+msgid "Share this event"
 msgstr ""
 
-#: mod/ping.php:307
-msgid "{0} sent you a message"
+#: mod/events.php:531 src/Model/Profile.php:862
+msgid "Basic"
 msgstr ""
 
-#: mod/ping.php:322
-msgid "{0} requested registration"
+#: mod/events.php:552
+msgid "Failed to remove event"
 msgstr ""
 
-#: mod/suggest.php:36
-msgid "Do you really want to delete this suggestion?"
+#: mod/events.php:554
+msgid "Event removed"
 msgstr ""
 
-#: mod/suggest.php:73
+#: 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 ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
+"This message was sent to you by %s, a member of the Friendica social network."
 msgstr ""
 
-#: mod/suggest.php:84 mod/suggest.php:104
-msgid "Ignore/Hide"
+#: mod/item.php:801
+#, php-format
+msgid "You may visit them online at %s"
 msgstr ""
 
-#: mod/display.php:313 mod/profile.php:173 mod/cal.php:142
-msgid "Access to this profile has been restricted."
+#: 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
@@ -3464,16 +3568,6 @@ msgstr ""
 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 ""
@@ -3482,14 +3576,6 @@ msgstr ""
 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 ""
@@ -3518,374 +3604,213 @@ msgstr ""
 msgid "Image uploaded successfully."
 msgstr ""
 
-#: mod/profile_photo.php:307 mod/photos.php:847 mod/wall_upload.php:239
-msgid "Image upload failed."
+#: mod/unfollow.php:34
+msgid "Contact wasn't found or can't be unfollowed."
 msgstr ""
 
-#: mod/removeme.php:43
-msgid "User deleted their account"
+#: mod/unfollow.php:47
+msgid "Contact unfollowed"
 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."
+#: mod/unfollow.php:73
+msgid "You aren't a friend of this contact."
 msgstr ""
 
-#: mod/removeme.php:45
-#, php-format
-msgid "The user id is %d"
+#: mod/unfollow.php:79
+msgid "Unfollowing is currently not supported by your network."
 msgstr ""
 
-#: mod/removeme.php:76 mod/removeme.php:79
-msgid "Remove My Account"
+#: mod/directory.php:152 src/Model/Profile.php:417 src/Model/Profile.php:767
+msgid "Status:"
 msgstr ""
 
-#: mod/removeme.php:77
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
+#: mod/directory.php:153 src/Model/Profile.php:418 src/Model/Profile.php:784
+msgid "Homepage:"
 msgstr ""
 
-#: mod/removeme.php:78
-msgid "Please enter your password for verification:"
+#: mod/directory.php:202 view/theme/vier/theme.php:208
+#: src/Content/Widget.php:68
+msgid "Global Directory"
 msgstr ""
 
-#: mod/manage.php:180
-msgid "Manage Identities and/or Pages"
+#: mod/directory.php:204
+msgid "Find on this site"
 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."
+#: mod/directory.php:206
+msgid "Results for:"
 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."
+#: mod/directory.php:208
+msgid "Site Directory"
 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"
+#: mod/directory.php:213
+msgid "No entries (some entries may be hidden)."
 msgstr ""
 
-#: mod/uimport.php:76
-msgid "Account file"
+#: mod/dirfind.php:49
+#, php-format
+msgid "People Search - %s"
 msgstr ""
 
-#: mod/uimport.php:76
-msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
+#: mod/dirfind.php:60
+#, php-format
+msgid "Forum Search - %s"
 msgstr ""
 
-#: mod/invite.php:33
-msgid "Total invitation limit exceeded."
+#: mod/follow.php:45
+msgid "The contact could not be added."
 msgstr ""
 
-#: mod/invite.php:55
-#, php-format
-msgid "%s : Not a valid email address."
+#: mod/follow.php:73
+msgid "You already added this contact."
 msgstr ""
 
-#: mod/invite.php:87
-msgid "Please join us on Friendica"
+#: mod/follow.php:83
+msgid "Diaspora support isn't enabled. Contact can't be added."
 msgstr ""
 
-#: mod/invite.php:96
-msgid "Invitation limit exceeded. Please contact your site administrator."
+#: mod/follow.php:90
+msgid "OStatus support is disabled. Contact can't be added."
 msgstr ""
 
-#: mod/invite.php:100
-#, php-format
-msgid "%s : Message delivery failed."
+#: mod/follow.php:97
+msgid "The network type couldn't be detected. Contact can't be added."
 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"
+#: mod/lostpass.php:27
+msgid "No valid account found."
 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."
+#: mod/lostpass.php:39
+msgid "Password reset request issued. Check your email."
 msgstr ""
 
-#: mod/invite.php:132
+#: mod/lostpass.php:45
 #, php-format
 msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
+"\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/invite.php:133
+#: mod/lostpass.php:56
 #, 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."
+"\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/invite.php:140
+#: mod/lostpass.php:73
 #, 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:"
+msgid "Password reset requested at %s"
 msgstr ""
 
-#: mod/invite.php:150
+#: mod/lostpass.php:89
 msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
 msgstr ""
 
-#: mod/invite.php:152
-msgid "You will need to supply this invitation code: $invite_code"
+#: mod/lostpass.php:102
+msgid "Request has expired, please make a new one."
 msgstr ""
 
-#: mod/invite.php:152
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
+#: mod/lostpass.php:117
+msgid "Forgot your Password?"
 msgstr ""
 
-#: mod/invite.php:154
+#: mod/lostpass.php:118
 msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendi.ca"
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
 msgstr ""
 
-#: mod/openid.php:29
-msgid "OpenID protocol error. No ID returned."
+#: mod/lostpass.php:119 src/Module/Login.php:314
+msgid "Nickname or Email: "
 msgstr ""
 
-#: mod/openid.php:66
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
+#: mod/lostpass.php:120
+msgid "Reset"
 msgstr ""
 
-#: mod/hcard.php:18
-msgid "No profile"
+#: mod/lostpass.php:136 src/Module/Login.php:326
+msgid "Password Reset"
 msgstr ""
 
-#: mod/apps.php:14 index.php:273
-msgid "You must be logged in to use addons. "
+#: mod/lostpass.php:137
+msgid "Your password has been reset as requested."
 msgstr ""
 
-#: mod/apps.php:19
-msgid "Applications"
+#: mod/lostpass.php:138
+msgid "Your new password is"
 msgstr ""
 
-#: mod/apps.php:22
-msgid "No installed applications."
+#: mod/lostpass.php:139
+msgid "Save or copy your new password - and then"
 msgstr ""
 
-#: mod/network.php:194 mod/search.php:37
-msgid "Remove term"
+#: mod/lostpass.php:140
+msgid "click here to login"
 msgstr ""
 
-#: mod/network.php:547
-#, php-format
+#: mod/lostpass.php:141
 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"
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
 msgstr ""
 
-#: mod/network.php:643
+#: mod/lostpass.php:149
 #, 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 <a href=\"https://friendi.ca\">Friendi.ca</a> 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"
+"\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/friendica.php:122
+#: mod/lostpass.php:155
 #, php-format
-msgid "Read about the <a href=\"%1$s/tos\">Terms of Service</a> 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"
+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/subthread.php:113
+#: mod/lostpass.php:169
 #, 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."
+msgid "Your password has been changed at %s"
 msgstr ""
 
 #: mod/profiles.php:58
@@ -3987,16 +3912,6 @@ msgstr ""
 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 ""
@@ -4021,6 +3936,10 @@ msgstr ""
 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 ""
@@ -4053,10 +3972,19 @@ msgstr ""
 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 ""
@@ -4065,6 +3993,10 @@ msgstr ""
 msgid "<span class=\"heart\">&hearts;</span> 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 ""
@@ -4073,10 +4005,6 @@ msgstr ""
 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 <strong>public</strong> profile.<br />It <strong>may</strong> "
@@ -4111,6 +4039,10 @@ msgstr ""
 msgid "Country:"
 msgstr ""
 
+#: mod/profiles.php:712 src/Util/Temporal.php:149
+msgid "Age: "
+msgstr ""
+
 #: mod/profiles.php:715
 msgid "Who: (if applicable)"
 msgstr ""
@@ -4141,6 +4073,14 @@ msgstr ""
 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 ""
@@ -4161,6 +4101,14 @@ msgstr ""
 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 ""
@@ -4197,5327 +4145,5409 @@ msgstr ""
 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/events.php:105 mod/events.php:107
-msgid "Event can not end before it has started."
+#: mod/profiles.php:777 src/Model/Profile.php:375 src/Model/Profile.php:397
+msgid "Change profile photo"
 msgstr ""
 
-#: mod/events.php:114 mod/events.php:116
-msgid "Event title and start time are required."
+#: mod/profiles.php:778 src/Model/Profile.php:376
+msgid "Create New Profile"
 msgstr ""
 
-#: mod/events.php:392 mod/cal.php:275
-msgid "View"
+#: mod/register.php:99
+msgid ""
+"Registration successful. Please check your email for further instructions."
 msgstr ""
 
-#: mod/events.php:393
-msgid "Create New Event"
+#: mod/register.php:103
+#, php-format
+msgid ""
+"Failed to send email message. Here your accout details:<br> login: %s<br> "
+"password: %s<br><br>You can change your password after login."
 msgstr ""
 
-#: mod/events.php:394 mod/cal.php:276
-msgid "Previous"
+#: mod/register.php:110
+msgid "Registration successful."
 msgstr ""
 
-#: mod/events.php:395 mod/cal.php:277 mod/install.php:209
-msgid "Next"
+#: mod/register.php:115
+msgid "Your registration can not be processed."
 msgstr ""
 
-#: mod/events.php:404 mod/cal.php:284
-msgid "list"
+#: mod/register.php:162
+msgid "Your registration is pending approval by the site owner."
 msgstr ""
 
-#: mod/events.php:506
-msgid "Event details"
+#: mod/register.php:220
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
 msgstr ""
 
-#: mod/events.php:507
-msgid "Starting date and Title are required."
+#: 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/events.php:508 mod/events.php:509
-msgid "Event Starts:"
+#: mod/register.php:222
+msgid "Your OpenID (optional): "
 msgstr ""
 
-#: mod/events.php:510 mod/events.php:526
-msgid "Finish date/time is not known or not relevant"
+#: mod/register.php:234
+msgid "Include your profile in member directory?"
 msgstr ""
 
-#: mod/events.php:512 mod/events.php:513
-msgid "Event Finishes:"
+#: mod/register.php:259
+msgid "Note for the admin"
 msgstr ""
 
-#: mod/events.php:514 mod/events.php:527
-msgid "Adjust for viewer timezone"
+#: mod/register.php:259
+msgid "Leave a message for the admin, why you want to join this node"
 msgstr ""
 
-#: mod/events.php:516
-msgid "Description:"
+#: mod/register.php:260
+msgid "Membership on this site is by invitation only."
 msgstr ""
 
-#: mod/events.php:520 mod/events.php:522
-msgid "Title:"
+#: mod/register.php:261
+msgid "Your invitation code: "
 msgstr ""
 
-#: mod/events.php:523 mod/events.php:524
-msgid "Share this event"
+#: mod/register.php:264 mod/admin.php:1350
+msgid "Registration"
 msgstr ""
 
-#: mod/events.php:552
-msgid "Failed to remove event"
+#: mod/register.php:270
+msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
 msgstr ""
 
-#: mod/events.php:554
-msgid "Event removed"
+#: mod/register.php:271
+msgid ""
+"Your Email Address: (Initial information will be send there, so this has to "
+"be an existing address.)"
 msgstr ""
 
-#: mod/notify.php:77
-msgid "No more system notifications."
+#: mod/register.php:273 mod/settings.php:1203
+msgid "New Password:"
 msgstr ""
 
-#: mod/notify.php:81 mod/notifications.php:113
-msgid "System Notifications"
+#: mod/register.php:273
+msgid "Leave empty for an auto generated password."
 msgstr ""
 
-#: mod/fsuggest.php:30 mod/fsuggest.php:96 mod/crepair.php:110
-#: mod/dfrn_confirm.php:131
-msgid "Contact not found."
+#: mod/register.php:274 mod/settings.php:1204
+msgid "Confirm:"
 msgstr ""
 
-#: mod/fsuggest.php:72
-msgid "Friend suggestion sent."
+#: 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 '<strong>nickname@%s</strong>'."
 msgstr ""
 
-#: mod/fsuggest.php:101
-msgid "Suggest Friends"
+#: mod/register.php:276
+msgid "Choose a nickname: "
 msgstr ""
 
-#: mod/fsuggest.php:103
-#, php-format
-msgid "Suggest a friend for %s"
+#: mod/register.php:279 src/Content/Nav.php:128 src/Module/Login.php:283
+msgid "Register"
 msgstr ""
 
-#: mod/attach.php:15
-msgid "Item not available."
+#: mod/register.php:286
+msgid "Import your profile to this friendica instance"
 msgstr ""
 
-#: mod/attach.php:25
-msgid "Item was not found."
+#: mod/register.php:288 mod/admin.php:188 mod/admin.php:302
+#: src/Module/Tos.php:48
+msgid "Terms of Service"
 msgstr ""
 
-#: mod/allfriends.php:51
-msgid "No friends to display."
+#: mod/removeme.php:43
+msgid "User deleted their account"
 msgstr ""
 
-#: mod/viewcontacts.php:87
-msgid "No contacts."
+#: 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/viewcontacts.php:112 mod/nogroup.php:42 mod/contacts.php:619
-#: mod/contacts.php:959
+#: mod/removeme.php:45
 #, php-format
-msgid "Visit %s's profile [%s]"
+msgid "The user id is %d"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:21
-msgid "Subscribing to OStatus contacts"
+#: mod/removeme.php:76 mod/removeme.php:79
+msgid "Remove My Account"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:33
-msgid "No contact provided."
+#: mod/removeme.php:77
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
 msgstr ""
 
-#: mod/ostatus_subscribe.php:40
-msgid "Couldn't fetch information for contact."
+#: mod/removeme.php:78
+msgid "Please enter your password for verification:"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:50
-msgid "Couldn't fetch friends for contact."
+#: mod/admin.php:106
+msgid "Theme settings updated."
 msgstr ""
 
-#: mod/ostatus_subscribe.php:78
-msgid "success"
+#: mod/admin.php:179 src/Content/Nav.php:175
+msgid "Information"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:80
-msgid "failed"
+#: mod/admin.php:180
+msgid "Overview"
 msgstr ""
 
-#: mod/api.php:85 mod/api.php:107
-msgid "Authorize application connection"
+#: mod/admin.php:181 mod/admin.php:718
+msgid "Federation Statistics"
 msgstr ""
 
-#: mod/api.php:86
-msgid "Return to your app and insert this Securty Code:"
+#: mod/admin.php:182
+msgid "Configuration"
 msgstr ""
 
-#: mod/api.php:95
-msgid "Please login to continue."
+#: mod/admin.php:183 mod/admin.php:1347
+msgid "Site"
 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?"
+#: mod/admin.php:184 mod/admin.php:1275 mod/admin.php:1804 mod/admin.php:1820
+msgid "Users"
 msgstr ""
 
-#: mod/settings.php:50 mod/photos.php:126
-msgid "everybody"
+#: mod/admin.php:185 mod/admin.php:1920 mod/admin.php:1980 mod/settings.php:87
+msgid "Addons"
 msgstr ""
 
-#: mod/settings.php:55
-msgid "Account"
+#: mod/admin.php:186 mod/admin.php:2189 mod/admin.php:2233
+msgid "Themes"
 msgstr ""
 
-#: mod/settings.php:64 mod/admin.php:187
+#: mod/admin.php:187 mod/settings.php:65
 msgid "Additional features"
 msgstr ""
 
-#: mod/settings.php:72
-msgid "Display"
+#: mod/admin.php:189
+msgid "Database"
 msgstr ""
 
-#: mod/settings.php:79 mod/settings.php:842
-msgid "Social Networks"
+#: mod/admin.php:190
+msgid "DB updates"
 msgstr ""
 
-#: mod/settings.php:86 mod/admin.php:185 mod/admin.php:1918 mod/admin.php:1978
-msgid "Addons"
+#: mod/admin.php:191 mod/admin.php:753
+msgid "Inspect Queue"
 msgstr ""
 
-#: mod/settings.php:100
-msgid "Connected apps"
+#: mod/admin.php:192
+msgid "Tools"
 msgstr ""
 
-#: mod/settings.php:107 mod/uexport.php:52
-msgid "Export personal data"
+#: mod/admin.php:193
+msgid "Contact Blocklist"
 msgstr ""
 
-#: mod/settings.php:114
-msgid "Remove account"
+#: mod/admin.php:194 mod/admin.php:362
+msgid "Server Blocklist"
 msgstr ""
 
-#: mod/settings.php:168
-msgid "Missing some important data!"
+#: mod/admin.php:195 mod/admin.php:521
+msgid "Delete Item"
 msgstr ""
 
-#: mod/settings.php:170 mod/settings.php:701 mod/contacts.php:826
-msgid "Update"
+#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2307
+msgid "Logs"
 msgstr ""
 
-#: mod/settings.php:279
-msgid "Failed to connect with email account using the settings provided."
+#: mod/admin.php:198 mod/admin.php:2374
+msgid "View Logs"
 msgstr ""
 
-#: mod/settings.php:284
-msgid "Email settings updated."
+#: mod/admin.php:200
+msgid "Diagnostics"
 msgstr ""
 
-#: mod/settings.php:300
-msgid "Features updated"
+#: 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/settings.php:372
-msgid "Relocate message has been send to your contacts"
+#: mod/admin.php:304
+#, php-format
+msgid ""
+"Show some informations regarding the needed information to operate the node "
+"according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."
 msgstr ""
 
-#: mod/settings.php:389
-msgid "Empty passwords are not allowed. Password unchanged."
+#: mod/admin.php:305
+msgid "The Terms of Service"
 msgstr ""
 
-#: mod/settings.php:400
-msgid "Wrong password."
+#: 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/settings.php:496
-msgid " Please use a shorter name."
+#: mod/admin.php:353
+msgid "The blocked domain"
 msgstr ""
 
-#: mod/settings.php:499
-msgid " Name too short."
+#: mod/admin.php:354 mod/admin.php:372 mod/friendica.php:128
+msgid "Reason for the block"
 msgstr ""
 
-#: mod/settings.php:507
-msgid "Wrong Password"
+#: mod/admin.php:354 mod/admin.php:367
+msgid "The reason why you blocked this domain."
 msgstr ""
 
-#: mod/settings.php:512
-msgid "Invalid email."
+#: mod/admin.php:355
+msgid "Delete domain"
 msgstr ""
 
-#: mod/settings.php:519
-msgid "Cannot change to that email."
+#: mod/admin.php:355
+msgid "Check to delete this entry from the blocklist"
 msgstr ""
 
-#: mod/settings.php:572
-msgid "Private forum has no privacy permissions. Using default privacy group."
+#: 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/settings.php:575
-msgid "Private forum has no privacy permissions and no default privacy group."
+#: 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/settings.php:615
-msgid "Settings updated."
+#: mod/admin.php:365
+msgid "Add new entry to block list"
 msgstr ""
 
-#: mod/settings.php:674 mod/settings.php:700 mod/settings.php:736
-msgid "Add application"
+#: mod/admin.php:366
+msgid "Server Domain"
 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"
+#: mod/admin.php:366
+msgid ""
+"The domain of the new server to add to the block list. Do not include the "
+"protocol."
 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"
+#: mod/admin.php:367
+msgid "Block reason"
 msgstr ""
 
-#: mod/settings.php:678 mod/settings.php:704
-msgid "Consumer Key"
+#: mod/admin.php:368
+msgid "Add Entry"
 msgstr ""
 
-#: mod/settings.php:679 mod/settings.php:705
-msgid "Consumer Secret"
+#: mod/admin.php:369
+msgid "Save changes to the blocklist"
 msgstr ""
 
-#: mod/settings.php:680 mod/settings.php:706
-msgid "Redirect"
+#: mod/admin.php:370
+msgid "Current Entries in the Blocklist"
 msgstr ""
 
-#: mod/settings.php:681 mod/settings.php:707
-msgid "Icon url"
+#: mod/admin.php:373
+msgid "Delete entry from blocklist"
 msgstr ""
 
-#: mod/settings.php:692
-msgid "You can't edit this application."
+#: mod/admin.php:376
+msgid "Delete entry from blocklist?"
 msgstr ""
 
-#: mod/settings.php:735
-msgid "Connected Apps"
+#: mod/admin.php:402
+msgid "Server added to blocklist."
 msgstr ""
 
-#: mod/settings.php:739
-msgid "Client key starts with"
+#: mod/admin.php:418
+msgid "Site blocklist updated."
 msgstr ""
 
-#: mod/settings.php:740
-msgid "No name"
+#: mod/admin.php:441 src/Core/Console/GlobalCommunityBlock.php:72
+msgid "The contact has been blocked from the node"
 msgstr ""
 
-#: mod/settings.php:741
-msgid "Remove authorization"
+#: 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/settings.php:752
-msgid "No Addon settings configured"
-msgstr ""
+#: mod/admin.php:450
+#, php-format
+msgid "%s contact unblocked"
+msgid_plural "%s contacts unblocked"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/settings.php:761
-msgid "Addon Settings"
+#: mod/admin.php:479
+msgid "Remote Contact Blocklist"
 msgstr ""
 
-#: mod/settings.php:775 mod/admin.php:2442 mod/admin.php:2443
-msgid "Off"
+#: mod/admin.php:480
+msgid ""
+"This page allows you to prevent any message from a remote contact to reach "
+"your node."
 msgstr ""
 
-#: mod/settings.php:775 mod/admin.php:2442 mod/admin.php:2443
-msgid "On"
+#: mod/admin.php:481
+msgid "Block Remote Contact"
 msgstr ""
 
-#: mod/settings.php:782
-msgid "Additional Features"
+#: mod/admin.php:482 mod/admin.php:1806
+msgid "select all"
 msgstr ""
 
-#: mod/settings.php:805 mod/settings.php:806
-msgid "enabled"
+#: mod/admin.php:483
+msgid "select none"
 msgstr ""
 
-#: mod/settings.php:805 mod/settings.php:806
-msgid "disabled"
+#: mod/admin.php:486
+msgid "No remote contact is blocked from this node."
 msgstr ""
 
-#: mod/settings.php:805 mod/settings.php:806
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
+#: mod/admin.php:488
+msgid "Blocked Remote Contacts"
 msgstr ""
 
-#: mod/settings.php:806
-msgid "GNU Social (OStatus)"
+#: mod/admin.php:489
+msgid "Block New Remote Contact"
 msgstr ""
 
-#: mod/settings.php:837
-msgid "Email access is disabled on this site."
+#: mod/admin.php:490
+msgid "Photo"
 msgstr ""
 
-#: mod/settings.php:847
-msgid "General Social Media Settings"
-msgstr ""
+#: mod/admin.php:498
+#, php-format
+msgid "%s total blocked contact"
+msgid_plural "%s total blocked contacts"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/settings.php:848
-msgid "Disable Content Warning"
+#: mod/admin.php:500
+msgid "URL of the remote contact to block."
 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."
+#: mod/admin.php:522
+msgid "Delete this Item"
 msgstr ""
 
-#: mod/settings.php:849
-msgid "Disable intelligent shortening"
+#: 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/settings.php:849
+#: mod/admin.php:524
 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."
+"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/settings.php:850
-msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+#: mod/admin.php:525
+msgid "GUID"
 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."
+#: mod/admin.php:525
+msgid "The GUID of the item you want to delete."
 msgstr ""
 
-#: mod/settings.php:851
-msgid "Default group for OStatus contacts"
+#: mod/admin.php:564
+msgid "Item marked for deletion."
 msgstr ""
 
-#: mod/settings.php:852
-msgid "Your legacy GNU Social account"
+#: mod/admin.php:635
+msgid "unknown"
 msgstr ""
 
-#: mod/settings.php:852
+#: mod/admin.php:711
 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"
+"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/settings.php:859
-msgid "Email/Mailbox Setup"
+#: mod/admin.php:712
+msgid ""
+"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
+"will improve the data displayed here."
 msgstr ""
 
-#: mod/settings.php:860
+#: mod/admin.php:724
+#, php-format
 msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
+"Currently this node is aware of %d nodes with %d registered users from the "
+"following platforms:"
 msgstr ""
 
-#: mod/settings.php:861
-msgid "Last successful email check:"
+#: mod/admin.php:755
+msgid "ID"
 msgstr ""
 
-#: mod/settings.php:863
-msgid "IMAP server name:"
+#: mod/admin.php:756
+msgid "Recipient Name"
 msgstr ""
 
-#: mod/settings.php:864
-msgid "IMAP port:"
+#: mod/admin.php:757
+msgid "Recipient Profile"
 msgstr ""
 
-#: mod/settings.php:865
-msgid "Security:"
+#: mod/admin.php:758 view/theme/frio/theme.php:266
+#: src/Core/NotificationsManager.php:178 src/Content/Nav.php:179
+msgid "Network"
 msgstr ""
 
-#: mod/settings.php:865 mod/settings.php:870
-msgid "None"
+#: mod/admin.php:759
+msgid "Created"
 msgstr ""
 
-#: mod/settings.php:866
-msgid "Email login name:"
+#: mod/admin.php:760
+msgid "Last Tried"
 msgstr ""
 
-#: mod/settings.php:867
-msgid "Email password:"
+#: 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/settings.php:868
-msgid "Reply-to address:"
+#: 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 <a href=\"%s\">here</a> for a guide that may be helpful "
+"converting the table engines. You may also use the command <tt>php bin/"
+"console.php dbstructure toinnodb</tt> of your Friendica installation for an "
+"automatic conversion.<br />"
 msgstr ""
 
-#: mod/settings.php:869
-msgid "Send public posts to all email contacts:"
+#: 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/settings.php:870
-msgid "Action after import:"
+#: 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/settings.php:870
-msgid "Move to folder"
+#: mod/admin.php:808
+msgid "The worker was never executed. Please check your database structure!"
 msgstr ""
 
-#: mod/settings.php:871
-msgid "Move to folder:"
+#: 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/settings.php:905 mod/admin.php:1236
-msgid "No special theme for mobile devices"
+#: mod/admin.php:816
+msgid "Normal Account"
 msgstr ""
 
-#: mod/settings.php:914
-#, php-format
-msgid "%s - (Unsupported)"
+#: mod/admin.php:817
+msgid "Automatic Follower Account"
 msgstr ""
 
-#: mod/settings.php:916
-#, php-format
-msgid "%s - (Experimental)"
+#: mod/admin.php:818
+msgid "Public Forum Account"
 msgstr ""
 
-#: mod/settings.php:959
-msgid "Display Settings"
+#: mod/admin.php:819
+msgid "Automatic Friend Account"
 msgstr ""
 
-#: mod/settings.php:965 mod/settings.php:989
-msgid "Display Theme:"
+#: mod/admin.php:820
+msgid "Blog Account"
 msgstr ""
 
-#: mod/settings.php:966
-msgid "Mobile Theme:"
+#: mod/admin.php:821
+msgid "Private Forum Account"
 msgstr ""
 
-#: mod/settings.php:967
-msgid "Suppress warning of insecure networks"
+#: mod/admin.php:843
+msgid "Message queues"
 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."
+#: mod/admin.php:849
+msgid "Summary"
 msgstr ""
 
-#: mod/settings.php:968
-msgid "Update browser every xx seconds"
+#: mod/admin.php:851
+msgid "Registered users"
 msgstr ""
 
-#: mod/settings.php:968
-msgid "Minimum of 10 seconds. Enter -1 to disable it."
+#: mod/admin.php:853
+msgid "Pending registrations"
 msgstr ""
 
-#: mod/settings.php:969
-msgid "Number of items to display per page:"
+#: mod/admin.php:854
+msgid "Version"
 msgstr ""
 
-#: mod/settings.php:969 mod/settings.php:970
-msgid "Maximum of 100 items"
+#: mod/admin.php:859
+msgid "Active addons"
 msgstr ""
 
-#: mod/settings.php:970
-msgid "Number of items to display per page when viewed from mobile device:"
+#: mod/admin.php:890
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
 msgstr ""
 
-#: mod/settings.php:971
-msgid "Don't show emoticons"
+#: mod/admin.php:1210
+msgid "Site settings updated."
 msgstr ""
 
-#: mod/settings.php:972
-msgid "Calendar"
+#: mod/admin.php:1237 mod/settings.php:907
+msgid "No special theme for mobile devices"
 msgstr ""
 
-#: mod/settings.php:973
-msgid "Beginning of week:"
+#: mod/admin.php:1266
+msgid "No community page for local users"
 msgstr ""
 
-#: mod/settings.php:974
-msgid "Don't show notices"
+#: mod/admin.php:1267
+msgid "No community page"
 msgstr ""
 
-#: mod/settings.php:975
-msgid "Infinite scroll"
+#: mod/admin.php:1268
+msgid "Public postings from users of this site"
 msgstr ""
 
-#: mod/settings.php:976
-msgid "Automatic updates only at the top of the network page"
+#: mod/admin.php:1269
+msgid "Public postings from the federated network"
 msgstr ""
 
-#: mod/settings.php:976
-msgid ""
-"When disabled, the network page is updated all the time, which could be "
-"confusing while reading."
+#: mod/admin.php:1270
+msgid "Public postings from local users and the federated network"
 msgstr ""
 
-#: mod/settings.php:977
-msgid "Bandwith Saver Mode"
+#: mod/admin.php:1276
+msgid "Users, Global Contacts"
 msgstr ""
 
-#: mod/settings.php:977
-msgid ""
-"When enabled, embedded content is not displayed on automatic updates, they "
-"only show on page reload."
+#: mod/admin.php:1277
+msgid "Users, Global Contacts/fallback"
 msgstr ""
 
-#: mod/settings.php:978
-msgid "Smart Threading"
+#: mod/admin.php:1281
+msgid "One month"
 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."
+#: mod/admin.php:1282
+msgid "Three months"
 msgstr ""
 
-#: mod/settings.php:980
-msgid "General Theme Settings"
+#: mod/admin.php:1283
+msgid "Half a year"
 msgstr ""
 
-#: mod/settings.php:981
-msgid "Custom Theme Settings"
+#: mod/admin.php:1284
+msgid "One year"
 msgstr ""
 
-#: mod/settings.php:982
-msgid "Content Settings"
+#: mod/admin.php:1289
+msgid "Multi user instance"
 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"
+#: mod/admin.php:1312
+msgid "Closed"
 msgstr ""
 
-#: mod/settings.php:1002
-msgid "Unable to find your profile. Please contact your admin."
+#: mod/admin.php:1313
+msgid "Requires approval"
 msgstr ""
 
-#: mod/settings.php:1044
-msgid "Account Types"
+#: mod/admin.php:1314
+msgid "Open"
 msgstr ""
 
-#: mod/settings.php:1045
-msgid "Personal Page Subtypes"
+#: mod/admin.php:1318
+msgid "No SSL policy, links will track page SSL state"
 msgstr ""
 
-#: mod/settings.php:1046
-msgid "Community Forum Subtypes"
+#: mod/admin.php:1319
+msgid "Force all links to use SSL"
 msgstr ""
 
-#: mod/settings.php:1053 mod/admin.php:1746
-msgid "Personal Page"
+#: mod/admin.php:1320
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr ""
 
-#: mod/settings.php:1054
-msgid "Account for a personal profile."
+#: mod/admin.php:1324
+msgid "Don't check"
 msgstr ""
 
-#: mod/settings.php:1057 mod/admin.php:1747
-msgid "Organisation Page"
+#: mod/admin.php:1325
+msgid "check the stable version"
 msgstr ""
 
-#: mod/settings.php:1058
-msgid ""
-"Account for an organisation that automatically approves contact requests as "
-"\"Followers\"."
+#: mod/admin.php:1326
+msgid "check the development version"
 msgstr ""
 
-#: mod/settings.php:1061 mod/admin.php:1748
-msgid "News Page"
+#: mod/admin.php:1349
+msgid "Republish users to directory"
 msgstr ""
 
-#: mod/settings.php:1062
-msgid ""
-"Account for a news reflector that automatically approves contact requests as "
-"\"Followers\"."
+#: mod/admin.php:1351
+msgid "File upload"
 msgstr ""
 
-#: mod/settings.php:1065 mod/admin.php:1749
-msgid "Community Forum"
+#: mod/admin.php:1352
+msgid "Policies"
 msgstr ""
 
-#: mod/settings.php:1066
-msgid "Account for community discussions."
+#: mod/admin.php:1354
+msgid "Auto Discovered Contact Directory"
 msgstr ""
 
-#: mod/settings.php:1069 mod/admin.php:1739
-msgid "Normal Account Page"
+#: mod/admin.php:1355
+msgid "Performance"
 msgstr ""
 
-#: mod/settings.php:1070
-msgid ""
-"Account for a regular personal profile that requires manual approval of "
-"\"Friends\" and \"Followers\"."
+#: mod/admin.php:1356
+msgid "Worker"
 msgstr ""
 
-#: mod/settings.php:1073 mod/admin.php:1740
-msgid "Soapbox Page"
+#: mod/admin.php:1357
+msgid "Message Relay"
 msgstr ""
 
-#: mod/settings.php:1074
+#: mod/admin.php:1358
 msgid ""
-"Account for a public profile that automatically approves contact requests as "
-"\"Followers\"."
+"Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr ""
 
-#: mod/settings.php:1077 mod/admin.php:1741
-msgid "Public Forum"
+#: mod/admin.php:1361
+msgid "Site name"
 msgstr ""
 
-#: mod/settings.php:1078
-msgid "Automatically approves all contact requests."
+#: mod/admin.php:1362
+msgid "Host name"
 msgstr ""
 
-#: mod/settings.php:1081 mod/admin.php:1742
-msgid "Automatic Friend Page"
+#: mod/admin.php:1363
+msgid "Sender Email"
 msgstr ""
 
-#: mod/settings.php:1082
+#: mod/admin.php:1363
 msgid ""
-"Account for a popular profile that automatically approves contact requests "
-"as \"Friends\"."
-msgstr ""
-
-#: mod/settings.php:1085
-msgid "Private Forum [Experimental]"
+"The email address your server shall use to send notification emails from."
 msgstr ""
 
-#: mod/settings.php:1086
-msgid "Requires manual approval of contact requests."
+#: mod/admin.php:1364
+msgid "Banner/Logo"
 msgstr ""
 
-#: mod/settings.php:1097
-msgid "OpenID:"
+#: mod/admin.php:1365
+msgid "Shortcut icon"
 msgstr ""
 
-#: mod/settings.php:1097
-msgid "(Optional) Allow this OpenID to login to this account."
+#: mod/admin.php:1365
+msgid "Link to an icon that will be used for browsers."
 msgstr ""
 
-#: mod/settings.php:1105
-msgid "Publish your default profile in your local site directory?"
+#: mod/admin.php:1366
+msgid "Touch icon"
 msgstr ""
 
-#: mod/settings.php:1105
-#, php-format
-msgid ""
-"Your profile will be published in the global friendica directories (e.g. <a "
-"href=\"%s\">%s</a>). Your profile will be visible in public."
+#: mod/admin.php:1366
+msgid "Link to an icon that will be used for tablets and mobiles."
 msgstr ""
 
-#: mod/settings.php:1111
-msgid "Publish your default profile in the global social directory?"
+#: mod/admin.php:1367
+msgid "Additional Info"
 msgstr ""
 
-#: mod/settings.php:1111
+#: mod/admin.php:1367
 #, php-format
 msgid ""
-"Your profile will be published in this node's <a href=\"%s\">local "
-"directory</a>. 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?"
+"For public servers: you can add additional information here that will be "
+"listed at %s/servers."
 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"
+#: mod/admin.php:1368
+msgid "System language"
 msgstr ""
 
-#: mod/settings.php:1122
-msgid "Hide your profile details from anonymous viewers?"
+#: mod/admin.php:1369
+msgid "System theme"
 msgstr ""
 
-#: mod/settings.php:1122
+#: mod/admin.php:1369
 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."
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
 msgstr ""
 
-#: mod/settings.php:1126
-msgid "Allow friends to post to your profile page?"
+#: mod/admin.php:1370
+msgid "Mobile system theme"
 msgstr ""
 
-#: mod/settings.php:1126
-msgid ""
-"Your contacts may write posts on your profile wall. These posts will be "
-"distributed to your contacts"
+#: mod/admin.php:1370
+msgid "Theme for mobile devices"
 msgstr ""
 
-#: mod/settings.php:1130
-msgid "Allow friends to tag your posts?"
+#: mod/admin.php:1371
+msgid "SSL link policy"
 msgstr ""
 
-#: mod/settings.php:1130
-msgid "Your contacts can add additional tags to your posts."
+#: mod/admin.php:1371
+msgid "Determines whether generated links should be forced to use SSL"
 msgstr ""
 
-#: mod/settings.php:1134
-msgid "Allow us to suggest you as a potential friend to new members?"
+#: mod/admin.php:1372
+msgid "Force SSL"
 msgstr ""
 
-#: mod/settings.php:1134
-msgid "If you like, Friendica may suggest new members to add you as a contact."
+#: mod/admin.php:1372
+msgid ""
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
+"to endless loops."
 msgstr ""
 
-#: mod/settings.php:1138
-msgid "Permit unknown people to send you private mail?"
+#: mod/admin.php:1373
+msgid "Hide help entry from navigation menu"
 msgstr ""
 
-#: mod/settings.php:1138
+#: mod/admin.php:1373
 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 <strong>not published</strong>."
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
 msgstr ""
 
-#: mod/settings.php:1148
-#, php-format
-msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
+#: mod/admin.php:1374
+msgid "Single user instance"
 msgstr ""
 
-#: mod/settings.php:1155
-msgid "Automatically expire posts after this many days:"
+#: mod/admin.php:1374
+msgid "Make this instance multi-user or single-user for the named user"
 msgstr ""
 
-#: mod/settings.php:1155
-msgid "If empty, posts will not expire. Expired posts will be deleted"
+#: mod/admin.php:1375
+msgid "Maximum image size"
 msgstr ""
 
-#: mod/settings.php:1156
-msgid "Advanced expiration settings"
+#: mod/admin.php:1375
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
 msgstr ""
 
-#: mod/settings.php:1157
-msgid "Advanced Expiration"
+#: mod/admin.php:1376
+msgid "Maximum image length"
 msgstr ""
 
-#: mod/settings.php:1158
-msgid "Expire posts:"
+#: 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/settings.php:1159
-msgid "Expire personal notes:"
+#: mod/admin.php:1377
+msgid "JPEG image quality"
 msgstr ""
 
-#: mod/settings.php:1160
-msgid "Expire starred posts:"
+#: 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/settings.php:1161
-msgid "Expire photos:"
+#: mod/admin.php:1379
+msgid "Register policy"
 msgstr ""
 
-#: mod/settings.php:1162
-msgid "Only expire posts by others:"
+#: mod/admin.php:1380
+msgid "Maximum Daily Registrations"
 msgstr ""
 
-#: mod/settings.php:1192
-msgid "Account Settings"
+#: 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/settings.php:1200
-msgid "Password Settings"
+#: mod/admin.php:1381
+msgid "Register text"
 msgstr ""
 
-#: mod/settings.php:1201 mod/register.php:273
-msgid "New Password:"
+#: mod/admin.php:1381
+msgid ""
+"Will be displayed prominently on the registration page. You can use BBCode "
+"here."
 msgstr ""
 
-#: mod/settings.php:1202 mod/register.php:274
-msgid "Confirm:"
+#: mod/admin.php:1382
+msgid "Accounts abandoned after x days"
 msgstr ""
 
-#: mod/settings.php:1202
-msgid "Leave password fields blank unless changing"
+#: mod/admin.php:1382
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
 msgstr ""
 
-#: mod/settings.php:1203
-msgid "Current Password:"
+#: mod/admin.php:1383
+msgid "Allowed friend domains"
 msgstr ""
 
-#: mod/settings.php:1203 mod/settings.php:1204
-msgid "Your current password to confirm the changes"
+#: 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/settings.php:1204
-msgid "Password:"
+#: mod/admin.php:1384
+msgid "Allowed email domains"
 msgstr ""
 
-#: mod/settings.php:1208
-msgid "Basic Settings"
+#: 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/settings.php:1210
-msgid "Email Address:"
+#: mod/admin.php:1385
+msgid "No OEmbed rich content"
 msgstr ""
 
-#: mod/settings.php:1211
-msgid "Your Timezone:"
+#: mod/admin.php:1385
+msgid ""
+"Don't show the rich content (e.g. embedded PDF), except from the domains "
+"listed below."
 msgstr ""
 
-#: mod/settings.php:1212
-msgid "Your Language:"
+#: mod/admin.php:1386
+msgid "Allowed OEmbed domains"
 msgstr ""
 
-#: mod/settings.php:1212
+#: mod/admin.php:1386
 msgid ""
-"Set the language we use to show you friendica interface and to send you "
-"emails"
+"Comma separated list of domains which oembed content is allowed to be "
+"displayed. Wildcards are accepted."
 msgstr ""
 
-#: mod/settings.php:1213
-msgid "Default Post Location:"
+#: mod/admin.php:1387
+msgid "Block public"
 msgstr ""
 
-#: mod/settings.php:1214
-msgid "Use Browser Location:"
+#: 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/settings.php:1217
-msgid "Security and Privacy Settings"
+#: mod/admin.php:1388
+msgid "Force publish"
 msgstr ""
 
-#: mod/settings.php:1219
-msgid "Maximum Friend Requests/Day:"
+#: mod/admin.php:1388
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
 msgstr ""
 
-#: mod/settings.php:1219 mod/settings.php:1248
-msgid "(to prevent spam abuse)"
+#: mod/admin.php:1389
+msgid "Global directory URL"
 msgstr ""
 
-#: mod/settings.php:1220
-msgid "Default Post Permissions"
+#: 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/settings.php:1221
-msgid "(click to open/close)"
+#: mod/admin.php:1390
+msgid "Private posts by default for new users"
 msgstr ""
 
-#: mod/settings.php:1229 mod/photos.php:1106 mod/photos.php:1449
-msgid "Show to Groups"
+#: mod/admin.php:1390
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
 msgstr ""
 
-#: mod/settings.php:1230 mod/photos.php:1107 mod/photos.php:1450
-msgid "Show to Contacts"
+#: mod/admin.php:1391
+msgid "Don't include post content in email notifications"
 msgstr ""
 
-#: mod/settings.php:1231
-msgid "Default Private Post"
+#: 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/settings.php:1232
-msgid "Default Public Post"
+#: mod/admin.php:1392
+msgid "Disallow public access to addons listed in the apps menu."
 msgstr ""
 
-#: mod/settings.php:1236
-msgid "Default Permissions for New Posts"
+#: mod/admin.php:1392
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
 msgstr ""
 
-#: mod/settings.php:1248
-msgid "Maximum private messages per day from unknown people:"
+#: mod/admin.php:1393
+msgid "Don't embed private images in posts"
 msgstr ""
 
-#: mod/settings.php:1251
-msgid "Notification Settings"
+#: 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/settings.php:1252
-msgid "By default post a status message when:"
+#: mod/admin.php:1394
+msgid "Allow Users to set remote_self"
 msgstr ""
 
-#: mod/settings.php:1253
-msgid "accepting a friend request"
+#: 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/settings.php:1254
-msgid "joining a forum/community"
+#: mod/admin.php:1395
+msgid "Block multiple registrations"
 msgstr ""
 
-#: mod/settings.php:1255
-msgid "making an <em>interesting</em> profile change"
+#: mod/admin.php:1395
+msgid "Disallow users to register additional accounts for use as pages."
 msgstr ""
 
-#: mod/settings.php:1256
-msgid "Send a notification email when:"
+#: mod/admin.php:1396
+msgid "OpenID support"
 msgstr ""
 
-#: mod/settings.php:1257
-msgid "You receive an introduction"
+#: mod/admin.php:1396
+msgid "OpenID support for registration and logins."
 msgstr ""
 
-#: mod/settings.php:1258
-msgid "Your introductions are confirmed"
+#: mod/admin.php:1397
+msgid "Fullname check"
 msgstr ""
 
-#: mod/settings.php:1259
-msgid "Someone writes on your profile wall"
+#: 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/settings.php:1260
-msgid "Someone writes a followup comment"
+#: mod/admin.php:1398
+msgid "Community pages for visitors"
 msgstr ""
 
-#: mod/settings.php:1261
-msgid "You receive a private message"
+#: mod/admin.php:1398
+msgid ""
+"Which community pages should be available for visitors. Local users always "
+"see both pages."
 msgstr ""
 
-#: mod/settings.php:1262
-msgid "You receive a friend suggestion"
+#: mod/admin.php:1399
+msgid "Posts per user on community page"
 msgstr ""
 
-#: mod/settings.php:1263
-msgid "You are tagged in a post"
+#: mod/admin.php:1399
+msgid ""
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
 msgstr ""
 
-#: mod/settings.php:1264
-msgid "You are poked/prodded/etc. in a post"
+#: mod/admin.php:1400
+msgid "Enable OStatus support"
 msgstr ""
 
-#: mod/settings.php:1266
-msgid "Activate desktop notifications"
+#: 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/settings.php:1266
-msgid "Show desktop popup on new notifications"
+#: mod/admin.php:1401
+msgid "Only import OStatus threads from our contacts"
 msgstr ""
 
-#: mod/settings.php:1268
-msgid "Text-only notification emails"
+#: 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/settings.php:1270
-msgid "Send text only notification emails, without the html part"
+#: mod/admin.php:1402
+msgid "OStatus support can only be enabled if threading is enabled."
 msgstr ""
 
-#: mod/settings.php:1272
-msgid "Show detailled notifications"
+#: mod/admin.php:1404
+msgid ""
+"Diaspora support can't be enabled because Friendica was installed into a sub "
+"directory."
 msgstr ""
 
-#: mod/settings.php:1274
-msgid ""
-"Per default, notifications are condensed to a single notification per item. "
-"When enabled every notification is displayed."
+#: mod/admin.php:1405
+msgid "Enable Diaspora support"
 msgstr ""
 
-#: mod/settings.php:1276
-msgid "Advanced Account/Page Type Settings"
+#: mod/admin.php:1405
+msgid "Provide built-in Diaspora network compatibility."
 msgstr ""
 
-#: mod/settings.php:1277
-msgid "Change the behaviour of this account for special situations"
+#: 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/settings.php:1280
-msgid "Relocate"
+#: mod/admin.php:1407
+msgid "Verify SSL"
 msgstr ""
 
-#: mod/settings.php:1281
+#: mod/admin.php:1407
 msgid ""
-"If you have moved this profile from another server, and some of your "
-"contacts don't receive your updates, try pushing this button."
+"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/settings.php:1282
-msgid "Resend relocate message to contacts"
+#: mod/admin.php:1408
+msgid "Proxy user"
 msgstr ""
 
-#: mod/regmod.php:68
-msgid "Account approved."
+#: mod/admin.php:1409
+msgid "Proxy URL"
 msgstr ""
 
-#: mod/regmod.php:93
-#, php-format
-msgid "Registration revoked for %s"
+#: mod/admin.php:1410
+msgid "Network timeout"
 msgstr ""
 
-#: mod/regmod.php:102
-msgid "Please login."
+#: mod/admin.php:1410
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr ""
 
-#: mod/group.php:36
-msgid "Group created."
+#: mod/admin.php:1411
+msgid "Maximum Load Average"
 msgstr ""
 
-#: mod/group.php:42
-msgid "Could not create group."
+#: mod/admin.php:1411
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
 msgstr ""
 
-#: mod/group.php:56 mod/group.php:157
-msgid "Group not found."
+#: mod/admin.php:1412
+msgid "Maximum Load Average (Frontend)"
 msgstr ""
 
-#: mod/group.php:70
-msgid "Group name changed."
+#: mod/admin.php:1412
+msgid "Maximum system load before the frontend quits service - default 50."
 msgstr ""
 
-#: mod/group.php:83 mod/profperm.php:28 index.php:443
-msgid "Permission denied"
+#: mod/admin.php:1413
+msgid "Minimal Memory"
 msgstr ""
 
-#: mod/group.php:97
-msgid "Save Group"
+#: mod/admin.php:1413
+msgid ""
+"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
+"default 0 (deactivated)."
 msgstr ""
 
-#: mod/group.php:102
-msgid "Create a group of contacts/friends."
+#: mod/admin.php:1414
+msgid "Maximum table size for optimization"
 msgstr ""
 
-#: mod/group.php:127
-msgid "Group removed."
+#: mod/admin.php:1414
+msgid ""
+"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
+"Enter -1 to disable it."
 msgstr ""
 
-#: mod/group.php:129
-msgid "Unable to remove group."
+#: mod/admin.php:1415
+msgid "Minimum level of fragmentation"
 msgstr ""
 
-#: mod/group.php:192
-msgid "Delete Group"
+#: mod/admin.php:1415
+msgid ""
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
 msgstr ""
 
-#: mod/group.php:198
-msgid "Group Editor"
+#: mod/admin.php:1417
+msgid "Periodical check of global contacts"
 msgstr ""
 
-#: mod/group.php:203
-msgid "Edit Group Name"
+#: 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/group.php:213
-msgid "Members"
+#: mod/admin.php:1418
+msgid "Days between requery"
 msgstr ""
 
-#: mod/group.php:215 mod/contacts.php:719
-msgid "All Contacts"
+#: mod/admin.php:1418
+msgid "Number of days after which a server is requeried for his contacts."
 msgstr ""
 
-#: mod/group.php:229
-msgid "Remove Contact"
+#: mod/admin.php:1419
+msgid "Discover contacts from other servers"
 msgstr ""
 
-#: mod/group.php:253
-msgid "Add Contact"
+#: 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/group.php:265 mod/profperm.php:115
-msgid "Click on a contact to add or remove."
+#: mod/admin.php:1420
+msgid "Timeframe for fetching global contacts"
 msgstr ""
 
-#: mod/fbrowser.php:131
-msgid "Files"
+#: 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:106
-msgid "Theme settings updated."
+#: mod/admin.php:1421
+msgid "Search the local directory"
 msgstr ""
 
-#: mod/admin.php:180
-msgid "Overview"
+#: 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:181 mod/admin.php:718
-msgid "Federation Statistics"
+#: mod/admin.php:1423
+msgid "Publish server information"
 msgstr ""
 
-#: mod/admin.php:182
-msgid "Configuration"
+#: 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 <a "
+"href='http://the-federation.info/'>the-federation.info</a> for details."
 msgstr ""
 
-#: mod/admin.php:183 mod/admin.php:1345
-msgid "Site"
+#: mod/admin.php:1425
+msgid "Check upstream version"
 msgstr ""
 
-#: mod/admin.php:184 mod/admin.php:1273 mod/admin.php:1802 mod/admin.php:1818
-msgid "Users"
+#: 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:186 mod/admin.php:2187 mod/admin.php:2231
-msgid "Themes"
+#: mod/admin.php:1426
+msgid "Suppress Tags"
 msgstr ""
 
-#: mod/admin.php:189
-msgid "Database"
+#: mod/admin.php:1426
+msgid "Suppress showing a list of hashtags at the end of the posting."
 msgstr ""
 
-#: mod/admin.php:190
-msgid "DB updates"
+#: mod/admin.php:1427
+msgid "Path to item cache"
 msgstr ""
 
-#: mod/admin.php:191 mod/admin.php:753
-msgid "Inspect Queue"
+#: mod/admin.php:1427
+msgid "The item caches buffers generated bbcode and external images."
 msgstr ""
 
-#: mod/admin.php:192
-msgid "Tools"
+#: mod/admin.php:1428
+msgid "Cache duration in seconds"
 msgstr ""
 
-#: mod/admin.php:193
-msgid "Contact Blocklist"
+#: 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:194 mod/admin.php:362
-msgid "Server Blocklist"
+#: mod/admin.php:1429
+msgid "Maximum numbers of comments per post"
 msgstr ""
 
-#: mod/admin.php:195 mod/admin.php:521
-msgid "Delete Item"
+#: mod/admin.php:1429
+msgid "How much comments should be shown for each post? Default value is 100."
 msgstr ""
 
-#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2305
-msgid "Logs"
+#: mod/admin.php:1430
+msgid "Temp path"
 msgstr ""
 
-#: mod/admin.php:198 mod/admin.php:2372
-msgid "View Logs"
+#: 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:200
-msgid "Diagnostics"
+#: mod/admin.php:1431
+msgid "Base path to installation"
 msgstr ""
 
-#: mod/admin.php:201
-msgid "PHP Info"
+#: 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:202
-msgid "probe address"
+#: mod/admin.php:1432
+msgid "Disable picture proxy"
 msgstr ""
 
-#: mod/admin.php:203
-msgid "check webfinger"
+#: 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:223
-msgid "Addon Features"
+#: mod/admin.php:1433
+msgid "Only search in tags"
 msgstr ""
 
-#: mod/admin.php:224
-msgid "User registrations waiting for confirmation"
+#: mod/admin.php:1433
+msgid "On large systems the text search can slow down the system extremely."
 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"
+#: mod/admin.php:1435
+msgid "New base url"
 msgstr ""
 
-#: mod/admin.php:303
-msgid "Display Terms of Service"
+#: 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: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."
+#: mod/admin.php:1437
+msgid "RINO Encryption"
 msgstr ""
 
-#: mod/admin.php:304
-msgid "Display Privacy Statement"
+#: mod/admin.php:1437
+msgid "Encryption layer between nodes."
 msgstr ""
 
-#: mod/admin.php:304
-#, php-format
-msgid ""
-"Show some informations regarding the needed information to operate the node "
-"according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."
+#: mod/admin.php:1437
+msgid "Enabled"
 msgstr ""
 
-#: mod/admin.php:305
-msgid "The Terms of Service"
+#: mod/admin.php:1439
+msgid "Maximum number of parallel workers"
 msgstr ""
 
-#: mod/admin.php:305
+#: mod/admin.php:1439
 msgid ""
-"Enter the Terms of Service for your node here. You can use BBCode. Headers "
-"of sections should be [h2] and below."
+"On shared hosters set this to 2. On larger systems, values of 10 are great. "
+"Default value is 4."
 msgstr ""
 
-#: mod/admin.php:353
-msgid "The blocked domain"
+#: 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:354 mod/admin.php:367
-msgid "The reason why you blocked this domain."
+#: mod/admin.php:1441
+msgid "Enable fastlane"
 msgstr ""
 
-#: mod/admin.php:355
-msgid "Delete domain"
+#: 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:355
-msgid "Check to delete this entry from the blocklist"
+#: mod/admin.php:1442
+msgid "Enable frontend worker"
 msgstr ""
 
-#: mod/admin.php:363
+#: mod/admin.php:1442
+#, php-format
 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."
+"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: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."
+#: mod/admin.php:1444
+msgid "Subscribe to relay"
 msgstr ""
 
-#: mod/admin.php:365
-msgid "Add new entry to block list"
+#: 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:366
-msgid "Server Domain"
+#: mod/admin.php:1445
+msgid "Relay server"
 msgstr ""
 
-#: mod/admin.php:366
+#: mod/admin.php:1445
 msgid ""
-"The domain of the new server to add to the block list. Do not include the "
-"protocol."
+"Address of the relay server where public posts should be send to. For "
+"example https://relay.diasp.org"
 msgstr ""
 
-#: mod/admin.php:367
-msgid "Block reason"
+#: mod/admin.php:1446
+msgid "Direct relay transfer"
 msgstr ""
 
-#: mod/admin.php:368
-msgid "Add Entry"
+#: mod/admin.php:1446
+msgid ""
+"Enables the direct transfer to other servers without using the relay servers"
 msgstr ""
 
-#: mod/admin.php:369
-msgid "Save changes to the blocklist"
+#: mod/admin.php:1447
+msgid "Relay scope"
 msgstr ""
 
-#: mod/admin.php:370
-msgid "Current Entries in the Blocklist"
+#: 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:373
-msgid "Delete entry from blocklist"
+#: mod/admin.php:1447
+msgid "all"
 msgstr ""
 
-#: mod/admin.php:376
-msgid "Delete entry from blocklist?"
+#: mod/admin.php:1447
+msgid "tags"
 msgstr ""
 
-#: mod/admin.php:402
-msgid "Server added to blocklist."
+#: mod/admin.php:1448
+msgid "Server tags"
 msgstr ""
 
-#: mod/admin.php:418
-msgid "Site blocklist updated."
+#: mod/admin.php:1448
+msgid "Comma separated list of tags for the 'tags' subscription."
 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"
+#: mod/admin.php:1449
+msgid "Allow user tags"
 msgstr ""
 
-#: mod/admin.php:480
+#: mod/admin.php:1449
 msgid ""
-"This page allows you to prevent any message from a remote contact to reach "
-"your node."
+"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:481
-msgid "Block Remote Contact"
+#: mod/admin.php:1477
+msgid "Update has been marked successful"
 msgstr ""
 
-#: mod/admin.php:482 mod/admin.php:1804
-msgid "select all"
+#: mod/admin.php:1484
+#, php-format
+msgid "Database structure update %s was successfully applied."
 msgstr ""
 
-#: mod/admin.php:483
-msgid "select none"
+#: mod/admin.php:1487
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
 msgstr ""
 
-#: mod/admin.php:484 mod/admin.php:1813 mod/contacts.php:637
-#: mod/contacts.php:827 mod/contacts.php:1011
-msgid "Block"
+#: mod/admin.php:1500
+#, php-format
+msgid "Executing %s failed with error: %s"
 msgstr ""
 
-#: mod/admin.php:485 mod/admin.php:1814 mod/contacts.php:637
-#: mod/contacts.php:827 mod/contacts.php:1011
-msgid "Unblock"
+#: mod/admin.php:1502
+#, php-format
+msgid "Update %s was successfully applied."
 msgstr ""
 
-#: mod/admin.php:486
-msgid "No remote contact is blocked from this node."
+#: mod/admin.php:1505
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr ""
 
-#: mod/admin.php:488
-msgid "Blocked Remote Contacts"
+#: mod/admin.php:1508
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
 msgstr ""
 
-#: mod/admin.php:489
-msgid "Block New Remote Contact"
+#: mod/admin.php:1528
+msgid "No failed updates."
 msgstr ""
 
-#: mod/admin.php:490
-msgid "Photo"
+#: mod/admin.php:1529
+msgid "Check database structure"
 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"
+#: mod/admin.php:1534
+msgid "Failed Updates"
 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:1535
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr ""
 
-#: mod/admin.php:500
-msgid "URL of the remote contact to block."
+#: mod/admin.php:1536
+msgid "Mark success (if update was manually applied)"
 msgstr ""
 
-#: mod/admin.php:522
-msgid "Delete this Item"
+#: mod/admin.php:1537
+msgid "Attempt to execute this update step automatically"
 msgstr ""
 
-#: mod/admin.php:523
+#: mod/admin.php:1576
+#, php-format
 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."
+"\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:524
+#: mod/admin.php:1579
+#, php-format
 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."
+"\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:525
-msgid "GUID"
+#: mod/admin.php:1613 src/Model/User.php:663
+#, php-format
+msgid "Registration details for %s"
 msgstr ""
 
-#: mod/admin.php:525
-msgid "The GUID of the item you want to delete."
-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:564
-msgid "Item marked for deletion."
+#: 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:635
-msgid "unknown"
+#: mod/admin.php:1684
+#, php-format
+msgid "User '%s' unblocked"
 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."
+#: mod/admin.php:1684
+#, php-format
+msgid "User '%s' blocked"
 msgstr ""
 
-#: mod/admin.php:712
-msgid ""
-"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
-"will improve the data displayed here."
+#: mod/admin.php:1741 mod/settings.php:1071
+msgid "Normal Account Page"
 msgstr ""
 
-#: mod/admin.php:724
-#, php-format
-msgid ""
-"Currently this node is aware of %d nodes with %d registered users from the "
-"following platforms:"
+#: mod/admin.php:1742 mod/settings.php:1075
+msgid "Soapbox Page"
 msgstr ""
 
-#: mod/admin.php:755
-msgid "ID"
+#: mod/admin.php:1743 mod/settings.php:1079
+msgid "Public Forum"
 msgstr ""
 
-#: mod/admin.php:756
-msgid "Recipient Name"
+#: mod/admin.php:1744 mod/settings.php:1083
+msgid "Automatic Friend Page"
 msgstr ""
 
-#: mod/admin.php:757
-msgid "Recipient Profile"
+#: mod/admin.php:1745
+msgid "Private Forum"
 msgstr ""
 
-#: mod/admin.php:759
-msgid "Created"
+#: mod/admin.php:1748 mod/settings.php:1055
+msgid "Personal Page"
 msgstr ""
 
-#: mod/admin.php:760
-msgid "Last Tried"
+#: mod/admin.php:1749 mod/settings.php:1059
+msgid "Organisation Page"
 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."
+#: 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: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 <a href=\"%s\">here</a> for a guide that may be helpful "
-"converting the table engines. You may also use the command <tt>php bin/"
-"console.php dbstructure toinnodb</tt> of your Friendica installation for an "
-"automatic conversion.<br />"
+#: 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: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"
+#: mod/admin.php:1798 mod/admin.php:1822
+msgid "Register date"
 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."
+#: mod/admin.php:1798 mod/admin.php:1822
+msgid "Last login"
 msgstr ""
 
-#: mod/admin.php:808
-msgid "The worker was never executed. Please check your database structure!"
+#: mod/admin.php:1798 mod/admin.php:1822
+msgid "Last item"
 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."
+#: mod/admin.php:1798
+msgid "Type"
 msgstr ""
 
-#: mod/admin.php:816
-msgid "Normal Account"
+#: mod/admin.php:1805
+msgid "Add User"
 msgstr ""
 
-#: mod/admin.php:817
-msgid "Automatic Follower Account"
+#: mod/admin.php:1807
+msgid "User registrations waiting for confirm"
 msgstr ""
 
-#: mod/admin.php:818
-msgid "Public Forum Account"
+#: mod/admin.php:1808
+msgid "User waiting for permanent deletion"
 msgstr ""
 
-#: mod/admin.php:819
-msgid "Automatic Friend Account"
+#: mod/admin.php:1809
+msgid "Request date"
 msgstr ""
 
-#: mod/admin.php:820
-msgid "Blog Account"
+#: mod/admin.php:1810
+msgid "No registrations."
 msgstr ""
 
-#: mod/admin.php:821
-msgid "Private Forum Account"
+#: mod/admin.php:1811
+msgid "Note from the user"
 msgstr ""
 
-#: mod/admin.php:843
-msgid "Message queues"
+#: mod/admin.php:1813
+msgid "Deny"
 msgstr ""
 
-#: mod/admin.php:849
-msgid "Summary"
+#: mod/admin.php:1817
+msgid "Site admin"
 msgstr ""
 
-#: mod/admin.php:851
-msgid "Registered users"
+#: mod/admin.php:1818
+msgid "Account expired"
 msgstr ""
 
-#: mod/admin.php:853
-msgid "Pending registrations"
+#: mod/admin.php:1821
+msgid "New User"
 msgstr ""
 
-#: mod/admin.php:854
-msgid "Version"
+#: mod/admin.php:1822
+msgid "Deleted since"
 msgstr ""
 
-#: mod/admin.php:859
-msgid "Active addons"
+#: 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:890
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+#: 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:1209
-msgid "Site settings updated."
+#: mod/admin.php:1838
+msgid "Name of the new user."
 msgstr ""
 
-#: mod/admin.php:1265
-msgid "No community page"
+#: mod/admin.php:1839
+msgid "Nickname"
 msgstr ""
 
-#: mod/admin.php:1266
-msgid "Public postings from users of this site"
+#: mod/admin.php:1839
+msgid "Nickname of the new user."
 msgstr ""
 
-#: mod/admin.php:1267
-msgid "Public postings from the federated network"
+#: mod/admin.php:1840
+msgid "Email address of the new user."
 msgstr ""
 
-#: mod/admin.php:1268
-msgid "Public postings from local users and the federated network"
+#: mod/admin.php:1882
+#, php-format
+msgid "Addon %s disabled."
 msgstr ""
 
-#: mod/admin.php:1272 mod/admin.php:1435 mod/admin.php:1445
-#: mod/contacts.php:572
-msgid "Disabled"
+#: mod/admin.php:1886
+#, php-format
+msgid "Addon %s enabled."
 msgstr ""
 
-#: mod/admin.php:1274
-msgid "Users, Global Contacts"
+#: mod/admin.php:1896 mod/admin.php:2145
+msgid "Disable"
 msgstr ""
 
-#: mod/admin.php:1275
-msgid "Users, Global Contacts/fallback"
+#: mod/admin.php:1899 mod/admin.php:2148
+msgid "Enable"
 msgstr ""
 
-#: mod/admin.php:1279
-msgid "One month"
+#: mod/admin.php:1921 mod/admin.php:2190
+msgid "Toggle"
 msgstr ""
 
-#: mod/admin.php:1280
-msgid "Three months"
+#: mod/admin.php:1929 mod/admin.php:2199
+msgid "Author: "
 msgstr ""
 
-#: mod/admin.php:1281
-msgid "Half a year"
+#: mod/admin.php:1930 mod/admin.php:2200
+msgid "Maintainer: "
 msgstr ""
 
-#: mod/admin.php:1282
-msgid "One year"
+#: mod/admin.php:1982
+msgid "Reload active addons"
 msgstr ""
 
-#: mod/admin.php:1287
-msgid "Multi user instance"
+#: 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:1310
-msgid "Closed"
+#: mod/admin.php:2107
+msgid "No themes found."
 msgstr ""
 
-#: mod/admin.php:1311
-msgid "Requires approval"
+#: mod/admin.php:2181
+msgid "Screenshot"
 msgstr ""
 
-#: mod/admin.php:1312
-msgid "Open"
+#: mod/admin.php:2235
+msgid "Reload active themes"
 msgstr ""
 
-#: mod/admin.php:1316
-msgid "No SSL policy, links will track page SSL state"
+#: mod/admin.php:2240
+#, php-format
+msgid "No themes found on the system. They should be placed in %1$s"
 msgstr ""
 
-#: mod/admin.php:1317
-msgid "Force all links to use SSL"
+#: mod/admin.php:2241
+msgid "[Experimental]"
 msgstr ""
 
-#: mod/admin.php:1318
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+#: mod/admin.php:2242
+msgid "[Unsupported]"
 msgstr ""
 
-#: mod/admin.php:1322
-msgid "Don't check"
+#: mod/admin.php:2266
+msgid "Log settings updated."
 msgstr ""
 
-#: mod/admin.php:1323
-msgid "check the stable version"
+#: mod/admin.php:2298
+msgid "PHP log currently enabled."
 msgstr ""
 
-#: mod/admin.php:1324
-msgid "check the development version"
+#: mod/admin.php:2300
+msgid "PHP log currently disabled."
 msgstr ""
 
-#: mod/admin.php:1347
-msgid "Republish users to directory"
+#: mod/admin.php:2309
+msgid "Clear"
 msgstr ""
 
-#: mod/admin.php:1348 mod/register.php:264
-msgid "Registration"
+#: mod/admin.php:2313
+msgid "Enable Debugging"
 msgstr ""
 
-#: mod/admin.php:1349
-msgid "File upload"
+#: mod/admin.php:2314
+msgid "Log file"
 msgstr ""
 
-#: mod/admin.php:1350
-msgid "Policies"
+#: mod/admin.php:2314
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
 msgstr ""
 
-#: mod/admin.php:1352
-msgid "Auto Discovered Contact Directory"
+#: mod/admin.php:2315
+msgid "Log level"
 msgstr ""
 
-#: mod/admin.php:1353
-msgid "Performance"
+#: mod/admin.php:2317
+msgid "PHP logging"
 msgstr ""
 
-#: mod/admin.php:1354
-msgid "Worker"
+#: 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:1355
-msgid "Message Relay"
+#: mod/admin.php:2349
+#, php-format
+msgid ""
+"Error trying to open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see "
+"if file %1$s exist and is readable."
 msgstr ""
 
-#: mod/admin.php:1356
+#: mod/admin.php:2353
+#, php-format
 msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
+"Couldn't open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see if file "
+"%1$s is readable."
 msgstr ""
 
-#: mod/admin.php:1359
-msgid "Site name"
+#: mod/admin.php:2444 mod/admin.php:2445 mod/settings.php:777
+msgid "Off"
 msgstr ""
 
-#: mod/admin.php:1360
-msgid "Host name"
+#: mod/admin.php:2444 mod/admin.php:2445 mod/settings.php:777
+msgid "On"
 msgstr ""
 
-#: mod/admin.php:1361
-msgid "Sender Email"
+#: mod/admin.php:2445
+#, php-format
+msgid "Lock feature %s"
 msgstr ""
 
-#: mod/admin.php:1361
-msgid ""
-"The email address your server shall use to send notification emails from."
+#: mod/admin.php:2453
+msgid "Manage Additional Features"
 msgstr ""
 
-#: mod/admin.php:1362
-msgid "Banner/Logo"
+#: mod/babel.php:22
+msgid "Source input"
 msgstr ""
 
-#: mod/admin.php:1363
-msgid "Shortcut icon"
+#: mod/babel.php:28
+msgid "BBCode::toPlaintext"
 msgstr ""
 
-#: mod/admin.php:1363
-msgid "Link to an icon that will be used for browsers."
+#: mod/babel.php:34
+msgid "BBCode::convert (raw HTML)"
 msgstr ""
 
-#: mod/admin.php:1364
-msgid "Touch icon"
+#: mod/babel.php:39
+msgid "BBCode::convert"
 msgstr ""
 
-#: mod/admin.php:1364
-msgid "Link to an icon that will be used for tablets and mobiles."
+#: mod/babel.php:45
+msgid "BBCode::convert => HTML::toBBCode"
 msgstr ""
 
-#: mod/admin.php:1365
-msgid "Additional Info"
+#: mod/babel.php:51
+msgid "BBCode::toMarkdown"
 msgstr ""
 
-#: mod/admin.php:1365
-#, php-format
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/servers."
+#: mod/babel.php:57
+msgid "BBCode::toMarkdown => Markdown::convert"
 msgstr ""
 
-#: mod/admin.php:1366
-msgid "System language"
+#: mod/babel.php:63
+msgid "BBCode::toMarkdown => Markdown::toBBCode"
 msgstr ""
 
-#: mod/admin.php:1367
-msgid "System theme"
+#: mod/babel.php:69
+msgid "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
 msgstr ""
 
-#: mod/admin.php:1367
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
+#: mod/babel.php:76
+msgid "Source input \\x28Diaspora format\\x29"
 msgstr ""
 
-#: mod/admin.php:1368
-msgid "Mobile system theme"
+#: mod/babel.php:82
+msgid "Markdown::toBBCode"
 msgstr ""
 
-#: mod/admin.php:1368
-msgid "Theme for mobile devices"
+#: mod/babel.php:89
+msgid "Raw HTML input"
 msgstr ""
 
-#: mod/admin.php:1369
-msgid "SSL link policy"
+#: mod/babel.php:94
+msgid "HTML Input"
 msgstr ""
 
-#: mod/admin.php:1369
-msgid "Determines whether generated links should be forced to use SSL"
+#: mod/babel.php:100
+msgid "HTML::toBBCode"
 msgstr ""
 
-#: mod/admin.php:1370
-msgid "Force SSL"
+#: mod/babel.php:106
+msgid "HTML::toPlaintext"
 msgstr ""
 
-#: mod/admin.php:1370
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
-"to endless loops."
+#: mod/babel.php:114
+msgid "Source text"
 msgstr ""
 
-#: mod/admin.php:1371
-msgid "Hide help entry from navigation menu"
+#: mod/babel.php:115
+msgid "BBCode"
 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."
+#: mod/babel.php:116
+msgid "Markdown"
 msgstr ""
 
-#: mod/admin.php:1372
-msgid "Single user instance"
+#: mod/babel.php:117
+msgid "HTML"
 msgstr ""
 
-#: mod/admin.php:1372
-msgid "Make this instance multi-user or single-user for the named user"
+#: mod/community.php:51
+msgid "Community option not available."
 msgstr ""
 
-#: mod/admin.php:1373
-msgid "Maximum image size"
+#: mod/community.php:68
+msgid "Not available."
 msgstr ""
 
-#: mod/admin.php:1373
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
+#: mod/community.php:81
+msgid "Local Community"
 msgstr ""
 
-#: mod/admin.php:1374
-msgid "Maximum image length"
+#: mod/community.php:84
+msgid "Posts from local users on this server"
 msgstr ""
 
-#: mod/admin.php:1374
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
+#: mod/community.php:92
+msgid "Global Community"
 msgstr ""
 
-#: mod/admin.php:1375
-msgid "JPEG image quality"
+#: mod/community.php:95
+msgid "Posts from users of the whole federated network"
 msgstr ""
 
-#: mod/admin.php:1375
+#: mod/community.php:185
 msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
+"This community stream shows all public posts received by this node. They may "
+"not reflect the opinions of this node’s users."
 msgstr ""
 
-#: mod/admin.php:1377
-msgid "Register policy"
+#: mod/friendica.php:77
+msgid "This is Friendica, version"
 msgstr ""
 
-#: mod/admin.php:1378
-msgid "Maximum Daily Registrations"
+#: mod/friendica.php:78
+msgid "running at web location"
 msgstr ""
 
-#: mod/admin.php:1378
+#: mod/friendica.php:82
 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."
+"Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
+"about the Friendica project."
 msgstr ""
 
-#: mod/admin.php:1379
-msgid "Register text"
+#: mod/friendica.php:86
+msgid "Bug reports and issues: please visit"
 msgstr ""
 
-#: mod/admin.php:1379
-msgid ""
-"Will be displayed prominently on the registration page. You can use BBCode "
-"here."
+#: mod/friendica.php:86
+msgid "the bugtracker at github"
 msgstr ""
 
-#: mod/admin.php:1380
-msgid "Accounts abandoned after x days"
+#: mod/friendica.php:89
+msgid ""
+"Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
 msgstr ""
 
-#: mod/admin.php:1380
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
+#: mod/friendica.php:103
+msgid "Installed addons/apps:"
 msgstr ""
 
-#: mod/admin.php:1381
-msgid "Allowed friend domains"
+#: mod/friendica.php:117
+msgid "No installed addons/apps"
 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"
+#: mod/friendica.php:122
+#, php-format
+msgid "Read about the <a href=\"%1$s/tos\">Terms of Service</a> of this node."
 msgstr ""
 
-#: mod/admin.php:1382
-msgid "Allowed email domains"
+#: mod/friendica.php:127
+msgid "On this server the following remote servers are blocked."
 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"
+#: mod/install.php:114
+msgid "Friendica Communications Server - Setup"
 msgstr ""
 
-#: mod/admin.php:1383
-msgid "No OEmbed rich content"
+#: mod/install.php:120
+msgid "Could not connect to database."
 msgstr ""
 
-#: mod/admin.php:1383
-msgid ""
-"Don't show the rich content (e.g. embedded PDF), except from the domains "
-"listed below."
+#: mod/install.php:124
+msgid "Could not create table."
 msgstr ""
 
-#: mod/admin.php:1384
-msgid "Allowed OEmbed domains"
+#: mod/install.php:130
+msgid "Your Friendica site database has been installed."
 msgstr ""
 
-#: mod/admin.php:1384
+#: mod/install.php:135
 msgid ""
-"Comma separated list of domains which oembed content is allowed to be "
-"displayed. Wildcards are accepted."
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
 msgstr ""
 
-#: mod/admin.php:1385
-msgid "Block public"
+#: mod/install.php:136 mod/install.php:208 mod/install.php:565
+msgid "Please see the file \"INSTALL.txt\"."
 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."
+#: mod/install.php:148
+msgid "Database already in use."
 msgstr ""
 
-#: mod/admin.php:1386
-msgid "Force publish"
+#: mod/install.php:205
+msgid "System check"
 msgstr ""
 
-#: mod/admin.php:1386
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
+#: mod/install.php:210
+msgid "Check again"
 msgstr ""
 
-#: mod/admin.php:1387
-msgid "Global directory URL"
+#: mod/install.php:230
+msgid "Database connection"
 msgstr ""
 
-#: mod/admin.php:1387
+#: mod/install.php:231
 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"
+"In order to install Friendica we need to know how to connect to your "
+"database."
 msgstr ""
 
-#: mod/admin.php:1388
+#: mod/install.php:232
 msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
 msgstr ""
 
-#: mod/admin.php:1389
-msgid "Don't include post content in email notifications"
+#: mod/install.php:233
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
 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."
+#: mod/install.php:237
+msgid "Database Server Name"
 msgstr ""
 
-#: mod/admin.php:1390
-msgid "Disallow public access to addons listed in the apps menu."
+#: mod/install.php:238
+msgid "Database Login Name"
 msgstr ""
 
-#: mod/admin.php:1390
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
+#: mod/install.php:239
+msgid "Database Login Password"
 msgstr ""
 
-#: mod/admin.php:1391
-msgid "Don't embed private images in posts"
+#: mod/install.php:239
+msgid "For security reasons the password must not be empty"
 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."
+#: mod/install.php:240
+msgid "Database Name"
 msgstr ""
 
-#: mod/admin.php:1392
-msgid "Allow Users to set remote_self"
+#: mod/install.php:241 mod/install.php:281
+msgid "Site administrator email address"
 msgstr ""
 
-#: mod/admin.php:1392
+#: mod/install.php:241 mod/install.php:281
 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."
+"Your account email address must match this in order to use the web admin "
+"panel."
 msgstr ""
 
-#: mod/admin.php:1393
-msgid "Block multiple registrations"
+#: mod/install.php:245 mod/install.php:284
+msgid "Please select a default timezone for your website"
 msgstr ""
 
-#: mod/admin.php:1393
-msgid "Disallow users to register additional accounts for use as pages."
+#: mod/install.php:271
+msgid "Site settings"
 msgstr ""
 
-#: mod/admin.php:1394
-msgid "OpenID support"
+#: mod/install.php:285
+msgid "System Language:"
 msgstr ""
 
-#: mod/admin.php:1394
-msgid "OpenID support for registration and logins."
+#: mod/install.php:285
+msgid ""
+"Set the default language for your Friendica installation interface and to "
+"send emails."
 msgstr ""
 
-#: mod/admin.php:1395
-msgid "Fullname check"
+#: mod/install.php:326
+msgid "Could not find a command line version of PHP in the web server PATH."
 msgstr ""
 
-#: mod/admin.php:1395
+#: mod/install.php:327
 msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
+"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 <a href='https://"
+"github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-"
+"worker'>'Setup the worker'</a>"
 msgstr ""
 
-#: mod/admin.php:1396
-msgid "Community pages for visitors"
+#: mod/install.php:331
+msgid "PHP executable path"
 msgstr ""
 
-#: mod/admin.php:1396
+#: mod/install.php:331
 msgid ""
-"Which community pages should be available for visitors. Local users always "
-"see both pages."
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
 msgstr ""
 
-#: mod/admin.php:1397
-msgid "Posts per user on community page"
+#: mod/install.php:336
+msgid "Command line PHP"
 msgstr ""
 
-#: mod/admin.php:1397
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
+#: mod/install.php:345
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
 msgstr ""
 
-#: mod/admin.php:1398
-msgid "Enable OStatus support"
+#: mod/install.php:346
+msgid "Found PHP version: "
 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."
+#: mod/install.php:348
+msgid "PHP cli binary"
 msgstr ""
 
-#: mod/admin.php:1399
-msgid "Only import OStatus threads from our contacts"
+#: mod/install.php:359
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
 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."
+#: mod/install.php:360
+msgid "This is required for message delivery to work."
 msgstr ""
 
-#: mod/admin.php:1400
-msgid "OStatus support can only be enabled if threading is enabled."
+#: mod/install.php:362
+msgid "PHP register_argc_argv"
 msgstr ""
 
-#: mod/admin.php:1402
+#: mod/install.php:385
 msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub "
-"directory."
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
 msgstr ""
 
-#: mod/admin.php:1403
-msgid "Enable Diaspora support"
+#: mod/install.php:386
+msgid ""
+"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
+"installation.php\"."
 msgstr ""
 
-#: mod/admin.php:1403
-msgid "Provide built-in Diaspora network compatibility."
+#: mod/install.php:388
+msgid "Generate encryption keys"
 msgstr ""
 
-#: mod/admin.php:1404
-msgid "Only allow Friendica contacts"
+#: mod/install.php:395
+msgid "libCurl PHP module"
 msgstr ""
 
-#: mod/admin.php:1404
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
+#: mod/install.php:396
+msgid "GD graphics PHP module"
 msgstr ""
 
-#: mod/admin.php:1405
-msgid "Verify SSL"
+#: mod/install.php:397
+msgid "OpenSSL PHP module"
 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."
+#: mod/install.php:398
+msgid "PDO or MySQLi PHP module"
 msgstr ""
 
-#: mod/admin.php:1406
-msgid "Proxy user"
+#: mod/install.php:399
+msgid "mb_string PHP module"
 msgstr ""
 
-#: mod/admin.php:1407
-msgid "Proxy URL"
+#: mod/install.php:400
+msgid "XML PHP module"
 msgstr ""
 
-#: mod/admin.php:1408
-msgid "Network timeout"
+#: mod/install.php:401
+msgid "iconv PHP module"
 msgstr ""
 
-#: mod/admin.php:1408
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+#: mod/install.php:402
+msgid "POSIX PHP module"
 msgstr ""
 
-#: mod/admin.php:1409
-msgid "Maximum Load Average"
+#: mod/install.php:406 mod/install.php:408
+msgid "Apache mod_rewrite module"
 msgstr ""
 
-#: mod/admin.php:1409
+#: mod/install.php:406
 msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
+"Error: Apache webserver mod-rewrite module is required but not installed."
 msgstr ""
 
-#: mod/admin.php:1410
-msgid "Maximum Load Average (Frontend)"
+#: mod/install.php:414
+msgid "Error: libCURL PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:1410
-msgid "Maximum system load before the frontend quits service - default 50."
+#: mod/install.php:418
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
 msgstr ""
 
-#: mod/admin.php:1411
-msgid "Minimal Memory"
+#: mod/install.php:422
+msgid "Error: openssl PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:1411
-msgid ""
-"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
-"default 0 (deactivated)."
+#: mod/install.php:426
+msgid "Error: PDO or MySQLi PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:1412
-msgid "Maximum table size for optimization"
+#: mod/install.php:430
+msgid "Error: The MySQL driver for PDO is not installed."
 msgstr ""
 
-#: mod/admin.php:1412
-msgid ""
-"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
-"Enter -1 to disable it."
+#: mod/install.php:434
+msgid "Error: mb_string PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:1413
-msgid "Minimum level of fragmentation"
+#: mod/install.php:438
+msgid "Error: iconv PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:1413
-msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
+#: mod/install.php:442
+msgid "Error: POSIX PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:1415
-msgid "Periodical check of global contacts"
+#: mod/install.php:452
+msgid "Error, XML PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:1415
+#: mod/install.php:464
 msgid ""
-"If enabled, the global contacts are checked periodically for missing or "
-"outdated data and the vitality of the contacts and servers."
+"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/admin.php:1416
-msgid "Days between requery"
+#: 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/admin.php:1416
-msgid "Number of days after which a server is requeried for his contacts."
+#: 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/admin.php:1417
-msgid "Discover contacts from other servers"
+#: 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/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'."
+#: mod/install.php:470
+msgid ".htconfig.php is writable"
 msgstr ""
 
-#: mod/admin.php:1418
-msgid "Timeframe for fetching global contacts"
+#: 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/admin.php:1418
+#: mod/install.php:481
 msgid ""
-"When the discovery is activated, this value defines the timeframe for the "
-"activity of the global contacts that are fetched from other servers."
+"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/admin.php:1419
-msgid "Search the local directory"
+#: 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/admin.php:1419
+#: mod/install.php:483
 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."
+"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/admin.php:1421
-msgid "Publish server information"
+#: mod/install.php:486
+msgid "view/smarty3 is writable"
 msgstr ""
 
-#: mod/admin.php:1421
+#: mod/install.php:504
 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 <a "
-"href='http://the-federation.info/'>the-federation.info</a> for details."
+"Url rewrite in .htaccess is not working. Check your server configuration."
 msgstr ""
 
-#: mod/admin.php:1423
-msgid "Check upstream version"
+#: mod/install.php:506
+msgid "Error message from Curl when fetching"
 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."
+#: mod/install.php:510
+msgid "Url rewrite is working"
 msgstr ""
 
-#: mod/admin.php:1424
-msgid "Suppress Tags"
+#: mod/install.php:529
+msgid "ImageMagick PHP extension is not installed"
 msgstr ""
 
-#: mod/admin.php:1424
-msgid "Suppress showing a list of hashtags at the end of the posting."
+#: mod/install.php:531
+msgid "ImageMagick PHP extension is installed"
 msgstr ""
 
-#: mod/admin.php:1425
-msgid "Path to item cache"
+#: mod/install.php:533
+msgid "ImageMagick supports GIF"
 msgstr ""
 
-#: mod/admin.php:1425
-msgid "The item caches buffers generated bbcode and external images."
+#: 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/admin.php:1426
-msgid "Cache duration in seconds"
+#: mod/install.php:563
+msgid "<h1>What next</h1>"
 msgstr ""
 
-#: mod/admin.php:1426
+#: mod/install.php:564
 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."
+"IMPORTANT: You will need to [manually] setup a scheduled task for the worker."
 msgstr ""
 
-#: mod/admin.php:1427
-msgid "Maximum numbers of comments per post"
+#: mod/install.php:567
+#, php-format
+msgid ""
+"Go to your new Friendica node <a href=\"%s/register\">registration page</a> "
+"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/admin.php:1427
-msgid "How much comments should be shown for each post? Default value is 100."
+#: mod/invite.php:33
+msgid "Total invitation limit exceeded."
 msgstr ""
 
-#: mod/admin.php:1428
-msgid "Temp path"
+#: mod/invite.php:55
+#, php-format
+msgid "%s : Not a valid email address."
 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."
+#: mod/invite.php:87
+msgid "Please join us on Friendica"
 msgstr ""
 
-#: mod/admin.php:1429
-msgid "Base path to installation"
+#: mod/invite.php:96
+msgid "Invitation limit exceeded. Please contact your site administrator."
 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."
+#: mod/invite.php:100
+#, php-format
+msgid "%s : Message delivery failed."
 msgstr ""
 
-#: mod/admin.php:1430
-msgid "Disable picture proxy"
-msgstr ""
+#: mod/invite.php:104
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/admin.php:1430
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on "
-"systems with very low bandwith."
+#: mod/invite.php:122
+msgid "You have no more invitations available"
 msgstr ""
 
-#: mod/admin.php:1431
-msgid "Only search in tags"
+#: 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/admin.php:1431
-msgid "On large systems the text search can slow down the system extremely."
+#: 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/admin.php:1433
-msgid "New base url"
+#: 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/admin.php:1433
+#: mod/invite.php:137
 msgid ""
-"Change base url for this server. Sends relocate message to all Friendica and "
-"Diaspora* contacts of all users."
+"Our apologies. This system is not currently configured to connect with other "
+"public sites or invite members."
 msgstr ""
 
-#: mod/admin.php:1435
-msgid "RINO Encryption"
+#: 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/admin.php:1435
-msgid "Encryption layer between nodes."
+#: mod/invite.php:140
+#, php-format
+msgid "To accept this invitation, please visit and register at %s."
 msgstr ""
 
-#: mod/admin.php:1435
-msgid "Enabled"
+#: mod/invite.php:147
+msgid "Send invitations"
 msgstr ""
 
-#: mod/admin.php:1437
-msgid "Maximum number of parallel workers"
+#: mod/invite.php:148
+msgid "Enter email addresses, one per line:"
 msgstr ""
 
-#: mod/admin.php:1437
+#: mod/invite.php:149
 msgid ""
-"On shared hosters set this to 2. On larger systems, values of 10 are great. "
-"Default value is 4."
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
 msgstr ""
 
-#: mod/admin.php:1438
-msgid "Don't use 'proc_open' with the worker"
+#: mod/invite.php:151
+msgid "You will need to supply this invitation code: $invite_code"
 msgstr ""
 
-#: mod/admin.php:1438
+#: mod/invite.php:151
 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"
+"Once you have registered, please connect with me via my profile page at:"
 msgstr ""
 
-#: mod/admin.php:1439
+#: mod/invite.php:153
 msgid ""
-"When enabed, the fastlane mechanism starts an additional worker if processes "
-"with higher priority are blocked by processes of lower priority."
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendi.ca"
 msgstr ""
 
-#: mod/admin.php:1440
-msgid "Enable frontend worker"
+#: mod/network.php:202 src/Model/Group.php:413
+msgid "add"
 msgstr ""
 
-#: mod/admin.php:1440
+#: mod/network.php:547
 #, 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."
+"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/admin.php:1442
-msgid "Subscribe to relay"
+#: mod/network.php:618
+msgid "No such group"
 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."
+#: mod/network.php:643
+#, php-format
+msgid "Group: %s"
 msgstr ""
 
-#: mod/admin.php:1443
-msgid "Relay server"
+#: mod/network.php:669
+msgid "Private messages to this person are at risk of public disclosure."
 msgstr ""
 
-#: mod/admin.php:1443
-msgid ""
-"Address of the relay server where public posts should be send to. For "
-"example https://relay.diasp.org"
+#: mod/network.php:672
+msgid "Invalid contact."
 msgstr ""
 
-#: mod/admin.php:1444
-msgid "Direct relay transfer"
+#: mod/network.php:937
+msgid "Commented Order"
 msgstr ""
 
-#: mod/admin.php:1444
-msgid ""
-"Enables the direct transfer to other servers without using the relay servers"
+#: mod/network.php:940
+msgid "Sort by Comment Date"
 msgstr ""
 
-#: mod/admin.php:1445
-msgid "Relay scope"
+#: mod/network.php:945
+msgid "Posted Order"
 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."
+#: mod/network.php:948
+msgid "Sort by Post Date"
 msgstr ""
 
-#: mod/admin.php:1445
-msgid "all"
+#: mod/network.php:959
+msgid "Posts that mention or involve you"
 msgstr ""
 
-#: mod/admin.php:1445
-msgid "tags"
+#: mod/network.php:967
+msgid "New"
 msgstr ""
 
-#: mod/admin.php:1446
-msgid "Server tags"
+#: mod/network.php:970
+msgid "Activity Stream - by date"
 msgstr ""
 
-#: mod/admin.php:1446
-msgid "Comma separated list of tags for the 'tags' subscription."
+#: mod/network.php:978
+msgid "Shared Links"
 msgstr ""
 
-#: mod/admin.php:1447
-msgid "Allow user tags"
+#: mod/network.php:981
+msgid "Interesting Links"
 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'."
+#: mod/network.php:989
+msgid "Starred"
 msgstr ""
 
-#: mod/admin.php:1475
-msgid "Update has been marked successful"
+#: mod/network.php:992
+msgid "Favourite Posts"
 msgstr ""
 
-#: mod/admin.php:1482
-#, php-format
-msgid "Database structure update %s was successfully applied."
+#: mod/profile.php:37 src/Model/Profile.php:118
+msgid "Requested profile is not available."
 msgstr ""
 
-#: mod/admin.php:1485
+#: mod/profile.php:78 src/Protocol/OStatus.php:1252
 #, php-format
-msgid "Executing of database structure update %s failed with error: %s"
+msgid "%s's posts"
 msgstr ""
 
-#: mod/admin.php:1498
+#: mod/profile.php:79 src/Protocol/OStatus.php:1253
 #, php-format
-msgid "Executing %s failed with error: %s"
+msgid "%s's comments"
 msgstr ""
 
-#: mod/admin.php:1500
+#: mod/profile.php:80 src/Protocol/OStatus.php:1251
 #, php-format
-msgid "Update %s was successfully applied."
+msgid "%s's timeline"
 msgstr ""
 
-#: mod/admin.php:1503
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
+#: mod/profile.php:194
+msgid "Tips for New Members"
 msgstr ""
 
-#: mod/admin.php:1506
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
+#: mod/settings.php:56
+msgid "Account"
 msgstr ""
 
-#: mod/admin.php:1526
-msgid "No failed updates."
+#: mod/settings.php:73
+msgid "Display"
 msgstr ""
 
-#: mod/admin.php:1527
-msgid "Check database structure"
+#: mod/settings.php:80 mod/settings.php:844
+msgid "Social Networks"
 msgstr ""
 
-#: mod/admin.php:1532
-msgid "Failed Updates"
+#: mod/settings.php:94 src/Content/Nav.php:201
+msgid "Delegations"
 msgstr ""
 
-#: mod/admin.php:1533
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
+#: mod/settings.php:101
+msgid "Connected apps"
 msgstr ""
 
-#: mod/admin.php:1534
-msgid "Mark success (if update was manually applied)"
+#: mod/settings.php:115
+msgid "Remove account"
 msgstr ""
 
-#: mod/admin.php:1535
-msgid "Attempt to execute this update step automatically"
+#: mod/settings.php:169
+msgid "Missing some important data!"
 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."
+#: mod/settings.php:280
+msgid "Failed to connect with email account using the settings provided."
 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."
+#: mod/settings.php:285
+msgid "Email settings updated."
 msgstr ""
 
-#: mod/admin.php:1621
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] ""
-msgstr[1] ""
+#: mod/settings.php:301
+msgid "Features updated"
+msgstr ""
 
-#: mod/admin.php:1627
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] ""
-msgstr[1] ""
+#: mod/settings.php:374
+msgid "Relocate message has been send to your contacts"
+msgstr ""
 
-#: mod/admin.php:1674
-#, php-format
-msgid "User '%s' deleted"
+#: mod/settings.php:386 src/Model/User.php:339
+msgid "Passwords do not match. Password unchanged."
 msgstr ""
 
-#: mod/admin.php:1682
-#, php-format
-msgid "User '%s' unblocked"
+#: mod/settings.php:391
+msgid "Empty passwords are not allowed. Password unchanged."
 msgstr ""
 
-#: mod/admin.php:1682
-#, php-format
-msgid "User '%s' blocked"
+#: 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/admin.php:1743
-msgid "Private Forum"
+#: mod/settings.php:402
+msgid "Wrong password."
 msgstr ""
 
-#: mod/admin.php:1796 mod/admin.php:1820
-msgid "Register date"
+#: mod/settings.php:409 src/Core/Console/NewPassword.php:94
+msgid "Password changed."
 msgstr ""
 
-#: mod/admin.php:1796 mod/admin.php:1820
-msgid "Last login"
+#: mod/settings.php:411 src/Core/Console/NewPassword.php:91
+msgid "Password update failed. Please try again."
 msgstr ""
 
-#: mod/admin.php:1796 mod/admin.php:1820
-msgid "Last item"
+#: mod/settings.php:498
+msgid " Please use a shorter name."
 msgstr ""
 
-#: mod/admin.php:1796
-msgid "Type"
+#: mod/settings.php:501
+msgid " Name too short."
 msgstr ""
 
-#: mod/admin.php:1803
-msgid "Add User"
+#: mod/settings.php:509
+msgid "Wrong Password"
 msgstr ""
 
-#: mod/admin.php:1805
-msgid "User registrations waiting for confirm"
+#: mod/settings.php:514
+msgid "Invalid email."
 msgstr ""
 
-#: mod/admin.php:1806
-msgid "User waiting for permanent deletion"
+#: mod/settings.php:521
+msgid "Cannot change to that email."
 msgstr ""
 
-#: mod/admin.php:1807
-msgid "Request date"
+#: 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/admin.php:1808
-msgid "No registrations."
+#: mod/settings.php:681 mod/settings.php:707
+msgid "Consumer Secret"
 msgstr ""
 
-#: mod/admin.php:1809
-msgid "Note from the user"
+#: mod/settings.php:682 mod/settings.php:708
+msgid "Redirect"
 msgstr ""
 
-#: mod/admin.php:1810 mod/notifications.php:179 mod/notifications.php:264
-msgid "Approve"
+#: mod/settings.php:683 mod/settings.php:709
+msgid "Icon url"
 msgstr ""
 
-#: mod/admin.php:1811
-msgid "Deny"
+#: mod/settings.php:694
+msgid "You can't edit this application."
 msgstr ""
 
-#: mod/admin.php:1815
-msgid "Site admin"
+#: mod/settings.php:737
+msgid "Connected Apps"
 msgstr ""
 
-#: mod/admin.php:1816
-msgid "Account expired"
+#: mod/settings.php:739 src/Object/Post.php:155 src/Object/Post.php:157
+msgid "Edit"
 msgstr ""
 
-#: mod/admin.php:1819
-msgid "New User"
+#: mod/settings.php:741
+msgid "Client key starts with"
 msgstr ""
 
-#: mod/admin.php:1820
-msgid "Deleted since"
+#: mod/settings.php:742
+msgid "No name"
 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?"
+#: mod/settings.php:743
+msgid "Remove authorization"
 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?"
+#: mod/settings.php:754
+msgid "No Addon settings configured"
 msgstr ""
 
-#: mod/admin.php:1836
-msgid "Name of the new user."
+#: mod/settings.php:763
+msgid "Addon Settings"
 msgstr ""
 
-#: mod/admin.php:1837
-msgid "Nickname"
+#: mod/settings.php:784
+msgid "Additional Features"
 msgstr ""
 
-#: mod/admin.php:1837
-msgid "Nickname of the new user."
+#: mod/settings.php:807 src/Content/ContactSelector.php:83
+msgid "Diaspora"
 msgstr ""
 
-#: mod/admin.php:1838
-msgid "Email address of the new user."
+#: mod/settings.php:807 mod/settings.php:808
+msgid "enabled"
 msgstr ""
 
-#: mod/admin.php:1880
-#, php-format
-msgid "Addon %s disabled."
+#: mod/settings.php:807 mod/settings.php:808
+msgid "disabled"
 msgstr ""
 
-#: mod/admin.php:1884
+#: mod/settings.php:807 mod/settings.php:808
 #, php-format
-msgid "Addon %s enabled."
+msgid "Built-in support for %s connectivity is %s"
 msgstr ""
 
-#: mod/admin.php:1894 mod/admin.php:2143
-msgid "Disable"
+#: mod/settings.php:808
+msgid "GNU Social (OStatus)"
 msgstr ""
 
-#: mod/admin.php:1897 mod/admin.php:2146
-msgid "Enable"
+#: mod/settings.php:839
+msgid "Email access is disabled on this site."
 msgstr ""
 
-#: mod/admin.php:1919 mod/admin.php:2188
-msgid "Toggle"
+#: mod/settings.php:849
+msgid "General Social Media Settings"
 msgstr ""
 
-#: mod/admin.php:1927 mod/admin.php:2197
-msgid "Author: "
+#: mod/settings.php:850
+msgid "Disable Content Warning"
 msgstr ""
 
-#: mod/admin.php:1928 mod/admin.php:2198
-msgid "Maintainer: "
+#: 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/admin.php:1980
-msgid "Reload active addons"
+#: mod/settings.php:851
+msgid "Disable intelligent shortening"
 msgstr ""
 
-#: mod/admin.php:1985
-#, php-format
+#: mod/settings.php:851
 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"
+"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/admin.php:2105
-msgid "No themes found."
+#: mod/settings.php:852
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
 msgstr ""
 
-#: mod/admin.php:2179
-msgid "Screenshot"
+#: 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/admin.php:2233
-msgid "Reload active themes"
+#: mod/settings.php:853
+msgid "Default group for OStatus contacts"
 msgstr ""
 
-#: mod/admin.php:2238
-#, php-format
-msgid "No themes found on the system. They should be placed in %1$s"
+#: mod/settings.php:854
+msgid "Your legacy GNU Social account"
 msgstr ""
 
-#: mod/admin.php:2239
-msgid "[Experimental]"
+#: 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/admin.php:2240
-msgid "[Unsupported]"
+#: mod/settings.php:857
+msgid "Repair OStatus subscriptions"
 msgstr ""
 
-#: mod/admin.php:2264
-msgid "Log settings updated."
+#: mod/settings.php:861
+msgid "Email/Mailbox Setup"
 msgstr ""
 
-#: mod/admin.php:2296
-msgid "PHP log currently enabled."
+#: 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/admin.php:2298
-msgid "PHP log currently disabled."
+#: mod/settings.php:863
+msgid "Last successful email check:"
 msgstr ""
 
-#: mod/admin.php:2307
-msgid "Clear"
+#: mod/settings.php:865
+msgid "IMAP server name:"
 msgstr ""
 
-#: mod/admin.php:2311
-msgid "Enable Debugging"
+#: mod/settings.php:866
+msgid "IMAP port:"
 msgstr ""
 
-#: mod/admin.php:2312
-msgid "Log file"
+#: mod/settings.php:867
+msgid "Security:"
 msgstr ""
 
-#: mod/admin.php:2312
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
+#: mod/settings.php:867 mod/settings.php:872
+msgid "None"
 msgstr ""
 
-#: mod/admin.php:2313
-msgid "Log level"
+#: mod/settings.php:868
+msgid "Email login name:"
 msgstr ""
 
-#: mod/admin.php:2315
-msgid "PHP logging"
+#: mod/settings.php:869
+msgid "Email password:"
 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."
+#: mod/settings.php:870
+msgid "Reply-to address:"
 msgstr ""
 
-#: mod/admin.php:2347
-#, php-format
-msgid ""
-"Error trying to open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see "
-"if file %1$s exist and is readable."
+#: mod/settings.php:871
+msgid "Send public posts to all email contacts:"
 msgstr ""
 
-#: mod/admin.php:2351
-#, php-format
-msgid ""
-"Couldn't open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see if file "
-"%1$s is readable."
+#: mod/settings.php:872
+msgid "Action after import:"
 msgstr ""
 
-#: mod/admin.php:2443
-#, php-format
-msgid "Lock feature %s"
+#: mod/settings.php:872 src/Content/Nav.php:189
+msgid "Mark as seen"
 msgstr ""
 
-#: mod/admin.php:2451
-msgid "Manage Additional Features"
+#: mod/settings.php:872
+msgid "Move to folder"
 msgstr ""
 
-#: mod/delegate.php:37
-msgid "Parent user not found."
+#: mod/settings.php:873
+msgid "Move to folder:"
 msgstr ""
 
-#: mod/delegate.php:144
-msgid "No parent user"
+#: mod/settings.php:916
+#, php-format
+msgid "%s - (Unsupported)"
 msgstr ""
 
-#: mod/delegate.php:159
-msgid "Parent Password:"
+#: mod/settings.php:918
+#, php-format
+msgid "%s - (Experimental)"
 msgstr ""
 
-#: mod/delegate.php:159
-msgid ""
-"Please enter the password of the parent account to legitimize your request."
+#: mod/settings.php:961
+msgid "Display Settings"
 msgstr ""
 
-#: mod/delegate.php:164
-msgid "Parent User"
+#: mod/settings.php:967 mod/settings.php:991
+msgid "Display Theme:"
 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."
+#: mod/settings.php:968
+msgid "Mobile Theme:"
 msgstr ""
 
-#: mod/delegate.php:170
-msgid "Delegates"
+#: mod/settings.php:969
+msgid "Suppress warning of insecure networks"
 msgstr ""
 
-#: mod/delegate.php:172
+#: mod/settings.php:969
 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."
+"Should the system suppress the warning that the current group contains "
+"members of networks that can't receive non public postings."
 msgstr ""
 
-#: mod/delegate.php:173
-msgid "Existing Page Delegates"
+#: mod/settings.php:970
+msgid "Update browser every xx seconds"
 msgstr ""
 
-#: mod/delegate.php:175
-msgid "Potential Delegates"
+#: mod/settings.php:970
+msgid "Minimum of 10 seconds. Enter -1 to disable it."
 msgstr ""
 
-#: mod/delegate.php:177 mod/tagrm.php:98
-msgid "Remove"
+#: mod/settings.php:971
+msgid "Number of items to display per page:"
 msgstr ""
 
-#: mod/delegate.php:178
-msgid "Add"
+#: mod/settings.php:971 mod/settings.php:972
+msgid "Maximum of 100 items"
 msgstr ""
 
-#: mod/delegate.php:179
-msgid "No entries."
+#: mod/settings.php:972
+msgid "Number of items to display per page when viewed from mobile device:"
 msgstr ""
 
-#: mod/photos.php:109 mod/photos.php:1713
-msgid "Recent Photos"
+#: mod/settings.php:973
+msgid "Don't show emoticons"
 msgstr ""
 
-#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715
-msgid "Upload New Photos"
+#: mod/settings.php:974
+msgid "Calendar"
 msgstr ""
 
-#: mod/photos.php:184
-msgid "Contact information unavailable"
+#: mod/settings.php:975
+msgid "Beginning of week:"
 msgstr ""
 
-#: mod/photos.php:204
-msgid "Album not found."
+#: mod/settings.php:976
+msgid "Don't show notices"
 msgstr ""
 
-#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161
-msgid "Delete Album"
+#: mod/settings.php:977
+msgid "Infinite scroll"
 msgstr ""
 
-#: mod/photos.php:243
-msgid "Do you really want to delete this photo album and all its photos?"
+#: mod/settings.php:978
+msgid "Automatic updates only at the top of the network page"
 msgstr ""
 
-#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446
-msgid "Delete Photo"
+#: mod/settings.php:978
+msgid ""
+"When disabled, the network page is updated all the time, which could be "
+"confusing while reading."
 msgstr ""
 
-#: mod/photos.php:319
-msgid "Do you really want to delete this photo?"
+#: mod/settings.php:979
+msgid "Bandwith Saver Mode"
 msgstr ""
 
-#: mod/photos.php:667
-msgid "a photo"
+#: mod/settings.php:979
+msgid ""
+"When enabled, embedded content is not displayed on automatic updates, they "
+"only show on page reload."
 msgstr ""
 
-#: mod/photos.php:667
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
+#: mod/settings.php:980
+msgid "Smart Threading"
 msgstr ""
 
-#: mod/photos.php:769
-msgid "Image upload didn't complete, please try again"
+#: 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/photos.php:772
-msgid "Image file is missing"
+#: mod/settings.php:982
+msgid "General Theme Settings"
 msgstr ""
 
-#: mod/photos.php:777
-msgid ""
-"Server can't accept new file upload at this time, please contact your "
-"administrator"
+#: mod/settings.php:983
+msgid "Custom Theme Settings"
 msgstr ""
 
-#: mod/photos.php:803
-msgid "Image file is empty."
+#: mod/settings.php:984
+msgid "Content Settings"
 msgstr ""
 
-#: mod/photos.php:940
-msgid "No photos selected"
+#: 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/photos.php:1036 mod/videos.php:309
-msgid "Access to this item is restricted."
+#: mod/settings.php:1004
+msgid "Unable to find your profile. Please contact your admin."
 msgstr ""
 
-#: mod/photos.php:1090
-msgid "Upload Photos"
+#: mod/settings.php:1046
+msgid "Account Types"
 msgstr ""
 
-#: mod/photos.php:1094 mod/photos.php:1156
-msgid "New album name: "
+#: mod/settings.php:1047
+msgid "Personal Page Subtypes"
 msgstr ""
 
-#: mod/photos.php:1095
-msgid "or existing album name: "
+#: mod/settings.php:1048
+msgid "Community Forum Subtypes"
 msgstr ""
 
-#: mod/photos.php:1096
-msgid "Do not show a status post for this upload"
+#: mod/settings.php:1056
+msgid "Account for a personal profile."
 msgstr ""
 
-#: mod/photos.php:1167
-msgid "Edit Album"
+#: mod/settings.php:1060
+msgid ""
+"Account for an organisation that automatically approves contact requests as "
+"\"Followers\"."
 msgstr ""
 
-#: mod/photos.php:1172
-msgid "Show Newest First"
+#: mod/settings.php:1064
+msgid ""
+"Account for a news reflector that automatically approves contact requests as "
+"\"Followers\"."
 msgstr ""
 
-#: mod/photos.php:1174
-msgid "Show Oldest First"
+#: mod/settings.php:1068
+msgid "Account for community discussions."
 msgstr ""
 
-#: mod/photos.php:1195 mod/photos.php:1698
-msgid "View Photo"
+#: mod/settings.php:1072
+msgid ""
+"Account for a regular personal profile that requires manual approval of "
+"\"Friends\" and \"Followers\"."
 msgstr ""
 
-#: mod/photos.php:1236
-msgid "Permission denied. Access to this item may be restricted."
+#: mod/settings.php:1076
+msgid ""
+"Account for a public profile that automatically approves contact requests as "
+"\"Followers\"."
 msgstr ""
 
-#: mod/photos.php:1238
-msgid "Photo not available"
+#: mod/settings.php:1080
+msgid "Automatically approves all contact requests."
 msgstr ""
 
-#: mod/photos.php:1301
-msgid "View photo"
+#: mod/settings.php:1084
+msgid ""
+"Account for a popular profile that automatically approves contact requests "
+"as \"Friends\"."
 msgstr ""
 
-#: mod/photos.php:1301
-msgid "Edit photo"
+#: mod/settings.php:1087
+msgid "Private Forum [Experimental]"
 msgstr ""
 
-#: mod/photos.php:1302
-msgid "Use as profile photo"
+#: mod/settings.php:1088
+msgid "Requires manual approval of contact requests."
 msgstr ""
 
-#: mod/photos.php:1327
-msgid "View Full Size"
+#: mod/settings.php:1099
+msgid "OpenID:"
 msgstr ""
 
-#: mod/photos.php:1414
-msgid "Tags: "
+#: mod/settings.php:1099
+msgid "(Optional) Allow this OpenID to login to this account."
 msgstr ""
 
-#: mod/photos.php:1417
-msgid "[Remove any tag]"
+#: mod/settings.php:1107
+msgid "Publish your default profile in your local site directory?"
 msgstr ""
 
-#: mod/photos.php:1432
-msgid "New album name"
+#: mod/settings.php:1107
+#, php-format
+msgid ""
+"Your profile will be published in the global friendica directories (e.g. <a "
+"href=\"%s\">%s</a>). Your profile will be visible in public."
 msgstr ""
 
-#: mod/photos.php:1433
-msgid "Caption"
+#: mod/settings.php:1113
+msgid "Publish your default profile in the global social directory?"
 msgstr ""
 
-#: mod/photos.php:1434
-msgid "Add a Tag"
+#: mod/settings.php:1113
+#, php-format
+msgid ""
+"Your profile will be published in this node's <a href=\"%s\">local "
+"directory</a>. Your profile details may be publicly visible depending on the "
+"system settings."
 msgstr ""
 
-#: mod/photos.php:1434
-msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+#: mod/settings.php:1120
+msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr ""
 
-#: mod/photos.php:1435
-msgid "Do not rotate"
+#: 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/photos.php:1436
-msgid "Rotate CW (right)"
+#: mod/settings.php:1124
+msgid "Hide your profile details from anonymous viewers?"
 msgstr ""
 
-#: mod/photos.php:1437
-msgid "Rotate CCW (left)"
+#: 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/photos.php:1634
-msgid "Map"
+#: mod/settings.php:1128
+msgid "Allow friends to post to your profile page?"
 msgstr ""
 
-#: mod/photos.php:1704 mod/videos.php:387
-msgid "View Album"
+#: mod/settings.php:1128
+msgid ""
+"Your contacts may write posts on your profile wall. These posts will be "
+"distributed to your contacts"
 msgstr ""
 
-#: mod/nogroup.php:43 mod/contacts.php:960
-msgid "Edit contact"
+#: mod/settings.php:1132
+msgid "Allow friends to tag your posts?"
 msgstr ""
 
-#: mod/nogroup.php:63
-msgid "Contacts who are not members of a group"
+#: mod/settings.php:1132
+msgid "Your contacts can add additional tags to your posts."
 msgstr ""
 
-#: mod/community.php:46
-msgid "Community option not available."
+#: mod/settings.php:1136
+msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr ""
 
-#: mod/community.php:63
-msgid "Not available."
+#: mod/settings.php:1136
+msgid "If you like, Friendica may suggest new members to add you as a contact."
 msgstr ""
 
-#: mod/community.php:76
-msgid "Local Community"
+#: mod/settings.php:1140
+msgid "Permit unknown people to send you private mail?"
 msgstr ""
 
-#: mod/community.php:79
-msgid "Posts from local users on this server"
+#: mod/settings.php:1140
+msgid ""
+"Friendica network users may send you private messages even if they are not "
+"in your contact list."
 msgstr ""
 
-#: mod/community.php:87
-msgid "Global Community"
+#: mod/settings.php:1144
+msgid "Profile is <strong>not published</strong>."
 msgstr ""
 
-#: mod/community.php:90
-msgid "Posts from users of the whole federated network"
+#: mod/settings.php:1150
+#, php-format
+msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
 msgstr ""
 
-#: mod/community.php:136 mod/search.php:228
-msgid "No results."
+#: mod/settings.php:1157
+msgid "Automatically expire posts after this many days:"
 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."
+#: mod/settings.php:1157
+msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr ""
 
-#: mod/message.php:73 mod/wallmessage.php:57
-msgid "No recipient selected."
+#: mod/settings.php:1158
+msgid "Advanced expiration settings"
 msgstr ""
 
-#: mod/message.php:77
-msgid "Unable to locate contact information."
+#: mod/settings.php:1159
+msgid "Advanced Expiration"
 msgstr ""
 
-#: mod/message.php:80 mod/wallmessage.php:63
-msgid "Message could not be sent."
+#: mod/settings.php:1160
+msgid "Expire posts:"
 msgstr ""
 
-#: mod/message.php:83 mod/wallmessage.php:66
-msgid "Message collection failure."
+#: mod/settings.php:1161
+msgid "Expire personal notes:"
 msgstr ""
 
-#: mod/message.php:86 mod/wallmessage.php:69
-msgid "Message sent."
+#: mod/settings.php:1162
+msgid "Expire starred posts:"
 msgstr ""
 
-#: mod/message.php:136
-msgid "Do you really want to delete this message?"
+#: mod/settings.php:1163
+msgid "Expire photos:"
 msgstr ""
 
-#: mod/message.php:156
-msgid "Message deleted."
+#: mod/settings.php:1164
+msgid "Only expire posts by others:"
 msgstr ""
 
-#: mod/message.php:185
-msgid "Conversation removed."
+#: mod/settings.php:1194
+msgid "Account Settings"
 msgstr ""
 
-#: mod/message.php:250 mod/wallmessage.php:132
-msgid "Send Private Message"
+#: mod/settings.php:1202
+msgid "Password Settings"
 msgstr ""
 
-#: mod/message.php:251 mod/message.php:421 mod/wallmessage.php:134
-msgid "To:"
+#: mod/settings.php:1204
+msgid "Leave password fields blank unless changing"
 msgstr ""
 
-#: mod/message.php:255 mod/message.php:423 mod/wallmessage.php:135
-msgid "Subject:"
+#: mod/settings.php:1205
+msgid "Current Password:"
 msgstr ""
 
-#: mod/message.php:291
-msgid "No messages."
+#: mod/settings.php:1205 mod/settings.php:1206
+msgid "Your current password to confirm the changes"
 msgstr ""
 
-#: mod/message.php:330
-msgid "Message not available."
+#: mod/settings.php:1206
+msgid "Password:"
 msgstr ""
 
-#: mod/message.php:397
-msgid "Delete message"
+#: mod/settings.php:1210
+msgid "Basic Settings"
 msgstr ""
 
-#: mod/message.php:399 mod/message.php:500
-msgid "D, d M Y - g:i A"
+#: mod/settings.php:1211 src/Model/Profile.php:736
+msgid "Full Name:"
 msgstr ""
 
-#: mod/message.php:414 mod/message.php:497
-msgid "Delete conversation"
+#: mod/settings.php:1212
+msgid "Email Address:"
 msgstr ""
 
-#: mod/message.php:416
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
+#: mod/settings.php:1213
+msgid "Your Timezone:"
 msgstr ""
 
-#: mod/message.php:420
-msgid "Send Reply"
+#: mod/settings.php:1214
+msgid "Your Language:"
 msgstr ""
 
-#: mod/message.php:471
-#, php-format
-msgid "Unknown sender - %s"
+#: mod/settings.php:1214
+msgid ""
+"Set the language we use to show you friendica interface and to send you "
+"emails"
 msgstr ""
 
-#: mod/message.php:473
-#, php-format
-msgid "You and %s"
+#: mod/settings.php:1215
+msgid "Default Post Location:"
 msgstr ""
 
-#: mod/message.php:475
-#, php-format
-msgid "%s and You"
+#: mod/settings.php:1216
+msgid "Use Browser Location:"
 msgstr ""
 
-#: mod/message.php:503
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] ""
-msgstr[1] ""
+#: mod/settings.php:1219
+msgid "Security and Privacy Settings"
+msgstr ""
 
-#: mod/videos.php:139
-msgid "Do you really want to delete this video?"
+#: mod/settings.php:1221
+msgid "Maximum Friend Requests/Day:"
 msgstr ""
 
-#: mod/videos.php:144
-msgid "Delete Video"
+#: mod/settings.php:1221 mod/settings.php:1250
+msgid "(to prevent spam abuse)"
 msgstr ""
 
-#: mod/videos.php:207
-msgid "No videos selected"
+#: mod/settings.php:1222
+msgid "Default Post Permissions"
 msgstr ""
 
-#: mod/videos.php:396
-msgid "Recent Videos"
+#: mod/settings.php:1223
+msgid "(click to open/close)"
 msgstr ""
 
-#: mod/videos.php:398
-msgid "Upload New Videos"
+#: mod/settings.php:1233
+msgid "Default Private Post"
 msgstr ""
 
-#: mod/credits.php:18
-msgid "Credits"
+#: mod/settings.php:1234
+msgid "Default Public Post"
 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!"
+#: mod/settings.php:1238
+msgid "Default Permissions for New Posts"
 msgstr ""
 
-#: mod/unfollow.php:34
-msgid "Contact wasn't found or can't be unfollowed."
+#: mod/settings.php:1250
+msgid "Maximum private messages per day from unknown people:"
 msgstr ""
 
-#: mod/unfollow.php:47
-msgid "Contact unfollowed"
+#: mod/settings.php:1253
+msgid "Notification Settings"
 msgstr ""
 
-#: mod/unfollow.php:65 mod/dfrn_request.php:662 mod/follow.php:62
-msgid "Submit Request"
+#: mod/settings.php:1254
+msgid "By default post a status message when:"
 msgstr ""
 
-#: mod/unfollow.php:73
-msgid "You aren't a friend of this contact."
+#: mod/settings.php:1255
+msgid "accepting a friend request"
 msgstr ""
 
-#: mod/unfollow.php:79
-msgid "Unfollowing is currently not supported by your network."
+#: mod/settings.php:1256
+msgid "joining a forum/community"
 msgstr ""
 
-#: mod/unfollow.php:100 mod/contacts.php:599
-msgid "Disconnect/Unfollow"
+#: mod/settings.php:1257
+msgid "making an <em>interesting</em> profile change"
 msgstr ""
 
-#: mod/unfollow.php:113 mod/dfrn_request.php:660 mod/follow.php:157
-msgid "Your Identity Address:"
+#: mod/settings.php:1258
+msgid "Send a notification email when:"
 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."
+#: mod/settings.php:1259
+msgid "You receive an introduction"
 msgstr ""
 
-#: mod/wall_attach.php:101
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+#: mod/settings.php:1260
+msgid "Your introductions are confirmed"
 msgstr ""
 
-#: mod/wall_attach.php:101
-msgid "Or - did you try to upload an empty file?"
+#: mod/settings.php:1261
+msgid "Someone writes on your profile wall"
 msgstr ""
 
-#: mod/wall_attach.php:112
-#, php-format
-msgid "File exceeds size limit of %s"
+#: mod/settings.php:1262
+msgid "Someone writes a followup comment"
 msgstr ""
 
-#: mod/wall_attach.php:136 mod/wall_attach.php:152
-msgid "File upload failed."
+#: mod/settings.php:1263
+msgid "You receive a private message"
 msgstr ""
 
-#: mod/profile.php:194
-msgid "Tips for New Members"
+#: mod/settings.php:1264
+msgid "You receive a friend suggestion"
 msgstr ""
 
-#: mod/localtime.php:33
-msgid "Time Conversion"
+#: mod/settings.php:1265
+msgid "You are tagged in a post"
 msgstr ""
 
-#: mod/localtime.php:35
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
+#: mod/settings.php:1266
+msgid "You are poked/prodded/etc. in a post"
 msgstr ""
 
-#: mod/localtime.php:39
-#, php-format
-msgid "UTC time: %s"
+#: mod/settings.php:1268
+msgid "Activate desktop notifications"
 msgstr ""
 
-#: mod/localtime.php:42
-#, php-format
-msgid "Current timezone: %s"
+#: mod/settings.php:1268
+msgid "Show desktop popup on new notifications"
 msgstr ""
 
-#: mod/localtime.php:46
-#, php-format
-msgid "Converted localtime: %s"
+#: mod/settings.php:1270
+msgid "Text-only notification emails"
 msgstr ""
 
-#: mod/localtime.php:52
-msgid "Please select your timezone:"
+#: mod/settings.php:1272
+msgid "Send text only notification emails, without the html part"
 msgstr ""
 
-#: mod/dfrn_request.php:94
-msgid "This introduction has already been accepted."
+#: mod/settings.php:1274
+msgid "Show detailled notifications"
 msgstr ""
 
-#: mod/dfrn_request.php:112 mod/dfrn_request.php:359
-msgid "Profile location is not valid or does not contain profile information."
+#: mod/settings.php:1276
+msgid ""
+"Per default, notifications are condensed to a single notification per item. "
+"When enabled every notification is displayed."
 msgstr ""
 
-#: mod/dfrn_request.php:116 mod/dfrn_request.php:363
-msgid "Warning: profile location has no identifiable owner name."
+#: mod/settings.php:1278
+msgid "Advanced Account/Page Type Settings"
 msgstr ""
 
-#: mod/dfrn_request.php:119 mod/dfrn_request.php:366
-msgid "Warning: profile location has no profile photo."
+#: mod/settings.php:1279
+msgid "Change the behaviour of this account for special situations"
 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."
+#: mod/settings.php:1282
+msgid "Relocate"
 msgstr ""
 
-#: mod/dfrn_request.php:199
-msgid "Unrecoverable protocol error."
+#: 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/dfrn_request.php:226
-msgid "Profile unavailable."
+#: mod/settings.php:1284
+msgid "Resend relocate message to contacts"
 msgstr ""
 
-#: mod/dfrn_request.php:248
-#, php-format
-msgid "%s has received too many connection requests today."
+#: view/theme/duepuntozero/config.php:54 src/Model/User.php:502
+msgid "default"
 msgstr ""
 
-#: mod/dfrn_request.php:249
-msgid "Spam protection measures have been invoked."
+#: view/theme/duepuntozero/config.php:55
+msgid "greenzero"
 msgstr ""
 
-#: mod/dfrn_request.php:250
-msgid "Friends are advised to please try again in 24 hours."
+#: view/theme/duepuntozero/config.php:56
+msgid "purplezero"
 msgstr ""
 
-#: mod/dfrn_request.php:280
-msgid "Invalid locator"
+#: view/theme/duepuntozero/config.php:57
+msgid "easterbunny"
 msgstr ""
 
-#: mod/dfrn_request.php:316
-msgid "You have already introduced yourself here."
+#: view/theme/duepuntozero/config.php:58
+msgid "darkzero"
 msgstr ""
 
-#: mod/dfrn_request.php:319
-#, php-format
-msgid "Apparently you are already friends with %s."
+#: view/theme/duepuntozero/config.php:59
+msgid "comix"
 msgstr ""
 
-#: mod/dfrn_request.php:339
-msgid "Invalid profile URL."
+#: view/theme/duepuntozero/config.php:60
+msgid "slackr"
 msgstr ""
 
-#: mod/dfrn_request.php:419 mod/contacts.php:230
-msgid "Failed to update contact record."
+#: view/theme/duepuntozero/config.php:74
+msgid "Variations"
 msgstr ""
 
-#: mod/dfrn_request.php:439
-msgid "Your introduction has been sent."
+#: view/theme/frio/php/Image.php:24
+msgid "Top Banner"
 msgstr ""
 
-#: mod/dfrn_request.php:477
+#: view/theme/frio/php/Image.php:24
 msgid ""
-"Remote subscription can't be done for your network. Please subscribe "
-"directly on your system."
+"Resize image to the width of the screen and show background color below on "
+"long pages."
 msgstr ""
 
-#: mod/dfrn_request.php:493
-msgid "Please login to confirm introduction."
+#: view/theme/frio/php/Image.php:25
+msgid "Full screen"
 msgstr ""
 
-#: mod/dfrn_request.php:501
+#: view/theme/frio/php/Image.php:25
 msgid ""
-"Incorrect identity currently logged in. Please login to <strong>this</"
-"strong> profile."
+"Resize image to fill entire screen, clipping either the right or the bottom."
 msgstr ""
 
-#: mod/dfrn_request.php:515 mod/dfrn_request.php:532
-msgid "Confirm"
+#: view/theme/frio/php/Image.php:26
+msgid "Single row mosaic"
 msgstr ""
 
-#: mod/dfrn_request.php:527
-msgid "Hide this contact"
+#: view/theme/frio/php/Image.php:26
+msgid ""
+"Resize image to repeat it on a single row, either vertical or horizontal."
 msgstr ""
 
-#: mod/dfrn_request.php:530
-#, php-format
-msgid "Welcome home %s."
+#: view/theme/frio/php/Image.php:27
+msgid "Mosaic"
 msgstr ""
 
-#: mod/dfrn_request.php:531
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
+#: view/theme/frio/php/Image.php:27
+msgid "Repeat image to fill the screen."
 msgstr ""
 
-#: mod/dfrn_request.php:642
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
+#: view/theme/frio/config.php:102
+msgid "Custom"
 msgstr ""
 
-#: mod/dfrn_request.php:645
-#, php-format
-msgid ""
-"If you are not yet a member of the free social web, <a href=\"%s\">follow "
-"this link to find a public Friendica site and join us today</a>."
+#: view/theme/frio/config.php:114
+msgid "Note"
 msgstr ""
 
-#: mod/dfrn_request.php:650
-msgid "Friend/Connection Request"
+#: view/theme/frio/config.php:114
+msgid "Check image permissions if all users are allowed to see the image"
 msgstr ""
 
-#: mod/dfrn_request.php:651
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@gnusocial.de"
+#: view/theme/frio/config.php:121
+msgid "Select color scheme"
 msgstr ""
 
-#: mod/dfrn_request.php:652 mod/follow.php:149
-msgid "Please answer the following:"
+#: view/theme/frio/config.php:122
+msgid "Navigation bar background color"
 msgstr ""
 
-#: mod/dfrn_request.php:653 mod/follow.php:150
-#, php-format
-msgid "Does %s know you?"
+#: view/theme/frio/config.php:123
+msgid "Navigation bar icon color "
 msgstr ""
 
-#: mod/dfrn_request.php:654 mod/follow.php:151
-msgid "Add a personal note:"
+#: view/theme/frio/config.php:124
+msgid "Link color"
 msgstr ""
 
-#: mod/dfrn_request.php:657
-msgid "GNU Social (Pleroma, Mastodon)"
+#: view/theme/frio/config.php:125
+msgid "Set the background color"
 msgstr ""
 
-#: mod/dfrn_request.php:658
-msgid "Diaspora (Socialhome, Hubzilla)"
+#: view/theme/frio/config.php:126
+msgid "Content background opacity"
 msgstr ""
 
-#: mod/dfrn_request.php:659
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search "
-"bar."
+#: view/theme/frio/config.php:127
+msgid "Set the background image"
 msgstr ""
 
-#: mod/crepair.php:87
-msgid "Contact settings applied."
+#: view/theme/frio/config.php:128
+msgid "Background image style"
 msgstr ""
 
-#: mod/crepair.php:89
-msgid "Contact update failed."
+#: view/theme/frio/config.php:133
+msgid "Login page background image"
 msgstr ""
 
-#: mod/crepair.php:114
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
-"information your communications with this contact may stop working."
+#: view/theme/frio/config.php:137
+msgid "Login page background color"
 msgstr ""
 
-#: mod/crepair.php:115
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
+#: view/theme/frio/config.php:137
+msgid "Leave background image and color empty for theme defaults"
 msgstr ""
 
-#: mod/crepair.php:129 mod/crepair.php:131
-msgid "No mirroring"
+#: view/theme/frio/theme.php:238
+msgid "Guest"
 msgstr ""
 
-#: mod/crepair.php:129
-msgid "Mirror as forwarded posting"
+#: view/theme/frio/theme.php:243
+msgid "Visitor"
 msgstr ""
 
-#: mod/crepair.php:129 mod/crepair.php:131
-msgid "Mirror as my own posting"
+#: view/theme/frio/theme.php:256 src/Content/Nav.php:97
+#: src/Module/Login.php:311
+msgid "Logout"
 msgstr ""
 
-#: mod/crepair.php:144
-msgid "Return to contact editor"
+#: view/theme/frio/theme.php:256 src/Content/Nav.php:97
+msgid "End this session"
 msgstr ""
 
-#: mod/crepair.php:146
-msgid "Refetch contact data"
+#: view/theme/frio/theme.php:259 src/Content/Nav.php:100
+#: src/Content/Nav.php:182
+msgid "Your posts and conversations"
 msgstr ""
 
-#: mod/crepair.php:149
-msgid "Remote Self"
+#: view/theme/frio/theme.php:260 src/Content/Nav.php:101
+msgid "Your profile page"
 msgstr ""
 
-#: mod/crepair.php:152
-msgid "Mirror postings from this contact"
+#: view/theme/frio/theme.php:261 src/Content/Nav.php:102
+msgid "Your photos"
 msgstr ""
 
-#: mod/crepair.php:154
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
+#: 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 ""
 
-#: mod/crepair.php:159
-msgid "Account Nickname"
+#: view/theme/frio/theme.php:263 src/Content/Nav.php:104
+msgid "Your events"
 msgstr ""
 
-#: mod/crepair.php:160
-msgid "@Tagname - overrides Name/Nickname"
+#: view/theme/frio/theme.php:266 src/Content/Nav.php:179
+msgid "Conversations from your friends"
 msgstr ""
 
-#: mod/crepair.php:161
-msgid "Account URL"
+#: 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 ""
 
-#: mod/crepair.php:162
-msgid "Friend Request URL"
+#: view/theme/frio/theme.php:268 src/Content/Nav.php:192
+msgid "Private mail"
 msgstr ""
 
-#: mod/crepair.php:163
-msgid "Friend Confirm URL"
+#: view/theme/frio/theme.php:269 src/Content/Nav.php:203
+msgid "Account settings"
 msgstr ""
 
-#: mod/crepair.php:164
-msgid "Notification Endpoint URL"
+#: view/theme/frio/theme.php:270 src/Content/Nav.php:209
+msgid "Manage/edit friends and contacts"
 msgstr ""
 
-#: mod/crepair.php:165
-msgid "Poll/Feed URL"
+#: view/theme/quattro/config.php:76
+msgid "Alignment"
 msgstr ""
 
-#: mod/crepair.php:166
-msgid "New photo from this URL"
+#: view/theme/quattro/config.php:76
+msgid "Left"
 msgstr ""
 
-#: mod/home.php:39
-#, php-format
-msgid "Welcome to %s"
+#: view/theme/quattro/config.php:76
+msgid "Center"
 msgstr ""
 
-#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543
-#, php-format
-msgid "%1$s welcomes %2$s"
+#: view/theme/quattro/config.php:77
+msgid "Color scheme"
 msgstr ""
 
-#: mod/poke.php:192
-msgid "Poke/Prod"
+#: view/theme/quattro/config.php:78
+msgid "Posts font size"
 msgstr ""
 
-#: mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
+#: view/theme/quattro/config.php:79
+msgid "Textareas font size"
 msgstr ""
 
-#: mod/poke.php:194
-msgid "Recipient"
+#: view/theme/vier/config.php:75
+msgid "Comma separated list of helper forums"
 msgstr ""
 
-#: mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
+#: view/theme/vier/config.php:115 src/Core/ACL.php:309
+msgid "don't show"
 msgstr ""
 
-#: mod/poke.php:198
-msgid "Make this post private"
+#: view/theme/vier/config.php:115 src/Core/ACL.php:308
+msgid "show"
 msgstr ""
 
-#: mod/oexchange.php:30
-msgid "Post successful."
+#: view/theme/vier/config.php:122
+msgid "Set style"
 msgstr ""
 
-#: mod/viewsrc.php:12
-msgid "Access denied."
+#: view/theme/vier/config.php:123
+msgid "Community Pages"
 msgstr ""
 
-#: mod/notifications.php:37
-msgid "Invalid request identifier."
+#: view/theme/vier/config.php:124 view/theme/vier/theme.php:150
+msgid "Community Profiles"
 msgstr ""
 
-#: mod/notifications.php:46 mod/notifications.php:183 mod/notifications.php:230
-msgid "Discard"
+#: view/theme/vier/config.php:125
+msgid "Help or @NewHere ?"
 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"
+#: view/theme/vier/config.php:126 view/theme/vier/theme.php:388
+msgid "Connect Services"
 msgstr ""
 
-#: mod/notifications.php:107
-msgid "Network Notifications"
+#: view/theme/vier/config.php:127
+msgid "Find Friends"
 msgstr ""
 
-#: mod/notifications.php:119
-msgid "Personal Notifications"
+#: view/theme/vier/config.php:128 view/theme/vier/theme.php:181
+msgid "Last users"
 msgstr ""
 
-#: mod/notifications.php:125
-msgid "Home Notifications"
+#: view/theme/vier/theme.php:199 src/Content/Widget.php:59
+msgid "Find People"
 msgstr ""
 
-#: mod/notifications.php:155
-msgid "Show Ignored Requests"
+#: view/theme/vier/theme.php:200 src/Content/Widget.php:60
+msgid "Enter name or interest"
 msgstr ""
 
-#: mod/notifications.php:155
-msgid "Hide Ignored Requests"
+#: view/theme/vier/theme.php:202 src/Content/Widget.php:62
+msgid "Examples: Robert Morgenstein, Fishing"
 msgstr ""
 
-#: mod/notifications.php:167 mod/notifications.php:237
-msgid "Notification type: "
+#: view/theme/vier/theme.php:205 src/Content/Widget.php:65
+msgid "Similar Interests"
 msgstr ""
 
-#: mod/notifications.php:170
-#, php-format
-msgid "suggested by %s"
+#: view/theme/vier/theme.php:206 src/Content/Widget.php:66
+msgid "Random Profile"
 msgstr ""
 
-#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646
-msgid "Hide this contact from others"
+#: view/theme/vier/theme.php:207 src/Content/Widget.php:67
+msgid "Invite Friends"
 msgstr ""
 
-#: mod/notifications.php:176 mod/notifications.php:255
-msgid "Post a new friend activity"
+#: view/theme/vier/theme.php:210 src/Content/Widget.php:70
+msgid "Local Directory"
 msgstr ""
 
-#: mod/notifications.php:176 mod/notifications.php:255
-msgid "if applicable"
+#: view/theme/vier/theme.php:255 src/Content/ForumManager.php:127
+msgid "External link to forum"
 msgstr ""
 
-#: mod/notifications.php:198
-msgid "Claims to be known to you: "
+#: view/theme/vier/theme.php:291
+msgid "Quick Start"
 msgstr ""
 
-#: mod/notifications.php:199
-msgid "yes"
+#: src/Core/UserImport.php:104
+msgid "Error decoding account file"
 msgstr ""
 
-#: mod/notifications.php:199
-msgid "no"
+#: src/Core/UserImport.php:110
+msgid "Error! No version data in file! This is not a Friendica account file?"
 msgstr ""
 
-#: mod/notifications.php:200 mod/notifications.php:205
-msgid "Shall your connection be bidirectional or not?"
+#: src/Core/UserImport.php:118
+#, php-format
+msgid "User '%s' already exists on this server!"
 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."
+#: src/Core/UserImport.php:151
+msgid "User creation error"
 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."
+#: src/Core/UserImport.php:169
+msgid "User profile creation error"
 msgstr ""
 
-#: mod/notifications.php:207
+#: src/Core/UserImport.php:213
 #, 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."
+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 ""
 
-#: mod/notifications.php:218
-msgid "Friend"
+#: src/Core/ACL.php:295
+msgid "Post to Email"
 msgstr ""
 
-#: mod/notifications.php:219
-msgid "Sharer"
+#: src/Core/ACL.php:301
+msgid "Hide your profile details from unknown viewers?"
 msgstr ""
 
-#: mod/notifications.php:219
-msgid "Subscriber"
+#: src/Core/ACL.php:300
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
 msgstr ""
 
-#: mod/notifications.php:275
-msgid "No introductions."
+#: src/Core/ACL.php:307
+msgid "Visible to everybody"
 msgstr ""
 
-#: mod/notifications.php:316
-msgid "Show unread"
+#: src/Core/ACL.php:319
+msgid "Close"
 msgstr ""
 
-#: mod/notifications.php:316
-msgid "Show all"
+#: src/Core/Console/NewPassword.php:78
+msgid "Enter new password: "
 msgstr ""
 
-#: mod/notifications.php:322
+#: 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 "No more %s notifications."
+msgid "Could not find any unarchived contact entry for this URL (%s)"
 msgstr ""
 
-#: mod/p.php:14
-msgid "Not Extended"
+#: src/Core/Console/ArchiveContact.php:72
+msgid "The contact entries have been archived"
 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"
+#: src/Core/NotificationsManager.php:171
+msgid "System"
 msgstr ""
 
-#: mod/follow.php:45
-msgid "The contact could not be added."
+#: src/Core/NotificationsManager.php:192 src/Content/Nav.php:124
+#: src/Content/Nav.php:182
+msgid "Home"
 msgstr ""
 
-#: mod/follow.php:73
-msgid "You already added this contact."
+#: src/Core/NotificationsManager.php:199 src/Content/Nav.php:186
+msgid "Introductions"
 msgstr ""
 
-#: mod/follow.php:83
-msgid "Diaspora support isn't enabled. Contact can't be added."
+#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268
+#, php-format
+msgid "%s commented on %s's post"
 msgstr ""
 
-#: mod/follow.php:90
-msgid "OStatus support is disabled. Contact can't be added."
+#: src/Core/NotificationsManager.php:267
+#, php-format
+msgid "%s created a new post"
 msgstr ""
 
-#: mod/follow.php:97
-msgid "The network type couldn't be detected. Contact can't be added."
+#: src/Core/NotificationsManager.php:281
+#, php-format
+msgid "%s liked %s's post"
 msgstr ""
 
-#: mod/cal.php:313
-msgid "This calendar format is not supported"
+#: src/Core/NotificationsManager.php:294
+#, php-format
+msgid "%s disliked %s's post"
 msgstr ""
 
-#: mod/cal.php:315
-msgid "No exportable data found"
+#: src/Core/NotificationsManager.php:307
+#, php-format
+msgid "%s is attending %s's event"
 msgstr ""
 
-#: mod/cal.php:332
-msgid "calendar"
+#: src/Core/NotificationsManager.php:320
+#, php-format
+msgid "%s is not attending %s's event"
 msgstr ""
 
-#: mod/contacts.php:157
+#: src/Core/NotificationsManager.php:333
 #, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] ""
-msgstr[1] ""
+msgid "%s may attend %s's event"
+msgstr ""
 
-#: mod/contacts.php:184 mod/contacts.php:400
-msgid "Could not access contact record."
+#: src/Core/NotificationsManager.php:350
+#, php-format
+msgid "%s is now friends with %s"
 msgstr ""
 
-#: mod/contacts.php:194
-msgid "Could not locate selected profile."
+#: src/Core/NotificationsManager.php:825
+msgid "Friend Suggestion"
 msgstr ""
 
-#: mod/contacts.php:228
-msgid "Contact updated."
+#: src/Core/NotificationsManager.php:851
+msgid "Friend/Connect Request"
 msgstr ""
 
-#: mod/contacts.php:421
-msgid "Contact has been blocked"
+#: src/Core/NotificationsManager.php:851
+msgid "New Follower"
 msgstr ""
 
-#: mod/contacts.php:421
-msgid "Contact has been unblocked"
+#: src/Util/Temporal.php:147 src/Model/Profile.php:756
+msgid "Birthday:"
 msgstr ""
 
-#: mod/contacts.php:432
-msgid "Contact has been ignored"
+#: src/Util/Temporal.php:151
+msgid "YYYY-MM-DD or MM-DD"
 msgstr ""
 
-#: mod/contacts.php:432
-msgid "Contact has been unignored"
+#: 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 ""
 
-#: mod/contacts.php:443
-msgid "Contact has been archived"
+#: src/Util/Temporal.php:303
+msgid "years"
 msgstr ""
 
-#: mod/contacts.php:443
-msgid "Contact has been unarchived"
+#: src/Util/Temporal.php:304
+msgid "months"
 msgstr ""
 
-#: mod/contacts.php:467
-msgid "Drop contact"
+#: src/Util/Temporal.php:305
+msgid "weeks"
 msgstr ""
 
-#: mod/contacts.php:470 mod/contacts.php:823
-msgid "Do you really want to delete this contact?"
+#: src/Util/Temporal.php:306
+msgid "days"
 msgstr ""
 
-#: mod/contacts.php:488
-msgid "Contact has been removed."
+#: src/Util/Temporal.php:307
+msgid "hour"
 msgstr ""
 
-#: mod/contacts.php:519
-#, php-format
-msgid "You are mutual friends with %s"
+#: src/Util/Temporal.php:307
+msgid "hours"
 msgstr ""
 
-#: mod/contacts.php:523
-#, php-format
-msgid "You are sharing with %s"
+#: src/Util/Temporal.php:308
+msgid "minute"
 msgstr ""
 
-#: mod/contacts.php:527
-#, php-format
-msgid "%s is sharing with you"
+#: src/Util/Temporal.php:308
+msgid "minutes"
 msgstr ""
 
-#: mod/contacts.php:547
-msgid "Private communications are not available for this contact."
+#: src/Util/Temporal.php:309
+msgid "second"
 msgstr ""
 
-#: mod/contacts.php:549
-msgid "Never"
+#: src/Util/Temporal.php:309
+msgid "seconds"
 msgstr ""
 
-#: mod/contacts.php:552
-msgid "(Update was successful)"
+#: src/Util/Temporal.php:318
+#, php-format
+msgid "%1$d %2$s ago"
 msgstr ""
 
-#: mod/contacts.php:552
-msgid "(Update was not successful)"
+#: src/Content/Text/BBCode.php:416
+msgid "view full size"
 msgstr ""
 
-#: mod/contacts.php:554 mod/contacts.php:992
-msgid "Suggest friends"
+#: src/Content/Text/BBCode.php:842 src/Content/Text/BBCode.php:1611
+#: src/Content/Text/BBCode.php:1612
+msgid "Image/photo"
 msgstr ""
 
-#: mod/contacts.php:558
+#: src/Content/Text/BBCode.php:980
 #, php-format
-msgid "Network type: %s"
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 msgstr ""
 
-#: mod/contacts.php:563
-msgid "Communications lost with this contact!"
+#: src/Content/Text/BBCode.php:1538 src/Content/Text/BBCode.php:1560
+msgid "$1 wrote:"
 msgstr ""
 
-#: mod/contacts.php:569
-msgid "Fetch further information for feeds"
+#: src/Content/Text/BBCode.php:1620 src/Content/Text/BBCode.php:1621
+msgid "Encrypted content"
 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."
+#: src/Content/Text/BBCode.php:1740
+msgid "Invalid source protocol"
 msgstr ""
 
-#: mod/contacts.php:573
-msgid "Fetch information"
+#: src/Content/Text/BBCode.php:1751
+msgid "Invalid link protocol"
 msgstr ""
 
-#: mod/contacts.php:574
-msgid "Fetch keywords"
+#: src/Content/Feature.php:79
+msgid "General Features"
 msgstr ""
 
-#: mod/contacts.php:575
-msgid "Fetch information and keywords"
+#: src/Content/Feature.php:81
+msgid "Multiple Profiles"
 msgstr ""
 
-#: mod/contacts.php:608
-msgid "Contact"
+#: src/Content/Feature.php:81
+msgid "Ability to create multiple profiles"
 msgstr ""
 
-#: mod/contacts.php:611
-msgid "Profile Visibility"
+#: src/Content/Feature.php:82
+msgid "Photo Location"
 msgstr ""
 
-#: mod/contacts.php:612
-#, php-format
+#: src/Content/Feature.php:82
 msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
+"Photo metadata is normally stripped. This extracts the location (if present) "
+"prior to stripping metadata and links it to a map."
 msgstr ""
 
-#: mod/contacts.php:613
-msgid "Contact Information / Notes"
+#: src/Content/Feature.php:83
+msgid "Export Public Calendar"
 msgstr ""
 
-#: mod/contacts.php:614
-msgid "Their personal note"
+#: src/Content/Feature.php:83
+msgid "Ability for visitors to download the public calendar"
 msgstr ""
 
-#: mod/contacts.php:616
-msgid "Edit contact notes"
+#: src/Content/Feature.php:88
+msgid "Post Composition Features"
 msgstr ""
 
-#: mod/contacts.php:620
-msgid "Block/Unblock contact"
+#: src/Content/Feature.php:89
+msgid "Post Preview"
 msgstr ""
 
-#: mod/contacts.php:621
-msgid "Ignore contact"
+#: src/Content/Feature.php:89
+msgid "Allow previewing posts and comments before publishing them"
 msgstr ""
 
-#: mod/contacts.php:622
-msgid "Repair URL settings"
+#: src/Content/Feature.php:90
+msgid "Auto-mention Forums"
 msgstr ""
 
-#: mod/contacts.php:623
-msgid "View conversations"
+#: src/Content/Feature.php:90
+msgid ""
+"Add/remove mention when a forum page is selected/deselected in ACL window."
 msgstr ""
 
-#: mod/contacts.php:628
-msgid "Last update:"
+#: src/Content/Feature.php:95
+msgid "Network Sidebar Widgets"
 msgstr ""
 
-#: mod/contacts.php:630
-msgid "Update public posts"
+#: src/Content/Feature.php:96
+msgid "Search by Date"
 msgstr ""
 
-#: mod/contacts.php:632 mod/contacts.php:1002
-msgid "Update now"
+#: src/Content/Feature.php:96
+msgid "Ability to select posts by date ranges"
 msgstr ""
 
-#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
-msgid "Unignore"
+#: src/Content/Feature.php:97 src/Content/Feature.php:127
+msgid "List Forums"
 msgstr ""
 
-#: mod/contacts.php:642
-msgid "Currently blocked"
+#: src/Content/Feature.php:97
+msgid "Enable widget to display the forums your are connected with"
 msgstr ""
 
-#: mod/contacts.php:643
-msgid "Currently ignored"
+#: src/Content/Feature.php:98
+msgid "Group Filter"
 msgstr ""
 
-#: mod/contacts.php:644
-msgid "Currently archived"
+#: src/Content/Feature.php:98
+msgid "Enable widget to display Network posts only from selected group"
 msgstr ""
 
-#: mod/contacts.php:645
-msgid "Awaiting connection acknowledge"
+#: src/Content/Feature.php:99
+msgid "Network Filter"
 msgstr ""
 
-#: mod/contacts.php:646
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
+#: src/Content/Feature.php:99
+msgid "Enable widget to display Network posts only from selected network"
 msgstr ""
 
-#: mod/contacts.php:647
-msgid "Notification for new posts"
+#: src/Content/Feature.php:100
+msgid "Save search terms for re-use"
 msgstr ""
 
-#: mod/contacts.php:647
-msgid "Send a notification of every new post of this contact"
+#: src/Content/Feature.php:105
+msgid "Network Tabs"
 msgstr ""
 
-#: mod/contacts.php:650
-msgid "Blacklisted keywords"
+#: src/Content/Feature.php:106
+msgid "Network Personal Tab"
 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"
+#: src/Content/Feature.php:106
+msgid "Enable tab to display only Network posts that you've interacted on"
 msgstr ""
 
-#: mod/contacts.php:667
-msgid "Actions"
+#: src/Content/Feature.php:107
+msgid "Network New Tab"
 msgstr ""
 
-#: mod/contacts.php:670
-msgid "Contact Settings"
+#: src/Content/Feature.php:107
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
 msgstr ""
 
-#: mod/contacts.php:711
-msgid "Suggestions"
+#: src/Content/Feature.php:108
+msgid "Network Shared Links Tab"
 msgstr ""
 
-#: mod/contacts.php:714
-msgid "Suggest potential friends"
+#: src/Content/Feature.php:108
+msgid "Enable tab to display only Network posts with links in them"
 msgstr ""
 
-#: mod/contacts.php:722
-msgid "Show all contacts"
+#: src/Content/Feature.php:113
+msgid "Post/Comment Tools"
 msgstr ""
 
-#: mod/contacts.php:727
-msgid "Unblocked"
+#: src/Content/Feature.php:114
+msgid "Multiple Deletion"
 msgstr ""
 
-#: mod/contacts.php:730
-msgid "Only show unblocked contacts"
+#: src/Content/Feature.php:114
+msgid "Select and delete multiple posts/comments at once"
 msgstr ""
 
-#: mod/contacts.php:735
-msgid "Blocked"
+#: src/Content/Feature.php:115
+msgid "Edit Sent Posts"
 msgstr ""
 
-#: mod/contacts.php:738
-msgid "Only show blocked contacts"
+#: src/Content/Feature.php:115
+msgid "Edit and correct posts and comments after sending"
 msgstr ""
 
-#: mod/contacts.php:743
-msgid "Ignored"
+#: src/Content/Feature.php:116
+msgid "Tagging"
 msgstr ""
 
-#: mod/contacts.php:746
-msgid "Only show ignored contacts"
+#: src/Content/Feature.php:116
+msgid "Ability to tag existing posts"
 msgstr ""
 
-#: mod/contacts.php:751
-msgid "Archived"
+#: src/Content/Feature.php:117
+msgid "Post Categories"
 msgstr ""
 
-#: mod/contacts.php:754
-msgid "Only show archived contacts"
+#: src/Content/Feature.php:117
+msgid "Add categories to your posts"
 msgstr ""
 
-#: mod/contacts.php:759
-msgid "Hidden"
+#: src/Content/Feature.php:118 src/Content/Widget.php:205
+msgid "Saved Folders"
 msgstr ""
 
-#: mod/contacts.php:762
-msgid "Only show hidden contacts"
+#: src/Content/Feature.php:118
+msgid "Ability to file posts under folders"
 msgstr ""
 
-#: mod/contacts.php:818
-msgid "Search your contacts"
+#: src/Content/Feature.php:119
+msgid "Dislike Posts"
 msgstr ""
 
-#: mod/contacts.php:819 mod/search.php:236
-#, php-format
-msgid "Results for: %s"
+#: src/Content/Feature.php:119
+msgid "Ability to dislike posts/comments"
 msgstr ""
 
-#: mod/contacts.php:829 mod/contacts.php:1027
-msgid "Archive"
+#: src/Content/Feature.php:120
+msgid "Star Posts"
 msgstr ""
 
-#: mod/contacts.php:829 mod/contacts.php:1027
-msgid "Unarchive"
+#: src/Content/Feature.php:120
+msgid "Ability to mark special posts with a star indicator"
 msgstr ""
 
-#: mod/contacts.php:832
-msgid "Batch Actions"
+#: src/Content/Feature.php:121
+msgid "Mute Post Notifications"
 msgstr ""
 
-#: mod/contacts.php:878
-msgid "View all contacts"
+#: src/Content/Feature.php:121
+msgid "Ability to mute notifications for a thread"
 msgstr ""
 
-#: mod/contacts.php:886 mod/common.php:140
-msgid "Common Friends"
+#: src/Content/Feature.php:126
+msgid "Advanced Profile Settings"
 msgstr ""
 
-#: mod/contacts.php:889
-msgid "View all common friends"
+#: src/Content/Feature.php:127
+msgid "Show visitors public community forums at the Advanced Profile Page"
 msgstr ""
 
-#: mod/contacts.php:898
-msgid "Advanced Contact Settings"
+#: src/Content/Feature.php:128
+msgid "Tag Cloud"
 msgstr ""
 
-#: mod/contacts.php:930
-msgid "Mutual Friendship"
+#: src/Content/Feature.php:128
+msgid "Provide a personal tag cloud on your profile page"
 msgstr ""
 
-#: mod/contacts.php:934
-msgid "is a fan of yours"
+#: src/Content/Feature.php:129
+msgid "Display Membership Date"
 msgstr ""
 
-#: mod/contacts.php:938
-msgid "you are a fan of"
+#: src/Content/Feature.php:129
+msgid "Display membership date in profile"
 msgstr ""
 
-#: mod/contacts.php:1013
-msgid "Toggle Blocked status"
+#: src/Content/OEmbed.php:253
+msgid "Embedding disabled"
 msgstr ""
 
-#: mod/contacts.php:1021
-msgid "Toggle Ignored status"
+#: src/Content/OEmbed.php:373
+msgid "Embedded content"
 msgstr ""
 
-#: mod/contacts.php:1029
-msgid "Toggle Archive status"
+#: src/Content/Widget/CalendarExport.php:61
+msgid "Export"
 msgstr ""
 
-#: mod/contacts.php:1037
-msgid "Delete contact"
+#: src/Content/Widget/CalendarExport.php:62
+msgid "Export calendar as ical"
 msgstr ""
 
-#: mod/bookmarklet.php:51
-msgid "The post was created"
+#: src/Content/Widget/CalendarExport.php:63
+msgid "Export calendar as csv"
 msgstr ""
 
-#: mod/lostpass.php:27
-msgid "No valid account found."
+#: src/Content/ContactSelector.php:55
+msgid "Frequently"
 msgstr ""
 
-#: mod/lostpass.php:39
-msgid "Password reset request issued. Check your email."
+#: src/Content/ContactSelector.php:56
+msgid "Hourly"
 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."
+#: src/Content/ContactSelector.php:57
+msgid "Twice daily"
 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"
+#: src/Content/ContactSelector.php:58
+msgid "Daily"
 msgstr ""
 
-#: mod/lostpass.php:73
-#, php-format
-msgid "Password reset requested at %s"
+#: src/Content/ContactSelector.php:59
+msgid "Weekly"
 msgstr ""
 
-#: mod/lostpass.php:89
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
+#: src/Content/ContactSelector.php:60
+msgid "Monthly"
 msgstr ""
 
-#: mod/lostpass.php:102
-msgid "Request has expired, please make a new one."
+#: src/Content/ContactSelector.php:80
+msgid "OStatus"
 msgstr ""
 
-#: mod/lostpass.php:117
-msgid "Forgot your Password?"
+#: src/Content/ContactSelector.php:81
+msgid "RSS/Atom"
 msgstr ""
 
-#: mod/lostpass.php:118
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
+#: src/Content/ContactSelector.php:84
+msgid "Facebook"
 msgstr ""
 
-#: mod/lostpass.php:120
-msgid "Reset"
+#: src/Content/ContactSelector.php:85
+msgid "Zot!"
 msgstr ""
 
-#: mod/lostpass.php:137
-msgid "Your password has been reset as requested."
+#: src/Content/ContactSelector.php:86
+msgid "LinkedIn"
 msgstr ""
 
-#: mod/lostpass.php:138
-msgid "Your new password is"
+#: src/Content/ContactSelector.php:87
+msgid "XMPP/IM"
 msgstr ""
 
-#: mod/lostpass.php:139
-msgid "Save or copy your new password - and then"
+#: src/Content/ContactSelector.php:88
+msgid "MySpace"
 msgstr ""
 
-#: mod/lostpass.php:140
-msgid "click here to login"
+#: src/Content/ContactSelector.php:89
+msgid "Google+"
 msgstr ""
 
-#: mod/lostpass.php:141
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
+#: src/Content/ContactSelector.php:90
+msgid "pump.io"
 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"
+#: src/Content/ContactSelector.php:91
+msgid "Twitter"
 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"
+#: src/Content/ContactSelector.php:92
+msgid "Diaspora Connector"
 msgstr ""
 
-#: mod/lostpass.php:169
-#, php-format
-msgid "Your password has been changed at %s"
+#: src/Content/ContactSelector.php:93
+msgid "GNU Social Connector"
 msgstr ""
 
-#: mod/install.php:114
-msgid "Friendica Communications Server - Setup"
+#: src/Content/ContactSelector.php:94
+msgid "pnut"
 msgstr ""
 
-#: mod/install.php:120
-msgid "Could not connect to database."
+#: src/Content/ContactSelector.php:95
+msgid "App.net"
 msgstr ""
 
-#: mod/install.php:124
-msgid "Could not create table."
+#: src/Content/ContactSelector.php:125
+msgid "Male"
 msgstr ""
 
-#: mod/install.php:130
-msgid "Your Friendica site database has been installed."
+#: src/Content/ContactSelector.php:125
+msgid "Female"
 msgstr ""
 
-#: mod/install.php:135
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
+#: src/Content/ContactSelector.php:125
+msgid "Currently Male"
 msgstr ""
 
-#: mod/install.php:136 mod/install.php:208 mod/install.php:558
-msgid "Please see the file \"INSTALL.txt\"."
+#: src/Content/ContactSelector.php:125
+msgid "Currently Female"
 msgstr ""
 
-#: mod/install.php:148
-msgid "Database already in use."
+#: src/Content/ContactSelector.php:125
+msgid "Mostly Male"
 msgstr ""
 
-#: mod/install.php:205
-msgid "System check"
+#: src/Content/ContactSelector.php:125
+msgid "Mostly Female"
 msgstr ""
 
-#: mod/install.php:210
-msgid "Check again"
+#: src/Content/ContactSelector.php:125
+msgid "Transgender"
 msgstr ""
 
-#: mod/install.php:230
-msgid "Database connection"
+#: src/Content/ContactSelector.php:125
+msgid "Intersex"
 msgstr ""
 
-#: mod/install.php:231
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
+#: src/Content/ContactSelector.php:125
+msgid "Transsexual"
 msgstr ""
 
-#: mod/install.php:232
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
+#: src/Content/ContactSelector.php:125
+msgid "Hermaphrodite"
 msgstr ""
 
-#: mod/install.php:233
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
+#: src/Content/ContactSelector.php:125
+msgid "Neuter"
 msgstr ""
 
-#: mod/install.php:237
-msgid "Database Server Name"
+#: src/Content/ContactSelector.php:125
+msgid "Non-specific"
 msgstr ""
 
-#: mod/install.php:238
-msgid "Database Login Name"
+#: src/Content/ContactSelector.php:125
+msgid "Other"
 msgstr ""
 
-#: mod/install.php:239
-msgid "Database Login Password"
+#: src/Content/ContactSelector.php:147
+msgid "Males"
 msgstr ""
 
-#: mod/install.php:239
-msgid "For security reasons the password must not be empty"
+#: src/Content/ContactSelector.php:147
+msgid "Females"
 msgstr ""
 
-#: mod/install.php:240
-msgid "Database Name"
+#: src/Content/ContactSelector.php:147
+msgid "Gay"
 msgstr ""
 
-#: mod/install.php:241 mod/install.php:281
-msgid "Site administrator email address"
+#: src/Content/ContactSelector.php:147
+msgid "Lesbian"
 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."
+#: src/Content/ContactSelector.php:147
+msgid "No Preference"
 msgstr ""
 
-#: mod/install.php:245 mod/install.php:284
-msgid "Please select a default timezone for your website"
+#: src/Content/ContactSelector.php:147
+msgid "Bisexual"
 msgstr ""
 
-#: mod/install.php:271
-msgid "Site settings"
+#: src/Content/ContactSelector.php:147
+msgid "Autosexual"
 msgstr ""
 
-#: mod/install.php:285
-msgid "System Language:"
+#: src/Content/ContactSelector.php:147
+msgid "Abstinent"
 msgstr ""
 
-#: mod/install.php:285
-msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
+#: src/Content/ContactSelector.php:147
+msgid "Virgin"
 msgstr ""
 
-#: mod/install.php:325
-msgid "Could not find a command line version of PHP in the web server PATH."
+#: src/Content/ContactSelector.php:147
+msgid "Deviant"
 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 <a href='https://"
-"github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-"
-"worker'>'Setup the worker'</a>"
+#: src/Content/ContactSelector.php:147
+msgid "Fetish"
 msgstr ""
 
-#: mod/install.php:330
-msgid "PHP executable path"
+#: src/Content/ContactSelector.php:147
+msgid "Oodles"
 msgstr ""
 
-#: mod/install.php:330
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
+#: src/Content/ContactSelector.php:147
+msgid "Nonsexual"
 msgstr ""
 
-#: mod/install.php:335
-msgid "Command line PHP"
+#: src/Content/ContactSelector.php:169
+msgid "Single"
 msgstr ""
 
-#: mod/install.php:344
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+#: src/Content/ContactSelector.php:169
+msgid "Lonely"
 msgstr ""
 
-#: mod/install.php:345
-msgid "Found PHP version: "
+#: src/Content/ContactSelector.php:169
+msgid "Available"
 msgstr ""
 
-#: mod/install.php:347
-msgid "PHP cli binary"
+#: src/Content/ContactSelector.php:169
+msgid "Unavailable"
 msgstr ""
 
-#: mod/install.php:358
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
+#: src/Content/ContactSelector.php:169
+msgid "Has crush"
 msgstr ""
 
-#: mod/install.php:359
-msgid "This is required for message delivery to work."
+#: src/Content/ContactSelector.php:169
+msgid "Infatuated"
 msgstr ""
 
-#: mod/install.php:361
-msgid "PHP register_argc_argv"
+#: src/Content/ContactSelector.php:169
+msgid "Dating"
 msgstr ""
 
-#: mod/install.php:384
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
+#: src/Content/ContactSelector.php:169
+msgid "Unfaithful"
 msgstr ""
 
-#: mod/install.php:385
-msgid ""
-"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
-"installation.php\"."
+#: src/Content/ContactSelector.php:169
+msgid "Sex Addict"
 msgstr ""
 
-#: mod/install.php:387
-msgid "Generate encryption keys"
+#: src/Content/ContactSelector.php:169 src/Model/User.php:519
+msgid "Friends"
 msgstr ""
 
-#: mod/install.php:394
-msgid "libCurl PHP module"
+#: src/Content/ContactSelector.php:169
+msgid "Friends/Benefits"
 msgstr ""
 
-#: mod/install.php:395
-msgid "GD graphics PHP module"
+#: src/Content/ContactSelector.php:169
+msgid "Casual"
 msgstr ""
 
-#: mod/install.php:396
-msgid "OpenSSL PHP module"
+#: src/Content/ContactSelector.php:169
+msgid "Engaged"
 msgstr ""
 
-#: mod/install.php:397
-msgid "PDO or MySQLi PHP module"
+#: src/Content/ContactSelector.php:169
+msgid "Married"
 msgstr ""
 
-#: mod/install.php:398
-msgid "mb_string PHP module"
+#: src/Content/ContactSelector.php:169
+msgid "Imaginarily married"
 msgstr ""
 
-#: mod/install.php:399
-msgid "XML PHP module"
+#: src/Content/ContactSelector.php:169
+msgid "Partners"
 msgstr ""
 
-#: mod/install.php:400
-msgid "iconv PHP module"
+#: src/Content/ContactSelector.php:169
+msgid "Cohabiting"
 msgstr ""
 
-#: mod/install.php:401
-msgid "POSIX PHP module"
+#: src/Content/ContactSelector.php:169
+msgid "Common law"
 msgstr ""
 
-#: mod/install.php:405 mod/install.php:407
-msgid "Apache mod_rewrite module"
+#: src/Content/ContactSelector.php:169
+msgid "Happy"
 msgstr ""
 
-#: mod/install.php:405
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
+#: src/Content/ContactSelector.php:169
+msgid "Not looking"
 msgstr ""
 
-#: mod/install.php:413
-msgid "Error: libCURL PHP module required but not installed."
+#: src/Content/ContactSelector.php:169
+msgid "Swinger"
 msgstr ""
 
-#: mod/install.php:417
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
+#: src/Content/ContactSelector.php:169
+msgid "Betrayed"
 msgstr ""
 
-#: mod/install.php:421
-msgid "Error: openssl PHP module required but not installed."
+#: src/Content/ContactSelector.php:169
+msgid "Separated"
 msgstr ""
 
-#: mod/install.php:425
-msgid "Error: PDO or MySQLi PHP module required but not installed."
+#: src/Content/ContactSelector.php:169
+msgid "Unstable"
 msgstr ""
 
-#: mod/install.php:429
-msgid "Error: The MySQL driver for PDO is not installed."
+#: src/Content/ContactSelector.php:169
+msgid "Divorced"
 msgstr ""
 
-#: mod/install.php:433
-msgid "Error: mb_string PHP module required but not installed."
+#: src/Content/ContactSelector.php:169
+msgid "Imaginarily divorced"
 msgstr ""
 
-#: mod/install.php:437
-msgid "Error: iconv PHP module required but not installed."
+#: src/Content/ContactSelector.php:169
+msgid "Widowed"
 msgstr ""
 
-#: mod/install.php:441
-msgid "Error: POSIX PHP module required but not installed."
+#: src/Content/ContactSelector.php:169
+msgid "Uncertain"
 msgstr ""
 
-#: mod/install.php:451
-msgid "Error, XML PHP module required but not installed."
+#: src/Content/ContactSelector.php:169
+msgid "It's complicated"
 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."
+#: src/Content/ContactSelector.php:169
+msgid "Don't care"
 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."
+#: src/Content/ContactSelector.php:169
+msgid "Ask me"
 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."
+#: src/Content/Nav.php:53
+msgid "Nothing new here"
 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."
+#: src/Content/Nav.php:57
+msgid "Clear notifications"
 msgstr ""
 
-#: mod/install.php:469
-msgid ".htconfig.php is writable"
+#: src/Content/Nav.php:105
+msgid "Personal notes"
 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."
+#: src/Content/Nav.php:105
+msgid "Your personal notes"
 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."
+#: src/Content/Nav.php:114
+msgid "Sign in"
 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."
+#: src/Content/Nav.php:124
+msgid "Home Page"
 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."
+#: src/Content/Nav.php:128
+msgid "Create an account"
 msgstr ""
 
-#: mod/install.php:485
-msgid "view/smarty3 is writable"
+#: src/Content/Nav.php:134
+msgid "Help and documentation"
 msgstr ""
 
-#: mod/install.php:501
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
+#: src/Content/Nav.php:138
+msgid "Apps"
 msgstr ""
 
-#: mod/install.php:503
-msgid "Url rewrite is working"
+#: src/Content/Nav.php:138
+msgid "Addon applications, utilities, games"
 msgstr ""
 
-#: mod/install.php:522
-msgid "ImageMagick PHP extension is not installed"
+#: src/Content/Nav.php:142
+msgid "Search site content"
 msgstr ""
 
-#: mod/install.php:524
-msgid "ImageMagick PHP extension is installed"
+#: src/Content/Nav.php:166
+msgid "Community"
 msgstr ""
 
-#: mod/install.php:526
-msgid "ImageMagick supports GIF"
+#: src/Content/Nav.php:166
+msgid "Conversations on this and other servers"
 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."
+#: src/Content/Nav.php:173
+msgid "Directory"
 msgstr ""
 
-#: mod/install.php:556
-msgid "<h1>What next</h1>"
+#: src/Content/Nav.php:173
+msgid "People directory"
 msgstr ""
 
-#: mod/install.php:557
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the worker."
+#: src/Content/Nav.php:175
+msgid "Information about this friendica instance"
 msgstr ""
 
-#: mod/install.php:560
-#, php-format
-msgid ""
-"Go to your new Friendica node <a href=\"%s/register\">registration page</a> "
-"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."
+#: src/Content/Nav.php:180
+msgid "Network Reset"
 msgstr ""
 
-#: mod/babel.php:23
-msgid "Source input"
+#: src/Content/Nav.php:180
+msgid "Load Network page with no filters"
 msgstr ""
 
-#: mod/babel.php:29
-msgid "BBCode::toPlaintext"
+#: src/Content/Nav.php:186
+msgid "Friend Requests"
 msgstr ""
 
-#: mod/babel.php:35
-msgid "BBCode::convert (raw HTML)"
+#: src/Content/Nav.php:188
+msgid "See all notifications"
 msgstr ""
 
-#: mod/babel.php:40
-msgid "BBCode::convert"
+#: src/Content/Nav.php:189
+msgid "Mark all system notifications seen"
 msgstr ""
 
-#: mod/babel.php:46
-msgid "BBCode::convert => HTML::toBBCode"
+#: src/Content/Nav.php:193
+msgid "Inbox"
 msgstr ""
 
-#: mod/babel.php:52
-msgid "BBCode::toMarkdown"
+#: src/Content/Nav.php:194
+msgid "Outbox"
 msgstr ""
 
-#: mod/babel.php:58
-msgid "BBCode::toMarkdown => Markdown::convert"
+#: src/Content/Nav.php:198
+msgid "Manage"
 msgstr ""
 
-#: mod/babel.php:64
-msgid "BBCode::toMarkdown => Markdown::toBBCode"
+#: src/Content/Nav.php:198
+msgid "Manage other pages"
 msgstr ""
 
-#: mod/babel.php:70
-msgid "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
+#: src/Content/Nav.php:206 src/Model/Profile.php:368
+msgid "Profiles"
 msgstr ""
 
-#: mod/babel.php:77
-msgid "Source input \\x28Diaspora format\\x29"
+#: src/Content/Nav.php:206
+msgid "Manage/Edit Profiles"
 msgstr ""
 
-#: mod/babel.php:83
-msgid "Markdown::toBBCode"
+#: src/Content/Nav.php:214
+msgid "Site setup and configuration"
 msgstr ""
 
-#: mod/babel.php:90
-msgid "Raw HTML input"
+#: src/Content/Nav.php:217
+msgid "Navigation"
 msgstr ""
 
-#: mod/babel.php:95
-msgid "HTML Input"
+#: src/Content/Nav.php:217
+msgid "Site map"
 msgstr ""
 
-#: mod/babel.php:101
-msgid "HTML::toBBCode"
+#: src/Content/Widget.php:33
+msgid "Add New Contact"
 msgstr ""
 
-#: mod/babel.php:107
-msgid "HTML::toPlaintext"
+#: src/Content/Widget.php:34
+msgid "Enter address or web location"
 msgstr ""
 
-#: mod/babel.php:115
-msgid "Source text"
+#: src/Content/Widget.php:35
+msgid "Example: bob@example.com, http://example.com/barbara"
 msgstr ""
 
-#: mod/babel.php:116
-msgid "BBCode"
-msgstr ""
+#: src/Content/Widget.php:53
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/babel.php:117
-msgid "Markdown"
+#: src/Content/Widget.php:164
+msgid "Networks"
 msgstr ""
 
-#: mod/babel.php:118
-msgid "HTML"
+#: src/Content/Widget.php:167
+msgid "All Networks"
 msgstr ""
 
-#: mod/lockview.php:38 mod/lockview.php:46
-msgid "Remote privacy information not available."
+#: src/Content/Widget.php:208 src/Content/Widget.php:248
+msgid "Everything"
 msgstr ""
 
-#: mod/lockview.php:55
-msgid "Visible to:"
+#: src/Content/Widget.php:245
+msgid "Categories"
 msgstr ""
 
-#: mod/wallmessage.php:49 mod/wallmessage.php:112
+#: src/Content/Widget.php:312
 #, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr ""
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/wallmessage.php:60
-msgid "Unable to check your home location."
+#: src/Database/DBStructure.php:32
+msgid "There are no tables on MyISAM."
 msgstr ""
 
-#: mod/wallmessage.php:86 mod/wallmessage.php:95
-msgid "No recipient."
+#: 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 ""
 
-#: mod/wallmessage.php:133
+#: src/Database/DBStructure.php:80
 #, 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."
+"The error message is\n"
+"[pre]%s[/pre]"
 msgstr ""
 
-#: mod/match.php:48
-msgid "No keywords to match. Please add keywords to your default profile."
+#: src/Database/DBStructure.php:191
+#, php-format
+msgid ""
+"\n"
+"Error %d occurred during database update:\n"
+"%s\n"
 msgstr ""
 
-#: mod/match.php:104
-msgid "is interested in:"
+#: src/Database/DBStructure.php:194
+msgid "Errors encountered performing database changes: "
 msgstr ""
 
-#: mod/match.php:120
-msgid "Profile Match"
+#: src/Database/DBStructure.php:210
+msgid ": Database update"
 msgstr ""
 
-#: mod/maintenance.php:24
-msgid "System down for maintenance"
+#: src/Database/DBStructure.php:460
+#, php-format
+msgid "%s: updating %s table."
 msgstr ""
 
-#: mod/tagrm.php:47
-msgid "Tag removed"
+#: src/Model/Mail.php:40 src/Model/Mail.php:174
+msgid "[no subject]"
 msgstr ""
 
-#: mod/tagrm.php:85
-msgid "Remove Item Tag"
+#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419
+#: src/Model/Event.php:882
+msgid "Starts:"
 msgstr ""
 
-#: mod/tagrm.php:87
-msgid "Select a tag to remove: "
+#: src/Model/Event.php:56 src/Model/Event.php:76 src/Model/Event.php:420
+#: src/Model/Event.php:886
+msgid "Finishes:"
 msgstr ""
 
-#: mod/feedtest.php:20
-msgid "You must be logged in to use this module"
+#: src/Model/Event.php:368
+msgid "all-day"
 msgstr ""
 
-#: mod/feedtest.php:48
-msgid "Source URL"
+#: src/Model/Event.php:391
+msgid "Jun"
 msgstr ""
 
-#: mod/search.php:105
-msgid "Only logged in users are permitted to perform a search."
+#: src/Model/Event.php:394
+msgid "Sept"
 msgstr ""
 
-#: mod/search.php:129
-msgid "Too Many Requests"
+#: src/Model/Event.php:417
+msgid "No events to display"
 msgstr ""
 
-#: mod/search.php:130
-msgid "Only one search per minute is permitted for not logged in users."
+#: src/Model/Event.php:543
+msgid "l, F j"
 msgstr ""
 
-#: mod/search.php:234
-#, php-format
-msgid "Items tagged with: %s"
+#: src/Model/Event.php:566
+msgid "Edit event"
 msgstr ""
 
-#: mod/uexport.php:44
-msgid "Export account"
+#: src/Model/Event.php:567
+msgid "Duplicate event"
 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."
+#: src/Model/Event.php:568
+msgid "Delete event"
 msgstr ""
 
-#: mod/uexport.php:45
-msgid "Export all"
+#: src/Model/Event.php:815
+msgid "D g:i A"
 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)"
+#: src/Model/Event.php:816
+msgid "g:i A"
 msgstr ""
 
-#: mod/newmember.php:11
-msgid "Welcome to Friendica"
+#: src/Model/Event.php:901 src/Model/Event.php:903
+msgid "Show map"
 msgstr ""
 
-#: mod/newmember.php:12
-msgid "New Member Checklist"
+#: src/Model/Event.php:902
+msgid "Hide map"
 msgstr ""
 
-#: mod/newmember.php:14
+#: src/Model/Group.php:44
 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."
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
 msgstr ""
 
-#: mod/newmember.php:15
-msgid "Getting Started"
+#: src/Model/Group.php:341
+msgid "Default privacy group for new contacts"
 msgstr ""
 
-#: mod/newmember.php:17
-msgid "Friendica Walk-Through"
+#: src/Model/Group.php:374
+msgid "Everybody"
 msgstr ""
 
-#: mod/newmember.php:17
-msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to "
-"join."
+#: src/Model/Group.php:394
+msgid "edit"
 msgstr ""
 
-#: mod/newmember.php:21
-msgid "Go to Your Settings"
+#: src/Model/Group.php:418
+msgid "Edit group"
 msgstr ""
 
-#: mod/newmember.php:21
-msgid ""
-"On your <em>Settings</em> 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."
+#: src/Model/Group.php:419
+msgid "Contacts not in any group"
 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."
+#: src/Model/Group.php:420
+msgid "Create a new group"
 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."
+#: src/Model/Group.php:422
+msgid "Edit groups"
 msgstr ""
 
-#: mod/newmember.php:27
-msgid "Edit Your Profile"
+#: src/Model/User.php:154
+msgid "Login failed"
 msgstr ""
 
-#: mod/newmember.php:27
-msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown "
-"visitors."
+#: src/Model/User.php:185
+msgid "Not enough information to authenticate"
 msgstr ""
 
-#: mod/newmember.php:28
-msgid "Profile Keywords"
+#: src/Model/User.php:346
+msgid "An invitation is required."
 msgstr ""
 
-#: mod/newmember.php:28
+#: 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 ""
-"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."
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
 msgstr ""
 
-#: mod/newmember.php:30
-msgid "Connecting"
+#: src/Model/User.php:370 src/Module/Login.php:100
+msgid "The error message was:"
 msgstr ""
 
-#: mod/newmember.php:36
-msgid "Importing Emails"
+#: src/Model/User.php:376
+msgid "Please enter the required information."
 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"
+#: src/Model/User.php:389
+msgid "Please use a shorter name."
+msgstr ""
+
+#: src/Model/User.php:392
+msgid "Name too short."
 msgstr ""
 
-#: mod/newmember.php:39
-msgid "Go to Your Contacts Page"
+#: src/Model/User.php:400
+msgid "That doesn't appear to be your full (First Last) name."
 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 <em>Add New Contact</em> dialog."
+#: src/Model/User.php:405
+msgid "Your email domain is not among those allowed on this site."
 msgstr ""
 
-#: mod/newmember.php:40
-msgid "Go to Your Site's Directory"
+#: src/Model/User.php:409
+msgid "Not a valid email address."
 msgstr ""
 
-#: mod/newmember.php:40
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
+#: src/Model/User.php:413 src/Model/User.php:421
+msgid "Cannot use that email."
 msgstr ""
 
-#: mod/newmember.php:41
-msgid "Finding New People"
+#: src/Model/User.php:428
+msgid "Your nickname can only contain a-z, 0-9 and _."
 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."
+#: src/Model/User.php:435 src/Model/User.php:491
+msgid "Nickname is already registered. Please choose another."
 msgstr ""
 
-#: mod/newmember.php:45
-msgid "Group Your Contacts"
+#: src/Model/User.php:445
+msgid "SERIOUS ERROR: Generation of security keys failed."
 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."
+#: src/Model/User.php:478 src/Model/User.php:482
+msgid "An error occurred during registration. Please try again."
 msgstr ""
 
-#: mod/newmember.php:48
-msgid "Why Aren't My Posts Public?"
+#: src/Model/User.php:507
+msgid "An error occurred creating your default profile. Please try again."
 msgstr ""
 
-#: mod/newmember.php:48
+#: src/Model/User.php:514
+msgid "An error occurred creating your self contact. Please try again."
+msgstr ""
+
+#: src/Model/User.php:523
 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."
+"An error occurred creating your default contact group. Please try again."
 msgstr ""
 
-#: mod/newmember.php:52
-msgid "Getting Help"
+#: 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 ""
 
-#: mod/newmember.php:54
-msgid "Go to the Help Section"
+#: src/Model/User.php:607
+#, php-format
+msgid "Registration at %s"
 msgstr ""
 
-#: mod/newmember.php:54
+#: src/Model/User.php:625
+#, php-format
 msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program "
-"features and resources."
+"\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 ""
 
-#: mod/dfrn_confirm.php:132
+#: src/Model/User.php:629
+#, php-format
 msgid ""
-"This may occasionally happen if contact was requested by both persons and it "
-"has already been approved."
+"\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 ""
 
-#: mod/dfrn_confirm.php:242
-msgid "Response from remote site was not understood."
+#: src/Model/Contact.php:657
+msgid "Drop Contact"
 msgstr ""
 
-#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254
-msgid "Unexpected response from remote site: "
+#: src/Model/Contact.php:1060
+msgid "Organisation"
 msgstr ""
 
-#: mod/dfrn_confirm.php:263
-msgid "Confirmation completed successfully."
+#: src/Model/Contact.php:1063
+msgid "News"
 msgstr ""
 
-#: mod/dfrn_confirm.php:275
-msgid "Temporary failure. Please wait and try again."
+#: src/Model/Contact.php:1066
+msgid "Forum"
 msgstr ""
 
-#: mod/dfrn_confirm.php:278
-msgid "Introduction failed or was revoked."
+#: src/Model/Contact.php:1245
+msgid "Connect URL missing."
 msgstr ""
 
-#: mod/dfrn_confirm.php:283
-msgid "Remote site reported: "
+#: 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 ""
 
-#: mod/dfrn_confirm.php:396
-msgid "Unable to set contact photo."
+#: src/Model/Contact.php:1301
+msgid ""
+"This site is not configured to allow communications with other networks."
 msgstr ""
 
-#: mod/dfrn_confirm.php:498
-#, php-format
-msgid "No user record found for '%s' "
+#: src/Model/Contact.php:1302 src/Model/Contact.php:1316
+msgid "No compatible communication protocols or feeds were discovered."
 msgstr ""
 
-#: mod/dfrn_confirm.php:508
-msgid "Our site encryption key is apparently messed up."
+#: src/Model/Contact.php:1314
+msgid "The profile address specified does not provide adequate information."
 msgstr ""
 
-#: mod/dfrn_confirm.php:519
-msgid "Empty site URL was provided or URL could not be decrypted by us."
+#: src/Model/Contact.php:1319
+msgid "An author or name was not found."
 msgstr ""
 
-#: mod/dfrn_confirm.php:535
-msgid "Contact record was not found for you on our site."
+#: src/Model/Contact.php:1322
+msgid "No browser URL could be matched to this address."
 msgstr ""
 
-#: mod/dfrn_confirm.php:549
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
+#: src/Model/Contact.php:1325
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
 msgstr ""
 
-#: mod/dfrn_confirm.php:565
+#: src/Model/Contact.php:1326
+msgid "Use mailto: in front of address to force email check."
+msgstr ""
+
+#: src/Model/Contact.php:1332
 msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
 msgstr ""
 
-#: mod/dfrn_confirm.php:576
-msgid "Unable to set your contact credentials on our system."
+#: src/Model/Contact.php:1337
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
 msgstr ""
 
-#: mod/dfrn_confirm.php:631
-msgid "Unable to update your contact profile details on our system"
+#: src/Model/Contact.php:1388
+msgid "Unable to retrieve contact information."
 msgstr ""
 
-#: mod/dfrn_confirm.php:694
+#: src/Model/Contact.php:1605 src/Protocol/DFRN.php:1510
 #, php-format
-msgid "%1$s has joined %2$s"
+msgid "%s's birthday"
 msgstr ""
 
-#: mod/filer.php:34
-msgid "- select -"
+#: src/Model/Contact.php:1606 src/Protocol/DFRN.php:1511
+#, php-format
+msgid "Happy Birthday %s"
 msgstr ""
 
-#: mod/register.php:99
-msgid ""
-"Registration successful. Please check your email for further instructions."
+#: src/Model/Item.php:1776
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
 msgstr ""
 
-#: mod/register.php:103
+#: src/Model/Item.php:1781
 #, php-format
-msgid ""
-"Failed to send email message. Here your accout details:<br> login: %s<br> "
-"password: %s<br><br>You can change your password after login."
+msgid "%1$s is not attending %2$s's %3$s"
 msgstr ""
 
-#: mod/register.php:110
-msgid "Registration successful."
+#: src/Model/Item.php:1786
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
 msgstr ""
 
-#: mod/register.php:115
-msgid "Your registration can not be processed."
+#: src/Model/Profile.php:97
+msgid "Requested account is not available."
 msgstr ""
 
-#: mod/register.php:162
-msgid "Your registration is pending approval by the site owner."
+#: src/Model/Profile.php:164 src/Model/Profile.php:395
+#: src/Model/Profile.php:857
+msgid "Edit profile"
 msgstr ""
 
-#: mod/register.php:220
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
+#: src/Model/Profile.php:332
+msgid "Atom feed"
 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."
+#: src/Model/Profile.php:368
+msgid "Manage/edit profiles"
 msgstr ""
 
-#: mod/register.php:222
-msgid "Your OpenID (optional): "
+#: src/Model/Profile.php:546 src/Model/Profile.php:639
+msgid "g A l F d"
 msgstr ""
 
-#: mod/register.php:234
-msgid "Include your profile in member directory?"
+#: src/Model/Profile.php:547
+msgid "F d"
 msgstr ""
 
-#: mod/register.php:259
-msgid "Note for the admin"
+#: src/Model/Profile.php:604 src/Model/Profile.php:701
+msgid "[today]"
 msgstr ""
 
-#: mod/register.php:259
-msgid "Leave a message for the admin, why you want to join this node"
+#: src/Model/Profile.php:615
+msgid "Birthday Reminders"
 msgstr ""
 
-#: mod/register.php:260
-msgid "Membership on this site is by invitation only."
+#: src/Model/Profile.php:616
+msgid "Birthdays this week:"
 msgstr ""
 
-#: mod/register.php:261
-msgid "Your invitation code: "
+#: src/Model/Profile.php:688
+msgid "[No description]"
 msgstr ""
 
-#: mod/register.php:270
-msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
+#: src/Model/Profile.php:715
+msgid "Event Reminders"
 msgstr ""
 
-#: mod/register.php:271
-msgid ""
-"Your Email Address: (Initial information will be send there, so this has to "
-"be an existing address.)"
+#: 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 ""
 
-#: mod/register.php:273
-msgid "Leave empty for an auto generated password."
+#: src/Model/Profile.php:763
+msgid "Age:"
 msgstr ""
 
-#: mod/register.php:275
+#: src/Model/Profile.php:776
 #, php-format
-msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be '<strong>nickname@%s</strong>'."
+msgid "for %1$d %2$s"
 msgstr ""
 
-#: mod/register.php:276
-msgid "Choose a nickname: "
+#: src/Model/Profile.php:800
+msgid "Religion:"
 msgstr ""
 
-#: mod/register.php:286
-msgid "Import your profile to this friendica instance"
+#: src/Model/Profile.php:808
+msgid "Hobbies/Interests:"
 msgstr ""
 
-#: mod/common.php:91
-msgid "No contacts in common."
+#: src/Model/Profile.php:820
+msgid "Contact information and Social Networks:"
 msgstr ""
 
-#: mod/probe.php:14 mod/webfinger.php:17
-msgid "Only logged in users are permitted to perform a probing."
+#: src/Model/Profile.php:824
+msgid "Musical interests:"
 msgstr ""
 
-#: mod/help.php:48
-msgid "Help:"
+#: src/Model/Profile.php:828
+msgid "Books, literature:"
 msgstr ""
 
-#: mod/help.php:63 index.php:325
-msgid "Page not found."
+#: src/Model/Profile.php:832
+msgid "Television:"
 msgstr ""
 
-#: mod/profperm.php:34 mod/profperm.php:65
-msgid "Invalid profile identifier."
+#: src/Model/Profile.php:836
+msgid "Film/dance/culture/entertainment:"
 msgstr ""
 
-#: mod/profperm.php:111
-msgid "Profile Visibility Editor"
+#: src/Model/Profile.php:840
+msgid "Love/Romance:"
 msgstr ""
 
-#: mod/profperm.php:124
-msgid "Visible To"
+#: src/Model/Profile.php:844
+msgid "Work/employment:"
 msgstr ""
 
-#: mod/profperm.php:140
-msgid "All Contacts (with secure profile access)"
+#: src/Model/Profile.php:848
+msgid "School/education:"
 msgstr ""
 
-#: mod/item.php:114
-msgid "Unable to locate original post."
+#: src/Model/Profile.php:853
+msgid "Forums:"
 msgstr ""
 
-#: mod/item.php:274
-msgid "Empty post discarded."
+#: src/Model/Profile.php:947
+msgid "Only You Can See This"
 msgstr ""
 
-#: mod/item.php:799
+#: src/Protocol/OStatus.php:1799
 #, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social network."
+msgid "%s is now following %s."
 msgstr ""
 
-#: mod/item.php:801
-#, php-format
-msgid "You may visit them online at %s"
+#: src/Protocol/OStatus.php:1800
+msgid "following"
 msgstr ""
 
-#: mod/item.php:802
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
+#: src/Protocol/OStatus.php:1803
+#, php-format
+msgid "%s stopped following %s."
 msgstr ""
 
-#: mod/item.php:806
-#, php-format
-msgid "%s posted an update."
+#: src/Protocol/OStatus.php:1804
+msgid "stopped following"
 msgstr ""
 
-#: mod/editpost.php:25 mod/editpost.php:35
-msgid "Item not found"
+#: src/Protocol/Diaspora.php:2670
+msgid "Sharing notification from Diaspora network"
 msgstr ""
 
-#: mod/editpost.php:42
-msgid "Edit post"
+#: src/Protocol/Diaspora.php:3762
+msgid "Attachments:"
 msgstr ""
 
-#: view/theme/quattro/config.php:76
-msgid "Alignment"
+#: src/Worker/Delivery.php:407
+msgid "(no subject)"
 msgstr ""
 
-#: view/theme/quattro/config.php:76
-msgid "Left"
+#: src/Module/Login.php:282
+msgid "Create a New Account"
 msgstr ""
 
-#: view/theme/quattro/config.php:76
-msgid "Center"
+#: src/Module/Login.php:315
+msgid "Password: "
 msgstr ""
 
-#: view/theme/quattro/config.php:77
-msgid "Color scheme"
+#: src/Module/Login.php:316
+msgid "Remember me"
 msgstr ""
 
-#: view/theme/quattro/config.php:78
-msgid "Posts font size"
+#: src/Module/Login.php:319
+msgid "Or login using OpenID: "
 msgstr ""
 
-#: view/theme/quattro/config.php:79
-msgid "Textareas font size"
+#: src/Module/Login.php:325
+msgid "Forgot your password?"
 msgstr ""
 
-#: view/theme/frio/php/Image.php:25
-msgid "Repeat the image"
+#: src/Module/Login.php:328
+msgid "Website Terms of Service"
 msgstr ""
 
-#: view/theme/frio/php/Image.php:25
-msgid "Will repeat your image to fill the background."
+#: src/Module/Login.php:329
+msgid "terms of service"
 msgstr ""
 
-#: view/theme/frio/php/Image.php:27
-msgid "Stretch"
+#: src/Module/Login.php:331
+msgid "Website Privacy Policy"
 msgstr ""
 
-#: view/theme/frio/php/Image.php:27
-msgid "Will stretch to width/height of the image."
+#: src/Module/Login.php:332
+msgid "privacy policy"
 msgstr ""
 
-#: view/theme/frio/php/Image.php:29
-msgid "Resize fill and-clip"
+#: src/Module/Logout.php:28
+msgid "Logged out."
 msgstr ""
 
-#: view/theme/frio/php/Image.php:29
-msgid "Resize to fill and retain aspect ratio."
+#: src/Module/Tos.php:51
+msgid "Privacy Statement"
 msgstr ""
 
-#: view/theme/frio/php/Image.php:31
-msgid "Resize best fit"
+#: 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 ""
 
-#: view/theme/frio/php/Image.php:31
-msgid "Resize to best fit and retain aspect ratio."
+#: 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 ""
 
-#: view/theme/frio/config.php:97
-msgid "Default"
+#: src/Module/Tos.php:54
+#, php-format
+msgid ""
+"At any point in time a logged in user can export their account data from the "
+"<a href=\"%1$s/settings/uexport\">account settings</a>. If the user wants to "
+"delete their account they can do so at <a href=\"%1$s/removeme\">%1$s/"
+"removeme</a>. The deletion of the account will be permanent."
 msgstr ""
 
-#: view/theme/frio/config.php:109
-msgid "Note"
+#: src/Object/Post.php:128
+msgid "This entry was edited"
 msgstr ""
 
-#: view/theme/frio/config.php:109
-msgid "Check image permissions if all users are allowed to visit the image"
+#: src/Object/Post.php:182
+msgid "save to folder"
 msgstr ""
 
-#: view/theme/frio/config.php:116
-msgid "Select scheme"
+#: src/Object/Post.php:235
+msgid "I will attend"
 msgstr ""
 
-#: view/theme/frio/config.php:117
-msgid "Navigation bar background color"
+#: src/Object/Post.php:235
+msgid "I will not attend"
 msgstr ""
 
-#: view/theme/frio/config.php:118
-msgid "Navigation bar icon color "
+#: src/Object/Post.php:235
+msgid "I might attend"
 msgstr ""
 
-#: view/theme/frio/config.php:119
-msgid "Link color"
+#: src/Object/Post.php:263
+msgid "add star"
 msgstr ""
 
-#: view/theme/frio/config.php:120
-msgid "Set the background color"
+#: src/Object/Post.php:264
+msgid "remove star"
 msgstr ""
 
-#: view/theme/frio/config.php:121
-msgid "Content background opacity"
+#: src/Object/Post.php:265
+msgid "toggle star status"
 msgstr ""
 
-#: view/theme/frio/config.php:122
-msgid "Set the background image"
+#: src/Object/Post.php:268
+msgid "starred"
 msgstr ""
 
-#: view/theme/frio/config.php:127
-msgid "Login page background image"
+#: src/Object/Post.php:274
+msgid "ignore thread"
 msgstr ""
 
-#: view/theme/frio/config.php:130
-msgid "Login page background color"
+#: src/Object/Post.php:275
+msgid "unignore thread"
 msgstr ""
 
-#: view/theme/frio/config.php:130
-msgid "Leave background image and color empty for theme defaults"
+#: src/Object/Post.php:276
+msgid "toggle ignore status"
 msgstr ""
 
-#: view/theme/frio/theme.php:238
-msgid "Guest"
+#: src/Object/Post.php:285
+msgid "add tag"
 msgstr ""
 
-#: view/theme/frio/theme.php:243
-msgid "Visitor"
+#: src/Object/Post.php:296
+msgid "like"
 msgstr ""
 
-#: view/theme/vier/config.php:75
-msgid "Comma separated list of helper forums"
+#: src/Object/Post.php:297
+msgid "dislike"
 msgstr ""
 
-#: view/theme/vier/config.php:122
-msgid "Set style"
+#: src/Object/Post.php:300
+msgid "Share this"
 msgstr ""
 
-#: view/theme/vier/config.php:123
-msgid "Community Pages"
+#: src/Object/Post.php:300
+msgid "share"
 msgstr ""
 
-#: view/theme/vier/config.php:124 view/theme/vier/theme.php:150
-msgid "Community Profiles"
+#: src/Object/Post.php:365
+msgid "to"
 msgstr ""
 
-#: view/theme/vier/config.php:125
-msgid "Help or @NewHere ?"
+#: src/Object/Post.php:366
+msgid "via"
 msgstr ""
 
-#: view/theme/vier/config.php:126 view/theme/vier/theme.php:389
-msgid "Connect Services"
+#: src/Object/Post.php:367
+msgid "Wall-to-Wall"
 msgstr ""
 
-#: view/theme/vier/config.php:127 view/theme/vier/theme.php:199
-msgid "Find Friends"
+#: src/Object/Post.php:368
+msgid "via Wall-To-Wall:"
 msgstr ""
 
-#: view/theme/vier/config.php:128 view/theme/vier/theme.php:181
-msgid "Last users"
+#: src/Object/Post.php:427
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] ""
+msgstr[1] ""
+
+#: src/Object/Post.php:797
+msgid "Bold"
 msgstr ""
 
-#: view/theme/vier/theme.php:200
-msgid "Local Directory"
+#: src/Object/Post.php:798
+msgid "Italic"
 msgstr ""
 
-#: view/theme/vier/theme.php:292
-msgid "Quick Start"
+#: src/Object/Post.php:799
+msgid "Underline"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:55
-msgid "greenzero"
+#: src/Object/Post.php:800
+msgid "Quote"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:56
-msgid "purplezero"
+#: src/Object/Post.php:801
+msgid "Code"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:57
-msgid "easterbunny"
+#: src/Object/Post.php:802
+msgid "Image"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:58
-msgid "darkzero"
+#: src/Object/Post.php:803
+msgid "Link"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:59
-msgid "comix"
+#: src/Object/Post.php:804
+msgid "Video"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:60
-msgid "slackr"
+#: src/App.php:511
+msgid "Delete this item?"
 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 ""
index 2f995d5993ebf130774936fd6a5bc48d2f090ef5..d6140a1bb315c517433a09f6641110bb0935ccdc 100644 (file)
@@ -32,6 +32,9 @@ td.help {
 td.help blockquote {\r
        margin-left: 60px;\r
 }\r
+.error_header {\r
+       margin-left: 60px;\r
+}\r
 input[type="submit"] {\r
        margin: 2em 0;\r
 }\r
index 94a320866a57494dcf20b0716c996d913b7cdbb5..3dcf592fe6bf34fd1cc74887015c8b0fcf6b4ae3 100644 (file)
@@ -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 <fabrix.xm@gmail.com>\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 "<span  %1$s>%2$d people</span> like this"
 msgstr "<span  %1$s>%2$d ihmistä</span> 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 "<span  %1$s>%2$d people</span> don't like this"
 msgstr "<span  %1$s>%2$d ihmistä</span> 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 "<span  %1$s>%2$d people</span> attend"
 msgstr "<span  %1$s>%2$d ihmistä</span> 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 "<span  %1$s>%2$d people</span> don't attend"
 msgstr "<span  %1$s>%2$d ihmistä</span> 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 "<span  %1$s>%2$d people</span> attend maybe"
 msgstr "<span  %1$s>%2$d ihmistä</span> 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 <strong>everybody</strong>"
 msgstr "Näkyy <strong>kaikille</strong>"
 
-#: 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,2341 +1161,2409 @@ 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."
-
-#: include/items.php:382
-msgid "Do you really want to delete this item?"
-msgstr "Haluatko varmasti poistaa tämän kohteen?"
+#: mod/allfriends.php:51
+msgid "No friends to display."
+msgstr "Ei näytettäviä kavereita."
 
-#: 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ä"
+#: 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ä"
 
-#: 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."
+#: mod/api.php:85 mod/api.php:107
+msgid "Authorize application connection"
+msgstr "Vahvista sovellusyhteys"
 
-#: include/items.php:471
-msgid "Archives"
-msgstr "Arkisto"
+#: mod/api.php:86
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Palaa takaisin sovellukseen ja lisää tämä turvakoodi:"
 
-#: 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ää"
+#: mod/api.php:95
+msgid "Please login to continue."
+msgstr "Ole hyvä ja kirjaudu jatkaaksesi."
 
-#: 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"
+#: 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/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"
+#: 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/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"
+#: 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/Contact.php:657
-msgid "Drop Contact"
-msgstr "Poista kontakti"
+#: mod/apps.php:19
+msgid "Applications"
+msgstr "Sovellukset"
 
-#: src/Model/Contact.php:1060
-msgid "Organisation"
-msgstr "Järjestö"
+#: mod/apps.php:22
+msgid "No installed applications."
+msgstr "Ei asennettuja sovelluksia."
 
-#: src/Model/Contact.php:1063
-msgid "News"
-msgstr "Uutiset"
+#: mod/attach.php:15
+msgid "Item not available."
+msgstr "Kohde ei saatavilla."
 
-#: src/Model/Contact.php:1066
-msgid "Forum"
-msgstr "Keskustelupalsta"
+#: mod/attach.php:25
+msgid "Item was not found."
+msgstr "Kohdetta ei löytynyt."
 
-#: src/Model/Contact.php:1235 mod/dfrn_request.php:345
-msgid "Disallowed profile URL."
-msgstr "Kielletty profiiliosoite."
+#: mod/common.php:91
+msgid "No contacts in common."
+msgstr "Ei yhteisiä kontakteja."
 
-#: 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"
+#: mod/common.php:140 mod/contacts.php:886
+msgid "Common Friends"
+msgstr "Yhteisiä kavereita"
 
-#: src/Model/Contact.php:1245
-msgid "Connect URL missing."
-msgstr "Yhteys URL-linkki puuttuu."
+#: mod/credits.php:18
+msgid "Credits"
+msgstr "Lopputekstit"
 
-#: src/Model/Contact.php:1254
+#: mod/credits.php:19
 msgid ""
-"The contact could not be added. Please check the relevant network "
-"credentials in your Settings -> Social Networks page."
+"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/Contact.php:1301
+#: 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 ""
-"This site is not configured to allow communications with other networks."
-msgstr ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>VAROITUS: Tämä on erittäin vaativaa</strong> ja jos kirjoitat virheellisiä tietoja, viestintäsi tämän henkilön kanssa voi lakata toimimasta."
 
-#: 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."
+#: mod/crepair.php:115
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Ole hyvä ja paina selaimesi 'Takaisin'-painiketta <strong>nyt</strong>, jos olet epävarma tämän sivun toiminnoista."
 
-#: 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."
+#: mod/crepair.php:129 mod/crepair.php:131
+msgid "No mirroring"
+msgstr "Ei peilausta"
 
-#: src/Model/Contact.php:1319
-msgid "An author or name was not found."
-msgstr ""
+#: mod/crepair.php:129
+msgid "Mirror as forwarded posting"
+msgstr "Peilaa välitettynä julkaisuna"
 
-#: src/Model/Contact.php:1322
-msgid "No browser URL could be matched to this address."
-msgstr ""
+#: mod/crepair.php:129 mod/crepair.php:131
+msgid "Mirror as my own posting"
+msgstr "Peilaa omana julkaisuna"
 
-#: src/Model/Contact.php:1325
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr ""
+#: mod/crepair.php:144
+msgid "Return to contact editor"
+msgstr "Palaa kontaktin muokkaamiseen"
 
-#: src/Model/Contact.php:1326
-msgid "Use mailto: in front of address to force email check."
+#: mod/crepair.php:146
+msgid "Refetch contact data"
 msgstr ""
 
-#: src/Model/Contact.php:1332
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
+#: 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ä"
+
+#: mod/crepair.php:149
+msgid "Remote Self"
 msgstr ""
 
-#: src/Model/Contact.php:1337
+#: mod/crepair.php:152
+msgid "Mirror postings from this contact"
+msgstr "Peilaa tämän kontaktin julkaisut"
+
+#: mod/crepair.php:154
 msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
 msgstr ""
 
-#: src/Model/Contact.php:1388
-msgid "Unable to retrieve contact information."
-msgstr "Kontaktin tietoja ei voitu hakea."
+#: 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/Contact.php:1537 mod/dfrn_request.php:568
-#: mod/dfrn_confirm.php:661
-msgid "[Name Withheld]"
-msgstr "[Nimi jätetty pois]"
+#: mod/crepair.php:159
+msgid "Account Nickname"
+msgstr "Tilin lempinimi"
 
-#: src/Model/Contact.php:1605 src/Protocol/DFRN.php:1482
-#, php-format
-msgid "%s's birthday"
-msgstr "%s: syntymäpäivä"
+#: mod/crepair.php:160
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname - ohittaa Nimen/Nimimerkin"
 
-#: src/Model/Contact.php:1606 src/Protocol/DFRN.php:1483
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Hyvää syntymäpäivää %s"
+#: mod/crepair.php:161
+msgid "Account URL"
+msgstr "Tilin URL-osoite"
 
-#: src/Model/Mail.php:40 src/Model/Mail.php:174
-msgid "[no subject]"
-msgstr "[ei aihetta]"
+#: mod/crepair.php:162
+msgid "Friend Request URL"
+msgstr "URL kaveripyyntöä varten"
 
-#: src/Model/Profile.php:97
-msgid "Requested account is not available."
-msgstr "Pyydetty käyttäjätili ei ole saatavilla."
+#: mod/crepair.php:163
+msgid "Friend Confirm URL"
+msgstr "URL kaverin vahvistusta varten"
 
-#: src/Model/Profile.php:118 mod/profile.php:37
-msgid "Requested profile is not available."
-msgstr "Pyydettyä profiilia ei saatavilla."
+#: mod/crepair.php:164
+msgid "Notification Endpoint URL"
+msgstr "URL huomautuksia varten"
 
-#: src/Model/Profile.php:168 src/Model/Profile.php:399
-#: src/Model/Profile.php:863
-msgid "Edit profile"
-msgstr "Muokkaa profiilia"
+#: mod/crepair.php:165
+msgid "Poll/Feed URL"
+msgstr "URL äänestyksiä/syötteitä varten"
 
-#: 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 "Yhdistä"
+#: mod/crepair.php:166
+msgid "New photo from this URL"
+msgstr "Uusi kuva osoitteesta"
 
-#: src/Model/Profile.php:336
-msgid "Atom feed"
-msgstr "Atom -syöte"
+#: 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:372 src/Content/Nav.php:205
-msgid "Profiles"
-msgstr "Profiilit"
+#: 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/Profile.php:372
-msgid "Manage/edit profiles"
-msgstr "Hallitse/muokkaa profiilit"
+#: mod/fbrowser.php:105 mod/fbrowser.php:136 mod/profile_photo.php:250
+msgid "Upload"
+msgstr "Lähetä"
 
-#: src/Model/Profile.php:379 src/Model/Profile.php:401 mod/profiles.php:777
-msgid "Change profile photo"
-msgstr "Vaihda profiilikuva"
+#: mod/fbrowser.php:131
+msgid "Files"
+msgstr "Tiedostot"
 
-#: src/Model/Profile.php:380 mod/profiles.php:778
-msgid "Create New Profile"
-msgstr "Luo uusi profiili"
+#: 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"
 
-#: src/Model/Profile.php:389 mod/profiles.php:767
-msgid "Profile Image"
-msgstr "Profiilikuva"
+#: mod/hcard.php:18
+msgid "No profile"
+msgstr "Ei profiilia"
 
-#: src/Model/Profile.php:392 mod/profiles.php:769
-msgid "visible to everybody"
-msgstr "näkyvissä kaikille"
+#: mod/help.php:48
+msgid "Help:"
+msgstr "Ohje:"
 
-#: src/Model/Profile.php:393 mod/profiles.php:675 mod/profiles.php:770
-msgid "Edit visibility"
-msgstr "Muokkaa näkyvyyttä"
+#: mod/help.php:54 view/theme/vier/theme.php:297 src/Content/Nav.php:134
+msgid "Help"
+msgstr "Ohje"
 
-#: 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/help.php:63 index.php:325
+msgid "Page not found."
+msgstr "Sivua ei löytynyt."
 
-#: src/Model/Profile.php:420 src/Model/Profile.php:749 mod/directory.php:151
-#: mod/notifications.php:253
-msgid "Gender:"
-msgstr "Sukupuoli:"
+#: mod/home.php:39
+#, php-format
+msgid "Welcome to %s"
+msgstr "Tervetuloa %s"
 
-#: src/Model/Profile.php:421 src/Model/Profile.php:773 mod/directory.php:152
-msgid "Status:"
-msgstr "Tila:"
+#: mod/lockview.php:38 mod/lockview.php:46
+msgid "Remote privacy information not available."
+msgstr "Yksityisyyden etätietoja ei saatavilla."
 
-#: src/Model/Profile.php:422 src/Model/Profile.php:790 mod/directory.php:153
-msgid "Homepage:"
-msgstr "Kotisivu:"
+#: mod/lockview.php:55
+msgid "Visible to:"
+msgstr "Näkyvissä:"
 
-#: 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/maintenance.php:24
+msgid "System down for maintenance"
+msgstr "Järjestelmä poiskytketty huoltoa varten"
 
-#: src/Model/Profile.php:424 mod/contacts.php:662
-msgid "XMPP:"
-msgstr "XMPP:"
+#: mod/newmember.php:11
+msgid "Welcome to Friendica"
+msgstr "Tervetuloa Friendicaan"
 
-#: src/Model/Profile.php:520 mod/notifications.php:261 mod/contacts.php:71
-msgid "Network:"
-msgstr "Verkko:"
+#: mod/newmember.php:12
+msgid "New Member Checklist"
+msgstr "Uuden jäsenen tarkistuslista"
 
-#: src/Model/Profile.php:550 src/Model/Profile.php:643
-msgid "g A l F d"
+#: 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/Profile.php:551
-msgid "d"
-msgstr ""
+#: mod/newmember.php:15
+msgid "Getting Started"
+msgstr "Ensiaskeleet"
 
-#: src/Model/Profile.php:608 src/Model/Profile.php:707
-msgid "[today]"
-msgstr "[tänään]"
+#: mod/newmember.php:17
+msgid "Friendica Walk-Through"
+msgstr "Friendica -läpikäynti"
 
-#: src/Model/Profile.php:619
-msgid "Birthday Reminders"
-msgstr "Syntymäpäivämuistutukset"
+#: mod/newmember.php:17
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr ""
 
-#: src/Model/Profile.php:620
-msgid "Birthdays this week:"
-msgstr "Syntymäpäiviä tällä viikolla:"
+#: 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"
 
-#: src/Model/Profile.php:694
-msgid "[No description]"
-msgstr "[Ei kuvausta]"
+#: mod/newmember.php:21
+msgid "Go to Your Settings"
+msgstr "Omat Asetukset"
 
-#: src/Model/Profile.php:721
-msgid "Event Reminders"
-msgstr "Tapahtumamuistutukset"
+#: mod/newmember.php:21
+msgid ""
+"On your <em>Settings</em> 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 ""
 
-#: src/Model/Profile.php:722
-msgid "Events this week:"
-msgstr "Tapahtumia tällä viikolla:"
+#: 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 ""
 
-#: 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
+#: 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"
 
-#: 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ä:"
+#: mod/newmember.php:26 mod/profile_photo.php:249 mod/profiles.php:691
+msgid "Upload Profile Photo"
+msgstr "Lataa profiilikuva"
 
-#: src/Model/Profile.php:753
-msgid "j F, Y"
+#: 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 ""
 
-#: src/Model/Profile.php:754
-msgid "j F"
-msgstr ""
+#: mod/newmember.php:27
+msgid "Edit Your Profile"
+msgstr "Muokkaa profiilisi"
 
-#: src/Model/Profile.php:762 src/Util/Temporal.php:147
-msgid "Birthday:"
-msgstr "Syntymäpäivä:"
+#: mod/newmember.php:27
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr ""
 
-#: src/Model/Profile.php:769
-msgid "Age:"
-msgstr "Ikä:"
+#: mod/newmember.php:28
+msgid "Profile Keywords"
+msgstr "Profiilin avainsanat"
 
-#: src/Model/Profile.php:782
-#, php-format
-msgid "for %1$d %2$s"
+#: 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 ""
 
-#: src/Model/Profile.php:786 mod/profiles.php:694
-msgid "Sexual Preference:"
-msgstr "Seksuaalinen suuntautuminen:"
+#: mod/newmember.php:30
+msgid "Connecting"
+msgstr "Yhdistetään"
 
-#: src/Model/Profile.php:794 mod/profiles.php:721
-msgid "Hometown:"
-msgstr "Kotikaupunki:"
+#: mod/newmember.php:36
+msgid "Importing Emails"
+msgstr "Sähköpostin tuominen"
 
-#: src/Model/Profile.php:798 mod/notifications.php:251 mod/follow.php:174
-#: mod/contacts.php:666
-msgid "Tags:"
-msgstr "Tunnisteet:"
+#: 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 ""
 
-#: src/Model/Profile.php:802 mod/profiles.php:722
-msgid "Political Views:"
-msgstr "Politiikka:"
+#: mod/newmember.php:39
+msgid "Go to Your Contacts Page"
+msgstr "Näytä minun kontaktit"
 
-#: src/Model/Profile.php:806
-msgid "Religion:"
-msgstr "Uskonto:"
+#: 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 <em>Add New Contact</em> dialog."
+msgstr ""
 
-#: src/Model/Profile.php:814
-msgid "Hobbies/Interests:"
-msgstr "Harrastukset:"
+#: mod/newmember.php:40
+msgid "Go to Your Site's Directory"
+msgstr "Näytä oman sivuston luettelo"
 
-#: 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:"
+#: mod/newmember.php:40
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr ""
 
-#: src/Model/Profile.php:850
-msgid "Work/employment:"
-msgstr "Työ:"
+#: mod/newmember.php:41
+msgid "Finding New People"
+msgstr "Kavereiden hankkiminen"
 
-#: src/Model/Profile.php:854
-msgid "School/education:"
-msgstr "Koulutus:"
+#: 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 ""
 
-#: src/Model/Profile.php:859
-msgid "Forums:"
-msgstr "Foorumit:"
+#: mod/newmember.php:43 src/Model/Group.php:414
+msgid "Groups"
+msgstr "Ryhmät"
 
-#: src/Model/Profile.php:868 mod/events.php:531
-msgid "Basic"
-msgstr ""
+#: mod/newmember.php:45
+msgid "Group Your Contacts"
+msgstr "Järjestä kontaktit ryhmiin"
 
-#: src/Model/Profile.php:869 mod/events.php:532 mod/admin.php:1351
-#: mod/contacts.php:895
-msgid "Advanced"
+#: 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 ""
 
-#: 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"
+#: mod/newmember.php:48
+msgid "Why Aren't My Posts Public?"
+msgstr "Miksi julkaisuni eivät ole julkisia?"
 
-#: src/Model/Profile.php:903 mod/contacts.php:866
-msgid "Profile Details"
-msgstr "Profiilitiedot"
+#: 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 ""
 
-#: src/Model/Profile.php:908 src/Content/Nav.php:102 mod/fbrowser.php:34
-#: view/theme/frio/theme.php:261
-msgid "Photos"
-msgstr "Kuvat"
+#: mod/newmember.php:52
+msgid "Getting Help"
+msgstr "Avun saaminen"
 
-#: src/Model/Profile.php:911 mod/photos.php:108
-msgid "Photo Albums"
-msgstr "Valokuva-albumit"
+#: mod/newmember.php:54
+msgid "Go to the Help Section"
+msgstr "Näytä ohjeet"
 
-#: 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"
+#: mod/newmember.php:54
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+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 "Tapahtumat"
+#: 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]"
 
-#: 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"
+#: mod/nogroup.php:43 mod/contacts.php:960
+msgid "Edit contact"
+msgstr "Muokkaa kontaktia"
 
-#: src/Model/Profile.php:950 mod/notes.php:52
-msgid "Personal Notes"
-msgstr "Henkilökohtaiset tiedot"
+#: mod/nogroup.php:63
+msgid "Contacts who are not members of a group"
+msgstr "Kontaktit jotka eivät kuulu ryhmään"
 
-#: src/Model/Profile.php:953
-msgid "Only You Can See This"
-msgstr "Vain sinä näet tämän"
+#: mod/p.php:14
+msgid "Not Extended"
+msgstr "Ei laajennettu"
 
-#: src/Model/Event.php:36 src/Model/Event.php:814 mod/localtime.php:19
-msgid "l F d, Y \\@ g:i A"
+#: mod/repair_ostatus.php:18
+msgid "Resubscribing to OStatus contacts"
 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."
+#: mod/repair_ostatus.php:34
+msgid "Error"
+msgstr "Virhe"
 
-#: src/Model/Event.php:394
-msgid "Sept"
-msgstr "Syy."
+#: mod/repair_ostatus.php:48 mod/ostatus_subscribe.php:64
+msgid "Done"
+msgstr "Valmis"
 
-#: src/Model/Event.php:412 mod/events.php:400 mod/cal.php:280
-msgid "today"
-msgstr "tänään"
+#: 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."
 
-#: src/Model/Event.php:413 src/Util/Temporal.php:304 mod/events.php:401
-#: mod/cal.php:281
-msgid "month"
-msgstr "kuukausi"
+#: mod/suggest.php:36
+msgid "Do you really want to delete this suggestion?"
+msgstr "Haluatko varmasti poistaa ehdotuksen?"
 
-#: src/Model/Event.php:414 src/Util/Temporal.php:305 mod/events.php:402
-#: mod/cal.php:282
-msgid "week"
-msgstr "viikko"
+#: 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."
 
-#: src/Model/Event.php:415 src/Util/Temporal.php:306 mod/events.php:403
-#: mod/cal.php:283
-msgid "day"
-msgstr "päivä"
+#: mod/suggest.php:84 mod/suggest.php:104
+msgid "Ignore/Hide"
+msgstr "Jätä huomiotta/piilota"
 
-#: src/Model/Event.php:417
-msgid "No events to display"
-msgstr "Ei näytettäviä tapahtumia."
+#: mod/suggest.php:114 view/theme/vier/theme.php:204 src/Content/Widget.php:64
+msgid "Friend Suggestions"
+msgstr "Ystäväehdotukset"
 
-#: src/Model/Event.php:543
-msgid "l, F j"
-msgstr "l, F j"
+#: 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]"
 
-#: src/Model/Event.php:566
-msgid "Edit event"
-msgstr "Muokkaa tapahtumaa"
+#: 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."
 
-#: src/Model/Event.php:567
-msgid "Duplicate event"
-msgstr "Monista tapahtuma"
+#: mod/uimport.php:70 mod/register.php:285
+msgid "Import"
+msgstr "Tuo"
 
-#: src/Model/Event.php:568
-msgid "Delete event"
-msgstr "Poista tapahtuma"
+#: mod/uimport.php:72
+msgid "Move account"
+msgstr "Siirrä tili"
 
-#: src/Model/Event.php:815
-msgid "D g:i A"
-msgstr ""
+#: mod/uimport.php:73
+msgid "You can import an account from another Friendica server."
+msgstr "Voit tuoda käyttäjätilin toiselta Friendica -palvelimelta."
 
-#: src/Model/Event.php:816
-msgid "g:i A"
+#: 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 ""
 
-#: src/Model/Event.php:901 src/Model/Event.php:903
-msgid "Show map"
-msgstr "Näytä kartta"
+#: 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."
 
-#: src/Model/Event.php:902
-msgid "Hide map"
-msgstr "Piilota kartta"
+#: mod/uimport.php:76
+msgid "Account file"
+msgstr "Tilitiedosto"
 
-#: src/Model/Group.php:44
+#: mod/uimport.php:76
 msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
 msgstr ""
 
-#: src/Model/Group.php:341
-msgid "Default privacy group for new contacts"
-msgstr "Oletusryhmä uusille kontakteille"
+#: 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"
 
-#: src/Model/Group.php:374
-msgid "Everybody"
-msgstr "Kaikki"
+#: mod/match.php:48
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Avainsanat puuttuu. Lisää avainsanoja oletusprofiiliisi."
 
-#: src/Model/Group.php:394
-msgid "edit"
-msgstr "muokkaa"
+#: mod/match.php:104
+msgid "is interested in:"
+msgstr "on kiinnostunut seuraavista aiheista:"
 
-#: src/Model/Group.php:413 mod/network.php:202
-msgid "add"
-msgstr "lisää"
+#: mod/match.php:120
+msgid "Profile Match"
+msgstr "Vastaavien profiilien haku"
 
-#: src/Model/Group.php:414 mod/newmember.php:43
-msgid "Groups"
-msgstr "Ryhmät"
+#: mod/match.php:125 mod/dirfind.php:253
+msgid "No matches"
+msgstr "Ei täsmääviä profiileja"
 
-#: 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
-msgid "Contact Photos"
-msgstr "Kontaktin valokuvat"
+#: mod/notifications.php:37
+msgid "Invalid request identifier."
+msgstr "Virheellinen pyyntötunniste."
 
-#: src/Model/User.php:154
-msgid "Login failed"
-msgstr "Kirjautuminen epäonnistui"
+#: mod/notifications.php:46 mod/notifications.php:183
+#: mod/notifications.php:230
+msgid "Discard"
+msgstr "Hylkää"
 
-#: src/Model/User.php:185
-msgid "Not enough information to authenticate"
-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 "Jätä huomiotta"
 
-#: src/Model/User.php:214 src/Core/Console/NewPassword.php:74 mod/cal.php:297
-msgid "User not found"
-msgstr "Käyttäjää ei löydy"
+#: mod/notifications.php:98 src/Content/Nav.php:187
+msgid "Notifications"
+msgstr "Huomautukset"
 
-#: 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/notifications.php:107
+msgid "Network Notifications"
+msgstr "Verkkoilmoitukset"
 
-#: src/Model/User.php:342
-msgid "An invitation is required."
-msgstr ""
+#: mod/notifications.php:113 mod/notify.php:81
+msgid "System Notifications"
+msgstr "Järjestelmäilmoitukset"
 
-#: src/Model/User.php:346
-msgid "Invitation could not be verified."
-msgstr "Kutsua ei voitu vahvistaa."
+#: mod/notifications.php:119
+msgid "Personal Notifications"
+msgstr "Henkilökohtaiset ilmoitukset"
 
-#: src/Model/User.php:353
-msgid "Invalid OpenID url"
-msgstr "Virheellinen OpenID url-osoite"
+#: mod/notifications.php:125
+msgid "Home Notifications"
+msgstr "Koti-ilmoitukset"
 
-#: src/Model/User.php:366 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 ""
+#: mod/notifications.php:155
+msgid "Show Ignored Requests"
+msgstr "Näytä ohitetut pyynnöt"
 
-#: src/Model/User.php:366 src/Module/Login.php:100
-msgid "The error message was:"
-msgstr "Virheviesti oli:"
+#: mod/notifications.php:155
+msgid "Hide Ignored Requests"
+msgstr "Piilota ohitetut pyynnöt"
 
-#: src/Model/User.php:372
-msgid "Please enter the required information."
-msgstr "Syötä tarvittavat tiedot."
+#: mod/notifications.php:167 mod/notifications.php:237
+msgid "Notification type: "
+msgstr "Ilmoitustyyppi:"
 
-#: src/Model/User.php:385
-msgid "Please use a shorter name."
-msgstr "Käytä lyhyempää nimeä."
+#: mod/notifications.php:170
+#, php-format
+msgid "suggested by %s"
+msgstr "ehdottaa %s"
 
-#: src/Model/User.php:388
-msgid "Name too short."
-msgstr "Nimi on liian lyhyt."
+#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646
+msgid "Hide this contact from others"
+msgstr "Piilota kontakti muilta"
 
-#: src/Model/User.php:396
-msgid "That doesn't appear to be your full (First Last) name."
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "Post a new friend activity"
 msgstr ""
 
-#: 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."
-
-#: src/Model/User.php:405
-msgid "Not a valid email address."
-msgstr "Virheellinen sähköpostiosoite."
-
-#: 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."
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "if applicable"
+msgstr "tarvittaessa"
 
-#: src/Model/User.php:498 view/theme/duepuntozero/config.php:54
-msgid "default"
-msgstr "oletus"
+#: mod/notifications.php:179 mod/notifications.php:264 mod/admin.php:1812
+msgid "Approve"
+msgstr "Hyväksy"
 
-#: src/Model/User.php:503
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Oletusprofiilin luominen epäonnistui. Yritä uudelleen."
+#: mod/notifications.php:198
+msgid "Claims to be known to you: "
+msgstr "Väittää tuntevansa sinut:"
 
-#: src/Model/User.php:510
-msgid "An error occurred creating your self contact. Please try again."
-msgstr ""
+#: mod/notifications.php:199
+msgid "yes"
+msgstr "kyllä"
 
-#: src/Model/User.php:515 src/Content/ContactSelector.php:169
-msgid "Friends"
-msgstr "Kaverit"
+#: mod/notifications.php:199
+msgid "no"
+msgstr "ei"
 
-#: src/Model/User.php:519
-msgid ""
-"An error occurred creating your default contact group. Please try again."
-msgstr ""
+#: mod/notifications.php:200 mod/notifications.php:205
+msgid "Shall your connection be bidirectional or not?"
+msgstr "Kaksisuuntainen yhteys?"
 
-#: src/Model/User.php:593
+#: mod/notifications.php:201 mod/notifications.php:206
 #, 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"
+"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 ""
 
-#: src/Model/User.php:603
-#, php-format
-msgid "Registration at %s"
-msgstr "Rekisteröityminen kohteessa %s"
-
-#: src/Model/User.php:621
+#: mod/notifications.php:202
 #, 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"
+"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 ""
 
-#: src/Model/User.php:625
+#: mod/notifications.php:207
 #, 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."
+"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 ""
 
-#: src/Model/User.php:659 mod/admin.php:1611
-#, php-format
-msgid "Registration details for %s"
-msgstr ""
+#: mod/notifications.php:218
+msgid "Friend"
+msgstr "Kaveri"
 
-#: src/Content/Text/BBCode.php:416
-msgid "view full size"
-msgstr "näytä täysikokoisena"
+#: mod/notifications.php:219
+msgid "Sharer"
+msgstr "Jakaja"
 
-#: src/Content/Text/BBCode.php:842 src/Content/Text/BBCode.php:1611
-#: src/Content/Text/BBCode.php:1612
-msgid "Image/photo"
-msgstr "Kuva/valokuva"
+#: mod/notifications.php:219
+msgid "Subscriber"
+msgstr "Tilaaja"
 
-#: src/Content/Text/BBCode.php:980
-#, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+#: 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:"
 
-#: src/Content/Text/BBCode.php:1538 src/Content/Text/BBCode.php:1560
-msgid "$1 wrote:"
-msgstr "$1 kirjoitti:"
+#: 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:"
 
-#: src/Content/Text/BBCode.php:1620 src/Content/Text/BBCode.php:1621
-msgid "Encrypted content"
-msgstr "Salattu sisältö"
+#: mod/notifications.php:251 mod/contacts.php:666 mod/follow.php:174
+#: src/Model/Profile.php:792
+msgid "Tags:"
+msgstr "Tunnisteet:"
 
-#: src/Content/Text/BBCode.php:1740
-msgid "Invalid source protocol"
-msgstr "Virheellinen lähdeprotokolla"
+#: mod/notifications.php:253 mod/directory.php:151 src/Model/Profile.php:416
+#: src/Model/Profile.php:743
+msgid "Gender:"
+msgstr "Sukupuoli:"
 
-#: src/Content/Text/BBCode.php:1751
-msgid "Invalid link protocol"
-msgstr "Virheellinen linkkiprotokolla"
+#: 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"
 
-#: src/Content/Feature.php:79
-msgid "General Features"
-msgstr "Yleiset ominaisuudet"
+#: mod/notifications.php:261 mod/contacts.php:71 src/Model/Profile.php:516
+msgid "Network:"
+msgstr "Verkko:"
 
-#: src/Content/Feature.php:81
-msgid "Multiple Profiles"
-msgstr ""
+#: mod/notifications.php:275
+msgid "No introductions."
+msgstr "Ei esittelyjä."
 
-#: src/Content/Feature.php:81
-msgid "Ability to create multiple profiles"
-msgstr ""
+#: mod/notifications.php:316
+msgid "Show unread"
+msgstr "Näytä lukemattomat"
 
-#: src/Content/Feature.php:82
-msgid "Photo Location"
-msgstr "Kuvan sijainti"
-
-#: 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 ""
-
-#: src/Content/Feature.php:83
-msgid "Export Public Calendar"
-msgstr "Vie julkinen kalenteri"
+#: mod/notifications.php:316
+msgid "Show all"
+msgstr "Näytä kaikki"
 
-#: src/Content/Feature.php:83
-msgid "Ability for visitors to download the public calendar"
-msgstr ""
+#: mod/notifications.php:322
+#, php-format
+msgid "No more %s notifications."
+msgstr "Ei muita %s ilmoituksia."
 
-#: src/Content/Feature.php:88
-msgid "Post Composition Features"
-msgstr ""
+#: mod/openid.php:29
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID -protokollavirhe. Tunnusta ei vastaanotettu."
 
-#: src/Content/Feature.php:89
-msgid "Post Preview"
-msgstr "Viestin esikatselu"
+#: 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."
 
-#: src/Content/Feature.php:89
-msgid "Allow previewing posts and comments before publishing them"
-msgstr ""
+#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:134
+msgid "Login failed."
+msgstr "Kirjautuminen epäonnistui"
 
-#: src/Content/Feature.php:90
-msgid "Auto-mention Forums"
-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 "Profiilia ei löytynyt."
 
-#: src/Content/Feature.php:90
+#: mod/dfrn_confirm.php:132
 msgid ""
-"Add/remove mention when a forum page is selected/deselected in ACL window."
-msgstr ""
-
-#: src/Content/Feature.php:95
-msgid "Network Sidebar Widgets"
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
 msgstr ""
 
-#: src/Content/Feature.php:96
-msgid "Search by Date"
-msgstr "Päivämäärähaku"
+#: mod/dfrn_confirm.php:242
+msgid "Response from remote site was not understood."
+msgstr "Etäsivuston vastaus oli epäselvä."
 
-#: src/Content/Feature.php:96
-msgid "Ability to select posts by date ranges"
-msgstr ""
+#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254
+msgid "Unexpected response from remote site: "
+msgstr "Odottamaton vastaus etäsivustolta:"
 
-#: src/Content/Feature.php:97 src/Content/Feature.php:127
-msgid "List Forums"
-msgstr "Näytä foorumit"
+#: mod/dfrn_confirm.php:263
+msgid "Confirmation completed successfully."
+msgstr "Vahvistus onnistui."
 
-#: src/Content/Feature.php:97
-msgid "Enable widget to display the forums your are connected with"
-msgstr ""
+#: mod/dfrn_confirm.php:275
+msgid "Temporary failure. Please wait and try again."
+msgstr "Tilapäinen vika. Yritä myöhemmin uudelleen."
 
-#: src/Content/Feature.php:98
-msgid "Group Filter"
-msgstr "Ryhmäsuodatin"
+#: mod/dfrn_confirm.php:278
+msgid "Introduction failed or was revoked."
+msgstr "Kaverikutsu epäonnistui tai oli peruutettu."
 
-#: src/Content/Feature.php:98
-msgid "Enable widget to display Network posts only from selected group"
+#: mod/dfrn_confirm.php:283
+msgid "Remote site reported: "
 msgstr ""
 
-#: src/Content/Feature.php:99
-msgid "Network Filter"
-msgstr "Verkkosuodatin"
+#: mod/dfrn_confirm.php:396
+msgid "Unable to set contact photo."
+msgstr "Kontaktin kuvaa ei voitu asettaa"
 
-#: src/Content/Feature.php:99
-msgid "Enable widget to display Network posts only from selected network"
+#: mod/dfrn_confirm.php:498
+#, php-format
+msgid "No user record found for '%s' "
 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"
-
-#: src/Content/Feature.php:105
-msgid "Network Tabs"
-msgstr "Verkko välilehdet"
+#: mod/dfrn_confirm.php:508
+msgid "Our site encryption key is apparently messed up."
+msgstr "Sivustomme salausavain on sekaisin."
 
-#: src/Content/Feature.php:106
-msgid "Network Personal Tab"
+#: mod/dfrn_confirm.php:519
+msgid "Empty site URL was provided or URL could not be decrypted by us."
 msgstr ""
 
-#: src/Content/Feature.php:106
-msgid "Enable tab to display only Network posts that you've interacted on"
+#: mod/dfrn_confirm.php:535
+msgid "Contact record was not found for you on our site."
 msgstr ""
 
-#: src/Content/Feature.php:107
-msgid "Network New Tab"
+#: mod/dfrn_confirm.php:549
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
 msgstr ""
 
-#: src/Content/Feature.php:107
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+#: 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 ""
 
-#: src/Content/Feature.php:108
-msgid "Network Shared Links Tab"
+#: mod/dfrn_confirm.php:576
+msgid "Unable to set your contact credentials on our system."
 msgstr ""
 
-#: src/Content/Feature.php:108
-msgid "Enable tab to display only Network posts with links in them"
+#: mod/dfrn_confirm.php:631
+msgid "Unable to update your contact profile details on our system"
 msgstr ""
 
-#: src/Content/Feature.php:113
-msgid "Post/Comment Tools"
-msgstr "Julkaisu/kommentti työkalut"
-
-#: src/Content/Feature.php:114
-msgid "Multiple Deletion"
-msgstr ""
+#: mod/dfrn_confirm.php:661 mod/dfrn_request.php:568
+#: src/Model/Contact.php:1537
+msgid "[Name Withheld]"
+msgstr "[Nimi jätetty pois]"
 
-#: src/Content/Feature.php:114
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Valitse ja poista monta julkaisua/kommentia yhtaikaa"
+#: mod/dfrn_confirm.php:694
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s on liittynyt kohteeseen %2$s"
 
-#: src/Content/Feature.php:115
-msgid "Edit Sent Posts"
-msgstr "Muokkaa lähetetyt julkaisut"
+#: mod/manage.php:180
+msgid "Manage Identities and/or Pages"
+msgstr "Hallitse identiteetit ja/tai sivut"
 
-#: src/Content/Feature.php:115
-msgid "Edit and correct posts and comments after sending"
-msgstr "Muokkaa ja korjaa julkaisuja ja kommenteja julkaisun jälkeen"
+#: 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 ""
 
-#: src/Content/Feature.php:116
-msgid "Tagging"
-msgstr "Tunnisteet"
+#: mod/manage.php:182
+msgid "Select an identity to manage: "
+msgstr "Valitse identiteetti hallitavaksi:"
 
-#: src/Content/Feature.php:116
-msgid "Ability to tag existing posts"
-msgstr "Saa merkitä olemassa olevia julkaisuja"
+#: 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ö."
 
-#: src/Content/Feature.php:117
-msgid "Post Categories"
-msgstr "Julkaisuluokat"
+#: mod/wall_attach.php:101
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr ""
 
-#: src/Content/Feature.php:117
-msgid "Add categories to your posts"
-msgstr "Luokittele julkaisusi"
+#: mod/wall_attach.php:101
+msgid "Or - did you try to upload an empty file?"
+msgstr "Yrititkö ladata tyhjän tiedoston?"
 
-#: src/Content/Feature.php:118 src/Content/Widget.php:200
-msgid "Saved Folders"
-msgstr "Tallennetut kansiot"
+#: mod/wall_attach.php:112
+#, php-format
+msgid "File exceeds size limit of %s"
+msgstr "Tiedosto ylittää kokorajoituksen %s"
 
-#: src/Content/Feature.php:118
-msgid "Ability to file posts under folders"
-msgstr ""
+#: mod/wall_attach.php:136 mod/wall_attach.php:152
+msgid "File upload failed."
+msgstr "Tiedoston lähettäminen epäonnistui."
 
-#: src/Content/Feature.php:119
-msgid "Dislike Posts"
-msgstr ""
+#: mod/dfrn_request.php:94
+msgid "This introduction has already been accepted."
+msgstr "Tämä esittely on jo hyväksytty."
 
-#: src/Content/Feature.php:119
-msgid "Ability to dislike posts/comments"
-msgstr ""
+#: 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."
 
-#: src/Content/Feature.php:120
-msgid "Star Posts"
-msgstr "Tähtimerkityt julkaisut"
+#: 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ä."
 
-#: src/Content/Feature.php:120
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Salli julkaisujen tähtimerkintä"
+#: 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."
 
-#: src/Content/Feature.php:121
-msgid "Mute Post Notifications"
-msgstr "Mykistä julkaisuilmoitukset"
+#: 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] ""
 
-#: src/Content/Feature.php:121
-msgid "Ability to mute notifications for a thread"
-msgstr ""
+#: mod/dfrn_request.php:162
+msgid "Introduction complete."
+msgstr "Esittely valmis."
 
-#: src/Content/Feature.php:126
-msgid "Advanced Profile Settings"
-msgstr "Profiilin lisäasetukset"
+#: mod/dfrn_request.php:199
+msgid "Unrecoverable protocol error."
+msgstr "Vakava protokollavirhe."
 
-#: src/Content/Feature.php:127
-msgid "Show visitors public community forums at the Advanced Profile Page"
-msgstr ""
+#: mod/dfrn_request.php:226
+msgid "Profile unavailable."
+msgstr "Profiili ei saatavilla."
 
-#: src/Content/Feature.php:128
-msgid "Tag Cloud"
-msgstr "Tunnistepilvi"
+#: 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."
 
-#: src/Content/Feature.php:128
-msgid "Provide a personal tag cloud on your profile page"
-msgstr "Näytä henkilökohtainen tunnistepilvi profiilisivullasi"
+#: mod/dfrn_request.php:249
+msgid "Spam protection measures have been invoked."
+msgstr "Roskapostisuojaukset otettu käyttöön."
 
-#: src/Content/Feature.php:129
-msgid "Display Membership Date"
-msgstr "Näytä liittymispäivämäärä"
+#: 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ä."
 
-#: src/Content/Feature.php:129
-msgid "Display membership date in profile"
-msgstr "Näytä liittymispäivämäärä profiilissa"
+#: mod/dfrn_request.php:280
+msgid "Invalid locator"
+msgstr "Viallinen paikannin"
 
-#: src/Content/Widget/CalendarExport.php:61
-msgid "Export"
-msgstr "Vie"
+#: mod/dfrn_request.php:316
+msgid "You have already introduced yourself here."
+msgstr "Olet jo esitellyt itsesi täällä."
 
-#: src/Content/Widget/CalendarExport.php:62
-msgid "Export calendar as ical"
-msgstr "Vie kalenteri ical -tiedostona"
+#: 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."
 
-#: src/Content/Widget/CalendarExport.php:63
-msgid "Export calendar as csv"
-msgstr "Vie kalenteri csv-tiedostona"
+#: mod/dfrn_request.php:339
+msgid "Invalid profile URL."
+msgstr "Viallinen profiiliosoite."
 
-#: src/Content/Widget.php:33
-msgid "Add New Contact"
-msgstr "Lisää uusi kontakti"
+#: mod/dfrn_request.php:345 src/Model/Contact.php:1235
+msgid "Disallowed profile URL."
+msgstr "Kielletty profiiliosoite."
 
-#: src/Content/Widget.php:34
-msgid "Enter address or web location"
-msgstr "Syötä verkko-osoite"
+#: 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"
 
-#: src/Content/Widget.php:35
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Esimerkki: bob@example.com, http://example.com/barbara"
+#: mod/dfrn_request.php:419 mod/contacts.php:230
+msgid "Failed to update contact record."
+msgstr "Kontaktitietojen päivitys epäonnistui."
 
-#: 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"
+#: mod/dfrn_request.php:439
+msgid "Your introduction has been sent."
+msgstr "Esittelysi lähetettiin."
 
-#: src/Content/Widget.php:59
-msgid "Find People"
-msgstr "Löydä ihmisiä"
+#: mod/dfrn_request.php:477
+msgid ""
+"Remote subscription can't be done for your network. Please subscribe "
+"directly on your system."
+msgstr ""
 
-#: src/Content/Widget.php:60
-msgid "Enter name or interest"
-msgstr "Syötä nimi tai harrastus"
+#: mod/dfrn_request.php:493
+msgid "Please login to confirm introduction."
+msgstr "Kirjaudu vahvistaaksesi esittelysi."
 
-#: src/Content/Widget.php:62
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Esim. Matti Meikäläinen, kalastus yms."
+#: mod/dfrn_request.php:501
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Väärä identiteetti kirjautuneena sisään. Kirjaudu <strong>tähän</strong> profiiliin."
 
-#: src/Content/Widget.php:63 mod/directory.php:209 mod/contacts.php:820
-msgid "Find"
-msgstr "Etsi"
+#: mod/dfrn_request.php:515 mod/dfrn_request.php:532
+msgid "Confirm"
+msgstr "Vahvista"
 
-#: src/Content/Widget.php:64 mod/suggest.php:114 view/theme/vier/theme.php:203
-msgid "Friend Suggestions"
-msgstr "Ystäväehdotukset"
+#: mod/dfrn_request.php:527
+msgid "Hide this contact"
+msgstr "Piilota kontakti"
 
-#: src/Content/Widget.php:65 view/theme/vier/theme.php:202
-msgid "Similar Interests"
-msgstr "Yhteiset harrastukset"
+#: mod/dfrn_request.php:530
+#, php-format
+msgid "Welcome home %s."
+msgstr "Tervetuloa kotiin %s."
 
-#: src/Content/Widget.php:66
-msgid "Random Profile"
-msgstr "Satunnainen profiili"
+#: mod/dfrn_request.php:531
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Vahvista esittelysi/yhteyspyyntösi henkilölle %s."
 
-#: src/Content/Widget.php:67 view/theme/vier/theme.php:204
-msgid "Invite Friends"
-msgstr "Kutsu kavereita"
+#: 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."
 
-#: src/Content/Widget.php:68
-msgid "View Global Directory"
-msgstr "Katso maailmanlaajuista luetteloa"
+#: 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:"
 
-#: src/Content/Widget.php:159
-msgid "Networks"
-msgstr "Verkot"
+#: mod/dfrn_request.php:645
+#, php-format
+msgid ""
+"If you are not yet a member of the free social web, <a href=\"%s\">follow "
+"this link to find a public Friendica site and join us today</a>."
+msgstr ""
 
-#: src/Content/Widget.php:162
-msgid "All Networks"
-msgstr "Kaikki verkot"
+#: mod/dfrn_request.php:650
+msgid "Friend/Connection Request"
+msgstr "Ystävä/yhteyspyyntö"
 
-#: src/Content/Widget.php:203 src/Content/Widget.php:243
-msgid "Everything"
-msgstr "Kaikki"
+#: 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"
 
-#: src/Content/Widget.php:240
-msgid "Categories"
-msgstr "Luokat"
+#: mod/dfrn_request.php:652 mod/follow.php:149
+msgid "Please answer the following:"
+msgstr "Vastaa seuraavaan:"
 
-#: src/Content/Widget.php:307
+#: mod/dfrn_request.php:653 mod/follow.php:150
 #, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d yhteinen kontakti"
-msgstr[1] "%d yhteistä kontaktia"
+msgid "Does %s know you?"
+msgstr "Tunteeko %s sinut?"
 
-#: src/Content/ContactSelector.php:55
-msgid "Frequently"
-msgstr "Usein"
+#: mod/dfrn_request.php:654 mod/follow.php:151
+msgid "Add a personal note:"
+msgstr "Lisää oma merkintä:"
 
-#: src/Content/ContactSelector.php:56
-msgid "Hourly"
-msgstr "Tunneittain"
+#: mod/dfrn_request.php:656 src/Content/ContactSelector.php:79
+msgid "Friendica"
+msgstr "Friendica"
 
-#: src/Content/ContactSelector.php:57
-msgid "Twice daily"
-msgstr "Kahdesti päivässä"
+#: mod/dfrn_request.php:657
+msgid "GNU Social (Pleroma, Mastodon)"
+msgstr "GNU Social (Pleroma, Mastodon)"
 
-#: src/Content/ContactSelector.php:58
-msgid "Daily"
-msgstr "Päivittäin"
+#: mod/dfrn_request.php:658
+msgid "Diaspora (Socialhome, Hubzilla)"
+msgstr "Diaspora (Socialhome, Hubzilla)"
 
-#: src/Content/ContactSelector.php:59
-msgid "Weekly"
-msgstr "Viikottain"
+#: 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."
 
-#: src/Content/ContactSelector.php:60
-msgid "Monthly"
-msgstr "Kuukausittain"
+#: mod/dfrn_request.php:660 mod/unfollow.php:113 mod/follow.php:157
+msgid "Your Identity Address:"
+msgstr "Identiteettisi osoite:"
 
-#: src/Content/ContactSelector.php:79 mod/dfrn_request.php:656
-msgid "Friendica"
-msgstr "Friendica"
+#: mod/dfrn_request.php:662 mod/unfollow.php:65 mod/follow.php:62
+msgid "Submit Request"
+msgstr "Lähetä pyyntö"
 
-#: src/Content/ContactSelector.php:80
-msgid "OStatus"
-msgstr "OStatus"
+#: mod/filer.php:34
+msgid "- select -"
+msgstr "- valitse -"
 
-#: src/Content/ContactSelector.php:81
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: mod/localtime.php:19 src/Model/Event.php:36 src/Model/Event.php:814
+msgid "l F d, Y \\@ g:i A"
+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 "Sähköposti"
+#: mod/localtime.php:33
+msgid "Time Conversion"
+msgstr "Aikamuunnos"
 
-#: src/Content/ContactSelector.php:83 mod/settings.php:805
-msgid "Diaspora"
-msgstr "Diaspora"
+#: mod/localtime.php:35
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr ""
 
-#: src/Content/ContactSelector.php:84
-msgid "Facebook"
-msgstr "Facebook"
+#: mod/localtime.php:39
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC-aika: %s"
 
-#: src/Content/ContactSelector.php:85
-msgid "Zot!"
-msgstr "Zot!"
+#: mod/localtime.php:42
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Aikavyöhyke: %s"
 
-#: src/Content/ContactSelector.php:86
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: mod/localtime.php:46
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Muunnettu paikallisaika: %s"
 
-#: src/Content/ContactSelector.php:87
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: mod/localtime.php:52
+msgid "Please select your timezone:"
+msgstr "Valitse aikavyöhykkeesi:"
 
-#: src/Content/ContactSelector.php:88
-msgid "MySpace"
-msgstr "MySpace"
+#: mod/notify.php:77
+msgid "No more system notifications."
+msgstr "Ei enää järjestelmäilmoituksia."
 
-#: src/Content/ContactSelector.php:89
-msgid "Google+"
-msgstr "Google+"
+#: mod/ping.php:292
+msgid "{0} wants to be your friend"
+msgstr "{0} lähetti kaveripyynnön"
 
-#: 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 "Diaspora -liitin"
-
-#: src/Content/ContactSelector.php:93
-msgid "GNU Social Connector"
-msgstr "GNU social -liitin"
-
-#: src/Content/ContactSelector.php:94
-msgid "pnut"
-msgstr "pnut"
+#: mod/ping.php:307
+msgid "{0} sent you a message"
+msgstr "{0} lähetti sinulle viestin"
 
-#: src/Content/ContactSelector.php:95
-msgid "App.net"
-msgstr "App.net"
+#: mod/ping.php:322
+msgid "{0} requested registration"
+msgstr "{0} jätti rekisteröintipyynnön"
 
-#: src/Content/ContactSelector.php:125
-msgid "Male"
-msgstr "Mies"
+#: mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Tökkää"
 
-#: src/Content/ContactSelector.php:125
-msgid "Female"
-msgstr "Nainen"
+#: mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Currently Male"
-msgstr "Tällä hetkellä mies"
+#: mod/poke.php:194
+msgid "Recipient"
+msgstr "Vastaanottaja"
 
-#: src/Content/ContactSelector.php:125
-msgid "Currently Female"
-msgstr "Tällä hetkellä nainen"
+#: mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Valitse mitä haluat tehdä vastaanottajalle"
 
-#: src/Content/ContactSelector.php:125
-msgid "Mostly Male"
-msgstr "Enimmäkseen mies"
+#: mod/poke.php:198
+msgid "Make this post private"
+msgstr "Muuta julkaisu yksityiseksi"
 
-#: src/Content/ContactSelector.php:125
-msgid "Mostly Female"
-msgstr "Enimmäkseen nainen"
+#: mod/probe.php:14 mod/webfinger.php:17
+msgid "Only logged in users are permitted to perform a probing."
+msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Transgender"
-msgstr "Transsukupuolinen"
+#: mod/profperm.php:28 mod/group.php:83 index.php:443
+msgid "Permission denied"
+msgstr "Käyttöoikeus evätty"
 
-#: src/Content/ContactSelector.php:125
-msgid "Intersex"
-msgstr "Intersukupuolinen"
+#: mod/profperm.php:34 mod/profperm.php:65
+msgid "Invalid profile identifier."
+msgstr "Virheellinen profiilitunniste."
 
-#: src/Content/ContactSelector.php:125
-msgid "Transsexual"
-msgstr "Transsukupuolinen"
+#: mod/profperm.php:111
+msgid "Profile Visibility Editor"
+msgstr "Profiilin näkyvyyden muokkaaminen"
 
-#: src/Content/ContactSelector.php:125
-msgid "Hermaphrodite"
-msgstr "Hermafrodiitti"
+#: 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ä."
 
-#: src/Content/ContactSelector.php:125
-msgid "Neuter"
-msgstr "Neutri"
+#: mod/profperm.php:124
+msgid "Visible To"
+msgstr "Näkyvyys"
 
-#: src/Content/ContactSelector.php:125
-msgid "Non-specific"
-msgstr "Ei-binäärinen"
+#: mod/profperm.php:140
+msgid "All Contacts (with secure profile access)"
+msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Other"
-msgstr "Toinen"
+#: mod/regmod.php:68
+msgid "Account approved."
+msgstr "Tili hyväksytty."
 
-#: src/Content/ContactSelector.php:147
-msgid "Males"
-msgstr "Miehet"
+#: mod/regmod.php:93
+#, php-format
+msgid "Registration revoked for %s"
+msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Females"
-msgstr "Naiset"
+#: mod/regmod.php:102
+msgid "Please login."
+msgstr "Ole hyvä ja kirjaudu."
 
-#: src/Content/ContactSelector.php:147
-msgid "Gay"
-msgstr "Homo"
+#: mod/search.php:37 mod/network.php:194
+msgid "Remove term"
+msgstr "Poista kohde"
 
-#: src/Content/ContactSelector.php:147
-msgid "Lesbian"
-msgstr "Lesbo"
+#: mod/search.php:46 mod/network.php:201 src/Content/Feature.php:100
+msgid "Saved Searches"
+msgstr "Tallennetut haut"
 
-#: src/Content/ContactSelector.php:147
-msgid "No Preference"
+#: mod/search.php:105
+msgid "Only logged in users are permitted to perform a search."
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Bisexual"
-msgstr "Biseksuaali"
+#: mod/search.php:129
+msgid "Too Many Requests"
+msgstr "Liian monta pyyntöä"
 
-#: src/Content/ContactSelector.php:147
-msgid "Autosexual"
+#: mod/search.php:130
+msgid "Only one search per minute is permitted for not logged in users."
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Abstinent"
-msgstr "Selibaatissa elävä"
-
-#: src/Content/ContactSelector.php:147
-msgid "Virgin"
-msgstr "Neitsyt"
+#: mod/search.php:228 mod/community.php:141
+msgid "No results."
+msgstr "Ei tuloksia."
 
-#: src/Content/ContactSelector.php:147
-msgid "Deviant"
-msgstr ""
+#: mod/search.php:234
+#, php-format
+msgid "Items tagged with: %s"
+msgstr "Kohteet joilla tunnisteet: %s"
 
-#: src/Content/ContactSelector.php:147
-msgid "Fetish"
-msgstr ""
+#: mod/search.php:236 mod/contacts.php:819
+#, php-format
+msgid "Results for: %s"
+msgstr "Tulokset haulla: %s"
 
-#: src/Content/ContactSelector.php:147
-msgid "Oodles"
+#: mod/subthread.php:113
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Nonsexual"
-msgstr "Aseksuaali"
+#: mod/tagrm.php:47
+msgid "Tag removed"
+msgstr "Tägi poistettiin"
 
-#: src/Content/ContactSelector.php:169
-msgid "Single"
-msgstr "Sinkku"
+#: mod/tagrm.php:85
+msgid "Remove Item Tag"
+msgstr "Poista tägi"
 
-#: src/Content/ContactSelector.php:169
-msgid "Lonely"
-msgstr "Yksinäinen"
+#: mod/tagrm.php:87
+msgid "Select a tag to remove: "
+msgstr "Valitse tägi poistamista varten:"
 
-#: src/Content/ContactSelector.php:169
-msgid "Available"
-msgstr ""
+#: mod/tagrm.php:98 mod/delegate.php:177
+msgid "Remove"
+msgstr "Poista"
 
-#: src/Content/ContactSelector.php:169
-msgid "Unavailable"
-msgstr ""
+#: mod/uexport.php:44
+msgid "Export account"
+msgstr "Vie tili"
 
-#: src/Content/ContactSelector.php:169
-msgid "Has crush"
-msgstr "Ihastunut"
+#: 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."
 
-#: src/Content/ContactSelector.php:169
-msgid "Infatuated"
-msgstr "Hullaantunut"
+#: mod/uexport.php:45
+msgid "Export all"
+msgstr "Vie kaikki"
 
-#: src/Content/ContactSelector.php:169
-msgid "Dating"
-msgstr "Seurustelee"
+#: 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ä)"
 
-#: src/Content/ContactSelector.php:169
-msgid "Unfaithful"
-msgstr ""
+#: mod/uexport.php:52 mod/settings.php:108
+msgid "Export personal data"
+msgstr "Vie henkilökohtaiset tiedot"
 
-#: src/Content/ContactSelector.php:169
-msgid "Sex Addict"
-msgstr ""
+#: mod/viewcontacts.php:87
+msgid "No contacts."
+msgstr "Ei kontakteja."
 
-#: src/Content/ContactSelector.php:169
-msgid "Friends/Benefits"
-msgstr ""
+#: mod/viewsrc.php:12 mod/community.php:34
+msgid "Access denied."
+msgstr "Käyttö estetty."
 
-#: src/Content/ContactSelector.php:169
-msgid "Casual"
-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 "Kuva ylittää kokorajoituksen %s"
 
-#: src/Content/ContactSelector.php:169
-msgid "Engaged"
-msgstr "Kihloissa"
+#: 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."
 
-#: src/Content/ContactSelector.php:169
-msgid "Married"
-msgstr "Naimisissa"
+#: 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"
 
-#: src/Content/ContactSelector.php:169
-msgid "Imaginarily married"
-msgstr ""
+#: 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."
 
-#: src/Content/ContactSelector.php:169
-msgid "Partners"
-msgstr "Kumppanit"
+#: 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."
 
-#: src/Content/ContactSelector.php:169
-msgid "Cohabiting"
-msgstr "Avoliitossa"
+#: mod/wallmessage.php:57 mod/message.php:73
+msgid "No recipient selected."
+msgstr "Vastaanottaja puuttuu."
 
-#: src/Content/ContactSelector.php:169
-msgid "Common law"
-msgstr "Avoliitossa"
+#: mod/wallmessage.php:60
+msgid "Unable to check your home location."
+msgstr "Kotisijaintisi ei voitu tarkistaa."
 
-#: src/Content/ContactSelector.php:169
-msgid "Happy"
-msgstr "Iloinen"
+#: mod/wallmessage.php:63 mod/message.php:80
+msgid "Message could not be sent."
+msgstr "Viestiä ei voitu lähettää."
 
-#: src/Content/ContactSelector.php:169
-msgid "Not looking"
-msgstr "Ei etsi"
+#: mod/wallmessage.php:66 mod/message.php:83
+msgid "Message collection failure."
+msgstr "Viestin noutaminen epäonnistui."
 
-#: src/Content/ContactSelector.php:169
-msgid "Swinger"
-msgstr ""
+#: mod/wallmessage.php:69 mod/message.php:86
+msgid "Message sent."
+msgstr "Viesti lähetetty."
 
-#: src/Content/ContactSelector.php:169
-msgid "Betrayed"
-msgstr "Petetty"
+#: mod/wallmessage.php:86 mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Vastaanottaja puuttuu."
 
-#: src/Content/ContactSelector.php:169
-msgid "Separated"
+#: 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 ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Unstable"
-msgstr "Epävakaa"
+#: mod/wallmessage.php:134 mod/message.php:251 mod/message.php:421
+msgid "To:"
+msgstr "Vastaanottaja:"
 
-#: src/Content/ContactSelector.php:169
-msgid "Divorced"
-msgstr "Eronnut"
+#: mod/wallmessage.php:135 mod/message.php:255 mod/message.php:423
+msgid "Subject:"
+msgstr "Aihe:"
 
-#: src/Content/ContactSelector.php:169
-msgid "Imaginarily divorced"
-msgstr ""
+#: mod/wallmessage.php:141 mod/message.php:259 mod/message.php:426
+#: mod/invite.php:149
+msgid "Your message:"
+msgstr "Viestisi:"
 
-#: src/Content/ContactSelector.php:169
-msgid "Widowed"
-msgstr "Leski"
+#: mod/bookmarklet.php:23 src/Content/Nav.php:114 src/Module/Login.php:312
+msgid "Login"
+msgstr "Kirjaudu sisään"
 
-#: src/Content/ContactSelector.php:169
-msgid "Uncertain"
-msgstr "Epävarma"
+#: mod/bookmarklet.php:51
+msgid "The post was created"
+msgstr "Julkaisu luotu"
 
-#: src/Content/ContactSelector.php:169
-msgid "It's complicated"
-msgstr "Se on monimutkaista"
+#: mod/editpost.php:25 mod/editpost.php:35
+msgid "Item not found"
+msgstr "Kohdetta ei löytynyt"
 
-#: src/Content/ContactSelector.php:169
-msgid "Don't care"
-msgstr "Ei ole väliä"
+#: mod/editpost.php:42
+msgid "Edit post"
+msgstr "Muokkaa viestiä"
 
-#: src/Content/ContactSelector.php:169
-msgid "Ask me"
-msgstr "Kysy minulta"
+#: mod/editpost.php:134 src/Core/ACL.php:315
+msgid "CC: email addresses"
+msgstr "Kopio: sähköpostiosoitteet"
 
-#: src/Content/OEmbed.php:253
-msgid "Embedding disabled"
-msgstr "Upottaminen poistettu käytöstä"
+#: 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"
 
-#: src/Content/OEmbed.php:373
-msgid "Embedded content"
-msgstr "Upotettu sisältö"
+#: mod/fsuggest.php:72
+msgid "Friend suggestion sent."
+msgstr "Ystäväehdotus lähetettiin."
 
-#: src/Content/ForumManager.php:127 view/theme/vier/theme.php:256
-msgid "External link to forum"
-msgstr "Ulkoinen linkki foorumiin"
+#: mod/fsuggest.php:101
+msgid "Suggest Friends"
+msgstr "Ehdota ystäviä"
 
-#: src/Content/Nav.php:53
-msgid "Nothing new here"
-msgstr ""
+#: mod/fsuggest.php:103
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Ehdota ystävää ystävälle %s"
 
-#: src/Content/Nav.php:57
-msgid "Clear notifications"
-msgstr "Tyhjennä ilmoitukset"
+#: mod/group.php:36
+msgid "Group created."
+msgstr "Ryhmä luotu."
 
-#: src/Content/Nav.php:97 src/Module/Login.php:311
-#: view/theme/frio/theme.php:256
-msgid "Logout"
-msgstr "Kirjaudu ulos"
+#: mod/group.php:42
+msgid "Could not create group."
+msgstr "Ryhmää ei voitu luoda."
 
-#: src/Content/Nav.php:97 view/theme/frio/theme.php:256
-msgid "End this session"
-msgstr "Lopeta istunto"
+#: mod/group.php:56 mod/group.php:157
+msgid "Group not found."
+msgstr "Ryhmää ei löytynyt."
 
-#: 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"
+#: mod/group.php:70
+msgid "Group name changed."
+msgstr "Ryhmän nimi muutettu."
 
-#: src/Content/Nav.php:101 view/theme/frio/theme.php:260
-msgid "Your profile page"
-msgstr "Oma profiilisivu"
+#: mod/group.php:97
+msgid "Save Group"
+msgstr "Tallenna ryhmä"
 
-#: src/Content/Nav.php:102 view/theme/frio/theme.php:261
-msgid "Your photos"
-msgstr "Omat kuvat"
+#: mod/group.php:102
+msgid "Create a group of contacts/friends."
+msgstr "Luo kontakti/kaveriryhmä"
 
-#: src/Content/Nav.php:103 view/theme/frio/theme.php:262
-msgid "Your videos"
-msgstr "Omat videot"
+#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421
+msgid "Group Name: "
+msgstr "Ryhmän nimi:"
 
-#: src/Content/Nav.php:104 view/theme/frio/theme.php:263
-msgid "Your events"
-msgstr "Omat tapahtumat"
+#: mod/group.php:127
+msgid "Group removed."
+msgstr "Ryhmä poistettu."
 
-#: src/Content/Nav.php:105
-msgid "Personal notes"
-msgstr ""
+#: mod/group.php:129
+msgid "Unable to remove group."
+msgstr "Ryhmää ei voida poistaa."
 
-#: src/Content/Nav.php:105
-msgid "Your personal notes"
-msgstr ""
+#: mod/group.php:192
+msgid "Delete Group"
+msgstr "Poista ryhmä"
 
-#: src/Content/Nav.php:114 src/Module/Login.php:312 mod/bookmarklet.php:23
-msgid "Login"
-msgstr "Kirjaudu sisään"
+#: mod/group.php:198
+msgid "Group Editor"
+msgstr "Ryhmien muokkausta"
 
-#: src/Content/Nav.php:114
-msgid "Sign in"
-msgstr "Kirjaudu sisään"
+#: mod/group.php:203
+msgid "Edit Group Name"
+msgstr "Muokkaa ryhmän nimeä"
 
-#: src/Content/Nav.php:124 src/Content/Nav.php:181
-#: src/Core/NotificationsManager.php:192
-msgid "Home"
-msgstr "Koti"
+#: mod/group.php:213
+msgid "Members"
+msgstr "Jäsenet"
 
-#: src/Content/Nav.php:124
-msgid "Home Page"
-msgstr "Kotisivu"
+#: mod/group.php:215 mod/contacts.php:719
+msgid "All Contacts"
+msgstr "Kaikki yhteystiedot"
 
-#: src/Content/Nav.php:128 src/Module/Login.php:283 mod/register.php:279
-msgid "Register"
-msgstr "Rekisteröidy"
+#: mod/group.php:216 mod/network.php:639
+msgid "Group is empty"
+msgstr "Ryhmä on tyhjä"
 
-#: src/Content/Nav.php:128
-msgid "Create an account"
-msgstr "Luo tili"
+#: mod/group.php:229
+msgid "Remove Contact"
+msgstr "Poista kontakti"
 
-#: src/Content/Nav.php:134 mod/help.php:54 view/theme/vier/theme.php:298
-msgid "Help"
-msgstr "Ohje"
+#: mod/group.php:253
+msgid "Add Contact"
+msgstr "Lisää kontakti"
 
-#: src/Content/Nav.php:134
-msgid "Help and documentation"
-msgstr "Ohjeet ja dokmentointi"
+#: mod/message.php:30 src/Content/Nav.php:195
+msgid "New Message"
+msgstr "Uusi viesti"
 
-#: src/Content/Nav.php:138
-msgid "Apps"
-msgstr "Sovellukset"
+#: mod/message.php:77
+msgid "Unable to locate contact information."
+msgstr "Kontaktin tiedot ei löydy."
 
-#: src/Content/Nav.php:138
-msgid "Addon applications, utilities, games"
-msgstr "Lisäosa sovelluksia, apuohjelmia, pelejä"
+#: mod/message.php:112 view/theme/frio/theme.php:268 src/Content/Nav.php:192
+msgid "Messages"
+msgstr "Viestit"
 
-#: src/Content/Nav.php:142
-msgid "Search site content"
-msgstr "Sivustohaku"
+#: mod/message.php:136
+msgid "Do you really want to delete this message?"
+msgstr "Haluatko varmasti poistaa viestin?"
 
-#: src/Content/Nav.php:165
-msgid "Community"
-msgstr "Yhteisö"
+#: mod/message.php:156
+msgid "Message deleted."
+msgstr "Viesti poistettu."
 
-#: src/Content/Nav.php:165
-msgid "Conversations on this and other servers"
-msgstr "Keskustelut täällä ja muilla palvelimilla"
+#: mod/message.php:185
+msgid "Conversation removed."
+msgstr "Keskustelu poistettu."
 
-#: src/Content/Nav.php:172
-msgid "Directory"
-msgstr "Luettelo"
+#: mod/message.php:291
+msgid "No messages."
+msgstr "Ei viestejä."
 
-#: src/Content/Nav.php:172
-msgid "People directory"
-msgstr "Henkilöluettelo"
+#: mod/message.php:330
+msgid "Message not available."
+msgstr "Viesti ei saatavilla."
 
-#: src/Content/Nav.php:174 mod/admin.php:179
-msgid "Information"
-msgstr "Tietoja"
+#: mod/message.php:397
+msgid "Delete message"
+msgstr "Poista viesti"
 
-#: src/Content/Nav.php:174
-msgid "Information about this friendica instance"
-msgstr "Lisätietoja tästä Friendica -instanssista"
+#: mod/message.php:399 mod/message.php:500
+msgid "D, d M Y - g:i A"
+msgstr ""
 
-#: src/Content/Nav.php:178 src/Core/NotificationsManager.php:178
-#: mod/admin.php:758 view/theme/frio/theme.php:266
-msgid "Network"
-msgstr "Verkko"
+#: mod/message.php:414 mod/message.php:497
+msgid "Delete conversation"
+msgstr "Poista keskustelu"
 
-#: src/Content/Nav.php:178 view/theme/frio/theme.php:266
-msgid "Conversations from your friends"
-msgstr "Kavereiden keskustelut"
+#: mod/message.php:416
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr ""
 
-#: src/Content/Nav.php:179
-msgid "Network Reset"
-msgstr "Verkon nollaus"
+#: mod/message.php:420
+msgid "Send Reply"
+msgstr "Lähetä vastaus"
 
-#: src/Content/Nav.php:179
-msgid "Load Network page with no filters"
-msgstr ""
+#: mod/message.php:471
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Tuntematon lähettäjä - %s"
 
-#: src/Content/Nav.php:185 src/Core/NotificationsManager.php:199
-msgid "Introductions"
-msgstr "Esittelyt"
+#: mod/message.php:473
+#, php-format
+msgid "You and %s"
+msgstr "Sinä ja %s"
 
-#: src/Content/Nav.php:185
-msgid "Friend Requests"
-msgstr "Kaveripyynnöt"
+#: mod/message.php:475
+#, php-format
+msgid "%s and You"
+msgstr "%s ja sinä"
 
-#: src/Content/Nav.php:186 mod/notifications.php:98
-msgid "Notifications"
-msgstr "Huomautukset"
+#: mod/message.php:503
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d viesti"
+msgstr[1] "%d viestiä"
 
-#: src/Content/Nav.php:187
-msgid "See all notifications"
-msgstr "Näytä kaikki ilmoitukset"
+#: mod/notes.php:52 src/Model/Profile.php:944
+msgid "Personal Notes"
+msgstr "Henkilökohtaiset tiedot"
 
-#: src/Content/Nav.php:188 mod/settings.php:870
-msgid "Mark as seen"
-msgstr "Merkitse luetuksi"
+#: mod/photos.php:108 src/Model/Profile.php:905
+msgid "Photo Albums"
+msgstr "Valokuva-albumit"
 
-#: src/Content/Nav.php:188
-msgid "Mark all system notifications seen"
-msgstr ""
+#: mod/photos.php:109 mod/photos.php:1713
+msgid "Recent Photos"
+msgstr "Viimeaikaisia kuvia"
 
-#: src/Content/Nav.php:191 mod/message.php:112 view/theme/frio/theme.php:268
-msgid "Messages"
-msgstr "Viestit"
+#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715
+msgid "Upload New Photos"
+msgstr "Lähetä uusia kuvia"
 
-#: src/Content/Nav.php:191 view/theme/frio/theme.php:268
-msgid "Private mail"
-msgstr "Yksityinen posti"
+#: mod/photos.php:126 mod/settings.php:51
+msgid "everybody"
+msgstr "kaikki"
 
-#: src/Content/Nav.php:192
-msgid "Inbox"
-msgstr "Saapuneet"
+#: mod/photos.php:184
+msgid "Contact information unavailable"
+msgstr "Kontaktin tietoja ei saatavilla"
 
-#: src/Content/Nav.php:193
-msgid "Outbox"
-msgstr "Lähtevät"
+#: mod/photos.php:204
+msgid "Album not found."
+msgstr "Albumia ei ole."
 
-#: src/Content/Nav.php:194 mod/message.php:30
-msgid "New Message"
-msgstr "Uusi viesti"
+#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161
+msgid "Delete Album"
+msgstr "Poista albumi"
 
-#: src/Content/Nav.php:197
-msgid "Manage"
-msgstr "Hallitse"
+#: 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?"
 
-#: src/Content/Nav.php:197
-msgid "Manage other pages"
-msgstr "Hallitse muita sivuja"
+#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446
+msgid "Delete Photo"
+msgstr "Poista valokuva"
 
-#: src/Content/Nav.php:200 mod/settings.php:93
-msgid "Delegations"
-msgstr ""
+#: mod/photos.php:319
+msgid "Do you really want to delete this photo?"
+msgstr "Haluatko varmasti poistaa kuvan?"
 
-#: src/Content/Nav.php:200 mod/delegate.php:169
-msgid "Delegate Page Management"
-msgstr ""
+#: mod/photos.php:667
+msgid "a photo"
+msgstr "valokuva"
 
-#: 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"
+#: 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"
 
-#: src/Content/Nav.php:202 view/theme/frio/theme.php:269
-msgid "Account settings"
-msgstr "Tiliasetukset"
+#: mod/photos.php:769
+msgid "Image upload didn't complete, please try again"
+msgstr "Kuvan lataus ei onnistunut, yritä uudelleen"
 
-#: src/Content/Nav.php:205
-msgid "Manage/Edit Profiles"
-msgstr "Hallitse/muokka profiilit"
+#: mod/photos.php:772
+msgid "Image file is missing"
+msgstr "Kuvatiedosto puuttuu"
 
-#: src/Content/Nav.php:208 view/theme/frio/theme.php:270
-msgid "Manage/edit friends and contacts"
-msgstr "Hallitse/muokkaa kaverit ja kontaktit"
+#: mod/photos.php:777
+msgid ""
+"Server can't accept new file upload at this time, please contact your "
+"administrator"
+msgstr ""
 
-#: src/Content/Nav.php:213 mod/admin.php:222
-msgid "Admin"
-msgstr "Ylläpitäjä"
+#: mod/photos.php:803
+msgid "Image file is empty."
+msgstr "Kuvatiedosto on tyhjä."
 
-#: src/Content/Nav.php:213
-msgid "Site setup and configuration"
-msgstr "Sivuston asennus ja asetukset"
+#: mod/photos.php:940
+msgid "No photos selected"
+msgstr "Ei valittuja kuvia"
 
-#: src/Content/Nav.php:216
-msgid "Navigation"
-msgstr "Navigointi"
+#: mod/photos.php:1036 mod/videos.php:309
+msgid "Access to this item is restricted."
+msgstr "Pääsy kohteeseen on rajoitettu."
 
-#: src/Content/Nav.php:216
-msgid "Site map"
-msgstr "Sivustokartta"
+#: mod/photos.php:1090
+msgid "Upload Photos"
+msgstr "Lähetä kuvia"
 
-#: src/Worker/Delivery.php:390
-msgid "(no subject)"
-msgstr "(ei aihetta)"
+#: mod/photos.php:1094 mod/photos.php:1156
+msgid "New album name: "
+msgstr "Albumin uusi nimi: "
 
-#: src/App.php:511
-msgid "Delete this item?"
-msgstr "Poista tämä kohde?"
+#: mod/photos.php:1095
+msgid "or existing album name: "
+msgstr "tai olemassaolevan albumin nimi: "
 
-#: src/App.php:513
-msgid "show fewer"
-msgstr "näytä vähemmän"
+#: mod/photos.php:1096
+msgid "Do not show a status post for this upload"
+msgstr "Älä näytä tilaviestiä tälle lähetykselle"
 
-#: src/Module/Login.php:86 src/Module/Login.php:134 mod/openid.php:116
-msgid "Login failed."
-msgstr "Kirjautuminen epäonnistui"
+#: mod/photos.php:1098 mod/photos.php:1441 mod/events.php:533
+#: src/Core/ACL.php:318
+msgid "Permissions"
+msgstr "Käyttöoikeudet"
 
-#: src/Module/Login.php:282
-msgid "Create a New Account"
-msgstr "Luo uusi käyttäjätili"
+#: mod/photos.php:1106 mod/photos.php:1449 mod/settings.php:1231
+msgid "Show to Groups"
+msgstr "Näytä ryhmille"
 
-#: src/Module/Login.php:314 mod/lostpass.php:119
-msgid "Nickname or Email: "
-msgstr "Lempinimi tai sähköposti:"
+#: mod/photos.php:1107 mod/photos.php:1450 mod/settings.php:1232
+msgid "Show to Contacts"
+msgstr "Näytä kontakteille"
 
-#: src/Module/Login.php:315
-msgid "Password: "
-msgstr "Salasana:"
+#: mod/photos.php:1167
+msgid "Edit Album"
+msgstr "Muokkaa albumia"
 
-#: src/Module/Login.php:316
-msgid "Remember me"
-msgstr "Muista minut"
+#: mod/photos.php:1172
+msgid "Show Newest First"
+msgstr "Näytä uusin ensin"
 
-#: src/Module/Login.php:319
-msgid "Or login using OpenID: "
-msgstr "Kirjaudu sisään OpenID -tunnuksella:"
+#: mod/photos.php:1174
+msgid "Show Oldest First"
+msgstr "Näytä vanhin ensin"
 
-#: src/Module/Login.php:325
-msgid "Forgot your password?"
-msgstr "Unohditko salasanasi?"
+#: mod/photos.php:1195 mod/photos.php:1698
+msgid "View Photo"
+msgstr "Näytä kuva"
 
-#: src/Module/Login.php:326 mod/lostpass.php:136
-msgid "Password Reset"
-msgstr "Salasanan nollaus"
+#: 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."
 
-#: src/Module/Login.php:328
-msgid "Website Terms of Service"
-msgstr "Verkkosivun käyttöehdot"
+#: mod/photos.php:1238
+msgid "Photo not available"
+msgstr "Kuva ei ole saatavilla"
 
-#: src/Module/Login.php:329
-msgid "terms of service"
-msgstr "käyttöehdot"
+#: mod/photos.php:1301
+msgid "View photo"
+msgstr "Näytä kuva"
 
-#: src/Module/Login.php:331
-msgid "Website Privacy Policy"
-msgstr "Sivuston tietosuojakäytäntö"
+#: mod/photos.php:1301
+msgid "Edit photo"
+msgstr "Muokkaa kuvaa"
 
-#: src/Module/Login.php:332
-msgid "privacy policy"
-msgstr "tietosuojakäytäntö"
+#: mod/photos.php:1302
+msgid "Use as profile photo"
+msgstr "Käytä profiilikuvana"
 
-#: 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"
+#: mod/photos.php:1308 src/Object/Post.php:149
+msgid "Private Message"
+msgstr "Yksityisviesti"
 
-#: src/Module/Tos.php:51
-msgid "Privacy Statement"
-msgstr "Tietosuojalausunto"
+#: mod/photos.php:1327
+msgid "View Full Size"
+msgstr "Näytä täysikokoisena"
 
-#: 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 ""
+#: mod/photos.php:1414
+msgid "Tags: "
+msgstr "Merkinnät:"
 
-#: 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 ""
+#: mod/photos.php:1417
+msgid "[Remove any tag]"
+msgstr "[Poista mikä tahansa merkintä]"
 
-#: src/Module/Tos.php:54
-#, php-format
-msgid ""
-"At any point in time a logged in user can export their account data from the"
-" <a href=\"%1$s/settings/uexport\">account settings</a>. If the user wants "
-"to delete their account they can do so at <a "
-"href=\"%1$s/removeme\">%1$s/removeme</a>. The deletion of the account will "
-"be permanent."
-msgstr ""
+#: mod/photos.php:1432
+msgid "New album name"
+msgstr "Uusi nimi albumille"
 
-#: src/Module/Logout.php:28
-msgid "Logged out."
-msgstr "Kirjautunut ulos."
+#: mod/photos.php:1433
+msgid "Caption"
+msgstr "Kuvateksti"
 
-#: 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"
+#: mod/photos.php:1434
+msgid "Add a Tag"
+msgstr "Lisää merkintä"
 
-#: src/Object/Post.php:128
-msgid "This entry was edited"
-msgstr "Tämä kohde oli muokattu"
+#: mod/photos.php:1434
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Esimerkki: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: src/Object/Post.php:149 mod/photos.php:1308
-msgid "Private Message"
-msgstr "Yksityisviesti"
+#: mod/photos.php:1435
+msgid "Do not rotate"
+msgstr "Älä kierrä"
 
-#: src/Object/Post.php:155 src/Object/Post.php:157 mod/settings.php:737
-msgid "Edit"
-msgstr "Muokkaa"
+#: mod/photos.php:1436
+msgid "Rotate CW (right)"
+msgstr "Käännä oikealle"
 
-#: src/Object/Post.php:182
-msgid "save to folder"
-msgstr "tallenna kansioon"
+#: mod/photos.php:1437
+msgid "Rotate CCW (left)"
+msgstr "Käännä vasemmalle"
 
-#: src/Object/Post.php:235
-msgid "I will attend"
-msgstr "Osallistun"
+#: mod/photos.php:1471 src/Object/Post.php:296
+msgid "I like this (toggle)"
+msgstr "Tykkään tästä (vaihda)"
 
-#: src/Object/Post.php:235
-msgid "I will not attend"
-msgstr "En aio osallistua"
+#: mod/photos.php:1472 src/Object/Post.php:297
+msgid "I don't like this (toggle)"
+msgstr "En tykkää tästä (vaihda)"
 
-#: src/Object/Post.php:235
-msgid "I might attend"
-msgstr "Ehkä osallistun"
+#: 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ä"
 
-#: src/Object/Post.php:263
-msgid "add star"
-msgstr "lisää tähti"
+#: 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"
 
-#: src/Object/Post.php:264
-msgid "remove star"
-msgstr "poista tähti"
+#: mod/photos.php:1634
+msgid "Map"
+msgstr "Kartta"
 
-#: src/Object/Post.php:265
-msgid "toggle star status"
-msgstr "Tähtitila päälle/pois"
+#: mod/photos.php:1704 mod/videos.php:387
+msgid "View Album"
+msgstr "Näytä albumi"
 
-#: src/Object/Post.php:268
-msgid "starred"
-msgstr "tähtimerkitty"
+#: mod/videos.php:139
+msgid "Do you really want to delete this video?"
+msgstr "Haluatko varmasti poistaa tämän videon?"
 
-#: src/Object/Post.php:274
-msgid "ignore thread"
-msgstr "Sivuuta keskustelu"
+#: mod/videos.php:144
+msgid "Delete Video"
+msgstr "Poista video"
 
-#: src/Object/Post.php:275
-msgid "unignore thread"
-msgstr "Seuraa keskustelua"
+#: mod/videos.php:207
+msgid "No videos selected"
+msgstr "Ei videoita valittuna"
 
-#: src/Object/Post.php:276
-msgid "toggle ignore status"
-msgstr "Sivuuta/seuraa"
+#: mod/videos.php:396
+msgid "Recent Videos"
+msgstr "Viimeisimmät videot"
 
-#: src/Object/Post.php:279 mod/ostatus_subscribe.php:83
-msgid "ignored"
-msgstr "ohitettu"
+#: mod/videos.php:398
+msgid "Upload New Videos"
+msgstr "Lataa uusia videoita"
 
-#: src/Object/Post.php:285
-msgid "add tag"
-msgstr "lisää tägi"
+#: 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"
 
-#: src/Object/Post.php:296 mod/photos.php:1471
-msgid "I like this (toggle)"
-msgstr "Tykkään tästä (vaihda)"
+#: 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"
 
-#: src/Object/Post.php:296
-msgid "like"
-msgstr "tykkää"
+#: mod/cal.php:275 mod/events.php:392
+msgid "View"
+msgstr "Katso"
 
-#: src/Object/Post.php:297 mod/photos.php:1472
-msgid "I don't like this (toggle)"
-msgstr "En tykkää tästä (vaihda)"
+#: mod/cal.php:276 mod/events.php:394
+msgid "Previous"
+msgstr "Edellinen"
 
-#: src/Object/Post.php:297
-msgid "dislike"
-msgstr "en tykkää"
+#: mod/cal.php:277 mod/events.php:395 mod/install.php:209
+msgid "Next"
+msgstr "Seuraava"
 
-#: src/Object/Post.php:300
-msgid "Share this"
-msgstr "Jaa tämä"
+#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412
+msgid "today"
+msgstr "tänään"
 
-#: src/Object/Post.php:300
-msgid "share"
-msgstr "jaa"
+#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304
+#: src/Model/Event.php:413
+msgid "month"
+msgstr "kuukausi"
 
-#: src/Object/Post.php:365
-msgid "to"
-msgstr ""
+#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305
+#: src/Model/Event.php:414
+msgid "week"
+msgstr "viikko"
 
-#: src/Object/Post.php:366
-msgid "via"
-msgstr "kautta"
+#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306
+#: src/Model/Event.php:415
+msgid "day"
+msgstr "päivä"
 
-#: src/Object/Post.php:367
-msgid "Wall-to-Wall"
-msgstr "Seinäjulkaisu"
+#: mod/cal.php:284 mod/events.php:404
+msgid "list"
+msgstr "luettelo"
 
-#: src/Object/Post.php:368
-msgid "via Wall-To-Wall:"
-msgstr "seinäjulkaisun kautta"
+#: 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/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"
+#: mod/cal.php:313
+msgid "This calendar format is not supported"
+msgstr "Tätä kalenteriformaattia ei tueta"
 
-#: src/Object/Post.php:427
+#: 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 comment"
-msgid_plural "%d comments"
-msgstr[0] "%d kommentti"
-msgstr[1] "%d kommentteja"
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] "%d kontakti muokattu"
+msgstr[1] "%d kontakteja muokattu"
 
-#: 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ä"
+#: mod/contacts.php:184 mod/contacts.php:400
+msgid "Could not access contact record."
+msgstr "Yhteystietoon ei päästä käsiksi."
 
-#: 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ä"
+#: mod/contacts.php:194
+msgid "Could not locate selected profile."
+msgstr "Valittua profiilia ei löydy."
 
-#: src/Object/Post.php:797
-msgid "Bold"
-msgstr "Lihavoitu"
+#: mod/contacts.php:228
+msgid "Contact updated."
+msgstr "Yhteystietopäivitys onnistui."
 
-#: src/Object/Post.php:798
-msgid "Italic"
-msgstr "Kursivoitu"
+#: mod/contacts.php:421
+msgid "Contact has been blocked"
+msgstr "Henkilö on estetty"
 
-#: src/Object/Post.php:799
-msgid "Underline"
-msgstr "Alleviivaus"
+#: mod/contacts.php:421
+msgid "Contact has been unblocked"
+msgstr "Henkilö on jälleen sallittu"
 
-#: src/Object/Post.php:800
-msgid "Quote"
-msgstr "Lainaus"
+#: mod/contacts.php:432
+msgid "Contact has been ignored"
+msgstr "Henkilöä ei enää huomioida"
 
-#: src/Object/Post.php:801
-msgid "Code"
-msgstr "Koodi"
+#: mod/contacts.php:432
+msgid "Contact has been unignored"
+msgstr "Henkilö on jälleen huomioituna."
 
-#: src/Object/Post.php:802
-msgid "Image"
-msgstr "Kuva"
+#: mod/contacts.php:443
+msgid "Contact has been archived"
+msgstr "Henkilö on arkistoitu."
 
-#: src/Object/Post.php:803
-msgid "Link"
-msgstr "Linkki"
+#: mod/contacts.php:443
+msgid "Contact has been unarchived"
+msgstr "Henkilö on otettu pois arkistosta."
 
-#: src/Object/Post.php:804
-msgid "Video"
-msgstr "Video"
+#: mod/contacts.php:467
+msgid "Drop contact"
+msgstr "Poista kontakti"
 
-#: src/Database/DBStructure.php:32
-msgid "There are no tables on MyISAM."
-msgstr "MyISAMissa ei ole taulukoita."
+#: 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?"
 
-#: 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."
+#: mod/contacts.php:488
+msgid "Contact has been removed."
+msgstr "Yhteystieto on poistettu."
 
-#: src/Database/DBStructure.php:80
+#: mod/contacts.php:519
 #, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "Virheviesti on\n[pre]%s[/pre]"
+msgid "You are mutual friends with %s"
+msgstr "Olet kaveri %s kanssa."
 
-#: src/Database/DBStructure.php:191
+#: mod/contacts.php:523
 #, 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"
+msgid "You are sharing with %s"
+msgstr "Olet jakanut jotakin %s:n kanssa"
 
-#: src/Database/DBStructure.php:460
+#: mod/contacts.php:527
 #, php-format
-msgid "%s: updating %s table."
-msgstr "%s: päivitetään %s-taulukkoa."
+msgid "%s is sharing with you"
+msgstr "%s jakaa sinulle jotakin."
 
-#: src/Core/UserImport.php:104
-msgid "Error decoding account file"
-msgstr ""
+#: mod/contacts.php:547
+msgid "Private communications are not available for this contact."
+msgstr "Yksityiskeskustelu ei ole käytettävissä tälle henkilölle."
 
-#: 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?"
+#: mod/contacts.php:549
+msgid "Never"
+msgstr "Ei koskaan"
 
-#: 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!"
+#: mod/contacts.php:552
+msgid "(Update was successful)"
+msgstr "(Päivitys onnistui)"
 
-#: src/Core/UserImport.php:151
-msgid "User creation error"
-msgstr "Virhe käyttäjän luomisessa"
+#: mod/contacts.php:552
+msgid "(Update was not successful)"
+msgstr "(Päivitys epäonnistui)"
 
-#: src/Core/UserImport.php:169
-msgid "User profile creation error"
-msgstr "Virhe käyttäjäprofiilin luomisessa"
+#: mod/contacts.php:554 mod/contacts.php:992
+msgid "Suggest friends"
+msgstr "Ehdota ystäviä"
 
-#: src/Core/UserImport.php:213
+#: mod/contacts.php:558
 #, 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"
+msgid "Network type: %s"
+msgstr "Verkkotyyppi: %s"
 
-#: 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."
+#: 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/Core/Console/NewPassword.php:78 mod/settings.php:394
+#: mod/contacts.php:571
 msgid ""
-"The new password has been exposed in a public data dump, please choose "
-"another."
+"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/Core/Console/NewPassword.php:82 mod/settings.php:409
-msgid "Password update failed. Please try again."
-msgstr "Salasanan vaihto epäonnistui. Yritä uudelleen."
+#: mod/contacts.php:572 mod/admin.php:1274 mod/admin.php:1437
+#: mod/admin.php:1447
+msgid "Disabled"
+msgstr "Pois käytöstä"
 
-#: src/Core/Console/NewPassword.php:85 mod/settings.php:407
-msgid "Password changed."
-msgstr "Salasana vaihdettu."
+#: mod/contacts.php:573
+msgid "Fetch information"
+msgstr "Nouda tiedot"
 
-#: src/Core/Console/GlobalCommunityBlock.php:69 mod/admin.php:443
-#, php-format
-msgid "Could not find any contact entry for this URL (%s)"
-msgstr ""
+#: mod/contacts.php:574
+msgid "Fetch keywords"
+msgstr "Nouda avainsanat"
 
-#: 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"
+#: mod/contacts.php:575
+msgid "Fetch information and keywords"
+msgstr "Nouda tiedot ja avainsanat"
 
-#: src/Core/ACL.php:295
-msgid "Post to Email"
-msgstr "Viesti sähköpostiin"
+#: mod/contacts.php:599 mod/unfollow.php:100
+msgid "Disconnect/Unfollow"
+msgstr "Katkaise / Lopeta seuraaminen"
 
-#: src/Core/ACL.php:301
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Piilota profiilitietosi tuntemattomilta?"
+#: mod/contacts.php:608
+msgid "Contact"
+msgstr "Kontakti"
 
-#: src/Core/ACL.php:300
+#: mod/contacts.php:611
+msgid "Profile Visibility"
+msgstr "Profiilin näkyvyys"
+
+#: mod/contacts.php:612
 #, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr ""
+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."
 
-#: src/Core/ACL.php:307
-msgid "Visible to everybody"
-msgstr "Näkyvissä kaikille"
+#: mod/contacts.php:613
+msgid "Contact Information / Notes"
+msgstr "Yhteystiedot / Muistiinpanot"
 
-#: src/Core/ACL.php:308 view/theme/vier/config.php:115
-msgid "show"
-msgstr "näytä"
+#: mod/contacts.php:614
+msgid "Their personal note"
+msgstr ""
 
-#: src/Core/ACL.php:309 view/theme/vier/config.php:115
-msgid "don't show"
-msgstr "älä näytä"
+#: mod/contacts.php:616
+msgid "Edit contact notes"
+msgstr "Muokkaa yhteystietojen muistiinpanoja"
 
-#: src/Core/ACL.php:315 mod/editpost.php:134
-msgid "CC: email addresses"
-msgstr "Kopio: sähköpostiosoitteet"
+#: mod/contacts.php:620
+msgid "Block/Unblock contact"
+msgstr "Estä/salli henkilö"
 
-#: 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"
+#: mod/contacts.php:621
+msgid "Ignore contact"
+msgstr "Jätä henkilö huomiotta"
 
-#: src/Core/ACL.php:318 mod/events.php:533 mod/photos.php:1098
-#: mod/photos.php:1441
-msgid "Permissions"
-msgstr "Käyttöoikeudet"
+#: mod/contacts.php:622
+msgid "Repair URL settings"
+msgstr "Korjaa URL-asetukset"
 
-#: src/Core/ACL.php:319
-msgid "Close"
-msgstr "Sulje"
+#: mod/contacts.php:623
+msgid "View conversations"
+msgstr "Katso keskusteluja"
 
-#: src/Core/NotificationsManager.php:171
-msgid "System"
-msgstr "Järjestelmä"
+#: mod/contacts.php:628
+msgid "Last update:"
+msgstr "Viimeksi päivitetty:"
 
-#: src/Core/NotificationsManager.php:185 mod/network.php:955
-#: mod/profiles.php:687
-msgid "Personal"
-msgstr "Henkilökohtainen"
+#: mod/contacts.php:630
+msgid "Update public posts"
+msgstr "Päivitä julkiset postaukset"
 
-#: 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"
+#: mod/contacts.php:632 mod/contacts.php:1002
+msgid "Update now"
+msgstr "Päivitä nyt"
 
-#: src/Core/NotificationsManager.php:267
-#, php-format
-msgid "%s created a new post"
-msgstr "%s loi uuden julkaisun"
+#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
+#: mod/admin.php:485 mod/admin.php:1816
+msgid "Unblock"
+msgstr "Salli"
 
-#: src/Core/NotificationsManager.php:281
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s tykkäsi julkaisusta jonka kirjoitti %s"
+#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
+#: mod/admin.php:484 mod/admin.php:1815
+msgid "Block"
+msgstr "Estä"
 
-#: src/Core/NotificationsManager.php:294
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s ei tykännyt julkaisusta jonka kirjoitti %s"
+#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
+msgid "Unignore"
+msgstr "Ota huomioon"
 
-#: src/Core/NotificationsManager.php:307
-#, php-format
-msgid "%s is attending %s's event"
-msgstr "%s osallistuu tapahtumaan jonka järjestää %s"
+#: mod/contacts.php:642
+msgid "Currently blocked"
+msgstr "Estetty tällä hetkellä"
 
-#: src/Core/NotificationsManager.php:320
-#, php-format
-msgid "%s is not attending %s's event"
-msgstr "%s ei osallistu tapahtumaan jonka järjestää %s"
+#: mod/contacts.php:643
+msgid "Currently ignored"
+msgstr "Jätetty huomiotta tällä hetkellä"
 
-#: src/Core/NotificationsManager.php:333
-#, php-format
-msgid "%s may attend %s's event"
-msgstr "%s ehkä osallistuu tapahtumaan jonka järjestää %s"
+#: mod/contacts.php:644
+msgid "Currently archived"
+msgstr "Arkistoitu tällä hetkellä"
 
-#: src/Core/NotificationsManager.php:350
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s ja %s ovat kavereita"
+#: mod/contacts.php:645
+msgid "Awaiting connection acknowledge"
+msgstr "Odotetaan yhteyden kuittausta"
 
-#: src/Core/NotificationsManager.php:825
-msgid "Friend Suggestion"
-msgstr "Kaveriehdotus"
+#: mod/contacts.php:646
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr ""
 
-#: src/Core/NotificationsManager.php:851
-msgid "Friend/Connect Request"
-msgstr "Ystävä/yhteyspyyntö"
+#: mod/contacts.php:647
+msgid "Notification for new posts"
+msgstr "Uusien postausten ilmoitus"
 
-#: src/Core/NotificationsManager.php:851
-msgid "New Follower"
-msgstr "Uusi seuraaja"
+#: 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"
 
-#: src/Util/Temporal.php:81 src/Util/Temporal.php:83 mod/profiles.php:689
-msgid "Miscellaneous"
-msgstr "Sekalaista"
+#: mod/contacts.php:650
+msgid "Blacklisted keywords"
+msgstr "Kielletyt avainsanat"
 
-#: src/Util/Temporal.php:149 mod/profiles.php:712
-msgid "Age: "
-msgstr "Ikä:"
+#: 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 ""
 
-#: src/Util/Temporal.php:151
-msgid "YYYY-MM-DD or MM-DD"
-msgstr "VVVV-KK-PP tai KK-PP"
+#: mod/contacts.php:662 src/Model/Profile.php:420
+msgid "XMPP:"
+msgstr "XMPP:"
 
-#: src/Util/Temporal.php:294
-msgid "never"
-msgstr "ei ikinä"
+#: mod/contacts.php:667
+msgid "Actions"
+msgstr "Toimenpiteet"
 
-#: src/Util/Temporal.php:300
-msgid "less than a second ago"
-msgstr "alle sekunti sitten"
+#: 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"
 
-#: src/Util/Temporal.php:303
-msgid "year"
-msgstr "vuosi"
+#: mod/contacts.php:670
+msgid "Contact Settings"
+msgstr "Yhteystietoasetukset"
 
-#: src/Util/Temporal.php:303
-msgid "years"
-msgstr "vuotta"
+#: mod/contacts.php:711
+msgid "Suggestions"
+msgstr "Ehdotukset"
 
-#: src/Util/Temporal.php:304
-msgid "months"
-msgstr "kuukautta"
+#: mod/contacts.php:714
+msgid "Suggest potential friends"
+msgstr "Ehdota mahdollisille ystäville"
 
-#: src/Util/Temporal.php:305
-msgid "weeks"
-msgstr "viikkoa"
+#: mod/contacts.php:722
+msgid "Show all contacts"
+msgstr "Näytä kaikki yhteystiedot"
 
-#: src/Util/Temporal.php:306
-msgid "days"
-msgstr "päivää"
+#: mod/contacts.php:727
+msgid "Unblocked"
+msgstr "Sallittu"
 
-#: src/Util/Temporal.php:307
-msgid "hour"
-msgstr "tunti"
+#: mod/contacts.php:730
+msgid "Only show unblocked contacts"
+msgstr "Näytä vain sallitut henkilöt"
 
-#: src/Util/Temporal.php:307
-msgid "hours"
-msgstr "tuntia"
+#: mod/contacts.php:735
+msgid "Blocked"
+msgstr "Estetty"
 
-#: src/Util/Temporal.php:308
-msgid "minute"
-msgstr "minuutti"
+#: mod/contacts.php:738
+msgid "Only show blocked contacts"
+msgstr "Näytä vain estetyt henkilöt"
 
-#: src/Util/Temporal.php:308
-msgid "minutes"
-msgstr "inuuttia"
+#: mod/contacts.php:743
+msgid "Ignored"
+msgstr "Jätetty huomiotta"
 
-#: src/Util/Temporal.php:309
-msgid "second"
-msgstr "sekunti"
+#: mod/contacts.php:746
+msgid "Only show ignored contacts"
+msgstr "Näytä vain henkilöt, jotka jätetty huomiotta"
 
-#: src/Util/Temporal.php:309
-msgid "seconds"
-msgstr "sekuntia"
+#: mod/contacts.php:751
+msgid "Archived"
+msgstr "Arkistoitu"
 
-#: src/Util/Temporal.php:318
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s sitten"
+#: mod/contacts.php:754
+msgid "Only show archived contacts"
+msgstr "Näytä vain arkistoidut henkilöt"
 
-#: src/Protocol/OStatus.php:1251 mod/profile.php:80
-#, php-format
-msgid "%s's timeline"
-msgstr "%s: aikajana"
+#: mod/contacts.php:759
+msgid "Hidden"
+msgstr "Piilotettu"
 
-#: src/Protocol/OStatus.php:1252 mod/profile.php:78
-#, php-format
-msgid "%s's posts"
-msgstr "%s: julkaisut"
+#: mod/contacts.php:762
+msgid "Only show hidden contacts"
+msgstr "Näytä vain piilotetut henkilöt"
 
-#: src/Protocol/OStatus.php:1253 mod/profile.php:79
-#, php-format
-msgid "%s's comments"
-msgstr "%s: kommentit"
+#: mod/contacts.php:818
+msgid "Search your contacts"
+msgstr "Etsi henkilöitä"
 
-#: src/Protocol/OStatus.php:1799
-#, php-format
-msgid "%s is now following %s."
-msgstr "%s seuraa %s."
+#: mod/contacts.php:820 mod/directory.php:209 view/theme/vier/theme.php:203
+#: src/Content/Widget.php:63
+msgid "Find"
+msgstr "Etsi"
 
-#: src/Protocol/OStatus.php:1800
-msgid "following"
-msgstr "seuraa"
+#: mod/contacts.php:826 mod/settings.php:171 mod/settings.php:703
+msgid "Update"
+msgstr "Päivitä"
 
-#: src/Protocol/OStatus.php:1803
-#, php-format
-msgid "%s stopped following %s."
-msgstr "%s ei enää seuraa %s."
+#: mod/contacts.php:829 mod/contacts.php:1027
+msgid "Archive"
+msgstr "Arkistoi"
 
-#: src/Protocol/OStatus.php:1804
-msgid "stopped following"
-msgstr "ei enää seuraa"
+#: mod/contacts.php:829 mod/contacts.php:1027
+msgid "Unarchive"
+msgstr "Poista arkistosta"
 
-#: src/Protocol/Diaspora.php:2680
-msgid "Sharing notification from Diaspora network"
+#: mod/contacts.php:832
+msgid "Batch Actions"
 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/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/directory.php:204
-msgid "Find on this site"
-msgstr ""
+#: mod/contacts.php:866 src/Model/Profile.php:897
+msgid "Profile Details"
+msgstr "Profiilitiedot"
 
-#: mod/directory.php:206
-msgid "Results for:"
-msgstr "Tulokset haulla:"
+#: mod/contacts.php:878
+msgid "View all contacts"
+msgstr "Näytä kaikki kontaktit"
 
-#: mod/directory.php:208
-msgid "Site Directory"
-msgstr "Sivuston luettelo"
+#: mod/contacts.php:889
+msgid "View all common friends"
+msgstr "Näytä kaikki yhteiset kaverit"
 
-#: mod/directory.php:213
-msgid "No entries (some entries may be hidden)."
+#: mod/contacts.php:895 mod/events.php:532 mod/admin.php:1353
+#: src/Model/Profile.php:863
+msgid "Advanced"
 msgstr ""
 
-#: mod/dirfind.php:49
-#, php-format
-msgid "People Search - %s"
-msgstr "Käyttäjähaku - %s"
+#: mod/contacts.php:898
+msgid "Advanced Contact Settings"
+msgstr "Kontakti-lisäasetukset"
 
-#: mod/dirfind.php:60
-#, php-format
-msgid "Forum Search - %s"
-msgstr "Foorumihaku - %s"
+#: mod/contacts.php:930
+msgid "Mutual Friendship"
+msgstr "Yhteinen kaveruus"
 
-#: mod/dirfind.php:253 mod/match.php:125
-msgid "No matches"
-msgstr "Ei täsmääviä profiileja"
+#: mod/contacts.php:934
+msgid "is a fan of yours"
+msgstr "on fanisi"
 
-#: mod/repair_ostatus.php:18
-msgid "Resubscribing to OStatus contacts"
-msgstr ""
+#: mod/contacts.php:938
+msgid "you are a fan of"
+msgstr "fanitat"
 
-#: mod/repair_ostatus.php:34
-msgid "Error"
-msgstr "Virhe"
+#: mod/contacts.php:1013
+msgid "Toggle Blocked status"
+msgstr "Estetty tila päälle/pois"
 
-#: mod/repair_ostatus.php:48 mod/ostatus_subscribe.php:64
-msgid "Done"
-msgstr "Valmis"
+#: mod/contacts.php:1021
+msgid "Toggle Ignored status"
+msgstr "Sivuuta/seuraa"
 
-#: 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/contacts.php:1029
+msgid "Toggle Archive status"
+msgstr "Arkistotila päälle/pois"
 
-#: mod/ping.php:292
-msgid "{0} wants to be your friend"
-msgstr "{0} lähetti kaveripyynnön"
+#: mod/contacts.php:1037
+msgid "Delete contact"
+msgstr "Poista kontakti"
 
-#: mod/ping.php:307
-msgid "{0} sent you a message"
-msgstr "{0} lähetti sinulle viestin"
+#: mod/delegate.php:37
+msgid "Parent user not found."
+msgstr ""
 
-#: mod/ping.php:322
-msgid "{0} requested registration"
-msgstr "{0} jätti rekisteröintipyynnön"
+#: mod/delegate.php:144
+msgid "No parent user"
+msgstr ""
 
-#: mod/suggest.php:36
-msgid "Do you really want to delete this suggestion?"
-msgstr "Haluatko varmasti poistaa ehdotuksen?"
+#: mod/delegate.php:159
+msgid "Parent Password:"
+msgstr ""
 
-#: mod/suggest.php:73
+#: mod/delegate.php:159
 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."
+"Please enter the password of the parent account to legitimize your request."
+msgstr ""
 
-#: mod/suggest.php:84 mod/suggest.php:104
-msgid "Ignore/Hide"
-msgstr "Jätä huomiotta/piilota"
+#: mod/delegate.php:164
+msgid "Parent User"
+msgstr ""
 
-#: 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/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."
@@ -3469,16 +3585,6 @@ msgstr "Jos kuva ei näy heti, lataa sivu uudelleen tai tyhjennä selaimen väli
 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:"
@@ -3487,14 +3593,6 @@ msgstr "Lähetä tiedosto:"
 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"
@@ -3523,382 +3621,218 @@ msgstr "Lopeta muokkaus"
 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/unfollow.php:34
+msgid "Contact wasn't found or can't be unfollowed."
+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 "Friendica -solmullasi käyttäjä poisti tilinsä. Varmista että hänen tiedot poistetaan myös varmuuskopioista."
+#: mod/unfollow.php:47
+msgid "Contact unfollowed"
+msgstr "Kontaktia ei enää seurata"
 
-#: mod/removeme.php:45
-#, php-format
-msgid "The user id is %d"
-msgstr ""
+#: mod/unfollow.php:73
+msgid "You aren't a friend of this contact."
+msgstr "Et ole kontaktin kaveri."
 
-#: mod/removeme.php:76 mod/removeme.php:79
-msgid "Remove My Account"
-msgstr "Poista tilini"
+#: mod/unfollow.php:79
+msgid "Unfollowing is currently not supported by your network."
+msgstr "Seuraamisen lopettaminen ei tällä hetkellä tueta verkossasi."
 
-#: 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/directory.php:152 src/Model/Profile.php:417 src/Model/Profile.php:767
+msgid "Status:"
+msgstr "Tila:"
 
-#: mod/removeme.php:78
-msgid "Please enter your password for verification:"
-msgstr "Syötä salasanasi varmistusta varten:"
+#: mod/directory.php:153 src/Model/Profile.php:418 src/Model/Profile.php:784
+msgid "Homepage:"
+msgstr "Kotisivu:"
 
-#: mod/manage.php:180
-msgid "Manage Identities and/or Pages"
-msgstr "Hallitse identiteetit ja/tai sivut"
+#: mod/directory.php:202 view/theme/vier/theme.php:208
+#: src/Content/Widget.php:68
+msgid "Global Directory"
+msgstr "Maailmanlaajuinen hakemisto"
 
-#: 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"
+#: mod/directory.php:204
+msgid "Find on this site"
 msgstr ""
 
-#: mod/manage.php:182
-msgid "Select an identity to manage: "
-msgstr "Valitse identiteetti hallitavaksi:"
+#: mod/directory.php:206
+msgid "Results for:"
+msgstr "Tulokset haulla:"
 
-#: 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/directory.php:208
+msgid "Site Directory"
+msgstr "Sivuston luettelo"
 
-#: 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."
+#: mod/directory.php:213
+msgid "No entries (some entries may be hidden)."
 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/dirfind.php:49
+#, php-format
+msgid "People Search - %s"
+msgstr "Käyttäjähaku - %s"
 
-#: mod/uimport.php:76
-msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
-msgstr ""
+#: mod/dirfind.php:60
+#, php-format
+msgid "Forum Search - %s"
+msgstr "Foorumihaku - %s"
 
-#: mod/invite.php:33
-msgid "Total invitation limit exceeded."
-msgstr "Kutsuraja ylitetty."
+#: mod/follow.php:45
+msgid "The contact could not be added."
+msgstr "Kontaktia ei voitu lisätä."
 
-#: mod/invite.php:55
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : Virheellinen sähköpostiosoite."
+#: mod/follow.php:73
+msgid "You already added this contact."
+msgstr "Olet jo lisännyt tämän kontaktin."
 
-#: mod/invite.php:87
-msgid "Please join us on Friendica"
-msgstr "Tervetuloa Friendicaan"
+#: 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/invite.php:96
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Kutsuraja ylitetty. Ota yhteyttä ylläpitäjään."
+#: 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/invite.php:100
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : Viestin toimitus epäonnistui."
+#: 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/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/lostpass.php:27
+msgid "No valid account found."
+msgstr "Voimassa olevaa tiliä ei löytynyt."
 
-#: mod/invite.php:122
-msgid "You have no more invitations available"
-msgstr "Sinulla ei ole kutsuja jäljellä"
+#: mod/lostpass.php:39
+msgid "Password reset request issued. Check your email."
+msgstr "Salasanan nollauspyyntö lähetetty. Tarkista sähköpostisi."
 
-#: mod/invite.php:130
+#: mod/lostpass.php:45
 #, 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."
+"\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/invite.php:132
+#: mod/lostpass.php:56
 #, php-format
 msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
+"\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/invite.php:133
+#: mod/lostpass.php:73
 #, 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 ""
+msgid "Password reset requested at %s"
+msgstr "Salasanan nollauspyyntö kohteessa %s"
 
-#: mod/invite.php:137
+#: mod/lostpass.php:89
 msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr ""
+"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/invite.php:141
+#: 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 ""
-"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."
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
 msgstr ""
 
-#: mod/invite.php:140
-#, php-format
-msgid "To accept this invitation, please visit and register at %s."
-msgstr ""
+#: mod/lostpass.php:119 src/Module/Login.php:314
+msgid "Nickname or Email: "
+msgstr "Lempinimi tai sähköposti:"
 
-#: mod/invite.php:147
-msgid "Send invitations"
-msgstr "Lähetä kutsut"
+#: mod/lostpass.php:120
+msgid "Reset"
+msgstr "Nollaus"
 
-#: mod/invite.php:148
-msgid "Enter email addresses, one per line:"
-msgstr "Syötä sähköpostiosoitteet, yksi riviä kohden:"
+#: mod/lostpass.php:136 src/Module/Login.php:326
+msgid "Password Reset"
+msgstr "Salasanan nollaus"
 
-#: mod/invite.php:149 mod/message.php:259 mod/message.php:426
-#: mod/wallmessage.php:141
-msgid "Your message:"
-msgstr "Viestisi:"
+#: mod/lostpass.php:137
+msgid "Your password has been reset as requested."
+msgstr "Salasanasi on nollattu pyynnöstäsi."
 
-#: 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/lostpass.php:138
+msgid "Your new password is"
+msgstr "Uusi salasanasi on"
 
-#: mod/invite.php:152
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr ""
+#: 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/invite.php:152
+#: mod/lostpass.php:141
 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:"
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Salsanaa voi vaihtaa <em>asetussivulta</em> kirjautumisen jälkeen."
 
-#: mod/invite.php:154
+#: mod/lostpass.php:149
+#, php-format
 msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendi.ca"
+"\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/openid.php:29
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID -protokollavirhe. Tunnusta ei vastaanotettu."
-
-#: mod/openid.php:66
+#: mod/lostpass.php:155
+#, php-format
 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"
+"\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/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/lostpass.php:169
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Salasanasi on vaihdettu sivustolla %s"
 
-#: mod/apps.php:19
-msgid "Applications"
-msgstr "Sovellukset"
+#: mod/profiles.php:58
+msgid "Profile deleted."
+msgstr "Profiili poistettiin."
 
-#: 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 <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
-"about the Friendica project."
-msgstr "Vieraile osoitteessa <a href=\"https://friendi.ca\">Friendi.ca</a> 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 <a href=\"%1$s/tos\">Terms of Service</a> of this node."
-msgstr "Lue tämän solmun <a href=\"%1$s/tos\">käyttöehdot</a>."
-
-#: 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:74 mod/profiles.php:110
+msgid "Profile-"
+msgstr "Profiili-"
 
 #: mod/profiles.php:93 mod/profiles.php:132
 msgid "New profile created."
@@ -3991,16 +3925,6 @@ msgstr ""
 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?"
@@ -4025,6 +3949,10 @@ msgstr "Vaihda profiilikuva"
 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"
@@ -4057,10 +3985,19 @@ msgstr "Tilatiedot"
 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:"
@@ -4069,6 +4006,10 @@ msgstr "Sukupuoli:"
 msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
 msgstr "<span class=\"heart\">&hearts;</span> 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"
@@ -4077,10 +4018,6 @@ msgstr "Esimerkki: kalastus valokuvaus ohjelmistot"
 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 <strong>public</strong> profile.<br />It <strong>may</strong> "
@@ -4115,6 +4052,10 @@ msgstr "Postinumero:"
 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)"
@@ -4145,6 +4086,14 @@ msgstr ""
 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:"
@@ -4165,6 +4114,14 @@ msgstr "Yksityiset avainsanat:"
 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"
@@ -4201,5325 +4158,5397 @@ msgstr "Koulutus:"
 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/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/profiles.php:777 src/Model/Profile.php:375 src/Model/Profile.php:397
+msgid "Change profile photo"
+msgstr "Vaihda profiilikuva"
 
-#: mod/events.php:392 mod/cal.php:275
-msgid "View"
-msgstr "Katso"
+#: mod/profiles.php:778 src/Model/Profile.php:376
+msgid "Create New Profile"
+msgstr "Luo uusi profiili"
 
-#: mod/events.php:393
-msgid "Create New Event"
-msgstr "Luo uusi tapahtuma"
+#: 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/events.php:394 mod/cal.php:276
-msgid "Previous"
-msgstr "Edellinen"
+#: mod/register.php:103
+#, php-format
+msgid ""
+"Failed to send email message. Here your accout details:<br> login: %s<br> "
+"password: %s<br><br>You can change your password after login."
+msgstr ""
 
-#: mod/events.php:395 mod/cal.php:277 mod/install.php:209
-msgid "Next"
-msgstr "Seuraava"
+#: mod/register.php:110
+msgid "Registration successful."
+msgstr "Rekisteröityminen onnistui."
 
-#: mod/events.php:404 mod/cal.php:284
-msgid "list"
-msgstr "luettelo"
+#: mod/register.php:115
+msgid "Your registration can not be processed."
+msgstr "Rekisteröintisi ei voida käsitellä."
 
-#: mod/events.php:506
-msgid "Event details"
-msgstr "Tapahtuman tiedot"
+#: 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/events.php:507
-msgid "Starting date and Title are required."
-msgstr "Aloituspvm ja otsikko vaaditaan."
+#: mod/register.php:220
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr ""
 
-#: mod/events.php:508 mod/events.php:509
-msgid "Event Starts:"
-msgstr "Tapahtuma alkaa:"
+#: 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/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/register.php:222
+msgid "Your OpenID (optional): "
+msgstr "OpenID -tunnus (valinnainen):"
 
-#: mod/events.php:512 mod/events.php:513
-msgid "Event Finishes:"
-msgstr "Tapahtuma päättyy:"
+#: mod/register.php:234
+msgid "Include your profile in member directory?"
+msgstr "Lisää profiilisi jäsenluetteloon?"
 
-#: mod/events.php:514 mod/events.php:527
-msgid "Adjust for viewer timezone"
-msgstr "Ota huomioon katsojan aikavyöhyke"
+#: mod/register.php:259
+msgid "Note for the admin"
+msgstr "Viesti ylläpidolle"
 
-#: mod/events.php:516
-msgid "Description:"
-msgstr "Kuvaus:"
+#: 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/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/register.php:260
+msgid "Membership on this site is by invitation only."
+msgstr "Tähän sivustoon voi liittyä vain kutsusta."
 
-#: mod/events.php:552
-msgid "Failed to remove event"
-msgstr "Tapahtuman poisto epäonnistui"
+#: mod/register.php:261
+msgid "Your invitation code: "
+msgstr "Kutsukoodisi:"
 
-#: mod/events.php:554
-msgid "Event removed"
-msgstr "Tapahtuma poistettu"
+#: mod/register.php:264 mod/admin.php:1350
+msgid "Registration"
+msgstr "Rekisteröityminen"
 
-#: mod/notify.php:77
-msgid "No more system notifications."
-msgstr "Ei enää järjestelmäilmoituksia."
+#: 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/notify.php:81 mod/notifications.php:113
-msgid "System Notifications"
-msgstr "Järjestelmäilmoitukset"
+#: 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/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/register.php:273 mod/settings.php:1203
+msgid "New Password:"
+msgstr "Uusi salasana:"
 
-#: mod/fsuggest.php:72
-msgid "Friend suggestion sent."
-msgstr "Ystäväehdotus lähetettiin."
+#: mod/register.php:273
+msgid "Leave empty for an auto generated password."
+msgstr "Jätä tyhjäksi jos haluat automaattisesti luotu salasanan."
 
-#: mod/fsuggest.php:101
-msgid "Suggest Friends"
-msgstr "Ehdota ystäviä"
+#: mod/register.php:274 mod/settings.php:1204
+msgid "Confirm:"
+msgstr "Vahvista:"
 
-#: mod/fsuggest.php:103
+#: mod/register.php:275
 #, php-format
-msgid "Suggest a friend for %s"
-msgstr "Ehdota ystävää ystävälle %s"
+msgid ""
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be '<strong>nickname@%s</strong>'."
+msgstr ""
 
-#: mod/attach.php:15
-msgid "Item not available."
-msgstr "Kohde ei saatavilla."
+#: mod/register.php:276
+msgid "Choose a nickname: "
+msgstr "Valitse lempinimi:"
 
-#: mod/attach.php:25
-msgid "Item was not found."
-msgstr "Kohdetta ei löytynyt."
+#: mod/register.php:279 src/Content/Nav.php:128 src/Module/Login.php:283
+msgid "Register"
+msgstr "Rekisteröidy"
 
-#: mod/allfriends.php:51
-msgid "No friends to display."
-msgstr "Ei näytettäviä kavereita."
+#: mod/register.php:286
+msgid "Import your profile to this friendica instance"
+msgstr "Tuo profiilisi tähän Friendica -instanssiin."
 
-#: mod/viewcontacts.php:87
-msgid "No contacts."
-msgstr "Ei kontakteja."
+#: 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/viewcontacts.php:112 mod/nogroup.php:42 mod/contacts.php:619
-#: mod/contacts.php:959
+#: 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 "Visit %s's profile [%s]"
-msgstr "Näytä %s-käyttäjän profiili [%s]"
+msgid "The user id is %d"
+msgstr ""
 
-#: mod/ostatus_subscribe.php:21
-msgid "Subscribing to OStatus contacts"
-msgstr "OStatus -kontaktien tilaaminen"
+#: mod/removeme.php:76 mod/removeme.php:79
+msgid "Remove My Account"
+msgstr "Poista tilini"
 
-#: mod/ostatus_subscribe.php:33
-msgid "No contact provided."
-msgstr "Kontakti puuttuu."
+#: 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/ostatus_subscribe.php:40
-msgid "Couldn't fetch information for contact."
-msgstr "Kontaktin tietoja ei voitu hakea."
+#: mod/removeme.php:78
+msgid "Please enter your password for verification:"
+msgstr "Syötä salasanasi varmistusta varten:"
 
-#: mod/ostatus_subscribe.php:50
-msgid "Couldn't fetch friends for contact."
-msgstr "Ei voitu hakea kontaktin kaverit."
+#: mod/admin.php:106
+msgid "Theme settings updated."
+msgstr "Teeman asetukset päivitetty."
 
-#: mod/ostatus_subscribe.php:78
-msgid "success"
-msgstr "onnistui"
+#: mod/admin.php:179 src/Content/Nav.php:175
+msgid "Information"
+msgstr "Tietoja"
 
-#: mod/ostatus_subscribe.php:80
-msgid "failed"
-msgstr "epäonnistui"
+#: mod/admin.php:180
+msgid "Overview"
+msgstr "Yleiskatsaus"
 
-#: mod/api.php:85 mod/api.php:107
-msgid "Authorize application connection"
-msgstr "Vahvista sovellusyhteys"
+#: mod/admin.php:181 mod/admin.php:718
+msgid "Federation Statistics"
+msgstr "Liiton tilastotiedot"
 
-#: mod/api.php:86
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Palaa takaisin sovellukseen ja lisää tämä turvakoodi:"
+#: mod/admin.php:182
+msgid "Configuration"
+msgstr "Kokoonpano"
 
-#: mod/api.php:95
-msgid "Please login to continue."
-msgstr "Ole hyvä ja kirjaudu jatkaaksesi."
+#: mod/admin.php:183 mod/admin.php:1347
+msgid "Site"
+msgstr "Sivusto"
 
-#: 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/admin.php:184 mod/admin.php:1275 mod/admin.php:1804 mod/admin.php:1820
+msgid "Users"
+msgstr "Käyttäjät"
 
-#: mod/settings.php:50 mod/photos.php:126
-msgid "everybody"
-msgstr "kaikki"
+#: mod/admin.php:185 mod/admin.php:1920 mod/admin.php:1980 mod/settings.php:87
+msgid "Addons"
+msgstr "Lisäosat"
 
-#: mod/settings.php:55
-msgid "Account"
-msgstr "Tili"
+#: mod/admin.php:186 mod/admin.php:2189 mod/admin.php:2233
+msgid "Themes"
+msgstr "Teemat"
 
-#: mod/settings.php:64 mod/admin.php:187
+#: mod/admin.php:187 mod/settings.php:65
 msgid "Additional features"
 msgstr "Lisäominaisuuksia"
 
-#: mod/settings.php:72
-msgid "Display"
-msgstr "Ulkonäkö"
+#: mod/admin.php:189
+msgid "Database"
+msgstr "Tietokanta"
 
-#: mod/settings.php:79 mod/settings.php:842
-msgid "Social Networks"
-msgstr "Sosiaalinen media"
+#: mod/admin.php:190
+msgid "DB updates"
+msgstr "Tietokannan päivitykset"
 
-#: mod/settings.php:86 mod/admin.php:185 mod/admin.php:1918 mod/admin.php:1978
-msgid "Addons"
-msgstr "Lisäosat"
+#: mod/admin.php:191 mod/admin.php:753
+msgid "Inspect Queue"
+msgstr "Tarkista jono"
 
-#: mod/settings.php:100
-msgid "Connected apps"
-msgstr "Yhdistetyt sovellukset"
+#: mod/admin.php:192
+msgid "Tools"
+msgstr "Työkalut"
 
-#: mod/settings.php:107 mod/uexport.php:52
-msgid "Export personal data"
-msgstr "Vie henkilökohtaiset tiedot"
+#: mod/admin.php:193
+msgid "Contact Blocklist"
+msgstr "Kontaktien estolista"
 
-#: mod/settings.php:114
-msgid "Remove account"
-msgstr "Poista tili"
+#: mod/admin.php:194 mod/admin.php:362
+msgid "Server Blocklist"
+msgstr "Palvelimien estolista"
 
-#: mod/settings.php:168
-msgid "Missing some important data!"
-msgstr "Tärkeää dataa puuttuu!"
+#: mod/admin.php:195 mod/admin.php:521
+msgid "Delete Item"
+msgstr "Poista kohde"
 
-#: mod/settings.php:170 mod/settings.php:701 mod/contacts.php:826
-msgid "Update"
-msgstr "Päivitä"
+#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2307
+msgid "Logs"
+msgstr "Lokit"
 
-#: mod/settings.php:279
-msgid "Failed to connect with email account using the settings provided."
-msgstr ""
+#: mod/admin.php:198 mod/admin.php:2374
+msgid "View Logs"
+msgstr "Katso lokit"
 
-#: mod/settings.php:284
-msgid "Email settings updated."
-msgstr "Sähköpostin asetukset päivitettiin."
+#: mod/admin.php:200
+msgid "Diagnostics"
+msgstr "Diagnostiikka"
 
-#: mod/settings.php:300
-msgid "Features updated"
-msgstr "Ominaisuudet päivitetty"
+#: mod/admin.php:201
+msgid "PHP Info"
+msgstr "PHP tietoja"
 
-#: mod/settings.php:372
-msgid "Relocate message has been send to your contacts"
+#: mod/admin.php:202
+msgid "probe address"
 msgstr ""
 
-#: mod/settings.php:389
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Tyhjä salasanakenttä ei ole sallittu. Salasana ennallaan."
+#: mod/admin.php:203
+msgid "check webfinger"
+msgstr "Tarkista webfinger"
 
-#: mod/settings.php:400
-msgid "Wrong password."
-msgstr "Väärä salasana."
+#: mod/admin.php:222 src/Content/Nav.php:214
+msgid "Admin"
+msgstr "Ylläpitäjä"
 
-#: mod/settings.php:496
-msgid " Please use a shorter name."
-msgstr "Käytä lyhyempää nimeä."
+#: mod/admin.php:223
+msgid "Addon Features"
+msgstr "Lisäosaominaisuudet"
 
-#: mod/settings.php:499
-msgid " Name too short."
-msgstr "Nimi on liian lyhyt."
+#: mod/admin.php:224
+msgid "User registrations waiting for confirmation"
+msgstr "Käyttäjärekisteröinnit odottavat hyväksyntää"
 
-#: mod/settings.php:507
-msgid "Wrong Password"
-msgstr "Väärä salasana"
+#: 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/settings.php:512
-msgid "Invalid email."
-msgstr "Virheellinen sähköposti."
+#: mod/admin.php:303
+msgid "Display Terms of Service"
+msgstr "Näytä käyttöehdot"
 
-#: mod/settings.php:519
-msgid "Cannot change to that email."
+#: 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/settings.php:572
-msgid "Private forum has no privacy permissions. Using default privacy group."
-msgstr ""
+#: mod/admin.php:304
+msgid "Display Privacy Statement"
+msgstr "Näytä tietosuojalausunto"
 
-#: mod/settings.php:575
-msgid "Private forum has no privacy permissions and no default privacy group."
+#: mod/admin.php:304
+#, php-format
+msgid ""
+"Show some informations regarding the needed information to operate the node "
+"according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."
 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/admin.php:305
+msgid "The Terms of Service"
+msgstr "Käyttöehdot"
 
-#: 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/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/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/admin.php:353
+msgid "The blocked domain"
+msgstr "Estetty verkkotunnus"
 
-#: mod/settings.php:678 mod/settings.php:704
-msgid "Consumer Key"
-msgstr "Kuluttajan avain"
+#: mod/admin.php:354 mod/admin.php:372 mod/friendica.php:128
+msgid "Reason for the block"
+msgstr "Eston syy"
 
-#: mod/settings.php:679 mod/settings.php:705
-msgid "Consumer Secret"
-msgstr "Kuluttajasalaisuus"
+#: mod/admin.php:354 mod/admin.php:367
+msgid "The reason why you blocked this domain."
+msgstr "Verkkotunnuksen estosyy."
 
-#: mod/settings.php:680 mod/settings.php:706
-msgid "Redirect"
-msgstr "Uudelleenohjaus"
+#: mod/admin.php:355
+msgid "Delete domain"
+msgstr "Poista verkkotunnus"
 
-#: mod/settings.php:681 mod/settings.php:707
-msgid "Icon url"
-msgstr "Kuvakkeen URL-osoite"
+#: mod/admin.php:355
+msgid "Check to delete this entry from the blocklist"
+msgstr "Laita rasti poistaaksesi kohde estolistalta"
 
-#: mod/settings.php:692
-msgid "You can't edit this application."
-msgstr "Et voi muokata tätä sovellusta."
+#: 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/settings.php:735
-msgid "Connected Apps"
-msgstr "Yhdistetyt sovellukset"
+#: 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/settings.php:739
-msgid "Client key starts with"
-msgstr "Asiakasavain alkaa"
+#: mod/admin.php:365
+msgid "Add new entry to block list"
+msgstr "Lisää uusi kohde estolistaan"
 
-#: mod/settings.php:740
-msgid "No name"
-msgstr "Ei nimeä"
+#: mod/admin.php:366
+msgid "Server Domain"
+msgstr "Palvelimen verkkotunnus"
 
-#: mod/settings.php:741
-msgid "Remove authorization"
-msgstr "Poista lupa"
+#: mod/admin.php:366
+msgid ""
+"The domain of the new server to add to the block list. Do not include the "
+"protocol."
+msgstr ""
 
-#: mod/settings.php:752
-msgid "No Addon settings configured"
-msgstr "Lisäosa-asetukset puuttuvat"
+#: mod/admin.php:367
+msgid "Block reason"
+msgstr "Estosyy"
 
-#: mod/settings.php:761
-msgid "Addon Settings"
-msgstr "Lisäosa-asetukset"
+#: mod/admin.php:368
+msgid "Add Entry"
+msgstr "Lisää merkintä"
 
-#: mod/settings.php:775 mod/admin.php:2442 mod/admin.php:2443
-msgid "Off"
-msgstr "Pois päältä"
+#: mod/admin.php:369
+msgid "Save changes to the blocklist"
+msgstr "Tallenna muutoksia estolistaan"
 
-#: mod/settings.php:775 mod/admin.php:2442 mod/admin.php:2443
-msgid "On"
-msgstr "Päällä"
+#: mod/admin.php:370
+msgid "Current Entries in the Blocklist"
+msgstr "Nykyinen estolista"
 
-#: mod/settings.php:782
-msgid "Additional Features"
-msgstr "Lisäominaisuuksia"
+#: mod/admin.php:373
+msgid "Delete entry from blocklist"
+msgstr "Poista kohde estolistalta"
 
-#: mod/settings.php:805 mod/settings.php:806
-msgid "enabled"
-msgstr "käytössä"
+#: mod/admin.php:376
+msgid "Delete entry from blocklist?"
+msgstr "Poista kohde estolistalta?"
 
-#: mod/settings.php:805 mod/settings.php:806
-msgid "disabled"
-msgstr "pois käytöstä"
+#: mod/admin.php:402
+msgid "Server added to blocklist."
+msgstr "Palvelin lisätty estolistalle"
 
-#: mod/settings.php:805 mod/settings.php:806
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr ""
+#: mod/admin.php:418
+msgid "Site blocklist updated."
+msgstr "Sivuston estolista päivitetty."
 
-#: mod/settings.php:806
-msgid "GNU Social (OStatus)"
-msgstr "GNU Social (OStatus)"
+#: 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/settings.php:837
-msgid "Email access is disabled on this site."
+#: 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/settings.php:847
-msgid "General Social Media Settings"
-msgstr "Yleiset some asetukset"
+#: 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/settings.php:848
-msgid "Disable Content Warning"
-msgstr "Poista sisältövaroitus käytöstä"
+#: mod/admin.php:479
+msgid "Remote Contact Blocklist"
+msgstr "Etäkontakti estolista"
 
-#: mod/settings.php:848
+#: mod/admin.php:480
 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."
+"This page allows you to prevent any message from a remote contact to reach "
+"your node."
 msgstr ""
 
-#: mod/settings.php:849
-msgid "Disable intelligent shortening"
-msgstr ""
+#: mod/admin.php:481
+msgid "Block Remote Contact"
+msgstr "Estä etäkontakti"
 
-#: 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/admin.php:482 mod/admin.php:1806
+msgid "select all"
+msgstr "valitse kaikki"
 
-#: mod/settings.php:850
-msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
-msgstr "Automaattisesti seuraa GNU social (OStatus) seuraajat/mainitsijat"
+#: mod/admin.php:483
+msgid "select none"
+msgstr "älä valitse mitään"
 
-#: 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."
+#: mod/admin.php:486
+msgid "No remote contact is blocked from this node."
 msgstr ""
 
-#: mod/settings.php:851
-msgid "Default group for OStatus contacts"
-msgstr "Oletusryhmä OStatus kontakteille"
+#: mod/admin.php:488
+msgid "Blocked Remote Contacts"
+msgstr "Estetty etäkontaktit"
 
-#: mod/settings.php:852
-msgid "Your legacy GNU Social account"
-msgstr "Vanha GNU social käyttäjätilisi"
+#: mod/admin.php:489
+msgid "Block New Remote Contact"
+msgstr "Estä uusi etäkontakti"
 
-#: 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/admin.php:490
+msgid "Photo"
+msgstr "Kuva"
 
-#: mod/settings.php:855
-msgid "Repair OStatus subscriptions"
-msgstr "Korjaa OStatus tilaukset"
+#: 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/settings.php:859
-msgid "Email/Mailbox Setup"
-msgstr "Sähköpostin asennus"
+#: 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/settings.php:860
+#: mod/admin.php:523
 msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
+"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/settings.php:861
-msgid "Last successful email check:"
-msgstr "Viimeisin onnistunut sähköpostitarkistus:"
+#: 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/settings.php:863
-msgid "IMAP server name:"
-msgstr "IMAP-palvelimen nimi:"
+#: mod/admin.php:525
+msgid "GUID"
+msgstr "GUID"
 
-#: mod/settings.php:864
-msgid "IMAP port:"
-msgstr "IMAP-porttti:"
+#: mod/admin.php:525
+msgid "The GUID of the item you want to delete."
+msgstr "Poistettavan kohteen GUID."
 
-#: mod/settings.php:865
-msgid "Security:"
-msgstr "Turvallisuus:"
+#: mod/admin.php:564
+msgid "Item marked for deletion."
+msgstr "Kohde merkitty poistettavaksi."
 
-#: mod/settings.php:865 mod/settings.php:870
-msgid "None"
-msgstr "Ei mitään"
+#: mod/admin.php:635
+msgid "unknown"
+msgstr "tuntematon"
 
-#: 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"
+#: 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/settings.php:967
+#: mod/admin.php:712
 msgid ""
-"Should the system suppress the warning that the current group contains "
-"members of networks that can't receive non public postings."
+"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
+"will improve the data displayed here."
 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/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/settings.php:969
-msgid "Number of items to display per page:"
+#: mod/admin.php:755
+msgid "ID"
 msgstr ""
 
-#: mod/settings.php:969 mod/settings.php:970
-msgid "Maximum of 100 items"
-msgstr "Enintään 100 kohdetta"
+#: mod/admin.php:756
+msgid "Recipient Name"
+msgstr "Vastaanottajan nimi"
 
-#: mod/settings.php:970
-msgid "Number of items to display per page when viewed from mobile device:"
-msgstr ""
+#: mod/admin.php:757
+msgid "Recipient Profile"
+msgstr "Vastaanottajan profiili"
 
-#: mod/settings.php:971
-msgid "Don't show emoticons"
-msgstr "Piilota hymiöt"
+#: 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/settings.php:972
-msgid "Calendar"
-msgstr "Kalenteri"
+#: mod/admin.php:759
+msgid "Created"
+msgstr "Luotu"
 
-#: mod/settings.php:973
-msgid "Beginning of week:"
-msgstr "Viikon alku:"
+#: mod/admin.php:760
+msgid "Last Tried"
+msgstr "Viimeksi yritetty"
 
-#: mod/settings.php:974
-msgid "Don't show notices"
+#: 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/settings.php:975
-msgid "Infinite scroll"
-msgstr "Loputon selaaminen"
-
-#: mod/settings.php:976
-msgid "Automatic updates only at the top of the network page"
+#: 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 <a href=\"%s\">here</a> for a guide that may be helpful "
+"converting the table engines. You may also use the command <tt>php "
+"bin/console.php dbstructure toinnodb</tt> of your Friendica installation for"
+" an automatic conversion.<br />"
 msgstr ""
 
-#: mod/settings.php:976
+#: mod/admin.php:792
+#, php-format
 msgid ""
-"When disabled, the network page is updated all the time, which could be "
-"confusing while reading."
+"There is a new version of Friendica available for download. Your current "
+"version is %1$s, upstream version is %2$s"
 msgstr ""
 
-#: mod/settings.php:977
-msgid "Bandwith Saver Mode"
-msgstr "Kaistanleveyssäästömoodi"
-
-#: mod/settings.php:977
+#: mod/admin.php:802
 msgid ""
-"When enabled, embedded content is not displayed on automatic updates, they "
-"only show on page reload."
-msgstr ""
+"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/settings.php:978
-msgid "Smart Threading"
-msgstr ""
+#: 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/settings.php:978
+#: mod/admin.php:811
+#, php-format
 msgid ""
-"When enabled, suppress extraneous thread indentation while keeping it where "
-"it matters. Only works if threading is available and enabled."
-msgstr ""
+"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/settings.php:980
-msgid "General Theme Settings"
-msgstr "Yleiset teeman asetukset"
+#: mod/admin.php:816
+msgid "Normal Account"
+msgstr "Perustili"
 
-#: mod/settings.php:981
-msgid "Custom Theme Settings"
-msgstr "Mukautetut teema-asetukset"
+#: mod/admin.php:817
+msgid "Automatic Follower Account"
+msgstr "Automaattinen seuraajatili"
 
-#: mod/settings.php:982
-msgid "Content Settings"
-msgstr "Sisältöasetukset"
+#: mod/admin.php:818
+msgid "Public Forum Account"
+msgstr "Julkinen foorumitili"
 
-#: 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/admin.php:819
+msgid "Automatic Friend Account"
+msgstr "Automaattinen kaveritili"
 
-#: 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/admin.php:820
+msgid "Blog Account"
+msgstr "Blogitili"
 
-#: mod/settings.php:1044
-msgid "Account Types"
-msgstr "Tilityypit"
+#: mod/admin.php:821
+msgid "Private Forum Account"
+msgstr "Yksityinen foorumitili"
 
-#: mod/settings.php:1045
-msgid "Personal Page Subtypes"
-msgstr "Henkilökohtaisen sivun alatyypit"
+#: mod/admin.php:843
+msgid "Message queues"
+msgstr "Viestijonot"
 
-#: mod/settings.php:1046
-msgid "Community Forum Subtypes"
-msgstr "Yhteisöfoorumin alatyypit"
+#: mod/admin.php:849
+msgid "Summary"
+msgstr "Yhteenveto"
 
-#: mod/settings.php:1053 mod/admin.php:1746
-msgid "Personal Page"
-msgstr "Henkilökohtainen sivu"
+#: mod/admin.php:851
+msgid "Registered users"
+msgstr "Rekisteröityneet käyttäjät"
 
-#: mod/settings.php:1054
-msgid "Account for a personal profile."
-msgstr "Henkilökohtaisen profiilin käyttäjätili."
+#: mod/admin.php:853
+msgid "Pending registrations"
+msgstr "Vireillä olevat rekisteröinnit"
 
-#: mod/settings.php:1057 mod/admin.php:1747
-msgid "Organisation Page"
-msgstr "Järjestön sivu"
+#: mod/admin.php:854
+msgid "Version"
+msgstr "Versio"
 
-#: mod/settings.php:1058
-msgid ""
-"Account for an organisation that automatically approves contact requests as "
-"\"Followers\"."
-msgstr ""
+#: mod/admin.php:859
+msgid "Active addons"
+msgstr "Käytössäolevat lisäosat"
 
-#: mod/settings.php:1061 mod/admin.php:1748
-msgid "News Page"
-msgstr "Uutissivu"
+#: mod/admin.php:890
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "Ei voitu jäsentää perusosoitetta. Täytyy sisältää ainakin <scheme>://<domain>"
 
-#: mod/settings.php:1062
-msgid ""
-"Account for a news reflector that automatically approves contact requests as"
-" \"Followers\"."
-msgstr ""
+#: mod/admin.php:1210
+msgid "Site settings updated."
+msgstr "Sivuston asetukset päivitettiin."
 
-#: mod/settings.php:1065 mod/admin.php:1749
-msgid "Community Forum"
-msgstr "Yhteisöfoorumi"
+#: mod/admin.php:1237 mod/settings.php:907
+msgid "No special theme for mobile devices"
+msgstr "Ei mobiiliteemaa"
 
-#: mod/settings.php:1066
-msgid "Account for community discussions."
+#: mod/admin.php:1266
+msgid "No community page for local users"
 msgstr ""
 
-#: mod/settings.php:1069 mod/admin.php:1739
-msgid "Normal Account Page"
-msgstr "Tavallinen käyttäjätili"
+#: mod/admin.php:1267
+msgid "No community page"
+msgstr "Ei yhteisösivua"
 
-#: mod/settings.php:1070
-msgid ""
-"Account for a regular personal profile that requires manual approval of "
-"\"Friends\" and \"Followers\"."
-msgstr ""
+#: mod/admin.php:1268
+msgid "Public postings from users of this site"
+msgstr "Julkiset julkaisut tämän sivuston käyttäjiltä"
 
-#: mod/settings.php:1073 mod/admin.php:1740
-msgid "Soapbox Page"
-msgstr "Saarnatuoli sivu"
+#: mod/admin.php:1269
+msgid "Public postings from the federated network"
+msgstr "Julkiset julkaisut liittoutuneelta verkolta"
 
-#: mod/settings.php:1074
-msgid ""
-"Account for a public profile that automatically approves contact requests as"
-" \"Followers\"."
+#: 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/settings.php:1077 mod/admin.php:1741
-msgid "Public Forum"
-msgstr "Julkinen foorumi"
+#: mod/admin.php:1281
+msgid "One month"
+msgstr "Yksi kuukausi"
 
-#: mod/settings.php:1078
-msgid "Automatically approves all contact requests."
-msgstr "Automaattisesti hyväksyy kaikki kontaktipyynnöt"
+#: mod/admin.php:1282
+msgid "Three months"
+msgstr "Kolme kuukautta"
 
-#: mod/settings.php:1081 mod/admin.php:1742
-msgid "Automatic Friend Page"
-msgstr ""
+#: mod/admin.php:1283
+msgid "Half a year"
+msgstr "Puoli vuotta"
 
-#: mod/settings.php:1082
-msgid ""
-"Account for a popular profile that automatically approves contact requests "
-"as \"Friends\"."
-msgstr ""
+#: mod/admin.php:1284
+msgid "One year"
+msgstr "Yksi vuosi"
 
-#: mod/settings.php:1085
-msgid "Private Forum [Experimental]"
-msgstr "Yksityisfoorumi [kokeellinen]"
+#: mod/admin.php:1289
+msgid "Multi user instance"
+msgstr "Monen käyttäjän instanssi"
 
-#: mod/settings.php:1086
-msgid "Requires manual approval of contact requests."
-msgstr ""
+#: mod/admin.php:1312
+msgid "Closed"
+msgstr "Suljettu"
 
-#: mod/settings.php:1097
-msgid "OpenID:"
-msgstr "OpenID:"
+#: mod/admin.php:1313
+msgid "Requires approval"
+msgstr "Edellyttää hyväksyntää"
 
-#: mod/settings.php:1097
-msgid "(Optional) Allow this OpenID to login to this account."
+#: mod/admin.php:1314
+msgid "Open"
+msgstr "Avoin"
+
+#: mod/admin.php:1318
+msgid "No SSL policy, links will track page SSL state"
 msgstr ""
 
-#: mod/settings.php:1105
-msgid "Publish your default profile in your local site directory?"
-msgstr "Julkaise oletusprofiilisi tämän sivuston paikallisluettelossa?"
+#: mod/admin.php:1319
+msgid "Force all links to use SSL"
+msgstr "Pakota kaikki linkit käyttämään SSL-yhteyttä"
 
-#: mod/settings.php:1105
-#, php-format
-msgid ""
-"Your profile will be published in the global friendica directories (e.g. <a "
-"href=\"%s\">%s</a>). Your profile will be visible in public."
+#: mod/admin.php:1320
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr ""
 
-#: mod/settings.php:1111
-msgid "Publish your default profile in the global social directory?"
-msgstr "Julkaise oletusprofiilisi maailmanlaajuisessa sosiaaliluettelossa?"
+#: mod/admin.php:1324
+msgid "Don't check"
+msgstr "Älä tarkista"
 
-#: mod/settings.php:1111
-#, php-format
-msgid ""
-"Your profile will be published in this node's <a href=\"%s\">local "
-"directory</a>. Your profile details may be publicly visible depending on the"
-" system settings."
+#: mod/admin.php:1325
+msgid "check the stable version"
 msgstr ""
 
-#: mod/settings.php:1118
-msgid "Hide your contact/friend list from viewers of your default profile?"
+#: mod/admin.php:1326
+msgid "check the development version"
 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"
+#: mod/admin.php:1349
+msgid "Republish users to directory"
 msgstr ""
 
-#: mod/settings.php:1122
-msgid "Hide your profile details from anonymous viewers?"
-msgstr ""
+#: mod/admin.php:1351
+msgid "File upload"
+msgstr "Tiedoston lataus"
 
-#: 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."
+#: mod/admin.php:1352
+msgid "Policies"
+msgstr "Käytännöt"
+
+#: mod/admin.php:1354
+msgid "Auto Discovered Contact Directory"
 msgstr ""
 
-#: mod/settings.php:1126
-msgid "Allow friends to post to your profile page?"
-msgstr "Anna kavereiden julkaista profiilisivullasi?"
+#: mod/admin.php:1355
+msgid "Performance"
+msgstr "Suoritus"
+
+#: mod/admin.php:1356
+msgid "Worker"
+msgstr "Worker"
 
-#: mod/settings.php:1126
+#: mod/admin.php:1357
+msgid "Message Relay"
+msgstr "Viestirele"
+
+#: mod/admin.php:1358
 msgid ""
-"Your contacts may write posts on your profile wall. These posts will be "
-"distributed to your contacts"
+"Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr ""
 
-#: mod/settings.php:1130
-msgid "Allow friends to tag your posts?"
-msgstr "Anna kavereiden lisätä tunnisteita julkaisuusi?"
+#: mod/admin.php:1361
+msgid "Site name"
+msgstr "Sivuston nimi"
 
-#: 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/admin.php:1362
+msgid "Host name"
+msgstr "Palvelimen nimi"
 
-#: mod/settings.php:1134
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr ""
+#: mod/admin.php:1363
+msgid "Sender Email"
+msgstr "Lähettäjän sähköposti"
 
-#: mod/settings.php:1134
+#: mod/admin.php:1363
 msgid ""
-"If you like, Friendica may suggest new members to add you as a contact."
-msgstr ""
+"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/settings.php:1138
-msgid "Permit unknown people to send you private mail?"
-msgstr "Salli yksityisviesit tuntemattomilta?"
+#: mod/admin.php:1364
+msgid "Banner/Logo"
+msgstr "Banneri/logo"
 
-#: mod/settings.php:1138
-msgid ""
-"Friendica network users may send you private messages even if they are not "
-"in your contact list."
-msgstr ""
+#: mod/admin.php:1365
+msgid "Shortcut icon"
+msgstr "Pikakuvake"
 
-#: mod/settings.php:1142
-msgid "Profile is <strong>not published</strong>."
-msgstr "Profiili <strong>ei ole julkaistu</strong>."
+#: mod/admin.php:1365
+msgid "Link to an icon that will be used for browsers."
+msgstr "Linkki kuvakkeeseen jota selaimet saa käyttää."
 
-#: mod/settings.php:1148
-#, php-format
-msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
-msgstr "Identiteettisi osoite on <strong>'%s'</strong> tai '%s'."
+#: mod/admin.php:1366
+msgid "Touch icon"
+msgstr "Kosketusnäyttökuvake"
 
-#: mod/settings.php:1155
-msgid "Automatically expire posts after this many days:"
-msgstr ""
+#: 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/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/admin.php:1367
+msgid "Additional Info"
+msgstr "Lisätietoja"
 
-#: mod/settings.php:1156
-msgid "Advanced expiration settings"
+#: 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/settings.php:1157
-msgid "Advanced Expiration"
-msgstr ""
+#: mod/admin.php:1368
+msgid "System language"
+msgstr "Järjestelmän kieli"
 
-#: mod/settings.php:1158
-msgid "Expire posts:"
-msgstr "Julkaisujen vanheneminen:"
+#: mod/admin.php:1369
+msgid "System theme"
+msgstr "Järjestelmäteema"
 
-#: mod/settings.php:1159
-msgid "Expire personal notes:"
+#: mod/admin.php:1369
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
 msgstr ""
 
-#: mod/settings.php:1160
-msgid "Expire starred posts:"
-msgstr "Tähtimerkityt julkaisut vanhenee:"
+#: mod/admin.php:1370
+msgid "Mobile system theme"
+msgstr "Mobiili järjestelmäteema"
 
-#: mod/settings.php:1161
-msgid "Expire photos:"
-msgstr "Kuvat vanhenee:"
+#: mod/admin.php:1370
+msgid "Theme for mobile devices"
+msgstr "Mobiiliteema"
 
-#: mod/settings.php:1162
-msgid "Only expire posts by others:"
-msgstr ""
+#: mod/admin.php:1371
+msgid "SSL link policy"
+msgstr "SSL-linkkikäytäntö"
 
-#: mod/settings.php:1192
-msgid "Account Settings"
-msgstr "Tiliasetukset"
+#: 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/settings.php:1200
-msgid "Password Settings"
-msgstr "Salasana-asetukset"
+#: mod/admin.php:1372
+msgid "Force SSL"
+msgstr "Pakoita SSL-yhteyden käyttöä"
 
-#: mod/settings.php:1201 mod/register.php:273
-msgid "New Password:"
-msgstr "Uusi salasana:"
+#: mod/admin.php:1372
+msgid ""
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
+" to endless loops."
+msgstr ""
 
-#: mod/settings.php:1202 mod/register.php:274
-msgid "Confirm:"
-msgstr "Vahvista:"
+#: mod/admin.php:1373
+msgid "Hide help entry from navigation menu"
+msgstr ""
 
-#: mod/settings.php:1202
-msgid "Leave password fields blank unless changing"
-msgstr "Jätä salasana kenttää tyhjäksi jos et halua vaihtaa salasanaa"
+#: 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/settings.php:1203
-msgid "Current Password:"
-msgstr "Nykyinen salasana:"
+#: mod/admin.php:1374
+msgid "Single user instance"
+msgstr "Yksittäisen käyttäjän instanssi"
 
-#: mod/settings.php:1203 mod/settings.php:1204
-msgid "Your current password to confirm the changes"
+#: mod/admin.php:1374
+msgid "Make this instance multi-user or single-user for the named user"
 msgstr ""
 
-#: mod/settings.php:1204
-msgid "Password:"
-msgstr "Salasana:"
+#: mod/admin.php:1375
+msgid "Maximum image size"
+msgstr "Suurin kuvakoko"
 
-#: mod/settings.php:1208
-msgid "Basic Settings"
-msgstr "Perusasetukset"
+#: 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/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/admin.php:1376
+msgid "Maximum image length"
+msgstr "Suurin kuvapituus"
 
-#: mod/settings.php:1212
+#: mod/admin.php:1376
 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:"
+"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/settings.php:1217
-msgid "Security and Privacy Settings"
-msgstr "Turvallisuus ja tietosuoja-asetukset"
+#: mod/admin.php:1377
+msgid "JPEG image quality"
+msgstr "JPEG-kuvanlaatu"
 
-#: mod/settings.php:1219
-msgid "Maximum Friend Requests/Day:"
-msgstr "Kaveripyyntöraja päivässä:"
+#: 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/settings.php:1219 mod/settings.php:1248
-msgid "(to prevent spam abuse)"
-msgstr "(roskapostin estämiseksi)"
+#: mod/admin.php:1379
+msgid "Register policy"
+msgstr "Rekisteröintipolitiikka"
 
-#: mod/settings.php:1220
-msgid "Default Post Permissions"
-msgstr "Julkaisun oletuskäyttöoikeudet:"
+#: mod/admin.php:1380
+msgid "Maximum Daily Registrations"
+msgstr "Päivittäinen rekisteröitymisraja"
 
-#: mod/settings.php:1221
-msgid "(click to open/close)"
-msgstr "(klikkaa auki/kiinni)"
+#: 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/settings.php:1229 mod/photos.php:1106 mod/photos.php:1449
-msgid "Show to Groups"
-msgstr "Näytä ryhmille"
+#: mod/admin.php:1381
+msgid "Register text"
+msgstr "Rekisteröitymisteksti"
 
-#: mod/settings.php:1230 mod/photos.php:1107 mod/photos.php:1450
-msgid "Show to Contacts"
-msgstr "Näytä kontakteille"
+#: 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/settings.php:1231
-msgid "Default Private Post"
-msgstr ""
+#: 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/settings.php:1232
-msgid "Default Public Post"
+#: mod/admin.php:1382
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
 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/admin.php:1383
+msgid "Allowed friend domains"
+msgstr "Sallittuja kaveri-verkkotunnuksia"
 
-#: mod/settings.php:1252
-msgid "By default post a status message when:"
-msgstr "Oletuksena julkaise tilapäivitys kun:"
+#: 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/settings.php:1253
-msgid "accepting a friend request"
-msgstr "hyväksyt kaveripyynnön"
+#: mod/admin.php:1384
+msgid "Allowed email domains"
+msgstr "Sallittuja sähköposti-verkkotunnuksia"
 
-#: mod/settings.php:1254
-msgid "joining a forum/community"
-msgstr "liityt foorumiin/yhteisöön"
+#: 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/settings.php:1255
-msgid "making an <em>interesting</em> profile change"
-msgstr "muokkaat <em>kiinnostavalla tavalla</em> profiiliasi"
+#: mod/admin.php:1385
+msgid "No OEmbed rich content"
+msgstr ""
 
-#: mod/settings.php:1256
-msgid "Send a notification email when:"
-msgstr "Lähetä sähköposti-ilmoitus kun:"
+#: mod/admin.php:1385
+msgid ""
+"Don't show the rich content (e.g. embedded PDF), except from the domains "
+"listed below."
+msgstr ""
 
-#: mod/settings.php:1257
-msgid "You receive an introduction"
-msgstr "Vastaanotat kaverikutsun"
+#: mod/admin.php:1386
+msgid "Allowed OEmbed domains"
+msgstr "Sallittuja OEmbed -verkkotunnuksia"
 
-#: mod/settings.php:1258
-msgid "Your introductions are confirmed"
-msgstr "Kaverikutsusi on hyväksytty"
+#: mod/admin.php:1386
+msgid ""
+"Comma separated list of domains which oembed content is allowed to be "
+"displayed. Wildcards are accepted."
+msgstr ""
 
-#: mod/settings.php:1259
-msgid "Someone writes on your profile wall"
-msgstr "Joku kirjoittaa profiiliseinällesi"
+#: mod/admin.php:1387
+msgid "Block public"
+msgstr "Estä vierailijat"
 
-#: mod/settings.php:1260
-msgid "Someone writes a followup comment"
-msgstr "Joku vastaa kommenttiin"
+#: 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/settings.php:1261
-msgid "You receive a private message"
-msgstr "Vastaanotat yksityisviestin"
+#: mod/admin.php:1388
+msgid "Force publish"
+msgstr ""
 
-#: mod/settings.php:1262
-msgid "You receive a friend suggestion"
-msgstr "Vastaanotat kaveriehdotuksen"
+#: mod/admin.php:1388
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr ""
 
-#: mod/settings.php:1263
-msgid "You are tagged in a post"
-msgstr "Sinut on merkitty julkaisuun"
+#: mod/admin.php:1389
+msgid "Global directory URL"
+msgstr "Maailmanlaajuisen hakemiston URL-osoite"
 
-#: mod/settings.php:1264
-msgid "You are poked/prodded/etc. in a post"
-msgstr "sinut on tökätty tms. julkaisussa"
+#: 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/settings.php:1266
-msgid "Activate desktop notifications"
-msgstr "Ota työpöytäilmoitukset käyttöön"
+#: mod/admin.php:1390
+msgid "Private posts by default for new users"
+msgstr ""
 
-#: mod/settings.php:1266
-msgid "Show desktop popup on new notifications"
-msgstr "Näytä uudet ilmoitukset ponnahdusikkunassa"
+#: mod/admin.php:1390
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr ""
 
-#: mod/settings.php:1268
-msgid "Text-only notification emails"
-msgstr "Ilmoitussähköposteissa vain tekstiä"
+#: mod/admin.php:1391
+msgid "Don't include post content in email notifications"
+msgstr "Älä lisää julkaisun sisältö sähköposti-ilmoitukseen"
 
-#: 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/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/settings.php:1272
-msgid "Show detailled notifications"
-msgstr "Näytä yksityiskohtaiset ilmoitukset"
+#: mod/admin.php:1392
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr ""
 
-#: mod/settings.php:1274
+#: mod/admin.php:1392
 msgid ""
-"Per default, notifications are condensed to a single notification per item. "
-"When enabled every notification is displayed."
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
 msgstr ""
 
-#: mod/settings.php:1276
-msgid "Advanced Account/Page Type Settings"
-msgstr "Käyttäjätili/sivutyyppi lisäasetuksia"
+#: mod/admin.php:1393
+msgid "Don't embed private images in posts"
+msgstr "Älä upota yksityisiä kuvia julkaisuissa"
 
-#: mod/settings.php:1277
-msgid "Change the behaviour of this account for special situations"
+#: 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/settings.php:1280
-msgid "Relocate"
-msgstr "Uudelleensijoitus"
+#: mod/admin.php:1394
+msgid "Allow Users to set remote_self"
+msgstr ""
 
-#: mod/settings.php:1281
+#: mod/admin.php:1394
 msgid ""
-"If you have moved this profile from another server, and some of your "
-"contacts don't receive your updates, try pushing this button."
+"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/settings.php:1282
-msgid "Resend relocate message to contacts"
+#: mod/admin.php:1395
+msgid "Block multiple registrations"
 msgstr ""
 
-#: mod/regmod.php:68
-msgid "Account approved."
-msgstr "Tili hyväksytty."
+#: mod/admin.php:1395
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr ""
 
-#: 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/admin.php:1396
+msgid "OpenID support"
+msgstr "OpenID-tuki"
 
-#: mod/group.php:36
-msgid "Group created."
-msgstr "Ryhmä luotu."
+#: mod/admin.php:1396
+msgid "OpenID support for registration and logins."
+msgstr "OpenID-tuki rekisteröitymiseen ja kirjautumiseen"
 
-#: mod/group.php:42
-msgid "Could not create group."
-msgstr "Ryhmää ei voitu luoda."
+#: mod/admin.php:1397
+msgid "Fullname check"
+msgstr "Koko nimi tarkistus"
 
-#: mod/group.php:56 mod/group.php:157
-msgid "Group not found."
-msgstr "Ryhmää ei löytynyt."
+#: 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/group.php:70
-msgid "Group name changed."
-msgstr "Ryhmän nimi muutettu."
+#: mod/admin.php:1398
+msgid "Community pages for visitors"
+msgstr "Yhteisösivu vieraille"
 
-#: mod/group.php:83 mod/profperm.php:28 index.php:443
-msgid "Permission denied"
-msgstr "Käyttöoikeus evätty"
+#: mod/admin.php:1398
+msgid ""
+"Which community pages should be available for visitors. Local users always "
+"see both pages."
+msgstr ""
 
-#: mod/group.php:97
-msgid "Save Group"
-msgstr "Tallenna ryhmä"
+#: mod/admin.php:1399
+msgid "Posts per user on community page"
+msgstr ""
 
-#: mod/group.php:102
-msgid "Create a group of contacts/friends."
-msgstr "Luo kontakti/kaveriryhmä"
+#: 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/group.php:127
-msgid "Group removed."
-msgstr "Ryhmä poistettu."
+#: mod/admin.php:1400
+msgid "Enable OStatus support"
+msgstr "Salli OStatus-tuki"
 
-#: mod/group.php:129
-msgid "Unable to remove group."
-msgstr "Ryhmää ei voida poistaa."
+#: 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/group.php:192
-msgid "Delete Group"
-msgstr "Poista ryhmä"
+#: mod/admin.php:1401
+msgid "Only import OStatus threads from our contacts"
+msgstr "Ainoastaan tuo OStatus -ketjuja kontakteiltamme"
 
-#: mod/group.php:198
-msgid "Group Editor"
-msgstr "Ryhmien muokkausta"
+#: 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/group.php:203
-msgid "Edit Group Name"
-msgstr "Muokkaa ryhmän nimeä"
+#: 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/group.php:213
-msgid "Members"
-msgstr "Jäsenet"
+#: 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/group.php:215 mod/contacts.php:719
-msgid "All Contacts"
-msgstr "Kaikki yhteystiedot"
+#: mod/admin.php:1405
+msgid "Enable Diaspora support"
+msgstr "Salli Diaspora-tuki"
 
-#: mod/group.php:229
-msgid "Remove Contact"
-msgstr "Poista kontakti"
+#: mod/admin.php:1405
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Ota käyttöön Diaspora-yhteensopivuus"
 
-#: mod/group.php:253
-msgid "Add Contact"
-msgstr "Lisää kontakti"
+#: mod/admin.php:1406
+msgid "Only allow Friendica contacts"
+msgstr "Salli ainoastaan Friendica -kontakteja"
 
-#: 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/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/fbrowser.php:131
-msgid "Files"
-msgstr "Tiedostot"
+#: mod/admin.php:1407
+msgid "Verify SSL"
+msgstr "Vahvista SSL"
 
-#: mod/admin.php:106
-msgid "Theme settings updated."
-msgstr "Teeman asetukset päivitetty."
+#: 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:180
-msgid "Overview"
-msgstr "Yleiskatsaus"
+#: mod/admin.php:1408
+msgid "Proxy user"
+msgstr "Välityspalvelimen käyttäjä"
 
-#: mod/admin.php:181 mod/admin.php:718
-msgid "Federation Statistics"
-msgstr "Liiton tilastotiedot"
+#: mod/admin.php:1409
+msgid "Proxy URL"
+msgstr "Välityspalvelimen osoite"
 
-#: mod/admin.php:182
-msgid "Configuration"
-msgstr "Kokoonpano"
+#: mod/admin.php:1410
+msgid "Network timeout"
+msgstr "Verkon aikakatkaisu"
 
-#: mod/admin.php:183 mod/admin.php:1345
-msgid "Site"
-msgstr "Sivusto"
+#: mod/admin.php:1410
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr ""
 
-#: 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:1411
+msgid "Maximum Load Average"
+msgstr "Kuorman enimmäiskeksiarvo"
 
-#: mod/admin.php:186 mod/admin.php:2187 mod/admin.php:2231
-msgid "Themes"
-msgstr "Teemat"
+#: 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:189
-msgid "Database"
-msgstr "Tietokanta"
+#: mod/admin.php:1412
+msgid "Maximum Load Average (Frontend)"
+msgstr "Kuorman enimmäiskeskiarvo (Frontend)"
 
-#: mod/admin.php:190
-msgid "DB updates"
-msgstr "Tietokannan päivitykset"
+#: 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:191 mod/admin.php:753
-msgid "Inspect Queue"
-msgstr "Tarkista jono"
+#: mod/admin.php:1413
+msgid "Minimal Memory"
+msgstr ""
 
-#: mod/admin.php:192
-msgid "Tools"
-msgstr "Työkalut"
+#: 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:193
-msgid "Contact Blocklist"
-msgstr "Kontaktien estolista"
+#: mod/admin.php:1414
+msgid "Maximum table size for optimization"
+msgstr "Taulukon enimmäiskoko optimointia varten"
 
-#: mod/admin.php:194 mod/admin.php:362
-msgid "Server Blocklist"
-msgstr "Palvelimien estolista"
+#: 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:195 mod/admin.php:521
-msgid "Delete Item"
-msgstr "Poista kohde"
+#: mod/admin.php:1415
+msgid "Minimum level of fragmentation"
+msgstr ""
 
-#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2305
-msgid "Logs"
-msgstr "Lokit"
+#: mod/admin.php:1415
+msgid ""
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
+msgstr ""
 
-#: mod/admin.php:198 mod/admin.php:2372
-msgid "View Logs"
-msgstr "Katso lokit"
+#: mod/admin.php:1417
+msgid "Periodical check of global contacts"
+msgstr ""
 
-#: mod/admin.php:200
-msgid "Diagnostics"
-msgstr "Diagnostiikka"
+#: 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:201
-msgid "PHP Info"
-msgstr "PHP tietoja"
+#: mod/admin.php:1418
+msgid "Days between requery"
+msgstr ""
 
-#: mod/admin.php:202
-msgid "probe address"
+#: mod/admin.php:1418
+msgid "Number of days after which a server is requeried for his contacts."
 msgstr ""
 
-#: mod/admin.php:203
-msgid "check webfinger"
-msgstr "Tarkista webfinger"
+#: mod/admin.php:1419
+msgid "Discover contacts from other servers"
+msgstr "Etsi kontakteja muilta palvelimilta"
 
-#: mod/admin.php:223
-msgid "Addon Features"
-msgstr "Lisäosaominaisuudet"
+#: 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:224
-msgid "User registrations waiting for confirmation"
-msgstr "Käyttäjärekisteröinnit odottavat hyväksyntää"
+#: mod/admin.php:1420
+msgid "Timeframe for fetching global contacts"
+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 "Ylläpito"
+#: 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:303
-msgid "Display Terms of Service"
-msgstr "Näytä käyttöehdot"
+#: mod/admin.php:1421
+msgid "Search the local directory"
+msgstr "Paikallisluettelohaku"
 
-#: mod/admin.php:303
+#: mod/admin.php:1421
 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."
+"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:304
-msgid "Display Privacy Statement"
-msgstr "Näytä tietosuojalausunto"
+#: mod/admin.php:1423
+msgid "Publish server information"
+msgstr "Julkaise palvelintiedot"
 
-#: mod/admin.php:304
-#, php-format
+#: mod/admin.php:1423
 msgid ""
-"Show some informations regarding the needed information to operate the node "
-"according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."
+"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 <a"
+" href='http://the-federation.info/'>the-federation.info</a> for details."
 msgstr ""
 
-#: mod/admin.php:305
-msgid "The Terms of Service"
-msgstr "Käyttöehdot"
+#: mod/admin.php:1425
+msgid "Check upstream version"
+msgstr ""
 
-#: mod/admin.php:305
+#: mod/admin.php:1425
 msgid ""
-"Enter the Terms of Service for your node here. You can use BBCode. Headers "
-"of sections should be [h2] and below."
+"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:353
-msgid "The blocked domain"
-msgstr "Estetty verkkotunnus"
+#: mod/admin.php:1426
+msgid "Suppress Tags"
+msgstr "Piilota tunnisteet"
 
-#: mod/admin.php:354 mod/admin.php:367
-msgid "The reason why you blocked this domain."
-msgstr "Verkkotunnuksen estosyy."
+#: 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:355
-msgid "Delete domain"
-msgstr "Poista verkkotunnus"
+#: mod/admin.php:1427
+msgid "Path to item cache"
+msgstr ""
 
-#: mod/admin.php:355
-msgid "Check to delete this entry from the blocklist"
-msgstr "Laita rasti poistaaksesi kohde estolistalta"
+#: mod/admin.php:1427
+msgid "The item caches buffers generated bbcode and external images."
+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."
+#: mod/admin.php:1428
+msgid "Cache duration in seconds"
 msgstr ""
 
-#: mod/admin.php:364
+#: mod/admin.php:1428
 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."
+"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: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:1429
+msgid "Maximum numbers of comments per post"
+msgstr "Julkaisun kommentiraja"
 
-#: mod/admin.php:366
-msgid ""
-"The domain of the new server to add to the block list. Do not include the "
-"protocol."
+#: mod/admin.php:1429
+msgid "How much comments should be shown for each post? Default value is 100."
 msgstr ""
 
-#: mod/admin.php:367
-msgid "Block reason"
-msgstr "Estosyy"
-
-#: mod/admin.php:368
-msgid "Add Entry"
-msgstr "Lisää merkintä"
+#: mod/admin.php:1430
+msgid "Temp path"
+msgstr ""
 
-#: mod/admin.php:369
-msgid "Save changes to the blocklist"
-msgstr "Tallenna muutoksia estolistaan"
+#: 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:370
-msgid "Current Entries in the Blocklist"
-msgstr "Nykyinen estolista"
+#: mod/admin.php:1431
+msgid "Base path to installation"
+msgstr "Asennuksen peruspolku"
 
-#: mod/admin.php:373
-msgid "Delete entry from blocklist"
-msgstr "Poista kohde estolistalta"
+#: 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:376
-msgid "Delete entry from blocklist?"
-msgstr "Poista kohde estolistalta?"
+#: mod/admin.php:1432
+msgid "Disable picture proxy"
+msgstr ""
 
-#: mod/admin.php:402
-msgid "Server added to blocklist."
-msgstr "Palvelin lisätty estolistalle"
+#: 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:418
-msgid "Site blocklist updated."
-msgstr "Sivuston estolista päivitetty."
+#: mod/admin.php:1433
+msgid "Only search in tags"
+msgstr "Tunnistehaku"
 
-#: 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:1433
+msgid "On large systems the text search can slow down the system extremely."
+msgstr ""
 
-#: mod/admin.php:479
-msgid "Remote Contact Blocklist"
-msgstr "Etäkontakti estolista"
+#: mod/admin.php:1435
+msgid "New base url"
+msgstr "Uusi perusosoite"
 
-#: mod/admin.php:480
+#: mod/admin.php:1435
 msgid ""
-"This page allows you to prevent any message from a remote contact to reach "
-"your node."
-msgstr ""
+"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:481
-msgid "Block Remote Contact"
-msgstr "Estä etäkontakti"
+#: mod/admin.php:1437
+msgid "RINO Encryption"
+msgstr "RINO-salaus"
 
-#: mod/admin.php:482 mod/admin.php:1804
-msgid "select all"
-msgstr "valitse kaikki"
+#: mod/admin.php:1437
+msgid "Encryption layer between nodes."
+msgstr "Salauskerros solmujen välillä."
 
-#: mod/admin.php:483
-msgid "select none"
-msgstr "älä valitse mitään"
+#: mod/admin.php:1437
+msgid "Enabled"
+msgstr "Käytössä"
 
-#: 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:1439
+msgid "Maximum number of parallel workers"
+msgstr "Enimmäismäärä rinnakkaisia workereitä"
 
-#: 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: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:486
-msgid "No remote contact is blocked from this node."
+#: mod/admin.php:1440
+msgid "Don't use 'proc_open' with the worker"
 msgstr ""
 
-#: mod/admin.php:488
-msgid "Blocked Remote Contacts"
-msgstr "Estetty etäkontaktit"
+#: 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:489
-msgid "Block New Remote Contact"
-msgstr "Estä uusi etäkontakti"
+#: mod/admin.php:1441
+msgid "Enable fastlane"
+msgstr "Käytä fastlane"
 
-#: mod/admin.php:490
-msgid "Photo"
-msgstr "Kuva"
+#: 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: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:1442
+msgid "Enable frontend worker"
+msgstr "Ota Frontend Worker käyttöön"
 
-#: mod/admin.php:498
+#: mod/admin.php:1442
 #, 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"
+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:500
-msgid "URL of the remote contact to block."
-msgstr "Estettävän etäkontaktin URL-osoite"
+#: mod/admin.php:1444
+msgid "Subscribe to relay"
+msgstr "Relen tilaus"
 
-#: mod/admin.php:522
-msgid "Delete this Item"
-msgstr "Poista tämä kohde"
+#: 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:523
+#: mod/admin.php:1445
+msgid "Relay server"
+msgstr "Relepalvelin"
+
+#: mod/admin.php:1445
 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."
+"Address of the relay server where public posts should be send to. For "
+"example https://relay.diasp.org"
 msgstr ""
 
-#: mod/admin.php:524
+#: mod/admin.php:1446
+msgid "Direct relay transfer"
+msgstr "Suora releen siirto"
+
+#: mod/admin.php:1446
 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."
+"Enables the direct transfer to other servers without using the relay servers"
 msgstr ""
 
-#: mod/admin.php:525
-msgid "GUID"
-msgstr "GUID"
+#: mod/admin.php:1447
+msgid "Relay scope"
+msgstr "Relen soveltamisala"
 
-#: mod/admin.php:525
-msgid "The GUID of the item you want to delete."
-msgstr "Poistettavan kohteen GUID."
+#: 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:564
-msgid "Item marked for deletion."
-msgstr "Kohde merkitty poistettavaksi."
+#: mod/admin.php:1447
+msgid "all"
+msgstr "kaikki"
 
-#: mod/admin.php:635
-msgid "unknown"
-msgstr "tuntematon"
+#: mod/admin.php:1447
+msgid "tags"
+msgstr "tunnisteet"
 
-#: mod/admin.php:711
+#: 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 ""
-"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."
+"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:712
-msgid ""
-"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
-"will improve the data displayed here."
+#: 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:724
+#: mod/admin.php:1502
 #, 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:"
+msgid "Update %s was successfully applied."
+msgstr "%s-päivitys onnistui."
 
-#: mod/admin.php:755
-msgid "ID"
+#: mod/admin.php:1505
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr ""
 
-#: mod/admin.php:756
-msgid "Recipient Name"
-msgstr "Vastaanottajan nimi"
+#: mod/admin.php:1508
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
+msgstr ""
 
-#: mod/admin.php:757
-msgid "Recipient Profile"
-msgstr "Vastaanottajan profiili"
+#: mod/admin.php:1528
+msgid "No failed updates."
+msgstr "Ei epäonnistuineita päivityksiä."
 
-#: mod/admin.php:759
-msgid "Created"
-msgstr "Luotu"
+#: mod/admin.php:1529
+msgid "Check database structure"
+msgstr "Tarkista tietokannan rakenne"
 
-#: mod/admin.php:760
-msgid "Last Tried"
-msgstr "Viimeksi yritetty"
+#: mod/admin.php:1534
+msgid "Failed Updates"
+msgstr "Epäonnistuineita päivityksiä"
 
-#: mod/admin.php:761
+#: mod/admin.php:1535
 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."
+"This does not include updates prior to 1139, which did not return a status."
 msgstr ""
 
-#: mod/admin.php:785
+#: 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 ""
-"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 <a href=\"%s\">here</a> for a guide that may be helpful "
-"converting the table engines. You may also use the command <tt>php "
-"bin/console.php dbstructure toinnodb</tt> of your Friendica installation for"
-" an automatic conversion.<br />"
+"\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:792
+#: mod/admin.php:1579
 #, php-format
 msgid ""
-"There is a new version of Friendica available for download. Your current "
-"version is %1$s, upstream version is %2$s"
+"\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: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:1613 src/Model/User.php:663
+#, php-format
+msgid "Registration details for %s"
+msgstr ""
 
-#: 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: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:811
+#: mod/admin.php:1629
 #, 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."
+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:816
-msgid "Normal Account"
-msgstr "Perustili"
+#: mod/admin.php:1676
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Käyttäjä '%s' poistettu"
 
-#: mod/admin.php:817
-msgid "Automatic Follower Account"
-msgstr "Automaattinen seuraajatili"
+#: mod/admin.php:1684
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Käyttäjä '%s' poistettu estolistalta"
 
-#: mod/admin.php:818
-msgid "Public Forum Account"
-msgstr "Julkinen foorumitili"
+#: mod/admin.php:1684
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Käyttäjä '%s' estetty"
 
-#: mod/admin.php:819
-msgid "Automatic Friend Account"
-msgstr "Automaattinen kaveritili"
+#: mod/admin.php:1741 mod/settings.php:1071
+msgid "Normal Account Page"
+msgstr "Tavallinen käyttäjätili"
 
-#: mod/admin.php:820
-msgid "Blog Account"
-msgstr "Blogitili"
+#: mod/admin.php:1742 mod/settings.php:1075
+msgid "Soapbox Page"
+msgstr "Saarnatuoli sivu"
 
-#: mod/admin.php:821
-msgid "Private Forum Account"
-msgstr "Yksityinen foorumitili"
+#: mod/admin.php:1743 mod/settings.php:1079
+msgid "Public Forum"
+msgstr "Julkinen foorumi"
 
-#: mod/admin.php:843
-msgid "Message queues"
-msgstr "Viestijonot"
+#: mod/admin.php:1744 mod/settings.php:1083
+msgid "Automatic Friend Page"
+msgstr ""
 
-#: mod/admin.php:849
-msgid "Summary"
-msgstr "Yhteenveto"
+#: mod/admin.php:1745
+msgid "Private Forum"
+msgstr "Yksityisfoorumi"
 
-#: 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:1748 mod/settings.php:1055
+msgid "Personal Page"
+msgstr "Henkilökohtainen sivu"
 
-#: mod/admin.php:854
-msgid "Version"
-msgstr "Versio"
+#: mod/admin.php:1749 mod/settings.php:1059
+msgid "Organisation Page"
+msgstr "Järjestön sivu"
 
-#: mod/admin.php:859
-msgid "Active addons"
-msgstr "Käytössäolevat lisäosat"
+#: mod/admin.php:1750 mod/settings.php:1063
+msgid "News Page"
+msgstr "Uutissivu"
 
-#: mod/admin.php:890
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr "Ei voitu jäsentää perusosoitetta. Täytyy sisältää ainakin <scheme>://<domain>"
+#: mod/admin.php:1751 mod/settings.php:1067
+msgid "Community Forum"
+msgstr "Yhteisöfoorumi"
 
-#: mod/admin.php:1209
-msgid "Site settings updated."
-msgstr "Sivuston asetukset päivitettiin."
+#: 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:1265
-msgid "No community page"
-msgstr "Ei yhteisösivua"
+#: mod/admin.php:1798 mod/admin.php:1822
+msgid "Register date"
+msgstr "Rekisteripäivämäärä"
 
-#: 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:1798 mod/admin.php:1822
+msgid "Last login"
+msgstr "Viimeisin kirjautuminen"
 
-#: mod/admin.php:1267
-msgid "Public postings from the federated network"
-msgstr "Julkiset julkaisut liittoutuneelta verkolta"
+#: mod/admin.php:1798 mod/admin.php:1822
+msgid "Last item"
+msgstr "Viimeisin kohde"
 
-#: 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:1798
+msgid "Type"
+msgstr "Tyyppi"
 
-#: 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:1805
+msgid "Add User"
+msgstr "Lisää käyttäjä"
 
-#: mod/admin.php:1274
-msgid "Users, Global Contacts"
-msgstr "Käyttäjät, maailmanlaajuiset kontaktit"
+#: mod/admin.php:1807
+msgid "User registrations waiting for confirm"
+msgstr ""
 
-#: mod/admin.php:1275
-msgid "Users, Global Contacts/fallback"
+#: mod/admin.php:1808
+msgid "User waiting for permanent deletion"
 msgstr ""
 
-#: mod/admin.php:1279
-msgid "One month"
-msgstr "Yksi kuukausi"
+#: mod/admin.php:1809
+msgid "Request date"
+msgstr "Pyynnön päivämäärä"
 
-#: mod/admin.php:1280
-msgid "Three months"
-msgstr "Kolme kuukautta"
+#: mod/admin.php:1810
+msgid "No registrations."
+msgstr "Ei rekisteröintejä."
 
-#: mod/admin.php:1281
-msgid "Half a year"
-msgstr "Puoli vuotta"
+#: mod/admin.php:1811
+msgid "Note from the user"
+msgstr ""
 
-#: mod/admin.php:1282
-msgid "One year"
-msgstr "Yksi vuosi"
+#: mod/admin.php:1813
+msgid "Deny"
+msgstr "Kieltäydy"
 
-#: mod/admin.php:1287
-msgid "Multi user instance"
-msgstr "Monen käyttäjän instanssi"
+#: mod/admin.php:1817
+msgid "Site admin"
+msgstr "Sivuston ylläpito"
 
-#: mod/admin.php:1310
-msgid "Closed"
-msgstr "Suljettu"
+#: mod/admin.php:1818
+msgid "Account expired"
+msgstr "Tili vanhentunut"
 
-#: mod/admin.php:1311
-msgid "Requires approval"
-msgstr "Edellyttää hyväksyntää"
+#: mod/admin.php:1821
+msgid "New User"
+msgstr "Uusi käyttäjä"
 
-#: mod/admin.php:1312
-msgid "Open"
-msgstr "Avoin"
+#: mod/admin.php:1822
+msgid "Deleted since"
+msgstr "Poistettu"
 
-#: mod/admin.php:1316
-msgid "No SSL policy, links will track page SSL state"
+#: 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: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)"
+#: 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:1322
-msgid "Don't check"
-msgstr "Älä tarkista"
+#: mod/admin.php:1838
+msgid "Name of the new user."
+msgstr "Uuden käyttäjän nimi."
 
-#: mod/admin.php:1323
-msgid "check the stable version"
-msgstr ""
+#: mod/admin.php:1839
+msgid "Nickname"
+msgstr "Lempinimi"
 
-#: mod/admin.php:1324
-msgid "check the development version"
-msgstr ""
+#: mod/admin.php:1839
+msgid "Nickname of the new user."
+msgstr "Uuden käyttäjän lempinimi"
 
-#: mod/admin.php:1347
-msgid "Republish users to directory"
-msgstr ""
+#: mod/admin.php:1840
+msgid "Email address of the new user."
+msgstr "Uuden käyttäjän sähköpostiosoite."
 
-#: mod/admin.php:1348 mod/register.php:264
-msgid "Registration"
-msgstr "Rekisteröityminen"
+#: mod/admin.php:1882
+#, php-format
+msgid "Addon %s disabled."
+msgstr "Lisäosa %s poistettu käytöstä."
 
-#: mod/admin.php:1349
-msgid "File upload"
-msgstr "Tiedoston lataus"
+#: mod/admin.php:1886
+#, php-format
+msgid "Addon %s enabled."
+msgstr "Lisäosa %s käytössä."
 
-#: mod/admin.php:1350
-msgid "Policies"
-msgstr "Käytännöt"
+#: mod/admin.php:1896 mod/admin.php:2145
+msgid "Disable"
+msgstr "Poista käytöstä"
 
-#: mod/admin.php:1352
-msgid "Auto Discovered Contact Directory"
-msgstr ""
+#: mod/admin.php:1899 mod/admin.php:2148
+msgid "Enable"
+msgstr "Ota käyttöön"
 
-#: mod/admin.php:1353
-msgid "Performance"
-msgstr "Suoritus"
+#: mod/admin.php:1921 mod/admin.php:2190
+msgid "Toggle"
+msgstr "Vaihda"
 
-#: mod/admin.php:1354
-msgid "Worker"
-msgstr "Worker"
+#: mod/admin.php:1929 mod/admin.php:2199
+msgid "Author: "
+msgstr "Tekijä"
 
-#: mod/admin.php:1355
-msgid "Message Relay"
-msgstr "Viestirele"
+#: mod/admin.php:1930 mod/admin.php:2200
+msgid "Maintainer: "
+msgstr "Ylläpitäjä:"
 
-#: mod/admin.php:1356
+#: mod/admin.php:1982
+msgid "Reload active addons"
+msgstr ""
+
+#: mod/admin.php:1987
+#, php-format
 msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
+"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:1359
-msgid "Site name"
-msgstr "Sivuston nimi"
+#: mod/admin.php:2107
+msgid "No themes found."
+msgstr "Teemoja ei löytynyt."
 
-#: mod/admin.php:1360
-msgid "Host name"
-msgstr "Palvelimen nimi"
+#: mod/admin.php:2181
+msgid "Screenshot"
+msgstr "Kuvakaappaus"
 
-#: mod/admin.php:1361
-msgid "Sender Email"
-msgstr "Lähettäjän sähköposti"
+#: mod/admin.php:2235
+msgid "Reload active themes"
+msgstr "Lataa aktiiviset teemat uudelleen"
 
-#: 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:2240
+#, php-format
+msgid "No themes found on the system. They should be placed in %1$s"
+msgstr ""
 
-#: mod/admin.php:1362
-msgid "Banner/Logo"
-msgstr "Banneri/logo"
+#: mod/admin.php:2241
+msgid "[Experimental]"
+msgstr "[Kokeellinen]"
 
-#: mod/admin.php:1363
-msgid "Shortcut icon"
-msgstr "Pikakuvake"
+#: mod/admin.php:2242
+msgid "[Unsupported]"
+msgstr "[Ei tueta]"
 
-#: 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:2266
+msgid "Log settings updated."
+msgstr "Lokiasetukset päivitetty."
 
-#: mod/admin.php:1364
-msgid "Touch icon"
-msgstr "Kosketusnäyttökuvake"
+#: mod/admin.php:2298
+msgid "PHP log currently enabled."
+msgstr "PHP-loki käytössä"
 
-#: 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:2300
+msgid "PHP log currently disabled."
+msgstr "PHP-loki pois käytöstä"
 
-#: mod/admin.php:1365
-msgid "Additional Info"
-msgstr "Lisätietoja"
+#: mod/admin.php:2309
+msgid "Clear"
+msgstr "Tyhjennä"
 
-#: mod/admin.php:1365
-#, php-format
+#: 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 ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/servers."
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
 msgstr ""
 
-#: mod/admin.php:1366
-msgid "System language"
-msgstr "Järjestelmän kieli"
+#: mod/admin.php:2315
+msgid "Log level"
+msgstr "Lokitaso"
 
-#: mod/admin.php:1367
-msgid "System theme"
-msgstr "Järjestelmäteema"
+#: mod/admin.php:2317
+msgid "PHP logging"
+msgstr "PHP-loki"
 
-#: mod/admin.php:1367
+#: mod/admin.php:2318
 msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
+"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: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
+#: mod/admin.php:2349
+#, php-format
 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"
+"Error trying to open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see "
+"if file %1$s exist and is readable."
 msgstr ""
 
-#: mod/admin.php:1371
+#: mod/admin.php:2353
+#, php-format
 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"
+"Couldn't open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see if file"
+" %1$s is readable."
 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:2444 mod/admin.php:2445 mod/settings.php:777
+msgid "Off"
+msgstr "Pois päältä"
 
-#: mod/admin.php:1374
-msgid "Maximum image length"
-msgstr "Suurin kuvapituus"
+#: mod/admin.php:2444 mod/admin.php:2445 mod/settings.php:777
+msgid "On"
+msgstr "Päällä"
 
-#: 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:2445
+#, php-format
+msgid "Lock feature %s"
+msgstr "Lukitse ominaisuus %s"
 
-#: mod/admin.php:1375
-msgid "JPEG image quality"
-msgstr "JPEG-kuvanlaatu"
+#: mod/admin.php:2453
+msgid "Manage Additional Features"
+msgstr "Hallitse lisäominaisuudet"
 
-#: mod/admin.php:1375
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
+#: mod/babel.php:22
+msgid "Source input"
 msgstr ""
 
-#: mod/admin.php:1377
-msgid "Register policy"
-msgstr "Rekisteröintipolitiikka"
+#: mod/babel.php:28
+msgid "BBCode::toPlaintext"
+msgstr "BBCode::toPlaintext"
 
-#: mod/admin.php:1378
-msgid "Maximum Daily Registrations"
-msgstr "Päivittäinen rekisteröitymisraja"
+#: mod/babel.php:34
+msgid "BBCode::convert (raw HTML)"
+msgstr "BBCode::convert (raaka HTML)"
 
-#: 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/babel.php:39
+msgid "BBCode::convert"
+msgstr "BBCode::convert"
 
-#: mod/admin.php:1379
-msgid "Register text"
-msgstr "Rekisteröitymisteksti"
+#: mod/babel.php:45
+msgid "BBCode::convert => HTML::toBBCode"
+msgstr "BBCode::convert => HTML::toBBCode"
 
-#: 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/babel.php:51
+msgid "BBCode::toMarkdown"
+msgstr "BBCode::toMarkdown"
 
-#: 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/babel.php:57
+msgid "BBCode::toMarkdown => Markdown::convert"
+msgstr "BBCode::toMarkdown => Markdown::convert"
 
-#: mod/admin.php:1380
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr ""
+#: mod/babel.php:63
+msgid "BBCode::toMarkdown => Markdown::toBBCode"
+msgstr "BBCode::toMarkdown => Markdown::toBBCode"
 
-#: mod/admin.php:1381
-msgid "Allowed friend domains"
-msgstr "Sallittuja kaveri-verkkotunnuksia"
+#: mod/babel.php:69
+msgid "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
+msgstr "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
 
-#: 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"
+#: mod/babel.php:76
+msgid "Source input \\x28Diaspora format\\x29"
 msgstr ""
 
-#: mod/admin.php:1382
-msgid "Allowed email domains"
-msgstr "Sallittuja sähköposti-verkkotunnuksia"
+#: mod/babel.php:82
+msgid "Markdown::toBBCode"
+msgstr "Markdown::toBBCode"
 
-#: 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/babel.php:89
+msgid "Raw HTML input"
+msgstr "Raaka HTML-syöte"
 
-#: mod/admin.php:1383
-msgid "No OEmbed rich content"
-msgstr ""
+#: mod/babel.php:94
+msgid "HTML Input"
+msgstr "HTML-syöte"
 
-#: mod/admin.php:1383
-msgid ""
-"Don't show the rich content (e.g. embedded PDF), except from the domains "
-"listed below."
-msgstr ""
+#: mod/babel.php:100
+msgid "HTML::toBBCode"
+msgstr "HTML::toBBCode"
 
-#: mod/admin.php:1384
-msgid "Allowed OEmbed domains"
-msgstr "Sallittuja OEmbed -verkkotunnuksia"
+#: mod/babel.php:106
+msgid "HTML::toPlaintext"
+msgstr "HTML::toPlaintext"
 
-#: mod/admin.php:1384
-msgid ""
-"Comma separated list of domains which oembed content is allowed to be "
-"displayed. Wildcards are accepted."
-msgstr ""
+#: mod/babel.php:114
+msgid "Source text"
+msgstr "Lähdeteksti"
 
-#: mod/admin.php:1385
-msgid "Block public"
-msgstr "Estä vierailijat"
+#: mod/babel.php:115
+msgid "BBCode"
+msgstr "BBCode"
 
-#: 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/babel.php:116
+msgid "Markdown"
+msgstr "Markdown"
 
-#: mod/admin.php:1386
-msgid "Force publish"
-msgstr ""
+#: mod/babel.php:117
+msgid "HTML"
+msgstr "HTML"
 
-#: mod/admin.php:1386
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr ""
+#: mod/community.php:51
+msgid "Community option not available."
+msgstr "Yhteisö vaihtoehto ei saatavilla."
 
-#: mod/admin.php:1387
-msgid "Global directory URL"
-msgstr "Maailmanlaajuisen hakemiston URL-osoite"
+#: mod/community.php:68
+msgid "Not available."
+msgstr "Ei saatavilla."
 
-#: 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/community.php:81
+msgid "Local Community"
+msgstr "Paikallinen yhteisö"
 
-#: mod/admin.php:1388
-msgid "Private posts by default for new users"
-msgstr ""
+#: mod/community.php:84
+msgid "Posts from local users on this server"
+msgstr "Tämän palvelimen julkaisut"
 
-#: mod/admin.php:1388
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr ""
+#: mod/community.php:92
+msgid "Global Community"
+msgstr "Maailmanlaajuinen yhteisö"
 
-#: mod/admin.php:1389
-msgid "Don't include post content in email notifications"
-msgstr "Älä lisää julkaisun sisältö sähköposti-ilmoitukseen"
+#: mod/community.php:95
+msgid "Posts from users of the whole federated network"
+msgstr "Maailmanlaajuisen verkon julkaisut"
 
-#: mod/admin.php:1389
+#: mod/community.php:185
 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."
+"This community stream shows all public posts received by this node. They may"
+" not reflect the opinions of this node’s users."
 msgstr ""
 
-#: mod/admin.php:1390
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr ""
+#: mod/friendica.php:77
+msgid "This is Friendica, version"
+msgstr "Tämä on Friendica, versio"
 
-#: mod/admin.php:1391
-msgid "Don't embed private images in posts"
-msgstr "Älä upota yksityisiä kuvia julkaisuissa"
+#: mod/friendica.php:78
+msgid "running at web location"
+msgstr "käynnissä osoitteessa"
 
-#: mod/admin.php:1391
+#: mod/friendica.php:82
 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 ""
+"Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
+"about the Friendica project."
+msgstr "Vieraile osoitteessa <a href=\"https://friendi.ca\">Friendi.ca</a> saadaksesi lisätietoja Friendica- projektista."
 
-#: mod/admin.php:1392
-msgid "Allow Users to set remote_self"
-msgstr ""
+#: mod/friendica.php:86
+msgid "Bug reports and issues: please visit"
+msgstr "Bugiraportit ja kysymykset: vieraile osoitteessa"
 
-#: 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/friendica.php:86
+msgid "the bugtracker at github"
+msgstr "githubin bugtrackeri"
 
-#: mod/admin.php:1393
-msgid "Block multiple registrations"
-msgstr ""
+#: 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/admin.php:1393
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr ""
+#: mod/friendica.php:103
+msgid "Installed addons/apps:"
+msgstr "Asennettu lisäosat/sovellukset:"
 
-#: mod/admin.php:1394
-msgid "OpenID support"
-msgstr "OpenID-tuki"
+#: mod/friendica.php:117
+msgid "No installed addons/apps"
+msgstr "Ei asennettuja lisäosia/sovelluksia"
 
-#: mod/admin.php:1394
-msgid "OpenID support for registration and logins."
-msgstr "OpenID-tuki rekisteröitymiseen ja kirjautumiseen"
+#: mod/friendica.php:122
+#, php-format
+msgid "Read about the <a href=\"%1$s/tos\">Terms of Service</a> of this node."
+msgstr "Lue tämän solmun <a href=\"%1$s/tos\">käyttöehdot</a>."
 
-#: mod/admin.php:1395
-msgid "Fullname check"
-msgstr "Koko nimi tarkistus"
+#: mod/friendica.php:127
+msgid "On this server the following remote servers are blocked."
+msgstr "Tällä palvelimella seuraavat etäpalvelimet ovat estetty."
 
-#: 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/install.php:114
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica viestinnän palvelin - asetukset"
 
-#: mod/admin.php:1396
-msgid "Community pages for visitors"
-msgstr "Yhteisösivu vieraille"
+#: mod/install.php:120
+msgid "Could not connect to database."
+msgstr "Tietokantaan ei saada yhteyttä."
 
-#: mod/admin.php:1396
-msgid ""
-"Which community pages should be available for visitors. Local users always "
-"see both pages."
-msgstr ""
+#: mod/install.php:124
+msgid "Could not create table."
+msgstr "Taulun luominen epäonnistui."
 
-#: mod/admin.php:1397
-msgid "Posts per user on community page"
-msgstr ""
+#: mod/install.php:130
+msgid "Your Friendica site database has been installed."
+msgstr "Friendica-sivustosi tietokanta on asennettu."
 
-#: mod/admin.php:1397
+#: mod/install.php:135
 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.)"
+"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/admin.php:1398
-msgid "Enable OStatus support"
-msgstr "Salli OStatus-tuki"
+#: 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/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/install.php:148
+msgid "Database already in use."
+msgstr "Tietokanta on jo käytössä."
 
-#: mod/admin.php:1399
-msgid "Only import OStatus threads from our contacts"
-msgstr "Ainoastaan tuo OStatus -ketjuja kontakteiltamme"
+#: mod/install.php:205
+msgid "System check"
+msgstr "Järjestelmän tarkistus"
 
-#: 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/install.php:210
+msgid "Check again"
+msgstr "Tarkista uudelleen"
 
-#: 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/install.php:230
+msgid "Database connection"
+msgstr "Tietokantayhteys"
 
-#: mod/admin.php:1402
+#: mod/install.php:231
 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"
+"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/admin.php:1404
+#: mod/install.php:232
 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"
+"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/admin.php:1405
+#: mod/install.php:233
 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ä"
+"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/admin.php:1407
-msgid "Proxy URL"
-msgstr "Välityspalvelimen osoite"
+#: mod/install.php:237
+msgid "Database Server Name"
+msgstr "Tietokannan palvelimen nimi"
 
-#: mod/admin.php:1408
-msgid "Network timeout"
-msgstr "Verkon aikakatkaisu"
+#: mod/install.php:238
+msgid "Database Login Name"
+msgstr "Tietokannan käyttäjän nimi"
 
-#: mod/admin.php:1408
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr ""
+#: mod/install.php:239
+msgid "Database Login Password"
+msgstr "Tietokannan käyttäjän salasana"
 
-#: mod/admin.php:1409
-msgid "Maximum Load Average"
-msgstr "Kuorman enimmäiskeksiarvo"
+#: mod/install.php:239
+msgid "For security reasons the password must not be empty"
+msgstr "Turvallisuussyistä salasanakenttä ei saa olla tyhjä"
 
-#: 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/install.php:240
+msgid "Database Name"
+msgstr "Tietokannan nimi"
 
-#: mod/admin.php:1410
-msgid "Maximum Load Average (Frontend)"
-msgstr "Kuorman enimmäiskeskiarvo (Frontend)"
+#: mod/install.php:241 mod/install.php:281
+msgid "Site administrator email address"
+msgstr "Sivuston ylläpitäjän sähköpostiosoite"
 
-#: 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/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/admin.php:1411
-msgid "Minimal Memory"
-msgstr ""
+#: mod/install.php:245 mod/install.php:284
+msgid "Please select a default timezone for your website"
+msgstr "Valitse oletusaikavyöhyke sivustollesi"
 
-#: mod/admin.php:1411
-msgid ""
-"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
-"default 0 (deactivated)."
-msgstr ""
+#: mod/install.php:271
+msgid "Site settings"
+msgstr "Sivuston asetukset"
 
-#: mod/admin.php:1412
-msgid "Maximum table size for optimization"
-msgstr "Taulukon enimmäiskoko optimointia varten"
+#: mod/install.php:285
+msgid "System Language:"
+msgstr "Järjestelmän kieli:"
 
-#: mod/admin.php:1412
+#: mod/install.php:285
 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ä."
+"Set the default language for your Friendica installation interface and to "
+"send emails."
+msgstr "Valitse Friendica-sivustosi oletuskieli."
 
-#: mod/admin.php:1413
-msgid "Minimum level of fragmentation"
-msgstr ""
+#: 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/admin.php:1413
+#: mod/install.php:327
 msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
+"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 <a "
+"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
+"up-the-worker'>'Setup the worker'</a>"
 msgstr ""
 
-#: mod/admin.php:1415
-msgid "Periodical check of global contacts"
-msgstr ""
+#: mod/install.php:331
+msgid "PHP executable path"
+msgstr "Polku PHP-ohjelmaan"
 
-#: mod/admin.php:1415
+#: mod/install.php:331
 msgid ""
-"If enabled, the global contacts are checked periodically for missing or "
-"outdated data and the vitality of the contacts and servers."
-msgstr ""
+"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/admin.php:1416
-msgid "Days between requery"
-msgstr ""
+#: mod/install.php:336
+msgid "Command line PHP"
+msgstr "Komentorivi-PHP"
 
-#: mod/admin.php:1416
-msgid "Number of days after which a server is requeried for his contacts."
+#: mod/install.php:345
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
 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/install.php:346
+msgid "Found PHP version: "
+msgstr "PHP-versio löydetty:"
 
-#: mod/admin.php:1418
-msgid "Timeframe for fetching global contacts"
-msgstr ""
+#: mod/install.php:348
+msgid "PHP cli binary"
+msgstr "PHP cli -binääritiedosto"
 
-#: mod/admin.php:1418
+#: mod/install.php:359
 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"
+"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/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/install.php:360
+msgid "This is required for message delivery to work."
+msgstr "Asetus vaaditaan viestien lähettämiseen."
 
-#: mod/admin.php:1421
-msgid "Publish server information"
-msgstr "Julkaise palvelintiedot"
+#: mod/install.php:362
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: mod/admin.php:1421
+#: mod/install.php:385
 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 <a"
-" href='http://the-federation.info/'>the-federation.info</a> for details."
-msgstr ""
-
-#: mod/admin.php:1423
-msgid "Check upstream version"
-msgstr ""
+"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/admin.php:1423
+#: mod/install.php:386
 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"
+"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/admin.php:1424
-msgid "Suppress showing a list of hashtags at the end of the posting."
-msgstr "Piilota tunnistelista julkaisun lopussa."
+#: mod/install.php:388
+msgid "Generate encryption keys"
+msgstr "Luo salausavaimet"
 
-#: mod/admin.php:1425
-msgid "Path to item cache"
-msgstr ""
+#: mod/install.php:395
+msgid "libCurl PHP module"
+msgstr "PHP-moduuli libCurl"
 
-#: mod/admin.php:1425
-msgid "The item caches buffers generated bbcode and external images."
-msgstr ""
+#: mod/install.php:396
+msgid "GD graphics PHP module"
+msgstr "PHP-moduuli GD graphics"
 
-#: mod/admin.php:1426
-msgid "Cache duration in seconds"
-msgstr ""
+#: mod/install.php:397
+msgid "OpenSSL PHP module"
+msgstr "PHP-moduuli OpenSSL"
 
-#: 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/install.php:398
+msgid "PDO or MySQLi PHP module"
+msgstr "PDO tai MySQLi PHP-moduuli"
 
-#: mod/admin.php:1427
-msgid "Maximum numbers of comments per post"
-msgstr "Julkaisun kommentiraja"
+#: mod/install.php:399
+msgid "mb_string PHP module"
+msgstr "PHP-moduuli mb_string"
 
-#: mod/admin.php:1427
-msgid "How much comments should be shown for each post? Default value is 100."
-msgstr ""
+#: mod/install.php:400
+msgid "XML PHP module"
+msgstr "XML PHP-moduuli"
 
-#: mod/admin.php:1428
-msgid "Temp path"
-msgstr ""
+#: mod/install.php:401
+msgid "iconv PHP module"
+msgstr "iconv PHP-moduuli"
 
-#: 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/install.php:402
+msgid "POSIX PHP module"
+msgstr "POSIX PHP-moduuli"
 
-#: mod/admin.php:1429
-msgid "Base path to installation"
-msgstr "Asennuksen peruspolku"
+#: mod/install.php:406 mod/install.php:408
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite -moduuli"
 
-#: mod/admin.php:1429
+#: mod/install.php:406
 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 ""
+"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/admin.php:1430
-msgid "Disable picture proxy"
-msgstr ""
+#: 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/admin.php:1430
+#: mod/install.php:418
 msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
-msgstr ""
+"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/admin.php:1431
-msgid "Only search in tags"
-msgstr "Tunnistehaku"
+#: 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/admin.php:1431
-msgid "On large systems the text search can slow down the system extremely."
-msgstr ""
+#: 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/admin.php:1433
-msgid "New base url"
-msgstr "Uusi perusosoite"
+#: mod/install.php:430
+msgid "Error: The MySQL driver for PDO is not installed."
+msgstr "Virhe: PDO:n MySQL-ajuri ei ole asennettu"
 
-#: 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/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/admin.php:1435
-msgid "RINO Encryption"
-msgstr "RINO-salaus"
+#: 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/admin.php:1435
-msgid "Encryption layer between nodes."
-msgstr "Salauskerros solmujen välillä."
+#: 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/admin.php:1435
-msgid "Enabled"
-msgstr "Käytössä"
+#: 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/admin.php:1437
-msgid "Maximum number of parallel workers"
-msgstr "Enimmäismäärä rinnakkaisia workereitä"
+#: 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/admin.php:1437
+#: mod/install.php:465
 msgid ""
-"On shared hosters set this to 2. On larger systems, values of 10 are great. "
-"Default value is 4."
-msgstr ""
+"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/admin.php:1438
-msgid "Don't use 'proc_open' with the worker"
-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 "Tämän menettelyn lopussa annamme sinulle tekstin tallennettavaksi tiedostoon nimeltä .htconfig.php Friendican ylätason kansiossa."
 
-#: mod/admin.php:1438
+#: mod/install.php:467
 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."
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
 msgstr ""
 
-#: mod/admin.php:1439
-msgid "Enable fastlane"
-msgstr "Käytä fastlane"
+#: mod/install.php:470
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php on kirjoitettava"
 
-#: mod/admin.php:1439
+#: mod/install.php:480
 msgid ""
-"When enabed, the fastlane mechanism starts an additional worker if processes"
-" with higher priority are blocked by processes of lower priority."
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
 msgstr ""
 
-#: mod/admin.php:1440
-msgid "Enable frontend worker"
-msgstr "Ota Frontend Worker käyttöön"
-
-#: mod/admin.php:1440
-#, php-format
+#: mod/install.php:481
 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."
+"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/admin.php:1442
-msgid "Subscribe to relay"
-msgstr "Relen tilaus"
-
-#: mod/admin.php:1442
+#: mod/install.php:482
 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."
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
 msgstr ""
 
-#: mod/admin.php:1443
-msgid "Relay server"
-msgstr "Relepalvelin"
-
-#: mod/admin.php:1443
+#: mod/install.php:483
 msgid ""
-"Address of the relay server where public posts should be send to. For "
-"example https://relay.diasp.org"
+"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/admin.php:1444
-msgid "Direct relay transfer"
-msgstr "Suora releen siirto"
+#: mod/install.php:486
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 on kirjoitettava"
 
-#: mod/admin.php:1444
+#: mod/install.php:504
 msgid ""
-"Enables the direct transfer to other servers without using the relay servers"
-msgstr ""
-
-#: mod/admin.php:1445
-msgid "Relay scope"
-msgstr "Relen soveltamisala"
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "URL-osoitteen uudelleenkirjoitus .htaccess-tiedostossa ei toimi. Tarkista palvelimen asetukset."
 
-#: 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."
+#: mod/install.php:506
+msgid "Error message from Curl when fetching"
 msgstr ""
 
-#: mod/admin.php:1445
-msgid "all"
-msgstr "kaikki"
+#: mod/install.php:510
+msgid "Url rewrite is working"
+msgstr "URL-osoitteen uudellenkirjoitus toimii"
 
-#: mod/admin.php:1445
-msgid "tags"
-msgstr "tunnisteet"
+#: mod/install.php:529
+msgid "ImageMagick PHP extension is not installed"
+msgstr "ImageMagick PHP-laajennus ei ole asetettu"
 
-#: mod/admin.php:1446
-msgid "Server tags"
-msgstr "palvelintunnisteet"
+#: mod/install.php:531
+msgid "ImageMagick PHP extension is installed"
+msgstr "ImageMagick PHP-laajennus on asetettu"
 
-#: mod/admin.php:1446
-msgid "Comma separated list of tags for the 'tags' subscription."
-msgstr "Pilkulla erotettu tunnistelista tunnistetilausta varten."
+#: mod/install.php:533
+msgid "ImageMagick supports GIF"
+msgstr "ImageMagik tukee GIF-formaattia"
 
-#: mod/admin.php:1447
-msgid "Allow user tags"
-msgstr "Salli käyttäjien tunnisteet"
+#: 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/admin.php:1447
+#: mod/install.php:563
+msgid "<h1>What next</h1>"
+msgstr "<h1>Mitä seuraavaksi</h1>"
+
+#: mod/install.php:564
 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."
+"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/admin.php:1475
-msgid "Update has been marked successful"
+#: mod/install.php:567
+#, php-format
+msgid ""
+"Go to your new Friendica node <a href=\"%s/register\">registration page</a> "
+"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/admin.php:1482
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "Tietokannan rakenteen %s-päivitys onnistui."
+#: mod/invite.php:33
+msgid "Total invitation limit exceeded."
+msgstr "Kutsuraja ylitetty."
 
-#: mod/admin.php:1485
+#: mod/invite.php:55
 #, php-format
-msgid "Executing of database structure update %s failed with error: %s"
-msgstr "Tietokannan rakennepäivitys %s epäonnistui virheviestillä %s"
+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/admin.php:1498
+#: mod/invite.php:100
 #, php-format
-msgid "Executing %s failed with error: %s"
-msgstr ""
+msgid "%s : Message delivery failed."
+msgstr "%s : Viestin toimitus epäonnistui."
 
-#: mod/admin.php:1500
+#: mod/invite.php:104
 #, php-format
-msgid "Update %s was successfully applied."
-msgstr "%s-päivitys onnistui."
+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/admin.php:1503
+#: mod/invite.php:130
 #, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
+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/admin.php:1506
+#: mod/invite.php:132
 #, php-format
-msgid "There was no additional update function %s that needed to be called."
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
 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
+#: mod/invite.php:133
+#, php-format
 msgid ""
-"This does not include updates prior to 1139, which did not return a status."
+"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/admin.php:1534
-msgid "Mark success (if update was manually applied)"
+#: mod/invite.php:137
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
 msgstr ""
 
-#: mod/admin.php:1535
-msgid "Attempt to execute this update step automatically"
+#: 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/admin.php:1574
+#: mod/invite.php:140
 #, 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."
+msgid "To accept this invitation, please visit and register at %s."
 msgstr ""
 
-#: mod/admin.php:1577
-#, php-format
+#: 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 ""
-"\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."
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
 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/invite.php:151
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr ""
 
-#: 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/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/admin.php:1674
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Käyttäjä '%s' poistettu"
+#: 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/admin.php:1682
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Käyttäjä '%s' poistettu estolistalta"
+#: mod/network.php:202 src/Model/Group.php:413
+msgid "add"
+msgstr "lisää"
 
-#: mod/admin.php:1682
+#: mod/network.php:547
 #, php-format
-msgid "User '%s' blocked"
-msgstr "Käyttäjä '%s' estetty"
+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/admin.php:1743
-msgid "Private Forum"
+#: mod/network.php:550
+msgid "Messages in this group won't be send to these receivers."
 msgstr ""
 
-#: mod/admin.php:1796 mod/admin.php:1820
-msgid "Register date"
-msgstr "Rekisteripäivämäärä"
+#: mod/network.php:618
+msgid "No such group"
+msgstr "Ryhmä ei ole olemassa"
 
-#: mod/admin.php:1796 mod/admin.php:1820
-msgid "Last login"
-msgstr "Viimeisin kirjautuminen"
+#: mod/network.php:643
+#, php-format
+msgid "Group: %s"
+msgstr "Ryhmä: %s"
 
-#: mod/admin.php:1796 mod/admin.php:1820
-msgid "Last item"
-msgstr "Viimeisin kohde"
+#: 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/admin.php:1796
-msgid "Type"
-msgstr ""
+#: mod/network.php:672
+msgid "Invalid contact."
+msgstr "Virheellinen kontakti."
 
-#: mod/admin.php:1803
-msgid "Add User"
-msgstr "Lisää käyttäjä"
+#: mod/network.php:937
+msgid "Commented Order"
+msgstr "Järjestä viimeisimpien kommenttien mukaan"
 
-#: mod/admin.php:1805
-msgid "User registrations waiting for confirm"
-msgstr ""
+#: mod/network.php:940
+msgid "Sort by Comment Date"
+msgstr "Kommentit päivämäärän mukaan"
 
-#: 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/network.php:945
+msgid "Posted Order"
+msgstr "Järjestä julkaisupäivämäärän mukaan"
 
-#: mod/admin.php:1816
-msgid "Account expired"
-msgstr "Tili vanhentunut"
+#: mod/network.php:948
+msgid "Sort by Post Date"
+msgstr "Julkaisut päivämäärän mukaan"
 
-#: mod/admin.php:1819
-msgid "New User"
-msgstr "Uusi käyttäjä"
+#: mod/network.php:959
+msgid "Posts that mention or involve you"
+msgstr "Julkaisut jotka liittyvät sinuun"
 
-#: mod/admin.php:1820
-msgid "Deleted since"
-msgstr "Poistettu"
+#: mod/network.php:967
+msgid "New"
+msgstr "Uusi"
 
-#: 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?"
+#: mod/network.php:970
+msgid "Activity Stream - by date"
 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/network.php:978
+msgid "Shared Links"
+msgstr "Jaetut linkit"
 
-#: mod/admin.php:1836
-msgid "Name of the new user."
-msgstr "Uuden käyttäjän nimi."
+#: mod/network.php:981
+msgid "Interesting Links"
+msgstr "Kiinnostavat linkit"
 
-#: mod/admin.php:1837
-msgid "Nickname"
-msgstr "Lempinimi"
+#: mod/network.php:989
+msgid "Starred"
+msgstr "Tähtimerkitty"
 
-#: mod/admin.php:1837
-msgid "Nickname of the new user."
-msgstr "Uuden käyttäjän lempinimi"
+#: mod/network.php:992
+msgid "Favourite Posts"
+msgstr "Lempijulkaisut"
 
-#: mod/admin.php:1838
-msgid "Email address of the new user."
-msgstr "Uuden käyttäjän sähköpostiosoite."
+#: mod/profile.php:37 src/Model/Profile.php:118
+msgid "Requested profile is not available."
+msgstr "Pyydettyä profiilia ei saatavilla."
 
-#: mod/admin.php:1880
+#: mod/profile.php:78 src/Protocol/OStatus.php:1252
 #, php-format
-msgid "Addon %s disabled."
-msgstr "Lisäosa %s poistettu käytöstä."
+msgid "%s's posts"
+msgstr "%s: julkaisut"
 
-#: mod/admin.php:1884
+#: mod/profile.php:79 src/Protocol/OStatus.php:1253
 #, 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ä"
+msgid "%s's comments"
+msgstr "%s: kommentit"
 
-#: mod/admin.php:1897 mod/admin.php:2146
-msgid "Enable"
-msgstr "Ota käyttöön"
+#: mod/profile.php:80 src/Protocol/OStatus.php:1251
+#, php-format
+msgid "%s's timeline"
+msgstr "%s: aikajana"
 
-#: mod/admin.php:1919 mod/admin.php:2188
-msgid "Toggle"
-msgstr "Vaihda"
+#: mod/profile.php:194
+msgid "Tips for New Members"
+msgstr "Vinkkejä uusille käyttäjille"
 
-#: mod/admin.php:1927 mod/admin.php:2197
-msgid "Author: "
-msgstr "Tekijä"
+#: mod/settings.php:56
+msgid "Account"
+msgstr "Tili"
 
-#: mod/admin.php:1928 mod/admin.php:2198
-msgid "Maintainer: "
-msgstr "Ylläpitäjä:"
+#: mod/settings.php:73
+msgid "Display"
+msgstr "Ulkonäkö"
 
-#: mod/admin.php:1980
-msgid "Reload active addons"
-msgstr ""
+#: mod/settings.php:80 mod/settings.php:844
+msgid "Social Networks"
+msgstr "Sosiaalinen media"
 
-#: 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"
+#: mod/settings.php:94 src/Content/Nav.php:201
+msgid "Delegations"
 msgstr ""
 
-#: mod/admin.php:2105
-msgid "No themes found."
-msgstr "Teemoja ei löytynyt."
+#: mod/settings.php:101
+msgid "Connected apps"
+msgstr "Yhdistetyt sovellukset"
 
-#: mod/admin.php:2179
-msgid "Screenshot"
-msgstr "Kuvakaappaus"
+#: mod/settings.php:115
+msgid "Remove account"
+msgstr "Poista tili"
 
-#: mod/admin.php:2233
-msgid "Reload active themes"
-msgstr "Lataa aktiiviset teemat uudelleen"
+#: mod/settings.php:169
+msgid "Missing some important data!"
+msgstr "Tärkeää dataa puuttuu!"
 
-#: mod/admin.php:2238
-#, php-format
-msgid "No themes found on the system. They should be placed in %1$s"
+#: mod/settings.php:280
+msgid "Failed to connect with email account using the settings provided."
 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/settings.php:285
+msgid "Email settings updated."
+msgstr "Sähköpostin asetukset päivitettiin."
 
-#: mod/admin.php:2298
-msgid "PHP log currently disabled."
-msgstr "PHP-loki pois käytöstä"
+#: mod/settings.php:301
+msgid "Features updated"
+msgstr "Ominaisuudet päivitetty"
 
-#: mod/admin.php:2307
-msgid "Clear"
-msgstr "Tyhjennä"
+#: mod/settings.php:374
+msgid "Relocate message has been send to your contacts"
+msgstr ""
 
-#: mod/admin.php:2311
-msgid "Enable Debugging"
-msgstr "Ota virheenkorjaustila käyttöön"
+#: 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/admin.php:2312
-msgid "Log file"
-msgstr "Lokitiedosto"
+#: mod/settings.php:391
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Tyhjä salasanakenttä ei ole sallittu. Salasana ennallaan."
 
-#: mod/admin.php:2312
+#: mod/settings.php:396 src/Core/Console/NewPassword.php:87
 msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
+"The new password has been exposed in a public data dump, please choose "
+"another."
 msgstr ""
 
-#: mod/admin.php:2313
-msgid "Log level"
-msgstr "Lokitaso"
+#: mod/settings.php:402
+msgid "Wrong password."
+msgstr "Väärä salasana."
 
-#: mod/admin.php:2315
-msgid "PHP logging"
-msgstr "PHP-loki"
+#: mod/settings.php:409 src/Core/Console/NewPassword.php:94
+msgid "Password changed."
+msgstr "Salasana vaihdettu."
 
-#: 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/settings.php:411 src/Core/Console/NewPassword.php:91
+msgid "Password update failed. Please try again."
+msgstr "Salasanan vaihto epäonnistui. Yritä uudelleen."
 
-#: mod/admin.php:2347
-#, php-format
-msgid ""
-"Error trying to open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see "
-"if file %1$s exist and is readable."
-msgstr ""
+#: mod/settings.php:498
+msgid " Please use a shorter name."
+msgstr "Käytä lyhyempää nimeä."
 
-#: mod/admin.php:2351
-#, php-format
-msgid ""
-"Couldn't open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see if file"
-" %1$s is readable."
-msgstr ""
+#: mod/settings.php:501
+msgid " Name too short."
+msgstr "Nimi on liian lyhyt."
 
-#: mod/admin.php:2443
-#, php-format
-msgid "Lock feature %s"
-msgstr "Lukitse ominaisuus %s"
+#: mod/settings.php:509
+msgid "Wrong Password"
+msgstr "Väärä salasana"
 
-#: mod/admin.php:2451
-msgid "Manage Additional Features"
-msgstr "Hallitse lisäominaisuudet"
+#: mod/settings.php:514
+msgid "Invalid email."
+msgstr "Virheellinen sähköposti."
 
-#: mod/delegate.php:37
-msgid "Parent user not found."
+#: mod/settings.php:521
+msgid "Cannot change to that email."
 msgstr ""
 
-#: mod/delegate.php:144
-msgid "No parent user"
+#: mod/settings.php:574
+msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr ""
 
-#: mod/delegate.php:159
-msgid "Parent Password:"
+#: mod/settings.php:577
+msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr ""
 
-#: mod/delegate.php:159
-msgid ""
-"Please enter the password of the parent account to legitimize your request."
-msgstr ""
+#: mod/settings.php:617
+msgid "Settings updated."
+msgstr "Asetukset päivitetty."
 
-#: mod/delegate.php:164
-msgid "Parent User"
-msgstr ""
+#: mod/settings.php:676 mod/settings.php:702 mod/settings.php:738
+msgid "Add application"
+msgstr "Lisää sovellus"
 
-#: 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/settings.php:680 mod/settings.php:706
+msgid "Consumer Key"
+msgstr "Kuluttajan avain"
 
-#: mod/delegate.php:170
-msgid "Delegates"
-msgstr ""
+#: mod/settings.php:681 mod/settings.php:707
+msgid "Consumer Secret"
+msgstr "Kuluttajasalaisuus"
 
-#: 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/settings.php:682 mod/settings.php:708
+msgid "Redirect"
+msgstr "Uudelleenohjaus"
 
-#: mod/delegate.php:173
-msgid "Existing Page Delegates"
-msgstr ""
+#: mod/settings.php:683 mod/settings.php:709
+msgid "Icon url"
+msgstr "Kuvakkeen URL-osoite"
 
-#: mod/delegate.php:175
-msgid "Potential Delegates"
-msgstr ""
+#: mod/settings.php:694
+msgid "You can't edit this application."
+msgstr "Et voi muokata tätä sovellusta."
 
-#: mod/delegate.php:177 mod/tagrm.php:98
-msgid "Remove"
-msgstr "Poista"
+#: mod/settings.php:737
+msgid "Connected Apps"
+msgstr "Yhdistetyt sovellukset"
 
-#: mod/delegate.php:178
-msgid "Add"
-msgstr "Lisää"
+#: mod/settings.php:739 src/Object/Post.php:155 src/Object/Post.php:157
+msgid "Edit"
+msgstr "Muokkaa"
 
-#: mod/delegate.php:179
-msgid "No entries."
-msgstr ""
-
-#: mod/photos.php:109 mod/photos.php:1713
-msgid "Recent Photos"
-msgstr "Viimeaikaisia kuvia"
+#: mod/settings.php:741
+msgid "Client key starts with"
+msgstr "Asiakasavain alkaa"
 
-#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715
-msgid "Upload New Photos"
-msgstr "Lähetä uusia kuvia"
+#: mod/settings.php:742
+msgid "No name"
+msgstr "Ei nimeä"
 
-#: mod/photos.php:184
-msgid "Contact information unavailable"
-msgstr "Kontaktin tietoja ei saatavilla"
+#: mod/settings.php:743
+msgid "Remove authorization"
+msgstr "Poista lupa"
 
-#: mod/photos.php:204
-msgid "Album not found."
-msgstr "Albumia ei ole."
+#: mod/settings.php:754
+msgid "No Addon settings configured"
+msgstr "Lisäosa-asetukset puuttuvat"
 
-#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161
-msgid "Delete Album"
-msgstr "Poista albumi"
+#: mod/settings.php:763
+msgid "Addon Settings"
+msgstr "Lisäosa-asetukset"
 
-#: 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/settings.php:784
+msgid "Additional Features"
+msgstr "Lisäominaisuuksia"
 
-#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446
-msgid "Delete Photo"
-msgstr "Poista valokuva"
+#: mod/settings.php:807 src/Content/ContactSelector.php:83
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: mod/photos.php:319
-msgid "Do you really want to delete this photo?"
-msgstr "Haluatko varmasti poistaa kuvan?"
+#: mod/settings.php:807 mod/settings.php:808
+msgid "enabled"
+msgstr "käytössä"
 
-#: mod/photos.php:667
-msgid "a photo"
-msgstr "valokuva"
+#: mod/settings.php:807 mod/settings.php:808
+msgid "disabled"
+msgstr "pois käytöstä"
 
-#: mod/photos.php:667
+#: mod/settings.php:807 mod/settings.php:808
 #, 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"
+msgid "Built-in support for %s connectivity is %s"
+msgstr ""
 
-#: mod/photos.php:769
-msgid "Image upload didn't complete, please try again"
-msgstr "Kuvan lataus ei onnistunut, yritä uudelleen"
+#: mod/settings.php:808
+msgid "GNU Social (OStatus)"
+msgstr "GNU Social (OStatus)"
 
-#: mod/photos.php:772
-msgid "Image file is missing"
-msgstr "Kuvatiedosto puuttuu"
+#: mod/settings.php:839
+msgid "Email access is disabled on this site."
+msgstr ""
 
-#: mod/photos.php:777
+#: 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 ""
-"Server can't accept new file upload at this time, please contact your "
-"administrator"
+"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/photos.php:803
-msgid "Image file is empty."
-msgstr "Kuvatiedosto on tyhjä."
+#: mod/settings.php:851
+msgid "Disable intelligent shortening"
+msgstr ""
 
-#: mod/photos.php:940
-msgid "No photos selected"
-msgstr "Ei valittuja kuvia"
+#: 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/photos.php:1036 mod/videos.php:309
-msgid "Access to this item is restricted."
-msgstr "Pääsy kohteeseen on rajoitettu."
+#: mod/settings.php:852
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+msgstr "Automaattisesti seuraa GNU social (OStatus) seuraajat/mainitsijat"
 
-#: mod/photos.php:1090
-msgid "Upload Photos"
-msgstr "Lähetä kuvia"
+#: 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/photos.php:1094 mod/photos.php:1156
-msgid "New album name: "
-msgstr "Albumin uusi nimi: "
+#: mod/settings.php:853
+msgid "Default group for OStatus contacts"
+msgstr "Oletusryhmä OStatus kontakteille"
 
-#: mod/photos.php:1095
-msgid "or existing album name: "
-msgstr "tai olemassaolevan albumin nimi: "
+#: mod/settings.php:854
+msgid "Your legacy GNU Social account"
+msgstr "Vanha GNU social käyttäjätilisi"
 
-#: mod/photos.php:1096
-msgid "Do not show a status post for this upload"
-msgstr "Älä näytä tilaviestiä tälle lähetykselle"
+#: 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/photos.php:1167
-msgid "Edit Album"
-msgstr "Muokkaa albumia"
+#: mod/settings.php:857
+msgid "Repair OStatus subscriptions"
+msgstr "Korjaa OStatus tilaukset"
 
-#: mod/photos.php:1172
-msgid "Show Newest First"
-msgstr "Näytä uusin ensin"
+#: mod/settings.php:861
+msgid "Email/Mailbox Setup"
+msgstr "Sähköpostin asennus"
 
-#: mod/photos.php:1174
-msgid "Show Oldest First"
-msgstr "Näytä vanhin ensin"
+#: 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/photos.php:1195 mod/photos.php:1698
-msgid "View Photo"
-msgstr "Näytä kuva"
+#: mod/settings.php:863
+msgid "Last successful email check:"
+msgstr "Viimeisin onnistunut sähköpostitarkistus:"
 
-#: 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/settings.php:865
+msgid "IMAP server name:"
+msgstr "IMAP-palvelimen nimi:"
 
-#: mod/photos.php:1238
-msgid "Photo not available"
-msgstr "Kuva ei ole saatavilla"
+#: mod/settings.php:866
+msgid "IMAP port:"
+msgstr "IMAP-porttti:"
 
-#: mod/photos.php:1301
-msgid "View photo"
-msgstr "Näytä kuva"
+#: mod/settings.php:867
+msgid "Security:"
+msgstr "Turvallisuus:"
 
-#: mod/photos.php:1301
-msgid "Edit photo"
-msgstr "Muokkaa kuvaa"
+#: mod/settings.php:867 mod/settings.php:872
+msgid "None"
+msgstr "Ei mitään"
 
-#: mod/photos.php:1302
-msgid "Use as profile photo"
-msgstr "Käytä profiilikuvana"
+#: mod/settings.php:868
+msgid "Email login name:"
+msgstr "Sähköpostitilin käyttäjätunnus:"
 
-#: mod/photos.php:1327
-msgid "View Full Size"
-msgstr "Näytä täysikokoisena"
+#: mod/settings.php:869
+msgid "Email password:"
+msgstr "Sähköpostin salasana:"
 
-#: mod/photos.php:1414
-msgid "Tags: "
-msgstr "Merkinnät:"
+#: mod/settings.php:870
+msgid "Reply-to address:"
+msgstr "Vastausosoite:"
 
-#: mod/photos.php:1417
-msgid "[Remove any tag]"
-msgstr "[Poista mikä tahansa merkintä]"
+#: mod/settings.php:871
+msgid "Send public posts to all email contacts:"
+msgstr "Lähetä julkiset julkaisut kaikille kontakteille:"
 
-#: mod/photos.php:1432
-msgid "New album name"
-msgstr "Uusi nimi albumille"
+#: mod/settings.php:872
+msgid "Action after import:"
+msgstr "Toiminta tuonnin jälkeen:"
 
-#: mod/photos.php:1433
-msgid "Caption"
-msgstr "Kuvateksti"
+#: mod/settings.php:872 src/Content/Nav.php:189
+msgid "Mark as seen"
+msgstr "Merkitse luetuksi"
 
-#: mod/photos.php:1434
-msgid "Add a Tag"
-msgstr "Lisää merkintä"
+#: mod/settings.php:872
+msgid "Move to folder"
+msgstr "Siirrä kansioon"
 
-#: 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/settings.php:873
+msgid "Move to folder:"
+msgstr "Siirrä kansioon:"
 
-#: mod/photos.php:1435
-msgid "Do not rotate"
-msgstr "Älä kierrä"
+#: mod/settings.php:916
+#, php-format
+msgid "%s - (Unsupported)"
+msgstr "%s - (Ei tueta)"
 
-#: mod/photos.php:1436
-msgid "Rotate CW (right)"
-msgstr "Käännä oikealle"
+#: mod/settings.php:918
+#, php-format
+msgid "%s - (Experimental)"
+msgstr "%s - (Kokeellinen)"
 
-#: mod/photos.php:1437
-msgid "Rotate CCW (left)"
-msgstr "Käännä vasemmalle"
+#: mod/settings.php:961
+msgid "Display Settings"
+msgstr "Näyttöasetukset"
 
-#: mod/photos.php:1634
-msgid "Map"
-msgstr "Kartta"
+#: mod/settings.php:967 mod/settings.php:991
+msgid "Display Theme:"
+msgstr "Käyttöliittymän teema:"
 
-#: mod/photos.php:1704 mod/videos.php:387
-msgid "View Album"
-msgstr "Näytä albumi"
+#: mod/settings.php:968
+msgid "Mobile Theme:"
+msgstr "Mobiiliteema:"
 
-#: mod/nogroup.php:43 mod/contacts.php:960
-msgid "Edit contact"
-msgstr "Muokkaa kontaktia"
+#: mod/settings.php:969
+msgid "Suppress warning of insecure networks"
+msgstr ""
 
-#: 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
+#: mod/settings.php:969
 msgid ""
-"This community stream shows all public posts received by this node. They may"
-" not reflect the opinions of this node’s users."
+"Should the system suppress the warning that the current group contains "
+"members of networks that can't receive non public postings."
 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/settings.php:970
+msgid "Update browser every xx seconds"
+msgstr "Päivitä selain xx sekunnin välein"
 
-#: mod/message.php:80 mod/wallmessage.php:63
-msgid "Message could not be sent."
-msgstr "Viestiä ei voitu lähettää."
+#: 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/message.php:83 mod/wallmessage.php:66
-msgid "Message collection failure."
-msgstr "Viestin noutaminen epäonnistui."
+#: mod/settings.php:971
+msgid "Number of items to display per page:"
+msgstr ""
 
-#: mod/message.php:86 mod/wallmessage.php:69
-msgid "Message sent."
-msgstr "Viesti lähetetty."
+#: mod/settings.php:971 mod/settings.php:972
+msgid "Maximum of 100 items"
+msgstr "Enintään 100 kohdetta"
 
-#: mod/message.php:136
-msgid "Do you really want to delete this message?"
-msgstr "Haluatko varmasti poistaa viestin?"
+#: mod/settings.php:972
+msgid "Number of items to display per page when viewed from mobile device:"
+msgstr ""
 
-#: mod/message.php:156
-msgid "Message deleted."
-msgstr "Viesti poistettu."
+#: mod/settings.php:973
+msgid "Don't show emoticons"
+msgstr "Piilota hymiöt"
 
-#: mod/message.php:185
-msgid "Conversation removed."
-msgstr "Keskustelu poistettu."
+#: mod/settings.php:974
+msgid "Calendar"
+msgstr "Kalenteri"
 
-#: mod/message.php:250 mod/wallmessage.php:132
-msgid "Send Private Message"
-msgstr "Lähetä yksityisviesti"
+#: mod/settings.php:975
+msgid "Beginning of week:"
+msgstr "Viikon alku:"
 
-#: mod/message.php:251 mod/message.php:421 mod/wallmessage.php:134
-msgid "To:"
-msgstr "Vastaanottaja:"
+#: mod/settings.php:976
+msgid "Don't show notices"
+msgstr ""
 
-#: mod/message.php:255 mod/message.php:423 mod/wallmessage.php:135
-msgid "Subject:"
-msgstr "Aihe:"
+#: mod/settings.php:977
+msgid "Infinite scroll"
+msgstr "Loputon selaaminen"
 
-#: mod/message.php:291
-msgid "No messages."
-msgstr "Ei viestejä."
+#: mod/settings.php:978
+msgid "Automatic updates only at the top of the network page"
+msgstr ""
 
-#: mod/message.php:330
-msgid "Message not available."
-msgstr "Viesti ei saatavilla."
+#: mod/settings.php:978
+msgid ""
+"When disabled, the network page is updated all the time, which could be "
+"confusing while reading."
+msgstr ""
 
-#: mod/message.php:397
-msgid "Delete message"
-msgstr "Poista viesti"
+#: mod/settings.php:979
+msgid "Bandwith Saver Mode"
+msgstr "Kaistanleveyssäästömoodi"
 
-#: mod/message.php:399 mod/message.php:500
-msgid "D, d M Y - g:i A"
+#: mod/settings.php:979
+msgid ""
+"When enabled, embedded content is not displayed on automatic updates, they "
+"only show on page reload."
 msgstr ""
 
-#: mod/message.php:414 mod/message.php:497
-msgid "Delete conversation"
-msgstr "Poista keskustelu"
+#: mod/settings.php:980
+msgid "Smart Threading"
+msgstr ""
 
-#: mod/message.php:416
+#: mod/settings.php:980
 msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
+"When enabled, suppress extraneous thread indentation while keeping it where "
+"it matters. Only works if threading is available and enabled."
 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/settings.php:982
+msgid "General Theme Settings"
+msgstr "Yleiset teeman asetukset"
 
-#: mod/message.php:473
-#, php-format
-msgid "You and %s"
-msgstr "Sinä ja %s"
+#: mod/settings.php:983
+msgid "Custom Theme Settings"
+msgstr "Mukautetut teema-asetukset"
 
-#: mod/message.php:475
-#, php-format
-msgid "%s and You"
-msgstr "%s ja sinä"
+#: mod/settings.php:984
+msgid "Content Settings"
+msgstr "Sisältöasetukset"
 
-#: mod/message.php:503
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d viesti"
-msgstr[1] "%d viestiä"
+#: 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/videos.php:139
-msgid "Do you really want to delete this video?"
-msgstr "Haluatko varmasti poistaa tämän videon?"
+#: 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/videos.php:144
-msgid "Delete Video"
-msgstr "Poista video"
+#: mod/settings.php:1046
+msgid "Account Types"
+msgstr "Tilityypit"
 
-#: mod/videos.php:207
-msgid "No videos selected"
-msgstr "Ei videoita valittuna"
+#: mod/settings.php:1047
+msgid "Personal Page Subtypes"
+msgstr "Henkilökohtaisen sivun alatyypit"
 
-#: mod/videos.php:396
-msgid "Recent Videos"
-msgstr "Viimeisimmät videot"
+#: mod/settings.php:1048
+msgid "Community Forum Subtypes"
+msgstr "Yhteisöfoorumin alatyypit"
 
-#: mod/videos.php:398
-msgid "Upload New Videos"
-msgstr "Lataa uusia videoita"
+#: mod/settings.php:1056
+msgid "Account for a personal profile."
+msgstr "Henkilökohtaisen profiilin käyttäjätili."
 
-#: mod/credits.php:18
-msgid "Credits"
-msgstr "Lopputekstit"
+#: mod/settings.php:1060
+msgid ""
+"Account for an organisation that automatically approves contact requests as "
+"\"Followers\"."
+msgstr ""
 
-#: mod/credits.php:19
+#: mod/settings.php:1064
 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!"
+"Account for a news reflector that automatically approves contact requests as"
+" \"Followers\"."
 msgstr ""
 
-#: mod/unfollow.php:34
-msgid "Contact wasn't found or can't be unfollowed."
+#: mod/settings.php:1068
+msgid "Account for community discussions."
 msgstr ""
 
-#: mod/unfollow.php:47
-msgid "Contact unfollowed"
-msgstr "Kontaktia ei enää seurata"
+#: mod/settings.php:1072
+msgid ""
+"Account for a regular personal profile that requires manual approval of "
+"\"Friends\" and \"Followers\"."
+msgstr ""
 
-#: mod/unfollow.php:65 mod/dfrn_request.php:662 mod/follow.php:62
-msgid "Submit Request"
-msgstr "Lähetä pyyntö"
+#: mod/settings.php:1076
+msgid ""
+"Account for a public profile that automatically approves contact requests as"
+" \"Followers\"."
+msgstr ""
 
-#: mod/unfollow.php:73
-msgid "You aren't a friend of this contact."
-msgstr "Et ole kontaktin kaveri."
+#: mod/settings.php:1080
+msgid "Automatically approves all contact requests."
+msgstr "Automaattisesti hyväksyy kaikki kontaktipyynnöt"
 
-#: mod/unfollow.php:79
-msgid "Unfollowing is currently not supported by your network."
-msgstr "Seuraamisen lopettaminen ei tällä hetkellä tueta verkossasi."
+#: mod/settings.php:1084
+msgid ""
+"Account for a popular profile that automatically approves contact requests "
+"as \"Friends\"."
+msgstr ""
 
-#: mod/unfollow.php:100 mod/contacts.php:599
-msgid "Disconnect/Unfollow"
-msgstr "Katkaise / Lopeta seuraaminen"
+#: mod/settings.php:1087
+msgid "Private Forum [Experimental]"
+msgstr "Yksityisfoorumi [kokeellinen]"
 
-#: mod/unfollow.php:113 mod/dfrn_request.php:660 mod/follow.php:157
-msgid "Your Identity Address:"
-msgstr "Identiteettisi osoite:"
+#: mod/settings.php:1088
+msgid "Requires manual approval of contact requests."
+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 "Virheellinen pyyntö."
+#: mod/settings.php:1099
+msgid "OpenID:"
+msgstr "OpenID:"
 
-#: mod/wall_attach.php:101
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+#: mod/settings.php:1099
+msgid "(Optional) Allow this OpenID to login to this account."
 msgstr ""
 
-#: mod/wall_attach.php:101
-msgid "Or - did you try to upload an empty file?"
-msgstr "Yrititkö ladata tyhjän tiedoston?"
+#: mod/settings.php:1107
+msgid "Publish your default profile in your local site directory?"
+msgstr "Julkaise oletusprofiilisi tämän sivuston paikallisluettelossa?"
 
-#: mod/wall_attach.php:112
+#: mod/settings.php:1107
 #, php-format
-msgid "File exceeds size limit of %s"
-msgstr "Tiedosto ylittää kokorajoituksen %s"
+msgid ""
+"Your profile will be published in the global friendica directories (e.g. <a "
+"href=\"%s\">%s</a>). Your profile will be visible in public."
+msgstr ""
 
-#: mod/wall_attach.php:136 mod/wall_attach.php:152
-msgid "File upload failed."
-msgstr "Tiedoston lähettäminen epäonnistui."
+#: mod/settings.php:1113
+msgid "Publish your default profile in the global social directory?"
+msgstr "Julkaise oletusprofiilisi maailmanlaajuisessa sosiaaliluettelossa?"
 
-#: mod/profile.php:194
-msgid "Tips for New Members"
-msgstr "Vinkkejä uusille käyttäjille"
+#: mod/settings.php:1113
+#, php-format
+msgid ""
+"Your profile will be published in this node's <a href=\"%s\">local "
+"directory</a>. Your profile details may be publicly visible depending on the"
+" system settings."
+msgstr ""
 
-#: mod/localtime.php:33
-msgid "Time Conversion"
-msgstr "Aikamuunnos"
+#: mod/settings.php:1120
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr ""
 
-#: mod/localtime.php:35
+#: mod/settings.php:1120
 msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
+"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/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/settings.php:1124
+msgid "Hide your profile details from anonymous viewers?"
+msgstr ""
 
-#: mod/localtime.php:46
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Muunnettu paikallisaika: %s"
+#: 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/localtime.php:52
-msgid "Please select your timezone:"
-msgstr "Valitse aikavyöhykkeesi:"
+#: mod/settings.php:1128
+msgid "Allow friends to post to your profile page?"
+msgstr "Anna kavereiden julkaista profiilisivullasi?"
 
-#: mod/dfrn_request.php:94
-msgid "This introduction has already been accepted."
-msgstr "Tämä esittely on jo hyväksytty."
+#: mod/settings.php:1128
+msgid ""
+"Your contacts may write posts on your profile wall. These posts will be "
+"distributed to your contacts"
+msgstr ""
 
-#: 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/settings.php:1132
+msgid "Allow friends to tag your posts?"
+msgstr "Anna kavereiden lisätä tunnisteita julkaisuusi?"
 
-#: 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/settings.php:1132
+msgid "Your contacts can add additional tags to your posts."
+msgstr "Kontaktisi voi lisätä ylimääräisiä tunnisteita julkaisuusi."
 
-#: 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/settings.php:1136
+msgid "Allow us to suggest you as a potential friend to new members?"
+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/settings.php:1136
+msgid ""
+"If you like, Friendica may suggest new members to add you as a contact."
+msgstr ""
 
-#: mod/dfrn_request.php:162
-msgid "Introduction complete."
-msgstr "Esittely valmis."
+#: mod/settings.php:1140
+msgid "Permit unknown people to send you private mail?"
+msgstr "Salli yksityisviesit tuntemattomilta?"
 
-#: mod/dfrn_request.php:199
-msgid "Unrecoverable protocol error."
-msgstr "Vakava protokollavirhe."
+#: mod/settings.php:1140
+msgid ""
+"Friendica network users may send you private messages even if they are not "
+"in your contact list."
+msgstr ""
 
-#: mod/dfrn_request.php:226
-msgid "Profile unavailable."
-msgstr "Profiili ei saatavilla."
+#: mod/settings.php:1144
+msgid "Profile is <strong>not published</strong>."
+msgstr "Profiili <strong>ei ole julkaistu</strong>."
 
-#: mod/dfrn_request.php:248
+#: mod/settings.php:1150
 #, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s on saanut liikaa yhteyspyyntöjä tänään."
+msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
+msgstr "Identiteettisi osoite on <strong>'%s'</strong> tai '%s'."
 
-#: mod/dfrn_request.php:249
-msgid "Spam protection measures have been invoked."
-msgstr "Roskapostisuojaukset otettu käyttöön."
+#: mod/settings.php:1157
+msgid "Automatically expire posts after this many days:"
+msgstr ""
 
-#: 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/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/dfrn_request.php:280
-msgid "Invalid locator"
-msgstr "Viallinen paikannin"
+#: mod/settings.php:1158
+msgid "Advanced expiration settings"
+msgstr ""
 
-#: mod/dfrn_request.php:316
-msgid "You have already introduced yourself here."
-msgstr "Olet jo esitellyt itsesi täällä."
+#: mod/settings.php:1159
+msgid "Advanced Expiration"
+msgstr ""
 
-#: 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/settings.php:1160
+msgid "Expire posts:"
+msgstr "Julkaisujen vanheneminen:"
 
-#: mod/dfrn_request.php:339
-msgid "Invalid profile URL."
-msgstr "Viallinen profiiliosoite."
+#: mod/settings.php:1161
+msgid "Expire personal notes:"
+msgstr ""
 
-#: mod/dfrn_request.php:419 mod/contacts.php:230
-msgid "Failed to update contact record."
-msgstr "Kontaktitietojen päivitys epäonnistui."
+#: mod/settings.php:1162
+msgid "Expire starred posts:"
+msgstr "Tähtimerkityt julkaisut vanhenee:"
 
-#: mod/dfrn_request.php:439
-msgid "Your introduction has been sent."
-msgstr "Esittelysi lähetettiin."
+#: mod/settings.php:1163
+msgid "Expire photos:"
+msgstr "Kuvat vanhenee:"
 
-#: mod/dfrn_request.php:477
-msgid ""
-"Remote subscription can't be done for your network. Please subscribe "
-"directly on your system."
+#: mod/settings.php:1164
+msgid "Only expire posts by others:"
 msgstr ""
 
-#: mod/dfrn_request.php:493
-msgid "Please login to confirm introduction."
-msgstr "Kirjaudu vahvistaaksesi esittelysi."
+#: mod/settings.php:1194
+msgid "Account Settings"
+msgstr "Tiliasetukset"
 
-#: mod/dfrn_request.php:501
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Väärä identiteetti kirjautuneena sisään. Kirjaudu <strong>tähän</strong> profiiliin."
+#: mod/settings.php:1202
+msgid "Password Settings"
+msgstr "Salasana-asetukset"
 
-#: mod/dfrn_request.php:515 mod/dfrn_request.php:532
-msgid "Confirm"
-msgstr "Vahvista"
+#: mod/settings.php:1204
+msgid "Leave password fields blank unless changing"
+msgstr "Jätä salasana kenttää tyhjäksi jos et halua vaihtaa salasanaa"
 
-#: mod/dfrn_request.php:527
-msgid "Hide this contact"
-msgstr "Piilota kontakti"
+#: mod/settings.php:1205
+msgid "Current Password:"
+msgstr "Nykyinen salasana:"
 
-#: mod/dfrn_request.php:530
-#, php-format
-msgid "Welcome home %s."
-msgstr "Tervetuloa kotiin %s."
+#: mod/settings.php:1205 mod/settings.php:1206
+msgid "Your current password to confirm the changes"
+msgstr ""
 
-#: 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/settings.php:1206
+msgid "Password:"
+msgstr "Salasana:"
 
-#: 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/settings.php:1210
+msgid "Basic Settings"
+msgstr "Perusasetukset"
 
-#: mod/dfrn_request.php:645
-#, php-format
+#: 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 ""
-"If you are not yet a member of the free social web, <a href=\"%s\">follow "
-"this link to find a public Friendica site and join us today</a>."
+"Set the language we use to show you friendica interface and to send you "
+"emails"
 msgstr ""
 
-#: mod/dfrn_request.php:650
-msgid "Friend/Connection Request"
-msgstr "Ystävä/yhteyspyyntö"
+#: mod/settings.php:1215
+msgid "Default Post Location:"
+msgstr "Julkaisun oletussijainti:"
 
-#: 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/settings.php:1216
+msgid "Use Browser Location:"
+msgstr "Käytä selaimen sijainti:"
 
-#: mod/dfrn_request.php:652 mod/follow.php:149
-msgid "Please answer the following:"
-msgstr "Vastaa seuraavaan:"
+#: mod/settings.php:1219
+msgid "Security and Privacy Settings"
+msgstr "Turvallisuus ja tietosuoja-asetukset"
 
-#: mod/dfrn_request.php:653 mod/follow.php:150
-#, php-format
-msgid "Does %s know you?"
-msgstr "Tunteeko %s sinut?"
+#: mod/settings.php:1221
+msgid "Maximum Friend Requests/Day:"
+msgstr "Kaveripyyntöraja päivässä:"
 
-#: mod/dfrn_request.php:654 mod/follow.php:151
-msgid "Add a personal note:"
-msgstr "Lisää oma merkintä:"
+#: mod/settings.php:1221 mod/settings.php:1250
+msgid "(to prevent spam abuse)"
+msgstr "(roskapostin estämiseksi)"
 
-#: mod/dfrn_request.php:657
-msgid "GNU Social (Pleroma, Mastodon)"
-msgstr "GNU Social (Pleroma, Mastodon)"
+#: mod/settings.php:1222
+msgid "Default Post Permissions"
+msgstr "Julkaisun oletuskäyttöoikeudet:"
 
-#: mod/dfrn_request.php:658
-msgid "Diaspora (Socialhome, Hubzilla)"
-msgstr "Diaspora (Socialhome, Hubzilla)"
+#: mod/settings.php:1223
+msgid "(click to open/close)"
+msgstr "(klikkaa auki/kiinni)"
 
-#: 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/settings.php:1233
+msgid "Default Private Post"
+msgstr ""
 
-#: mod/crepair.php:89
-msgid "Contact update failed."
-msgstr "Kontaktipäivitys epäonnistui."
+#: mod/settings.php:1234
+msgid "Default Public Post"
+msgstr ""
 
-#: mod/crepair.php:114
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>VAROITUS: Tämä on erittäin vaativaa</strong> ja jos kirjoitat virheellisiä tietoja, viestintäsi tämän henkilön kanssa voi lakata toimimasta."
+#: mod/settings.php:1238
+msgid "Default Permissions for New Posts"
+msgstr "Uuden julkaisun oletuskäyttöoikeudet"
 
-#: mod/crepair.php:115
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Ole hyvä ja paina selaimesi 'Takaisin'-painiketta <strong>nyt</strong>, jos olet epävarma tämän sivun toiminnoista."
+#: 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/crepair.php:129 mod/crepair.php:131
-msgid "No mirroring"
-msgstr "Ei peilausta"
+#: mod/settings.php:1253
+msgid "Notification Settings"
+msgstr "Huomautusasetukset"
 
-#: mod/crepair.php:129
-msgid "Mirror as forwarded posting"
-msgstr "Peilaa välitettynä julkaisuna"
+#: mod/settings.php:1254
+msgid "By default post a status message when:"
+msgstr "Oletuksena julkaise tilapäivitys kun:"
 
-#: mod/crepair.php:129 mod/crepair.php:131
-msgid "Mirror as my own posting"
-msgstr "Peilaa omana julkaisuna"
+#: mod/settings.php:1255
+msgid "accepting a friend request"
+msgstr "hyväksyt kaveripyynnön"
 
-#: mod/crepair.php:144
-msgid "Return to contact editor"
-msgstr "Palaa kontaktin muokkaamiseen"
+#: mod/settings.php:1256
+msgid "joining a forum/community"
+msgstr "liityt foorumiin/yhteisöön"
 
-#: mod/crepair.php:146
-msgid "Refetch contact data"
-msgstr ""
+#: mod/settings.php:1257
+msgid "making an <em>interesting</em> profile change"
+msgstr "muokkaat <em>kiinnostavalla tavalla</em> profiiliasi"
 
-#: mod/crepair.php:149
-msgid "Remote Self"
-msgstr ""
+#: mod/settings.php:1258
+msgid "Send a notification email when:"
+msgstr "Lähetä sähköposti-ilmoitus kun:"
 
-#: mod/crepair.php:152
-msgid "Mirror postings from this contact"
-msgstr "Peilaa tämän kontaktin julkaisut"
+#: mod/settings.php:1259
+msgid "You receive an introduction"
+msgstr "Vastaanotat kaverikutsun"
 
-#: mod/crepair.php:154
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
-msgstr ""
+#: mod/settings.php:1260
+msgid "Your introductions are confirmed"
+msgstr "Kaverikutsusi on hyväksytty"
 
-#: mod/crepair.php:159
-msgid "Account Nickname"
-msgstr "Tilin lempinimi"
+#: mod/settings.php:1261
+msgid "Someone writes on your profile wall"
+msgstr "Joku kirjoittaa profiiliseinällesi"
 
-#: mod/crepair.php:160
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tagname - ohittaa Nimen/Nimimerkin"
+#: mod/settings.php:1262
+msgid "Someone writes a followup comment"
+msgstr "Joku vastaa kommenttiin"
 
-#: mod/crepair.php:161
-msgid "Account URL"
-msgstr "Tilin URL-osoite"
+#: mod/settings.php:1263
+msgid "You receive a private message"
+msgstr "Vastaanotat yksityisviestin"
 
-#: mod/crepair.php:162
-msgid "Friend Request URL"
-msgstr "URL kaveripyyntöä varten"
+#: mod/settings.php:1264
+msgid "You receive a friend suggestion"
+msgstr "Vastaanotat kaveriehdotuksen"
 
-#: mod/crepair.php:163
-msgid "Friend Confirm URL"
-msgstr "URL kaverin vahvistusta varten"
+#: mod/settings.php:1265
+msgid "You are tagged in a post"
+msgstr "Sinut on merkitty julkaisuun"
 
-#: mod/crepair.php:164
-msgid "Notification Endpoint URL"
-msgstr "URL huomautuksia varten"
+#: mod/settings.php:1266
+msgid "You are poked/prodded/etc. in a post"
+msgstr "sinut on tökätty tms. julkaisussa"
 
-#: mod/crepair.php:165
-msgid "Poll/Feed URL"
-msgstr "URL äänestyksiä/syötteitä varten"
+#: mod/settings.php:1268
+msgid "Activate desktop notifications"
+msgstr "Ota työpöytäilmoitukset käyttöön"
 
-#: mod/crepair.php:166
-msgid "New photo from this URL"
-msgstr "Uusi kuva osoitteesta"
+#: mod/settings.php:1268
+msgid "Show desktop popup on new notifications"
+msgstr "Näytä uudet ilmoitukset ponnahdusikkunassa"
 
-#: mod/home.php:39
-#, php-format
-msgid "Welcome to %s"
-msgstr "Tervetuloa %s"
+#: mod/settings.php:1270
+msgid "Text-only notification emails"
+msgstr "Ilmoitussähköposteissa vain tekstiä"
 
-#: 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/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/poke.php:192
-msgid "Poke/Prod"
-msgstr "Tökkää"
+#: mod/settings.php:1274
+msgid "Show detailled notifications"
+msgstr "Näytä yksityiskohtaiset ilmoitukset"
 
-#: mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
+#: mod/settings.php:1276
+msgid ""
+"Per default, notifications are condensed to a single notification per item. "
+"When enabled every notification is displayed."
 msgstr ""
 
-#: mod/poke.php:194
-msgid "Recipient"
-msgstr "Vastaanottaja"
+#: mod/settings.php:1278
+msgid "Advanced Account/Page Type Settings"
+msgstr "Käyttäjätili/sivutyyppi lisäasetuksia"
 
-#: mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Valitse mitä haluat tehdä vastaanottajalle"
+#: mod/settings.php:1279
+msgid "Change the behaviour of this account for special situations"
+msgstr ""
 
-#: mod/poke.php:198
-msgid "Make this post private"
-msgstr "Muuta julkaisu yksityiseksi"
+#: mod/settings.php:1282
+msgid "Relocate"
+msgstr "Uudelleensijoitus"
 
-#: mod/oexchange.php:30
-msgid "Post successful."
-msgstr "Viestin lähetys onnistui."
+#: 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/viewsrc.php:12
-msgid "Access denied."
-msgstr "Käyttö estetty."
+#: mod/settings.php:1284
+msgid "Resend relocate message to contacts"
+msgstr ""
 
-#: mod/notifications.php:37
-msgid "Invalid request identifier."
-msgstr "Virheellinen pyyntötunniste."
+#: view/theme/duepuntozero/config.php:54 src/Model/User.php:502
+msgid "default"
+msgstr "oletus"
 
-#: mod/notifications.php:46 mod/notifications.php:183
-#: mod/notifications.php:230
-msgid "Discard"
-msgstr "Hylkää"
+#: view/theme/duepuntozero/config.php:55
+msgid "greenzero"
+msgstr "greenzero"
 
-#: 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"
+#: view/theme/duepuntozero/config.php:56
+msgid "purplezero"
+msgstr "purplezero"
 
-#: mod/notifications.php:107
-msgid "Network Notifications"
-msgstr "Verkkoilmoitukset"
+#: view/theme/duepuntozero/config.php:57
+msgid "easterbunny"
+msgstr "easterbunny"
 
-#: mod/notifications.php:119
-msgid "Personal Notifications"
-msgstr "Henkilökohtaiset ilmoitukset"
+#: view/theme/duepuntozero/config.php:58
+msgid "darkzero"
+msgstr "darkzero"
 
-#: mod/notifications.php:125
-msgid "Home Notifications"
-msgstr "Koti-ilmoitukset"
+#: view/theme/duepuntozero/config.php:59
+msgid "comix"
+msgstr "comix"
 
-#: mod/notifications.php:155
-msgid "Show Ignored Requests"
-msgstr "Näytä ohitetut pyynnöt"
+#: view/theme/duepuntozero/config.php:60
+msgid "slackr"
+msgstr "slackr"
 
-#: mod/notifications.php:155
-msgid "Hide Ignored Requests"
-msgstr "Piilota ohitetut pyynnöt"
+#: view/theme/duepuntozero/config.php:74
+msgid "Variations"
+msgstr "Muunnelmat"
 
-#: mod/notifications.php:167 mod/notifications.php:237
-msgid "Notification type: "
-msgstr "Ilmoitustyyppi:"
+#: view/theme/frio/php/Image.php:24
+msgid "Top Banner"
+msgstr ""
 
-#: mod/notifications.php:170
-#, php-format
-msgid "suggested by %s"
-msgstr "ehdottaa %s"
+#: 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 ""
 
-#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646
-msgid "Hide this contact from others"
-msgstr "Piilota kontakti muilta"
+#: view/theme/frio/php/Image.php:25
+msgid "Full screen"
+msgstr ""
 
-#: mod/notifications.php:176 mod/notifications.php:255
-msgid "Post a new friend activity"
+#: view/theme/frio/php/Image.php:25
+msgid ""
+"Resize image to fill entire screen, clipping either the right or the bottom."
 msgstr ""
 
-#: mod/notifications.php:176 mod/notifications.php:255
-msgid "if applicable"
-msgstr "tarvittaessa"
+#: view/theme/frio/php/Image.php:26
+msgid "Single row mosaic"
+msgstr ""
 
-#: mod/notifications.php:198
-msgid "Claims to be known to you: "
-msgstr "Väittää tuntevansa sinut:"
+#: view/theme/frio/php/Image.php:26
+msgid ""
+"Resize image to repeat it on a single row, either vertical or horizontal."
+msgstr ""
 
-#: mod/notifications.php:199
-msgid "yes"
-msgstr "kyllä"
+#: view/theme/frio/php/Image.php:27
+msgid "Mosaic"
+msgstr ""
 
-#: mod/notifications.php:199
-msgid "no"
-msgstr "ei"
+#: view/theme/frio/php/Image.php:27
+msgid "Repeat image to fill the screen."
+msgstr ""
 
-#: mod/notifications.php:200 mod/notifications.php:205
-msgid "Shall your connection be bidirectional or not?"
-msgstr "Kaksisuuntainen yhteys?"
+#: view/theme/frio/config.php:102
+msgid "Custom"
+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."
+#: view/theme/frio/config.php:114
+msgid "Note"
 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."
+#: view/theme/frio/config.php:114
+msgid "Check image permissions if all users are allowed to see the image"
 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."
+#: view/theme/frio/config.php:121
+msgid "Select color scheme"
 msgstr ""
 
-#: mod/notifications.php:218
-msgid "Friend"
-msgstr "Kaveri"
+#: view/theme/frio/config.php:122
+msgid "Navigation bar background color"
+msgstr "Navigointipalkin taustaväri"
 
-#: mod/notifications.php:219
-msgid "Sharer"
-msgstr "Jakaja"
+#: view/theme/frio/config.php:123
+msgid "Navigation bar icon color "
+msgstr "Navigointipalkin kuvakkeiden väri"
 
-#: mod/notifications.php:219
-msgid "Subscriber"
-msgstr "Tilaaja"
+#: view/theme/frio/config.php:124
+msgid "Link color"
+msgstr "Linkin väri"
 
-#: mod/notifications.php:275
-msgid "No introductions."
-msgstr "Ei esittelyjä."
+#: view/theme/frio/config.php:125
+msgid "Set the background color"
+msgstr "Valitse taustaväri"
 
-#: mod/notifications.php:316
-msgid "Show unread"
-msgstr "Näytä lukemattomat"
+#: view/theme/frio/config.php:126
+msgid "Content background opacity"
+msgstr "Sisällön taustasameus"
 
-#: mod/notifications.php:316
-msgid "Show all"
-msgstr "Näytä kaikki"
+#: view/theme/frio/config.php:127
+msgid "Set the background image"
+msgstr "Valitse taustakuva"
 
-#: mod/notifications.php:322
-#, php-format
-msgid "No more %s notifications."
-msgstr "Ei muita %s ilmoituksia."
+#: view/theme/frio/config.php:128
+msgid "Background image style"
+msgstr ""
 
-#: mod/p.php:14
-msgid "Not Extended"
-msgstr "Ei laajennettu"
+#: view/theme/frio/config.php:133
+msgid "Login page background image"
+msgstr "Sisäänkirjautumissivun taustakuva"
 
-#: 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"
+#: view/theme/frio/config.php:137
+msgid "Login page background color"
+msgstr "Sisäänkirjautumissivun taustaväri"
 
-#: mod/follow.php:45
-msgid "The contact could not be added."
-msgstr "Kontaktia ei voitu lisätä."
+#: view/theme/frio/config.php:137
+msgid "Leave background image and color empty for theme defaults"
+msgstr ""
 
-#: mod/follow.php:73
-msgid "You already added this contact."
-msgstr "Olet jo lisännyt tämän kontaktin."
+#: view/theme/frio/theme.php:238
+msgid "Guest"
+msgstr "Vieras"
 
-#: 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ä."
+#: view/theme/frio/theme.php:243
+msgid "Visitor"
+msgstr "Vierailija"
 
-#: 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ä."
+#: view/theme/frio/theme.php:256 src/Content/Nav.php:97
+#: src/Module/Login.php:311
+msgid "Logout"
+msgstr "Kirjaudu ulos"
 
-#: 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ä."
+#: view/theme/frio/theme.php:256 src/Content/Nav.php:97
+msgid "End this session"
+msgstr "Lopeta istunto"
 
-#: mod/cal.php:313
-msgid "This calendar format is not supported"
-msgstr "Tätä kalenteriformaattia ei tueta"
+#: 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"
 
-#: mod/cal.php:315
-msgid "No exportable data found"
-msgstr "Vientikelpoista dataa ei löytynyt"
+#: view/theme/frio/theme.php:260 src/Content/Nav.php:101
+msgid "Your profile page"
+msgstr "Oma profiilisivu"
 
-#: mod/cal.php:332
-msgid "calendar"
-msgstr "kalenteri"
+#: view/theme/frio/theme.php:261 src/Content/Nav.php:102
+msgid "Your photos"
+msgstr "Omat kuvat"
 
-#: 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"
+#: 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"
 
-#: mod/contacts.php:184 mod/contacts.php:400
-msgid "Could not access contact record."
-msgstr "Yhteystietoon ei päästä käsiksi."
+#: view/theme/frio/theme.php:262 src/Content/Nav.php:103
+msgid "Your videos"
+msgstr "Omat videot"
 
-#: mod/contacts.php:194
-msgid "Could not locate selected profile."
-msgstr "Valittua profiilia ei löydy."
+#: view/theme/frio/theme.php:263 src/Content/Nav.php:104
+msgid "Your events"
+msgstr "Omat tapahtumat"
 
-#: mod/contacts.php:228
-msgid "Contact updated."
-msgstr "Yhteystietopäivitys onnistui."
+#: view/theme/frio/theme.php:266 src/Content/Nav.php:179
+msgid "Conversations from your friends"
+msgstr "Kavereiden keskustelut"
 
-#: mod/contacts.php:421
-msgid "Contact has been blocked"
-msgstr "Henkilö on estetty"
+#: 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"
 
-#: mod/contacts.php:421
-msgid "Contact has been unblocked"
-msgstr "Henkilö on jälleen sallittu"
+#: view/theme/frio/theme.php:268 src/Content/Nav.php:192
+msgid "Private mail"
+msgstr "Yksityinen posti"
 
-#: mod/contacts.php:432
-msgid "Contact has been ignored"
-msgstr "Henkilöä ei enää huomioida"
+#: view/theme/frio/theme.php:269 src/Content/Nav.php:203
+msgid "Account settings"
+msgstr "Tiliasetukset"
 
-#: mod/contacts.php:432
-msgid "Contact has been unignored"
-msgstr "Henkilö on jälleen huomioituna."
+#: view/theme/frio/theme.php:270 src/Content/Nav.php:209
+msgid "Manage/edit friends and contacts"
+msgstr "Hallitse/muokkaa kaverit ja kontaktit"
 
-#: mod/contacts.php:443
-msgid "Contact has been archived"
-msgstr "Henkilö on arkistoitu."
+#: view/theme/quattro/config.php:76
+msgid "Alignment"
+msgstr "Kohdistaminen"
 
-#: mod/contacts.php:443
-msgid "Contact has been unarchived"
-msgstr "Henkilö on otettu pois arkistosta."
+#: view/theme/quattro/config.php:76
+msgid "Left"
+msgstr "Vasemmalle"
 
-#: mod/contacts.php:467
-msgid "Drop contact"
-msgstr "Poista kontakti"
+#: view/theme/quattro/config.php:76
+msgid "Center"
+msgstr "Keskelle"
 
-#: 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?"
+#: view/theme/quattro/config.php:77
+msgid "Color scheme"
+msgstr "Värimalli"
 
-#: mod/contacts.php:488
-msgid "Contact has been removed."
-msgstr "Yhteystieto on poistettu."
+#: view/theme/quattro/config.php:78
+msgid "Posts font size"
+msgstr "Julkaisujen fonttikoko"
 
-#: mod/contacts.php:519
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Olet kaveri %s kanssa."
+#: view/theme/quattro/config.php:79
+msgid "Textareas font size"
+msgstr "Tekstikenttien fonttikoko"
 
-#: mod/contacts.php:523
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Olet jakanut jotakin %s:n kanssa"
+#: view/theme/vier/config.php:75
+msgid "Comma separated list of helper forums"
+msgstr ""
 
-#: mod/contacts.php:527
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s jakaa sinulle jotakin."
+#: view/theme/vier/config.php:115 src/Core/ACL.php:309
+msgid "don't show"
+msgstr "älä näytä"
 
-#: mod/contacts.php:547
-msgid "Private communications are not available for this contact."
-msgstr "Yksityiskeskustelu ei ole käytettävissä tälle henkilölle."
+#: view/theme/vier/config.php:115 src/Core/ACL.php:308
+msgid "show"
+msgstr "näytä"
 
-#: mod/contacts.php:549
-msgid "Never"
-msgstr "Ei koskaan"
+#: view/theme/vier/config.php:122
+msgid "Set style"
+msgstr "Aseta tyyli"
 
-#: mod/contacts.php:552
-msgid "(Update was successful)"
-msgstr "(Päivitys onnistui)"
+#: view/theme/vier/config.php:123
+msgid "Community Pages"
+msgstr "Yhteisösivut"
 
-#: mod/contacts.php:552
-msgid "(Update was not successful)"
-msgstr "(Päivitys epäonnistui)"
+#: view/theme/vier/config.php:124 view/theme/vier/theme.php:150
+msgid "Community Profiles"
+msgstr "Yhteisöprofiilit"
 
-#: mod/contacts.php:554 mod/contacts.php:992
-msgid "Suggest friends"
-msgstr "Ehdota ystäviä"
+#: view/theme/vier/config.php:125
+msgid "Help or @NewHere ?"
+msgstr ""
 
-#: mod/contacts.php:558
-#, php-format
-msgid "Network type: %s"
-msgstr "Verkkotyyppi: %s"
+#: view/theme/vier/config.php:126 view/theme/vier/theme.php:388
+msgid "Connect Services"
+msgstr "Yhdistä palvelut"
 
-#: mod/contacts.php:563
-msgid "Communications lost with this contact!"
-msgstr "Yhteys tähän henkilöön menetettiin!"
+#: view/theme/vier/config.php:127
+msgid "Find Friends"
+msgstr "Etsi kavereita"
 
-#: mod/contacts.php:569
-msgid "Fetch further information for feeds"
-msgstr ""
+#: view/theme/vier/config.php:128 view/theme/vier/theme.php:181
+msgid "Last users"
+msgstr "Viimeisimmät käyttäjät"
 
-#: 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 ""
+#: view/theme/vier/theme.php:199 src/Content/Widget.php:59
+msgid "Find People"
+msgstr "Löydä ihmisiä"
 
-#: mod/contacts.php:573
-msgid "Fetch information"
-msgstr "Nouda tiedot"
+#: view/theme/vier/theme.php:200 src/Content/Widget.php:60
+msgid "Enter name or interest"
+msgstr "Syötä nimi tai harrastus"
 
-#: mod/contacts.php:574
-msgid "Fetch keywords"
-msgstr "Nouda avainsanat"
+#: view/theme/vier/theme.php:202 src/Content/Widget.php:62
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Esim. Matti Meikäläinen, kalastus yms."
 
-#: mod/contacts.php:575
-msgid "Fetch information and keywords"
-msgstr "Nouda tiedot ja avainsanat"
+#: view/theme/vier/theme.php:205 src/Content/Widget.php:65
+msgid "Similar Interests"
+msgstr "Yhteiset harrastukset"
 
-#: mod/contacts.php:608
-msgid "Contact"
-msgstr "Kontakti"
+#: view/theme/vier/theme.php:206 src/Content/Widget.php:66
+msgid "Random Profile"
+msgstr "Satunnainen profiili"
 
-#: mod/contacts.php:611
-msgid "Profile Visibility"
-msgstr "Profiilin näkyvyys"
+#: view/theme/vier/theme.php:207 src/Content/Widget.php:67
+msgid "Invite Friends"
+msgstr "Kutsu kavereita"
 
-#: 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."
+#: view/theme/vier/theme.php:210 src/Content/Widget.php:70
+msgid "Local Directory"
+msgstr "Paikallinen hakemisto"
 
-#: mod/contacts.php:613
-msgid "Contact Information / Notes"
-msgstr "Yhteystiedot / Muistiinpanot"
+#: view/theme/vier/theme.php:255 src/Content/ForumManager.php:127
+msgid "External link to forum"
+msgstr "Ulkoinen linkki foorumiin"
 
-#: mod/contacts.php:614
-msgid "Their personal note"
+#: view/theme/vier/theme.php:291
+msgid "Quick Start"
+msgstr "Pika-aloitus"
+
+#: src/Core/UserImport.php:104
+msgid "Error decoding account file"
 msgstr ""
 
-#: mod/contacts.php:616
-msgid "Edit contact notes"
-msgstr "Muokkaa yhteystietojen muistiinpanoja"
+#: 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?"
 
-#: mod/contacts.php:620
-msgid "Block/Unblock contact"
-msgstr "Estä/salli henkilö"
+#: 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!"
 
-#: mod/contacts.php:621
-msgid "Ignore contact"
-msgstr "Jätä henkilö huomiotta"
+#: src/Core/UserImport.php:151
+msgid "User creation error"
+msgstr "Virhe käyttäjän luomisessa"
 
-#: mod/contacts.php:622
-msgid "Repair URL settings"
-msgstr "Korjaa URL-asetukset"
+#: src/Core/UserImport.php:169
+msgid "User profile creation error"
+msgstr "Virhe käyttäjäprofiilin luomisessa"
 
-#: mod/contacts.php:623
-msgid "View conversations"
-msgstr "Katso keskusteluja"
+#: 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"
 
-#: mod/contacts.php:628
-msgid "Last update:"
-msgstr "Viimeksi päivitetty:"
+#: 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."
 
-#: mod/contacts.php:630
-msgid "Update public posts"
-msgstr "Päivitä julkiset postaukset"
+#: src/Core/ACL.php:295
+msgid "Post to Email"
+msgstr "Viesti sähköpostiin"
 
-#: mod/contacts.php:632 mod/contacts.php:1002
-msgid "Update now"
-msgstr "Päivitä nyt"
+#: src/Core/ACL.php:301
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Piilota profiilitietosi tuntemattomilta?"
 
-#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
-msgid "Unignore"
-msgstr "Ota huomioon"
+#: src/Core/ACL.php:300
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr ""
 
-#: mod/contacts.php:642
-msgid "Currently blocked"
-msgstr "Estetty tällä hetkellä"
+#: src/Core/ACL.php:307
+msgid "Visible to everybody"
+msgstr "Näkyvissä kaikille"
 
-#: mod/contacts.php:643
-msgid "Currently ignored"
-msgstr "Jätetty huomiotta tällä hetkellä"
+#: src/Core/ACL.php:319
+msgid "Close"
+msgstr "Sulje"
 
-#: mod/contacts.php:644
-msgid "Currently archived"
-msgstr "Arkistoitu tällä hetkellä"
+#: src/Core/Console/NewPassword.php:78
+msgid "Enter new password: "
+msgstr ""
 
-#: mod/contacts.php:645
-msgid "Awaiting connection acknowledge"
-msgstr "Odotetaan yhteyden kuittausta"
+#: src/Core/Console/NewPassword.php:83 src/Model/User.php:262
+msgid "Password can't be empty"
+msgstr ""
 
-#: mod/contacts.php:646
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
+#: src/Core/Console/ArchiveContact.php:67
+#, php-format
+msgid "Could not find any unarchived contact entry for this URL (%s)"
 msgstr ""
 
-#: mod/contacts.php:647
-msgid "Notification for new posts"
-msgstr "Uusien postausten ilmoitus"
+#: src/Core/Console/ArchiveContact.php:72
+msgid "The contact entries have been archived"
+msgstr ""
 
-#: 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"
+#: src/Core/NotificationsManager.php:171
+msgid "System"
+msgstr "Järjestelmä"
 
-#: mod/contacts.php:650
-msgid "Blacklisted keywords"
-msgstr "Kielletyt avainsanat"
+#: src/Core/NotificationsManager.php:192 src/Content/Nav.php:124
+#: src/Content/Nav.php:182
+msgid "Home"
+msgstr "Koti"
 
-#: 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 ""
+#: src/Core/NotificationsManager.php:199 src/Content/Nav.php:186
+msgid "Introductions"
+msgstr "Esittelyt"
 
-#: mod/contacts.php:667
-msgid "Actions"
-msgstr "Toimenpiteet"
+#: 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"
 
-#: mod/contacts.php:670
-msgid "Contact Settings"
-msgstr "Yhteystietoasetukset"
+#: src/Core/NotificationsManager.php:267
+#, php-format
+msgid "%s created a new post"
+msgstr "%s loi uuden julkaisun"
 
-#: mod/contacts.php:711
-msgid "Suggestions"
-msgstr "Ehdotukset"
+#: src/Core/NotificationsManager.php:281
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s tykkäsi julkaisusta jonka kirjoitti %s"
 
-#: mod/contacts.php:714
-msgid "Suggest potential friends"
-msgstr "Ehdota mahdollisille ystäville"
+#: src/Core/NotificationsManager.php:294
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s ei tykännyt julkaisusta jonka kirjoitti %s"
 
-#: mod/contacts.php:722
-msgid "Show all contacts"
-msgstr "Näytä kaikki yhteystiedot"
+#: src/Core/NotificationsManager.php:307
+#, php-format
+msgid "%s is attending %s's event"
+msgstr "%s osallistuu tapahtumaan jonka järjestää %s"
 
-#: mod/contacts.php:727
-msgid "Unblocked"
-msgstr "Sallittu"
+#: src/Core/NotificationsManager.php:320
+#, php-format
+msgid "%s is not attending %s's event"
+msgstr "%s ei osallistu tapahtumaan jonka järjestää %s"
 
-#: mod/contacts.php:730
-msgid "Only show unblocked contacts"
-msgstr "Näytä vain sallitut henkilöt"
+#: src/Core/NotificationsManager.php:333
+#, php-format
+msgid "%s may attend %s's event"
+msgstr "%s ehkä osallistuu tapahtumaan jonka järjestää %s"
 
-#: mod/contacts.php:735
-msgid "Blocked"
-msgstr "Estetty"
+#: src/Core/NotificationsManager.php:350
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s ja %s ovat kavereita"
 
-#: mod/contacts.php:738
-msgid "Only show blocked contacts"
-msgstr "Näytä vain estetyt henkilöt"
+#: src/Core/NotificationsManager.php:825
+msgid "Friend Suggestion"
+msgstr "Kaveriehdotus"
 
-#: mod/contacts.php:743
-msgid "Ignored"
-msgstr "Jätetty huomiotta"
+#: src/Core/NotificationsManager.php:851
+msgid "Friend/Connect Request"
+msgstr "Ystävä/yhteyspyyntö"
 
-#: mod/contacts.php:746
-msgid "Only show ignored contacts"
-msgstr "Näytä vain henkilöt, jotka jätetty huomiotta"
+#: src/Core/NotificationsManager.php:851
+msgid "New Follower"
+msgstr "Uusi seuraaja"
 
-#: mod/contacts.php:751
-msgid "Archived"
-msgstr "Arkistoitu"
+#: src/Util/Temporal.php:147 src/Model/Profile.php:756
+msgid "Birthday:"
+msgstr "Syntymäpäivä:"
 
-#: mod/contacts.php:754
-msgid "Only show archived contacts"
-msgstr "Näytä vain arkistoidut henkilöt"
+#: src/Util/Temporal.php:151
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "VVVV-KK-PP tai KK-PP"
 
-#: mod/contacts.php:759
-msgid "Hidden"
-msgstr "Piilotettu"
+#: src/Util/Temporal.php:294
+msgid "never"
+msgstr "ei ikinä"
 
-#: mod/contacts.php:762
-msgid "Only show hidden contacts"
-msgstr "Näytä vain piilotetut henkilöt"
+#: src/Util/Temporal.php:300
+msgid "less than a second ago"
+msgstr "alle sekunti sitten"
 
-#: mod/contacts.php:818
-msgid "Search your contacts"
-msgstr "Etsi henkilöitä"
+#: src/Util/Temporal.php:303
+msgid "year"
+msgstr "vuosi"
 
-#: mod/contacts.php:819 mod/search.php:236
-#, php-format
-msgid "Results for: %s"
-msgstr "Tulokset haulla: %s"
+#: src/Util/Temporal.php:303
+msgid "years"
+msgstr "vuotta"
 
-#: mod/contacts.php:829 mod/contacts.php:1027
-msgid "Archive"
-msgstr "Arkistoi"
+#: src/Util/Temporal.php:304
+msgid "months"
+msgstr "kuukautta"
 
-#: mod/contacts.php:829 mod/contacts.php:1027
-msgid "Unarchive"
-msgstr "Poista arkistosta"
+#: src/Util/Temporal.php:305
+msgid "weeks"
+msgstr "viikkoa"
 
-#: mod/contacts.php:832
-msgid "Batch Actions"
-msgstr ""
+#: src/Util/Temporal.php:306
+msgid "days"
+msgstr "päivää"
 
-#: mod/contacts.php:878
-msgid "View all contacts"
-msgstr "Näytä kaikki kontaktit"
+#: src/Util/Temporal.php:307
+msgid "hour"
+msgstr "tunti"
 
-#: mod/contacts.php:886 mod/common.php:140
-msgid "Common Friends"
-msgstr "Yhteisiä kavereita"
+#: src/Util/Temporal.php:307
+msgid "hours"
+msgstr "tuntia"
 
-#: mod/contacts.php:889
-msgid "View all common friends"
-msgstr "Näytä kaikki yhteiset kaverit"
+#: src/Util/Temporal.php:308
+msgid "minute"
+msgstr "minuutti"
 
-#: mod/contacts.php:898
-msgid "Advanced Contact Settings"
-msgstr "Kontakti-lisäasetukset"
+#: src/Util/Temporal.php:308
+msgid "minutes"
+msgstr "inuuttia"
 
-#: mod/contacts.php:930
-msgid "Mutual Friendship"
-msgstr "Yhteinen kaveruus"
+#: src/Util/Temporal.php:309
+msgid "second"
+msgstr "sekunti"
 
-#: mod/contacts.php:934
-msgid "is a fan of yours"
-msgstr "on fanisi"
+#: src/Util/Temporal.php:309
+msgid "seconds"
+msgstr "sekuntia"
 
-#: mod/contacts.php:938
-msgid "you are a fan of"
-msgstr "fanitat"
+#: src/Util/Temporal.php:318
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s sitten"
 
-#: mod/contacts.php:1013
-msgid "Toggle Blocked status"
-msgstr "Estetty tila päälle/pois"
+#: src/Content/Text/BBCode.php:416
+msgid "view full size"
+msgstr "näytä täysikokoisena"
 
-#: mod/contacts.php:1021
-msgid "Toggle Ignored status"
-msgstr "Sivuuta/seuraa"
+#: src/Content/Text/BBCode.php:842 src/Content/Text/BBCode.php:1611
+#: src/Content/Text/BBCode.php:1612
+msgid "Image/photo"
+msgstr "Kuva/valokuva"
 
-#: mod/contacts.php:1029
-msgid "Toggle Archive status"
-msgstr "Arkistotila päälle/pois"
+#: src/Content/Text/BBCode.php:980
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 
-#: mod/contacts.php:1037
-msgid "Delete contact"
-msgstr "Poista kontakti"
+#: src/Content/Text/BBCode.php:1538 src/Content/Text/BBCode.php:1560
+msgid "$1 wrote:"
+msgstr "$1 kirjoitti:"
 
-#: mod/bookmarklet.php:51
-msgid "The post was created"
-msgstr "Julkaisu luotu"
+#: src/Content/Text/BBCode.php:1620 src/Content/Text/BBCode.php:1621
+msgid "Encrypted content"
+msgstr "Salattu sisältö"
 
-#: mod/lostpass.php:27
-msgid "No valid account found."
-msgstr "Voimassa olevaa tiliä ei löytynyt."
+#: src/Content/Text/BBCode.php:1740
+msgid "Invalid source protocol"
+msgstr "Virheellinen lähdeprotokolla"
 
-#: mod/lostpass.php:39
-msgid "Password reset request issued. Check your email."
-msgstr "Salasanan nollauspyyntö lähetetty. Tarkista sähköpostisi."
+#: src/Content/Text/BBCode.php:1751
+msgid "Invalid link protocol"
+msgstr "Virheellinen linkkiprotokolla"
 
-#: 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."
+#: src/Content/Feature.php:79
+msgid "General Features"
+msgstr "Yleiset ominaisuudet"
+
+#: src/Content/Feature.php:81
+msgid "Multiple Profiles"
 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"
+#: src/Content/Feature.php:81
+msgid "Ability to create multiple profiles"
 msgstr ""
 
-#: mod/lostpass.php:73
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Salasanan nollauspyyntö kohteessa %s"
+#: src/Content/Feature.php:82
+msgid "Photo Location"
+msgstr "Kuvan sijainti"
 
-#: mod/lostpass.php:89
+#: src/Content/Feature.php:82
 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."
+"Photo metadata is normally stripped. This extracts the location (if present)"
+" prior to stripping metadata and links it to a map."
+msgstr ""
 
-#: mod/lostpass.php:102
-msgid "Request has expired, please make a new one."
-msgstr "Pyyntö on vanhentunut, tehkää uusi pyyntö."
+#: src/Content/Feature.php:83
+msgid "Export Public Calendar"
+msgstr "Vie julkinen kalenteri"
 
-#: mod/lostpass.php:117
-msgid "Forgot your Password?"
-msgstr "Unohditko salasanasi?"
+#: src/Content/Feature.php:83
+msgid "Ability for visitors to download the public calendar"
+msgstr ""
 
-#: mod/lostpass.php:118
+#: src/Content/Feature.php:88
+msgid "Post Composition Features"
+msgstr ""
+
+#: src/Content/Feature.php:89
+msgid "Post Preview"
+msgstr "Viestin esikatselu"
+
+#: src/Content/Feature.php:89
+msgid "Allow previewing posts and comments before publishing them"
+msgstr ""
+
+#: src/Content/Feature.php:90
+msgid "Auto-mention Forums"
+msgstr ""
+
+#: src/Content/Feature.php:90
 msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
+"Add/remove mention when a forum page is selected/deselected in ACL window."
 msgstr ""
 
-#: mod/lostpass.php:120
-msgid "Reset"
-msgstr "Nollaus"
+#: src/Content/Feature.php:95
+msgid "Network Sidebar Widgets"
+msgstr ""
 
-#: mod/lostpass.php:137
-msgid "Your password has been reset as requested."
-msgstr "Salasanasi on nollattu pyynnöstäsi."
+#: src/Content/Feature.php:96
+msgid "Search by Date"
+msgstr "Päivämäärähaku"
 
-#: mod/lostpass.php:138
-msgid "Your new password is"
-msgstr "Uusi salasanasi on"
+#: src/Content/Feature.php:96
+msgid "Ability to select posts by date ranges"
+msgstr ""
 
-#: mod/lostpass.php:139
-msgid "Save or copy your new password - and then"
-msgstr "Tallenna tai kopioi uusi salasanasi, ja sitten"
+#: src/Content/Feature.php:97 src/Content/Feature.php:127
+msgid "List Forums"
+msgstr "Näytä foorumit"
 
-#: mod/lostpass.php:140
-msgid "click here to login"
-msgstr "kirjaudu klikkaamalla tästä"
+#: src/Content/Feature.php:97
+msgid "Enable widget to display the forums your are connected with"
+msgstr ""
 
-#: mod/lostpass.php:141
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Salsanaa voi vaihtaa <em>asetussivulta</em> kirjautumisen jälkeen."
+#: src/Content/Feature.php:98
+msgid "Group Filter"
+msgstr "Ryhmäsuodatin"
 
-#: 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"
+#: src/Content/Feature.php:98
+msgid "Enable widget to display Network posts only from selected group"
 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"
+#: src/Content/Feature.php:99
+msgid "Network Filter"
+msgstr "Verkkosuodatin"
+
+#: src/Content/Feature.php:99
+msgid "Enable widget to display Network posts only from selected network"
+msgstr ""
+
+#: src/Content/Feature.php:100
+msgid "Save search terms for re-use"
+msgstr "Tallenna hakutermit myöhempää käyttöä varten"
+
+#: src/Content/Feature.php:105
+msgid "Network Tabs"
+msgstr "Verkko välilehdet"
+
+#: src/Content/Feature.php:106
+msgid "Network Personal Tab"
+msgstr ""
+
+#: src/Content/Feature.php:106
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr ""
+
+#: src/Content/Feature.php:107
+msgid "Network New Tab"
+msgstr ""
+
+#: src/Content/Feature.php:107
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr ""
+
+#: src/Content/Feature.php:108
+msgid "Network Shared Links Tab"
+msgstr ""
+
+#: src/Content/Feature.php:108
+msgid "Enable tab to display only Network posts with links in them"
+msgstr ""
+
+#: src/Content/Feature.php:113
+msgid "Post/Comment Tools"
+msgstr "Julkaisu/kommentti työkalut"
+
+#: src/Content/Feature.php:114
+msgid "Multiple Deletion"
+msgstr ""
+
+#: src/Content/Feature.php:114
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Valitse ja poista monta julkaisua/kommentia yhtaikaa"
+
+#: src/Content/Feature.php:115
+msgid "Edit Sent Posts"
+msgstr "Muokkaa lähetetyt julkaisut"
+
+#: src/Content/Feature.php:115
+msgid "Edit and correct posts and comments after sending"
+msgstr "Muokkaa ja korjaa julkaisuja ja kommenteja julkaisun jälkeen"
+
+#: src/Content/Feature.php:116
+msgid "Tagging"
+msgstr "Tunnisteet"
+
+#: src/Content/Feature.php:116
+msgid "Ability to tag existing posts"
+msgstr "Saa merkitä olemassa olevia julkaisuja"
+
+#: src/Content/Feature.php:117
+msgid "Post Categories"
+msgstr "Julkaisuluokat"
+
+#: src/Content/Feature.php:117
+msgid "Add categories to your posts"
+msgstr "Luokittele julkaisusi"
+
+#: src/Content/Feature.php:118 src/Content/Widget.php:205
+msgid "Saved Folders"
+msgstr "Tallennetut kansiot"
+
+#: src/Content/Feature.php:118
+msgid "Ability to file posts under folders"
+msgstr ""
+
+#: src/Content/Feature.php:119
+msgid "Dislike Posts"
+msgstr ""
+
+#: src/Content/Feature.php:119
+msgid "Ability to dislike posts/comments"
+msgstr ""
+
+#: src/Content/Feature.php:120
+msgid "Star Posts"
+msgstr "Tähtimerkityt julkaisut"
+
+#: src/Content/Feature.php:120
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Salli julkaisujen tähtimerkintä"
+
+#: src/Content/Feature.php:121
+msgid "Mute Post Notifications"
+msgstr "Mykistä julkaisuilmoitukset"
+
+#: src/Content/Feature.php:121
+msgid "Ability to mute notifications for a thread"
+msgstr ""
+
+#: src/Content/Feature.php:126
+msgid "Advanced Profile Settings"
+msgstr "Profiilin lisäasetukset"
+
+#: src/Content/Feature.php:127
+msgid "Show visitors public community forums at the Advanced Profile Page"
+msgstr ""
+
+#: src/Content/Feature.php:128
+msgid "Tag Cloud"
+msgstr "Tunnistepilvi"
+
+#: src/Content/Feature.php:128
+msgid "Provide a personal tag cloud on your profile page"
+msgstr "Näytä henkilökohtainen tunnistepilvi profiilisivullasi"
+
+#: src/Content/Feature.php:129
+msgid "Display Membership Date"
+msgstr "Näytä liittymispäivämäärä"
+
+#: src/Content/Feature.php:129
+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"
+
+#: src/Content/Widget/CalendarExport.php:62
+msgid "Export calendar as ical"
+msgstr "Vie kalenteri ical -tiedostona"
+
+#: src/Content/Widget/CalendarExport.php:63
+msgid "Export calendar as csv"
+msgstr "Vie kalenteri csv-tiedostona"
+
+#: src/Content/ContactSelector.php:55
+msgid "Frequently"
+msgstr "Usein"
+
+#: src/Content/ContactSelector.php:56
+msgid "Hourly"
+msgstr "Tunneittain"
+
+#: src/Content/ContactSelector.php:57
+msgid "Twice daily"
+msgstr "Kahdesti päivässä"
+
+#: src/Content/ContactSelector.php:58
+msgid "Daily"
+msgstr "Päivittäin"
+
+#: src/Content/ContactSelector.php:59
+msgid "Weekly"
+msgstr "Viikottain"
+
+#: src/Content/ContactSelector.php:60
+msgid "Monthly"
+msgstr "Kuukausittain"
+
+#: 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"
 
-#: mod/lostpass.php:169
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Salasanasi on vaihdettu sivustolla %s"
+#: src/Content/ContactSelector.php:92
+msgid "Diaspora Connector"
+msgstr "Diaspora -liitin"
 
-#: mod/install.php:114
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica viestinnän palvelin - asetukset"
+#: src/Content/ContactSelector.php:93
+msgid "GNU Social Connector"
+msgstr "GNU social -liitin"
 
-#: mod/install.php:120
-msgid "Could not connect to database."
-msgstr "Tietokantaan ei saada yhteyttä."
+#: src/Content/ContactSelector.php:94
+msgid "pnut"
+msgstr "pnut"
 
-#: mod/install.php:124
-msgid "Could not create table."
-msgstr "Taulun luominen epäonnistui."
+#: src/Content/ContactSelector.php:95
+msgid "App.net"
+msgstr "App.net"
 
-#: mod/install.php:130
-msgid "Your Friendica site database has been installed."
-msgstr "Friendica-sivustosi tietokanta on asennettu."
+#: src/Content/ContactSelector.php:125
+msgid "Male"
+msgstr "Mies"
 
-#: 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:ää."
+#: src/Content/ContactSelector.php:125
+msgid "Female"
+msgstr "Nainen"
 
-#: mod/install.php:136 mod/install.php:208 mod/install.php:558
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Lue tiedosto \"INSTALL.txt\"."
+#: src/Content/ContactSelector.php:125
+msgid "Currently Male"
+msgstr "Tällä hetkellä mies"
 
-#: mod/install.php:148
-msgid "Database already in use."
-msgstr "Tietokanta on jo käytössä."
+#: src/Content/ContactSelector.php:125
+msgid "Currently Female"
+msgstr "Tällä hetkellä nainen"
 
-#: mod/install.php:205
-msgid "System check"
-msgstr "Järjestelmän tarkistus"
+#: src/Content/ContactSelector.php:125
+msgid "Mostly Male"
+msgstr "Enimmäkseen mies"
 
-#: mod/install.php:210
-msgid "Check again"
-msgstr "Tarkista uudelleen"
+#: src/Content/ContactSelector.php:125
+msgid "Mostly Female"
+msgstr "Enimmäkseen nainen"
 
-#: mod/install.php:230
-msgid "Database connection"
-msgstr "Tietokantayhteys"
+#: src/Content/ContactSelector.php:125
+msgid "Transgender"
+msgstr "Transsukupuolinen"
 
-#: 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."
+#: src/Content/ContactSelector.php:125
+msgid "Intersex"
+msgstr "Intersukupuolinen"
 
-#: 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ä."
+#: src/Content/ContactSelector.php:125
+msgid "Transsexual"
+msgstr "Transsukupuolinen"
 
-#: 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."
+#: src/Content/ContactSelector.php:125
+msgid "Hermaphrodite"
+msgstr "Hermafrodiitti"
 
-#: mod/install.php:237
-msgid "Database Server Name"
-msgstr "Tietokannan palvelimen nimi"
+#: src/Content/ContactSelector.php:125
+msgid "Neuter"
+msgstr "Neutri"
 
-#: mod/install.php:238
-msgid "Database Login Name"
-msgstr "Tietokannan käyttäjän nimi"
+#: src/Content/ContactSelector.php:125
+msgid "Non-specific"
+msgstr "Ei-binäärinen"
 
-#: mod/install.php:239
-msgid "Database Login Password"
-msgstr "Tietokannan käyttäjän salasana"
+#: src/Content/ContactSelector.php:125
+msgid "Other"
+msgstr "Toinen"
 
-#: mod/install.php:239
-msgid "For security reasons the password must not be empty"
-msgstr "Turvallisuussyistä salasanakenttä ei saa olla tyhjä"
+#: src/Content/ContactSelector.php:147
+msgid "Males"
+msgstr "Miehet"
 
-#: mod/install.php:240
-msgid "Database Name"
-msgstr "Tietokannan nimi"
+#: src/Content/ContactSelector.php:147
+msgid "Females"
+msgstr "Naiset"
 
-#: mod/install.php:241 mod/install.php:281
-msgid "Site administrator email address"
-msgstr "Sivuston ylläpitäjän sähköpostiosoite"
+#: src/Content/ContactSelector.php:147
+msgid "Gay"
+msgstr "Homo"
 
-#: 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ää."
+#: src/Content/ContactSelector.php:147
+msgid "Lesbian"
+msgstr "Lesbo"
 
-#: mod/install.php:245 mod/install.php:284
-msgid "Please select a default timezone for your website"
-msgstr "Valitse oletusaikavyöhyke sivustollesi"
+#: src/Content/ContactSelector.php:147
+msgid "No Preference"
+msgstr ""
 
-#: mod/install.php:271
-msgid "Site settings"
-msgstr "Sivuston asetukset"
+#: src/Content/ContactSelector.php:147
+msgid "Bisexual"
+msgstr "Biseksuaali"
 
-#: mod/install.php:285
-msgid "System Language:"
-msgstr "Järjestelmän kieli:"
+#: src/Content/ContactSelector.php:147
+msgid "Autosexual"
+msgstr ""
 
-#: mod/install.php:285
-msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
-msgstr "Valitse Friendica-sivustosi oletuskieli."
+#: src/Content/ContactSelector.php:147
+msgid "Abstinent"
+msgstr "Selibaatissa elävä"
 
-#: 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."
+#: src/Content/ContactSelector.php:147
+msgid "Virgin"
+msgstr "Neitsyt"
 
-#: 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 <a "
-"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
-"up-the-worker'>'Setup the worker'</a>"
+#: src/Content/ContactSelector.php:147
+msgid "Deviant"
 msgstr ""
 
-#: mod/install.php:330
-msgid "PHP executable path"
-msgstr "Polku PHP-ohjelmaan"
+#: src/Content/ContactSelector.php:147
+msgid "Fetish"
+msgstr ""
 
-#: 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."
+#: src/Content/ContactSelector.php:147
+msgid "Oodles"
+msgstr ""
 
-#: mod/install.php:335
-msgid "Command line PHP"
-msgstr "Komentorivi-PHP"
+#: src/Content/ContactSelector.php:147
+msgid "Nonsexual"
+msgstr "Aseksuaali"
 
-#: mod/install.php:344
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr ""
+#: src/Content/ContactSelector.php:169
+msgid "Single"
+msgstr "Sinkku"
 
-#: mod/install.php:345
-msgid "Found PHP version: "
-msgstr "PHP-versio löydetty:"
+#: src/Content/ContactSelector.php:169
+msgid "Lonely"
+msgstr "Yksinäinen"
 
-#: mod/install.php:347
-msgid "PHP cli binary"
-msgstr "PHP cli -binääritiedosto"
+#: src/Content/ContactSelector.php:169
+msgid "Available"
+msgstr ""
 
-#: 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\"."
+#: src/Content/ContactSelector.php:169
+msgid "Unavailable"
+msgstr ""
 
-#: mod/install.php:359
-msgid "This is required for message delivery to work."
-msgstr "Asetus vaaditaan viestien lähettämiseen."
+#: src/Content/ContactSelector.php:169
+msgid "Has crush"
+msgstr "Ihastunut"
 
-#: mod/install.php:361
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: src/Content/ContactSelector.php:169
+msgid "Infatuated"
+msgstr "Hullaantunut"
 
-#: 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."
+#: src/Content/ContactSelector.php:169
+msgid "Dating"
+msgstr "Seurustelee"
 
-#: 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\"."
+#: src/Content/ContactSelector.php:169
+msgid "Unfaithful"
+msgstr ""
 
-#: mod/install.php:387
-msgid "Generate encryption keys"
-msgstr "Luo salausavaimet"
+#: src/Content/ContactSelector.php:169
+msgid "Sex Addict"
+msgstr ""
 
-#: mod/install.php:394
-msgid "libCurl PHP module"
-msgstr "PHP-moduuli libCurl"
+#: src/Content/ContactSelector.php:169 src/Model/User.php:519
+msgid "Friends"
+msgstr "Kaverit"
 
-#: mod/install.php:395
-msgid "GD graphics PHP module"
-msgstr "PHP-moduuli GD graphics"
+#: src/Content/ContactSelector.php:169
+msgid "Friends/Benefits"
+msgstr ""
 
-#: mod/install.php:396
-msgid "OpenSSL PHP module"
-msgstr "PHP-moduuli OpenSSL"
+#: src/Content/ContactSelector.php:169
+msgid "Casual"
+msgstr ""
 
-#: mod/install.php:397
-msgid "PDO or MySQLi PHP module"
-msgstr "PDO tai MySQLi PHP-moduuli"
+#: src/Content/ContactSelector.php:169
+msgid "Engaged"
+msgstr "Kihloissa"
 
-#: mod/install.php:398
-msgid "mb_string PHP module"
-msgstr "PHP-moduuli mb_string"
+#: src/Content/ContactSelector.php:169
+msgid "Married"
+msgstr "Naimisissa"
 
-#: mod/install.php:399
-msgid "XML PHP module"
-msgstr "XML PHP-moduuli"
+#: src/Content/ContactSelector.php:169
+msgid "Imaginarily married"
+msgstr ""
 
-#: mod/install.php:400
-msgid "iconv PHP module"
-msgstr "iconv PHP-moduuli"
+#: src/Content/ContactSelector.php:169
+msgid "Partners"
+msgstr "Kumppanit"
 
-#: mod/install.php:401
-msgid "POSIX PHP module"
-msgstr "POSIX PHP-moduuli"
+#: src/Content/ContactSelector.php:169
+msgid "Cohabiting"
+msgstr "Avoliitossa"
 
-#: mod/install.php:405 mod/install.php:407
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite -moduuli"
+#: src/Content/ContactSelector.php:169
+msgid "Common law"
+msgstr "Avoliitossa"
 
-#: 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."
+#: src/Content/ContactSelector.php:169
+msgid "Happy"
+msgstr "Iloinen"
 
-#: mod/install.php:413
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Virhe: libCURL PHP -moduuli vaaditaan, mutta sitä ei ole asennettu."
+#: src/Content/ContactSelector.php:169
+msgid "Not looking"
+msgstr "Ei etsi"
 
-#: 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."
+#: src/Content/ContactSelector.php:169
+msgid "Swinger"
+msgstr ""
 
-#: mod/install.php:421
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Virhe: openssl PHP -moduuli vaaditaan, mutta sitä ei ole asennettu."
+#: src/Content/ContactSelector.php:169
+msgid "Betrayed"
+msgstr "Petetty"
 
-#: 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."
+#: src/Content/ContactSelector.php:169
+msgid "Separated"
+msgstr ""
 
-#: mod/install.php:429
-msgid "Error: The MySQL driver for PDO is not installed."
-msgstr "Virhe: PDO:n MySQL-ajuri ei ole asennettu"
+#: src/Content/ContactSelector.php:169
+msgid "Unstable"
+msgstr "Epävakaa"
 
-#: 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."
+#: src/Content/ContactSelector.php:169
+msgid "Divorced"
+msgstr "Eronnut"
 
-#: mod/install.php:437
-msgid "Error: iconv PHP module required but not installed."
-msgstr "Virhe: iconv PHP-moduuli vaaditaan, mutta sitä ei ole asennettu."
+#: src/Content/ContactSelector.php:169
+msgid "Imaginarily divorced"
+msgstr ""
 
-#: mod/install.php:441
-msgid "Error: POSIX PHP module required but not installed."
-msgstr "Virhe: POSIX PHP-moduuli vaadittaan, mutta sitä ei ole asennettu."
+#: src/Content/ContactSelector.php:169
+msgid "Widowed"
+msgstr "Leski"
 
-#: mod/install.php:451
-msgid "Error, XML PHP module required but not installed."
-msgstr "Virhe: XML PHP-moduuli vaaditaan, mutta sitä ei ole asennettu."
+#: src/Content/ContactSelector.php:169
+msgid "Uncertain"
+msgstr "Epävarma"
 
-#: 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."
+#: src/Content/ContactSelector.php:169
+msgid "It's complicated"
+msgstr "Se on monimutkaista"
 
-#: 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."
+#: src/Content/ContactSelector.php:169
+msgid "Don't care"
+msgstr "Ei ole väliä"
 
-#: 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."
+#: src/Content/ContactSelector.php:169
+msgid "Ask me"
+msgstr "Kysy minulta"
 
-#: mod/install.php:466
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
+#: src/Content/Nav.php:53
+msgid "Nothing new here"
 msgstr ""
 
-#: mod/install.php:469
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php on kirjoitettava"
+#: src/Content/Nav.php:57
+msgid "Clear notifications"
+msgstr "Tyhjennä ilmoitukset"
 
-#: 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."
+#: src/Content/Nav.php:105
+msgid "Personal notes"
 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."
+#: src/Content/Nav.php:105
+msgid "Your personal notes"
 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 ""
+#: src/Content/Nav.php:114
+msgid "Sign in"
+msgstr "Kirjaudu sisään"
 
-#: 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 ""
+#: src/Content/Nav.php:124
+msgid "Home Page"
+msgstr "Kotisivu"
 
-#: mod/install.php:485
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 on kirjoitettava"
+#: src/Content/Nav.php:128
+msgid "Create an account"
+msgstr "Luo tili"
 
-#: 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."
+#: src/Content/Nav.php:134
+msgid "Help and documentation"
+msgstr "Ohjeet ja dokmentointi"
 
-#: mod/install.php:503
-msgid "Url rewrite is working"
-msgstr "URL-osoitteen uudellenkirjoitus toimii"
+#: src/Content/Nav.php:138
+msgid "Apps"
+msgstr "Sovellukset"
 
-#: mod/install.php:522
-msgid "ImageMagick PHP extension is not installed"
-msgstr "ImageMagick PHP-laajennus ei ole asetettu"
+#: src/Content/Nav.php:138
+msgid "Addon applications, utilities, games"
+msgstr "Lisäosa sovelluksia, apuohjelmia, pelejä"
 
-#: mod/install.php:524
-msgid "ImageMagick PHP extension is installed"
-msgstr "ImageMagick PHP-laajennus on asetettu"
+#: src/Content/Nav.php:142
+msgid "Search site content"
+msgstr "Sivustohaku"
 
-#: mod/install.php:526
-msgid "ImageMagick supports GIF"
-msgstr "ImageMagik tukee GIF-formaattia"
+#: src/Content/Nav.php:166
+msgid "Community"
+msgstr "Yhteisö"
 
-#: 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."
+#: src/Content/Nav.php:166
+msgid "Conversations on this and other servers"
+msgstr "Keskustelut täällä ja muilla palvelimilla"
 
-#: mod/install.php:556
-msgid "<h1>What next</h1>"
-msgstr "<h1>Mitä seuraavaksi</h1>"
+#: src/Content/Nav.php:173
+msgid "Directory"
+msgstr "Luettelo"
 
-#: 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."
+#: src/Content/Nav.php:173
+msgid "People directory"
+msgstr "Henkilöluettelo"
 
-#: mod/install.php:560
-#, php-format
-msgid ""
-"Go to your new Friendica node <a href=\"%s/register\">registration page</a> "
-"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 ""
+#: src/Content/Nav.php:175
+msgid "Information about this friendica instance"
+msgstr "Lisätietoja tästä Friendica -instanssista"
 
-#: mod/babel.php:23
-msgid "Source input"
+#: src/Content/Nav.php:180
+msgid "Network Reset"
+msgstr "Verkon nollaus"
+
+#: src/Content/Nav.php:180
+msgid "Load Network page with no filters"
 msgstr ""
 
-#: mod/babel.php:29
-msgid "BBCode::toPlaintext"
+#: src/Content/Nav.php:186
+msgid "Friend Requests"
+msgstr "Kaveripyynnöt"
+
+#: src/Content/Nav.php:188
+msgid "See all notifications"
+msgstr "Näytä kaikki ilmoitukset"
+
+#: src/Content/Nav.php:189
+msgid "Mark all system notifications seen"
 msgstr ""
 
-#: mod/babel.php:35
-msgid "BBCode::convert (raw HTML)"
-msgstr "BBCode::convert (raaka HTML)"
+#: src/Content/Nav.php:193
+msgid "Inbox"
+msgstr "Saapuneet"
 
-#: mod/babel.php:40
-msgid "BBCode::convert"
-msgstr "BBCode::convert"
+#: src/Content/Nav.php:194
+msgid "Outbox"
+msgstr "Lähtevät"
 
-#: mod/babel.php:46
-msgid "BBCode::convert => HTML::toBBCode"
-msgstr "BBCode::convert => HTML::toBBCode"
+#: src/Content/Nav.php:198
+msgid "Manage"
+msgstr "Hallitse"
 
-#: mod/babel.php:52
-msgid "BBCode::toMarkdown"
-msgstr "BBCode::toMarkdown"
+#: src/Content/Nav.php:198
+msgid "Manage other pages"
+msgstr "Hallitse muita sivuja"
 
-#: mod/babel.php:58
-msgid "BBCode::toMarkdown => Markdown::convert"
-msgstr "BBCode::toMarkdown => Markdown::convert"
+#: src/Content/Nav.php:206 src/Model/Profile.php:368
+msgid "Profiles"
+msgstr "Profiilit"
 
-#: mod/babel.php:64
-msgid "BBCode::toMarkdown => Markdown::toBBCode"
-msgstr "BBCode::toMarkdown => Markdown::toBBCode"
+#: src/Content/Nav.php:206
+msgid "Manage/Edit Profiles"
+msgstr "Hallitse/muokka profiilit"
+
+#: src/Content/Nav.php:214
+msgid "Site setup and configuration"
+msgstr "Sivuston asennus ja asetukset"
+
+#: src/Content/Nav.php:217
+msgid "Navigation"
+msgstr "Navigointi"
 
-#: mod/babel.php:70
-msgid "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
-msgstr "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
+#: src/Content/Nav.php:217
+msgid "Site map"
+msgstr "Sivustokartta"
 
-#: mod/babel.php:77
-msgid "Source input \\x28Diaspora format\\x29"
-msgstr ""
+#: src/Content/Widget.php:33
+msgid "Add New Contact"
+msgstr "Lisää uusi kontakti"
 
-#: mod/babel.php:83
-msgid "Markdown::toBBCode"
-msgstr "Markdown::toBBCode"
+#: src/Content/Widget.php:34
+msgid "Enter address or web location"
+msgstr "Syötä verkko-osoite"
 
-#: mod/babel.php:90
-msgid "Raw HTML input"
-msgstr "Raaka HTML-syöte"
+#: src/Content/Widget.php:35
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Esimerkki: bob@example.com, http://example.com/barbara"
 
-#: mod/babel.php:95
-msgid "HTML Input"
-msgstr "HTML-syöte"
+#: 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"
 
-#: mod/babel.php:101
-msgid "HTML::toBBCode"
-msgstr "HTML::toBBCode"
+#: src/Content/Widget.php:164
+msgid "Networks"
+msgstr "Verkot"
 
-#: mod/babel.php:107
-msgid "HTML::toPlaintext"
-msgstr "HTML::toPlaintext"
+#: src/Content/Widget.php:167
+msgid "All Networks"
+msgstr "Kaikki verkot"
 
-#: mod/babel.php:115
-msgid "Source text"
-msgstr "Lähdeteksti"
+#: src/Content/Widget.php:208 src/Content/Widget.php:248
+msgid "Everything"
+msgstr "Kaikki"
 
-#: mod/babel.php:116
-msgid "BBCode"
-msgstr "BBCode"
+#: src/Content/Widget.php:245
+msgid "Categories"
+msgstr "Luokat"
 
-#: mod/babel.php:117
-msgid "Markdown"
-msgstr "Markdown"
+#: 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"
 
-#: mod/babel.php:118
-msgid "HTML"
-msgstr "HTML"
+#: src/Database/DBStructure.php:32
+msgid "There are no tables on MyISAM."
+msgstr "MyISAMissa ei ole taulukoita."
 
-#: mod/lockview.php:38 mod/lockview.php:46
-msgid "Remote privacy information not available."
-msgstr "Yksityisyyden etätietoja ei saatavilla."
+#: 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."
 
-#: mod/lockview.php:55
-msgid "Visible to:"
-msgstr "Näkyvissä:"
+#: src/Database/DBStructure.php:80
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Virheviesti on\n[pre]%s[/pre]"
 
-#: mod/wallmessage.php:49 mod/wallmessage.php:112
+#: src/Database/DBStructure.php:191
 #, 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."
+msgid ""
+"\n"
+"Error %d occurred during database update:\n"
+"%s\n"
+msgstr "\n%d virhe tapahtui tietokannan päivityksen aikana:\n%s\n"
 
-#: mod/wallmessage.php:60
-msgid "Unable to check your home location."
-msgstr "Kotisijaintisi ei voitu tarkistaa."
+#: src/Database/DBStructure.php:194
+msgid "Errors encountered performing database changes: "
+msgstr "Tietokannan muokkauksessa tapahtui virheitä:"
 
-#: mod/wallmessage.php:86 mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Vastaanottaja puuttuu."
+#: src/Database/DBStructure.php:210
+msgid ": Database update"
+msgstr ": Tietokannan päivitys"
 
-#: mod/wallmessage.php:133
+#: src/Database/DBStructure.php:460
 #, 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 ""
+msgid "%s: updating %s table."
+msgstr "%s: päivitetään %s-taulukkoa."
 
-#: mod/match.php:48
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Avainsanat puuttuu. Lisää avainsanoja oletusprofiiliisi."
+#: src/Model/Mail.php:40 src/Model/Mail.php:174
+msgid "[no subject]"
+msgstr "[ei aihetta]"
 
-#: mod/match.php:104
-msgid "is interested in:"
-msgstr "on kiinnostunut seuraavista aiheista:"
+#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419
+#: src/Model/Event.php:882
+msgid "Starts:"
+msgstr "Alkaa:"
 
-#: mod/match.php:120
-msgid "Profile Match"
-msgstr "Vastaavien profiilien haku"
+#: 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:"
 
-#: mod/maintenance.php:24
-msgid "System down for maintenance"
-msgstr "Järjestelmä poiskytketty huoltoa varten"
+#: src/Model/Event.php:368
+msgid "all-day"
+msgstr "koko päivä"
 
-#: mod/tagrm.php:47
-msgid "Tag removed"
-msgstr "Tägi poistettiin"
+#: src/Model/Event.php:391
+msgid "Jun"
+msgstr "Kes."
 
-#: mod/tagrm.php:85
-msgid "Remove Item Tag"
-msgstr "Poista tägi"
+#: src/Model/Event.php:394
+msgid "Sept"
+msgstr "Syy."
 
-#: mod/tagrm.php:87
-msgid "Select a tag to remove: "
-msgstr "Valitse tägi poistamista varten:"
+#: src/Model/Event.php:417
+msgid "No events to display"
+msgstr "Ei näytettäviä tapahtumia."
 
-#: 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"
+#: src/Model/Event.php:543
+msgid "l, F j"
+msgstr "l, F j"
 
-#: mod/feedtest.php:48
-msgid "Source URL"
-msgstr "Lähde URL"
+#: src/Model/Event.php:566
+msgid "Edit event"
+msgstr "Muokkaa tapahtumaa"
 
-#: mod/search.php:105
-msgid "Only logged in users are permitted to perform a search."
-msgstr ""
+#: src/Model/Event.php:567
+msgid "Duplicate event"
+msgstr "Monista tapahtuma"
 
-#: mod/search.php:129
-msgid "Too Many Requests"
-msgstr "Liian monta pyyntöä"
+#: src/Model/Event.php:568
+msgid "Delete event"
+msgstr "Poista tapahtuma"
 
-#: mod/search.php:130
-msgid "Only one search per minute is permitted for not logged in users."
+#: src/Model/Event.php:815
+msgid "D g:i A"
 msgstr ""
 
-#: mod/search.php:234
-#, php-format
-msgid "Items tagged with: %s"
-msgstr "Kohteet joilla tunnisteet: %s"
+#: src/Model/Event.php:816
+msgid "g:i A"
+msgstr ""
 
-#: mod/uexport.php:44
-msgid "Export account"
-msgstr "Vie tili"
+#: src/Model/Event.php:901 src/Model/Event.php:903
+msgid "Show map"
+msgstr "Näytä kartta"
 
-#: mod/uexport.php:44
+#: src/Model/Event.php:902
+msgid "Hide map"
+msgstr "Piilota kartta"
+
+#: src/Model/Group.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."
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr ""
 
-#: mod/uexport.php:45
-msgid "Export all"
-msgstr "Vie kaikki"
+#: src/Model/Group.php:341
+msgid "Default privacy group for new contacts"
+msgstr "Oletusryhmä uusille kontakteille"
 
-#: 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ä)"
+#: src/Model/Group.php:374
+msgid "Everybody"
+msgstr "Kaikki"
 
-#: mod/newmember.php:11
-msgid "Welcome to Friendica"
-msgstr "Tervetuloa Friendicaan"
+#: src/Model/Group.php:394
+msgid "edit"
+msgstr "muokkaa"
 
-#: mod/newmember.php:12
-msgid "New Member Checklist"
-msgstr "Uuden jäsenen tarkistuslista"
+#: src/Model/Group.php:418
+msgid "Edit group"
+msgstr "Muokkaa ryhmää"
 
-#: 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/Group.php:419
+msgid "Contacts not in any group"
+msgstr "Kontaktit ilman ryhmää"
 
-#: mod/newmember.php:15
-msgid "Getting Started"
-msgstr "Ensiaskeleet"
+#: 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"
 
-#: mod/newmember.php:17
-msgid "Friendica Walk-Through"
-msgstr "Friendica -läpikäynti"
+#: src/Model/User.php:185
+msgid "Not enough information to authenticate"
+msgstr ""
 
-#: mod/newmember.php:17
-msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
+#: src/Model/User.php:346
+msgid "An invitation is required."
 msgstr ""
 
-#: mod/newmember.php:21
-msgid "Go to Your Settings"
-msgstr "Omat Asetukset"
+#: src/Model/User.php:350
+msgid "Invitation could not be verified."
+msgstr "Kutsua ei voitu vahvistaa."
 
-#: mod/newmember.php:21
-msgid ""
-"On your <em>Settings</em> 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 ""
+#: src/Model/User.php:357
+msgid "Invalid OpenID url"
+msgstr "Virheellinen OpenID url-osoite"
 
-#: mod/newmember.php:22
+#: src/Model/User.php:370 src/Module/Login.php:100
 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."
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
 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 ""
+#: src/Model/User.php:370 src/Module/Login.php:100
+msgid "The error message was:"
+msgstr "Virheviesti oli:"
 
-#: mod/newmember.php:27
-msgid "Edit Your Profile"
-msgstr "Muokkaa profiilisi"
+#: src/Model/User.php:376
+msgid "Please enter the required information."
+msgstr "Syötä tarvittavat tiedot."
 
-#: mod/newmember.php:27
-msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr ""
+#: src/Model/User.php:389
+msgid "Please use a shorter name."
+msgstr "Käytä lyhyempää nimeä."
 
-#: mod/newmember.php:28
-msgid "Profile Keywords"
-msgstr "Profiilin avainsanat"
+#: src/Model/User.php:392
+msgid "Name too short."
+msgstr "Nimi on liian lyhyt."
 
-#: 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."
+#: src/Model/User.php:400
+msgid "That doesn't appear to be your full (First Last) name."
 msgstr ""
 
-#: mod/newmember.php:30
-msgid "Connecting"
-msgstr "Yhdistetään"
+#: 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."
 
-#: mod/newmember.php:36
-msgid "Importing Emails"
-msgstr "Sähköpostin tuominen"
+#: src/Model/User.php:409
+msgid "Not a valid email address."
+msgstr "Virheellinen sähköpostiosoite."
 
-#: 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 ""
+#: src/Model/User.php:413 src/Model/User.php:421
+msgid "Cannot use that email."
+msgstr "Sähköpostiosoitetta ei voitu käyttää."
 
-#: mod/newmember.php:39
-msgid "Go to Your Contacts Page"
-msgstr "Näytä minun kontaktit"
+#: 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 _."
 
-#: 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 <em>Add New Contact</em> dialog."
-msgstr ""
+#: 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."
 
-#: mod/newmember.php:40
-msgid "Go to Your Site's Directory"
-msgstr "Näytä oman sivuston luettelo"
+#: src/Model/User.php:445
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "VAKAVA VIRHE: Salausavainten luominen epäonnistui."
 
-#: mod/newmember.php:40
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr ""
+#: 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."
 
-#: mod/newmember.php:41
-msgid "Finding New People"
-msgstr "Kavereiden hankkiminen"
+#: src/Model/User.php:507
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Oletusprofiilin luominen epäonnistui. Yritä uudelleen."
 
-#: 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."
+#: src/Model/User.php:514
+msgid "An error occurred creating your self contact. Please try again."
 msgstr ""
 
-#: mod/newmember.php:45
-msgid "Group Your Contacts"
-msgstr "Järjestä kontaktit ryhmiin"
-
-#: mod/newmember.php:45
+#: src/Model/User.php:523
 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."
+"An error occurred creating your default contact group. Please try again."
 msgstr ""
 
-#: mod/newmember.php:48
-msgid "Why Aren't My Posts Public?"
-msgstr "Miksi julkaisuni eivät ole julkisia?"
-
-#: mod/newmember.php:48
+#: src/Model/User.php:597
+#, php-format
 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."
+"\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 ""
 
-#: mod/newmember.php:52
-msgid "Getting Help"
-msgstr "Avun saaminen"
-
-#: mod/newmember.php:54
-msgid "Go to the Help Section"
-msgstr "Näytä ohjeet"
+#: src/Model/User.php:607
+#, php-format
+msgid "Registration at %s"
+msgstr "Rekisteröityminen kohteessa %s"
 
-#: mod/newmember.php:54
+#: src/Model/User.php:625
+#, php-format
 msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
+"\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 ""
 
-#: mod/dfrn_confirm.php:132
+#: src/Model/User.php:629
+#, php-format
 msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
+"\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 ""
 
-#: mod/dfrn_confirm.php:242
-msgid "Response from remote site was not understood."
-msgstr "Etäsivuston vastaus oli epäselvä."
+#: src/Model/Contact.php:657
+msgid "Drop Contact"
+msgstr "Poista kontakti"
 
-#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254
-msgid "Unexpected response from remote site: "
-msgstr "Odottamaton vastaus etäsivustolta:"
+#: src/Model/Contact.php:1060
+msgid "Organisation"
+msgstr "Järjestö"
 
-#: mod/dfrn_confirm.php:263
-msgid "Confirmation completed successfully."
-msgstr "Vahvistus onnistui."
+#: src/Model/Contact.php:1063
+msgid "News"
+msgstr "Uutiset"
 
-#: mod/dfrn_confirm.php:275
-msgid "Temporary failure. Please wait and try again."
-msgstr "Tilapäinen vika. Yritä myöhemmin uudelleen."
+#: src/Model/Contact.php:1066
+msgid "Forum"
+msgstr "Keskustelupalsta"
 
-#: mod/dfrn_confirm.php:278
-msgid "Introduction failed or was revoked."
-msgstr "Kaverikutsu epäonnistui tai oli peruutettu."
+#: src/Model/Contact.php:1245
+msgid "Connect URL missing."
+msgstr "Yhteys URL-linkki puuttuu."
 
-#: mod/dfrn_confirm.php:283
-msgid "Remote site reported: "
+#: 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 ""
 
-#: 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' "
+#: src/Model/Contact.php:1301
+msgid ""
+"This site is not configured to allow communications with other networks."
 msgstr ""
 
-#: mod/dfrn_confirm.php:508
-msgid "Our site encryption key is apparently messed up."
-msgstr "Sivustomme salausavain on sekaisin."
+#: 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 ""
 
-#: mod/dfrn_confirm.php:519
-msgid "Empty site URL was provided or URL could not be decrypted by us."
+#: src/Model/Contact.php:1322
+msgid "No browser URL could be matched to this address."
 msgstr ""
 
-#: mod/dfrn_confirm.php:535
-msgid "Contact record was not found for you on our site."
+#: src/Model/Contact.php:1325
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
 msgstr ""
 
-#: mod/dfrn_confirm.php:549
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
+#: src/Model/Contact.php:1326
+msgid "Use mailto: in front of address to force email check."
 msgstr ""
 
-#: mod/dfrn_confirm.php:565
+#: src/Model/Contact.php:1332
 msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
 msgstr ""
 
-#: mod/dfrn_confirm.php:576
-msgid "Unable to set your contact credentials on our system."
+#: src/Model/Contact.php:1337
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
 msgstr ""
 
-#: mod/dfrn_confirm.php:631
-msgid "Unable to update your contact profile details on our system"
-msgstr ""
+#: src/Model/Contact.php:1388
+msgid "Unable to retrieve contact information."
+msgstr "Kontaktin tietoja ei voitu hakea."
 
-#: mod/dfrn_confirm.php:694
+#: src/Model/Contact.php:1605 src/Protocol/DFRN.php:1510
 #, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s on liittynyt kohteeseen %2$s"
+msgid "%s's birthday"
+msgstr "%s: syntymäpäivä"
 
-#: mod/filer.php:34
-msgid "- select -"
-msgstr "- valitse -"
+#: src/Model/Contact.php:1606 src/Protocol/DFRN.php:1511
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Hyvää syntymäpäivää %s"
 
-#: 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."
+#: 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"
 
-#: mod/register.php:103
+#: src/Model/Item.php:1781
 #, php-format
-msgid ""
-"Failed to send email message. Here your accout details:<br> login: %s<br> "
-"password: %s<br><br>You can change your password after login."
-msgstr ""
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr "%1$s ei osallistu tapahtumaan %3$s, jonka järjestää %2$s"
 
-#: mod/register.php:110
-msgid "Registration successful."
-msgstr "Rekisteröityminen onnistui."
+#: 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"
 
-#: mod/register.php:115
-msgid "Your registration can not be processed."
-msgstr "Rekisteröintisi ei voida käsitellä."
+#: src/Model/Profile.php:97
+msgid "Requested account is not available."
+msgstr "Pyydetty käyttäjätili ei ole saatavilla."
 
-#: mod/register.php:162
-msgid "Your registration is pending approval by the site owner."
-msgstr "Rekisteröintisi odottaa ylläpitäjän hyväksyntää."
+#: src/Model/Profile.php:164 src/Model/Profile.php:395
+#: src/Model/Profile.php:857
+msgid "Edit profile"
+msgstr "Muokkaa profiilia"
 
-#: mod/register.php:220
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
+#: 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 ""
 
-#: 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."
+#: src/Model/Profile.php:547
+msgid "F d"
+msgstr ""
 
-#: mod/register.php:222
-msgid "Your OpenID (optional): "
-msgstr "OpenID -tunnus (valinnainen):"
+#: src/Model/Profile.php:604 src/Model/Profile.php:701
+msgid "[today]"
+msgstr "[tänään]"
 
-#: mod/register.php:234
-msgid "Include your profile in member directory?"
-msgstr "Lisää profiilisi jäsenluetteloon?"
+#: src/Model/Profile.php:615
+msgid "Birthday Reminders"
+msgstr "Syntymäpäivämuistutukset"
 
-#: mod/register.php:259
-msgid "Note for the admin"
-msgstr "Viesti ylläpidolle"
+#: src/Model/Profile.php:616
+msgid "Birthdays this week:"
+msgstr "Syntymäpäiviä tällä viikolla:"
 
-#: 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"
+#: src/Model/Profile.php:688
+msgid "[No description]"
+msgstr "[Ei kuvausta]"
 
-#: mod/register.php:260
-msgid "Membership on this site is by invitation only."
-msgstr "Tähän sivustoon voi liittyä vain kutsusta."
+#: src/Model/Profile.php:715
+msgid "Event Reminders"
+msgstr "Tapahtumamuistutukset"
 
-#: mod/register.php:261
-msgid "Your invitation code: "
-msgstr "Kutsukoodisi:"
+#: src/Model/Profile.php:716
+msgid "Events this week:"
+msgstr "Tapahtumia tällä viikolla:"
 
-#: 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):"
+#: src/Model/Profile.php:739
+msgid "Member since:"
+msgstr "Liittymispäivämäärä:"
 
-#: 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)"
+#: src/Model/Profile.php:747
+msgid "j F, Y"
+msgstr ""
 
-#: mod/register.php:273
-msgid "Leave empty for an auto generated password."
-msgstr "Jätä tyhjäksi jos haluat automaattisesti luotu salasanan."
+#: src/Model/Profile.php:748
+msgid "j F"
+msgstr ""
 
-#: mod/register.php:275
+#: src/Model/Profile.php:763
+msgid "Age:"
+msgstr "Ikä:"
+
+#: src/Model/Profile.php:776
 #, php-format
-msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be '<strong>nickname@%s</strong>'."
+msgid "for %1$d %2$s"
 msgstr ""
 
-#: mod/register.php:276
-msgid "Choose a nickname: "
-msgstr "Valitse lempinimi:"
+#: src/Model/Profile.php:800
+msgid "Religion:"
+msgstr "Uskonto:"
 
-#: mod/register.php:286
-msgid "Import your profile to this friendica instance"
-msgstr "Tuo profiilisi tähän Friendica -instanssiin."
+#: src/Model/Profile.php:808
+msgid "Hobbies/Interests:"
+msgstr "Harrastukset:"
 
-#: mod/common.php:91
-msgid "No contacts in common."
-msgstr "Ei yhteisiä kontakteja."
+#: src/Model/Profile.php:820
+msgid "Contact information and Social Networks:"
+msgstr "Yhteystiedot ja sosiaalinen media:"
 
-#: mod/probe.php:14 mod/webfinger.php:17
-msgid "Only logged in users are permitted to perform a probing."
-msgstr ""
+#: src/Model/Profile.php:824
+msgid "Musical interests:"
+msgstr "Musiikki:"
 
-#: mod/help.php:48
-msgid "Help:"
-msgstr "Ohje:"
+#: src/Model/Profile.php:828
+msgid "Books, literature:"
+msgstr "Kirjat, kirjallisuus:"
 
-#: mod/help.php:63 index.php:325
-msgid "Page not found."
-msgstr "Sivua ei löytynyt."
+#: src/Model/Profile.php:832
+msgid "Television:"
+msgstr "Televisio:"
 
-#: mod/profperm.php:34 mod/profperm.php:65
-msgid "Invalid profile identifier."
-msgstr "Virheellinen profiilitunniste."
+#: src/Model/Profile.php:836
+msgid "Film/dance/culture/entertainment:"
+msgstr "Elokuvat/tanssit/kulttuuri/viihde:"
 
-#: mod/profperm.php:111
-msgid "Profile Visibility Editor"
-msgstr "Profiilin näkyvyyden muokkaaminen"
+#: src/Model/Profile.php:840
+msgid "Love/Romance:"
+msgstr "Rakkaus/romanssi:"
 
-#: mod/profperm.php:124
-msgid "Visible To"
-msgstr "Näkyvyys"
+#: src/Model/Profile.php:844
+msgid "Work/employment:"
+msgstr "Työ:"
 
-#: mod/profperm.php:140
-msgid "All Contacts (with secure profile access)"
-msgstr ""
+#: src/Model/Profile.php:848
+msgid "School/education:"
+msgstr "Koulutus:"
 
-#: mod/item.php:114
-msgid "Unable to locate original post."
-msgstr "Alkuperäinen julkaisu ei löydy."
+#: src/Model/Profile.php:853
+msgid "Forums:"
+msgstr "Foorumit:"
 
-#: mod/item.php:274
-msgid "Empty post discarded."
-msgstr "Tyhjä julkaisu hylätty."
+#: src/Model/Profile.php:947
+msgid "Only You Can See This"
+msgstr "Vain sinä näet tämän"
 
-#: mod/item.php:799
+#: src/Protocol/OStatus.php:1799
 #, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr ""
+msgid "%s is now following %s."
+msgstr "%s seuraa %s."
 
-#: mod/item.php:801
+#: src/Protocol/OStatus.php:1800
+msgid "following"
+msgstr "seuraa"
+
+#: src/Protocol/OStatus.php:1803
 #, php-format
-msgid "You may visit them online at %s"
-msgstr ""
+msgid "%s stopped following %s."
+msgstr "%s ei enää seuraa %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 ""
+#: src/Protocol/OStatus.php:1804
+msgid "stopped following"
+msgstr "ei enää seuraa"
 
-#: mod/item.php:806
-#, php-format
-msgid "%s posted an update."
-msgstr "%s julkaisi päivityksen."
+#: src/Protocol/Diaspora.php:2670
+msgid "Sharing notification from Diaspora network"
+msgstr ""
 
-#: mod/editpost.php:25 mod/editpost.php:35
-msgid "Item not found"
-msgstr "Kohdetta ei löytynyt"
+#: src/Protocol/Diaspora.php:3762
+msgid "Attachments:"
+msgstr "Liitteitä:"
 
-#: mod/editpost.php:42
-msgid "Edit post"
-msgstr "Muokkaa viestiä"
+#: src/Worker/Delivery.php:407
+msgid "(no subject)"
+msgstr "(ei aihetta)"
 
-#: view/theme/quattro/config.php:76
-msgid "Alignment"
-msgstr "Kohdistaminen"
+#: src/Module/Login.php:282
+msgid "Create a New Account"
+msgstr "Luo uusi käyttäjätili"
 
-#: view/theme/quattro/config.php:76
-msgid "Left"
-msgstr "Vasemmalle"
+#: src/Module/Login.php:315
+msgid "Password: "
+msgstr "Salasana:"
 
-#: view/theme/quattro/config.php:76
-msgid "Center"
-msgstr "Keskelle"
+#: src/Module/Login.php:316
+msgid "Remember me"
+msgstr "Muista minut"
 
-#: view/theme/quattro/config.php:77
-msgid "Color scheme"
-msgstr "Värimalli"
+#: src/Module/Login.php:319
+msgid "Or login using OpenID: "
+msgstr "Kirjaudu sisään OpenID -tunnuksella:"
 
-#: view/theme/quattro/config.php:78
-msgid "Posts font size"
-msgstr "Julkaisujen fonttikoko"
+#: src/Module/Login.php:325
+msgid "Forgot your password?"
+msgstr "Unohditko salasanasi?"
 
-#: view/theme/quattro/config.php:79
-msgid "Textareas font size"
-msgstr "Tekstikenttien fonttikoko"
+#: src/Module/Login.php:328
+msgid "Website Terms of Service"
+msgstr "Verkkosivun käyttöehdot"
 
-#: view/theme/frio/php/Image.php:25
-msgid "Repeat the image"
-msgstr "Toista kuva"
+#: src/Module/Login.php:329
+msgid "terms of service"
+msgstr "käyttöehdot"
 
-#: view/theme/frio/php/Image.php:25
-msgid "Will repeat your image to fill the background."
-msgstr ""
+#: src/Module/Login.php:331
+msgid "Website Privacy Policy"
+msgstr "Sivuston tietosuojakäytäntö"
 
-#: view/theme/frio/php/Image.php:27
-msgid "Stretch"
-msgstr "Venytä"
+#: src/Module/Login.php:332
+msgid "privacy policy"
+msgstr "tietosuojakäytäntö"
 
-#: view/theme/frio/php/Image.php:27
-msgid "Will stretch to width/height of the image."
-msgstr ""
+#: src/Module/Logout.php:28
+msgid "Logged out."
+msgstr "Kirjautunut ulos."
 
-#: view/theme/frio/php/Image.php:29
-msgid "Resize fill and-clip"
-msgstr ""
+#: src/Module/Tos.php:51
+msgid "Privacy Statement"
+msgstr "Tietosuojalausunto"
 
-#: view/theme/frio/php/Image.php:29
-msgid "Resize to fill and retain aspect ratio."
+#: 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 ""
 
-#: view/theme/frio/php/Image.php:31
-msgid "Resize best fit"
+#: 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 ""
 
-#: view/theme/frio/php/Image.php:31
-msgid "Resize to best fit and retain aspect ratio."
+#: src/Module/Tos.php:54
+#, php-format
+msgid ""
+"At any point in time a logged in user can export their account data from the"
+" <a href=\"%1$s/settings/uexport\">account settings</a>. If the user wants "
+"to delete their account they can do so at <a "
+"href=\"%1$s/removeme\">%1$s/removeme</a>. The deletion of the account will "
+"be permanent."
 msgstr ""
 
-#: view/theme/frio/config.php:97
-msgid "Default"
-msgstr "Oletus"
+#: src/Object/Post.php:128
+msgid "This entry was edited"
+msgstr "Tämä kohde oli muokattu"
 
-#: view/theme/frio/config.php:109
-msgid "Note"
-msgstr ""
+#: src/Object/Post.php:182
+msgid "save to folder"
+msgstr "tallenna kansioon"
 
-#: view/theme/frio/config.php:109
-msgid "Check image permissions if all users are allowed to visit the image"
-msgstr ""
+#: src/Object/Post.php:235
+msgid "I will attend"
+msgstr "Osallistun"
 
-#: view/theme/frio/config.php:116
-msgid "Select scheme"
-msgstr "Valitse malli"
+#: src/Object/Post.php:235
+msgid "I will not attend"
+msgstr "En aio osallistua"
 
-#: view/theme/frio/config.php:117
-msgid "Navigation bar background color"
-msgstr "Navigointipalkin taustaväri"
+#: src/Object/Post.php:235
+msgid "I might attend"
+msgstr "Ehkä osallistun"
 
-#: view/theme/frio/config.php:118
-msgid "Navigation bar icon color "
-msgstr "Navigointipalkin kuvakkeiden väri"
+#: src/Object/Post.php:263
+msgid "add star"
+msgstr "lisää tähti"
 
-#: view/theme/frio/config.php:119
-msgid "Link color"
-msgstr "Linkin väri"
+#: src/Object/Post.php:264
+msgid "remove star"
+msgstr "poista tähti"
 
-#: view/theme/frio/config.php:120
-msgid "Set the background color"
-msgstr "Valitse taustaväri"
+#: src/Object/Post.php:265
+msgid "toggle star status"
+msgstr "Tähtitila päälle/pois"
 
-#: view/theme/frio/config.php:121
-msgid "Content background opacity"
-msgstr "Sisällön taustasameus"
+#: src/Object/Post.php:268
+msgid "starred"
+msgstr "tähtimerkitty"
 
-#: view/theme/frio/config.php:122
-msgid "Set the background image"
-msgstr "Valitse taustakuva"
+#: src/Object/Post.php:274
+msgid "ignore thread"
+msgstr "Sivuuta keskustelu"
 
-#: view/theme/frio/config.php:127
-msgid "Login page background image"
-msgstr "Sisäänkirjautumissivun taustakuva"
+#: src/Object/Post.php:275
+msgid "unignore thread"
+msgstr "Seuraa keskustelua"
 
-#: view/theme/frio/config.php:130
-msgid "Login page background color"
-msgstr "Sisäänkirjautumissivun taustaväri"
+#: src/Object/Post.php:276
+msgid "toggle ignore status"
+msgstr "Sivuuta/seuraa"
 
-#: view/theme/frio/config.php:130
-msgid "Leave background image and color empty for theme defaults"
-msgstr ""
+#: src/Object/Post.php:285
+msgid "add tag"
+msgstr "lisää tägi"
 
-#: view/theme/frio/theme.php:238
-msgid "Guest"
-msgstr "Vieras"
+#: src/Object/Post.php:296
+msgid "like"
+msgstr "tykkää"
 
-#: view/theme/frio/theme.php:243
-msgid "Visitor"
-msgstr "Vierailija"
+#: src/Object/Post.php:297
+msgid "dislike"
+msgstr "en tykkää"
 
-#: view/theme/vier/config.php:75
-msgid "Comma separated list of helper forums"
-msgstr ""
+#: src/Object/Post.php:300
+msgid "Share this"
+msgstr "Jaa tämä"
 
-#: view/theme/vier/config.php:122
-msgid "Set style"
-msgstr "Aseta tyyli"
+#: src/Object/Post.php:300
+msgid "share"
+msgstr "jaa"
 
-#: view/theme/vier/config.php:123
-msgid "Community Pages"
-msgstr "Yhteisösivut"
+#: src/Object/Post.php:365
+msgid "to"
+msgstr ""
 
-#: view/theme/vier/config.php:124 view/theme/vier/theme.php:150
-msgid "Community Profiles"
-msgstr "Yhteisöprofiilit"
+#: src/Object/Post.php:366
+msgid "via"
+msgstr "kautta"
 
-#: view/theme/vier/config.php:125
-msgid "Help or @NewHere ?"
-msgstr ""
+#: src/Object/Post.php:367
+msgid "Wall-to-Wall"
+msgstr "Seinäjulkaisu"
 
-#: view/theme/vier/config.php:126 view/theme/vier/theme.php:389
-msgid "Connect Services"
-msgstr "Yhdistä palvelut"
+#: src/Object/Post.php:368
+msgid "via Wall-To-Wall:"
+msgstr "seinäjulkaisun kautta"
 
-#: view/theme/vier/config.php:127 view/theme/vier/theme.php:199
-msgid "Find Friends"
-msgstr "Etsi kavereita"
+#: src/Object/Post.php:427
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d kommentti"
+msgstr[1] "%d kommentteja"
 
-#: view/theme/vier/config.php:128 view/theme/vier/theme.php:181
-msgid "Last users"
-msgstr "Viimeisimmät käyttäjät"
+#: src/Object/Post.php:797
+msgid "Bold"
+msgstr "Lihavoitu"
 
-#: view/theme/vier/theme.php:200
-msgid "Local Directory"
-msgstr "Paikallinen hakemisto"
+#: src/Object/Post.php:798
+msgid "Italic"
+msgstr "Kursivoitu"
 
-#: view/theme/vier/theme.php:292
-msgid "Quick Start"
-msgstr "Pika-aloitus"
+#: src/Object/Post.php:799
+msgid "Underline"
+msgstr "Alleviivaus"
 
-#: view/theme/duepuntozero/config.php:55
-msgid "greenzero"
-msgstr "greenzero"
+#: src/Object/Post.php:800
+msgid "Quote"
+msgstr "Lainaus"
 
-#: view/theme/duepuntozero/config.php:56
-msgid "purplezero"
-msgstr "purplezero"
+#: src/Object/Post.php:801
+msgid "Code"
+msgstr "Koodi"
 
-#: view/theme/duepuntozero/config.php:57
-msgid "easterbunny"
-msgstr "easterbunny"
+#: src/Object/Post.php:802
+msgid "Image"
+msgstr "Kuva"
 
-#: view/theme/duepuntozero/config.php:58
-msgid "darkzero"
-msgstr "darkzero"
+#: src/Object/Post.php:803
+msgid "Link"
+msgstr "Linkki"
 
-#: view/theme/duepuntozero/config.php:59
-msgid "comix"
-msgstr "comix"
+#: src/Object/Post.php:804
+msgid "Video"
+msgstr "Video"
 
-#: view/theme/duepuntozero/config.php:60
-msgid "slackr"
-msgstr "slackr"
+#: src/App.php:511
+msgid "Delete this item?"
+msgstr "Poista tämä kohde?"
 
-#: 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."
index 89513a7e51c4068763043105fca8d59903e3882c..488c7cce1151dd3721d5bbf31eef6cb81f77ea62 100644 (file)
@@ -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,966 +279,306 @@ $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["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["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>VAROITUS: Tämä on erittäin vaativaa</strong> ja jos kirjoitat virheellisiä tietoja, viestintäsi tämän henkilön kanssa voi lakata toimimasta.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Ole hyvä ja paina selaimesi 'Takaisin'-painiketta <strong>nyt</strong>, 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["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 <em>Quick Start</em> 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 <em>Settings</em> 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 <strong>default</strong> 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 <em>Add New Contact</em> 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 <em>Connect</em> or <em>Follow</em> 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 <strong>help</strong> 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["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["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";
+$a->strings["Move account"] = "Siirrä tili";
+$a->strings["You can import an account from another Friendica server."] = "Voit tuoda käyttäjätilin toiselta Friendica -palvelimelta.";
+$a->strings["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."] = "";
+$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["%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["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 <strong>may</strong> 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["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %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["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["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["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["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 <strong>this</strong> profile."] = "Väärä identiteetti kirjautuneena sisään. Kirjaudu <strong>tähän</strong> 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, <a href=\"%s\">follow this link to find a public Friendica site and join us today</a>."] = "";
+$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["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 <a href=\"%1\$s/settings/uexport\">account settings</a>. If the user wants to delete their account they can do so at <a href=\"%1\$s/removeme\">%1\$s/removeme</a>. 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["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["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["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["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["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["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["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["Wall Photos"] = "Seinäkuvat";
 $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["[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";
-$a->strings["Move account"] = "Siirrä tili";
-$a->strings["You can import an account from another Friendica server."] = "Voit tuoda käyttäjätilin toiselta Friendica -palvelimelta.";
-$a->strings["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."] = "";
-$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["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["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["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."] = [
-       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 <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more about the Friendica project."] = "Vieraile osoitteessa <a href=\"https://friendi.ca\">Friendi.ca</a> 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 <a href=\"%1\$s/tos\">Terms of Service</a> of this node."] = "Lue tämän solmun <a href=\"%1\$s/tos\">käyttöehdot</a>.";
-$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["%1\$s is following %2\$s's %3\$s"] = "";
-$a->strings["Profile not found."] = "Profiilia ei löytynyt.";
-$a->strings["Profile deleted."] = "Profiili poistettiin.";
-$a->strings["Profile-"] = "Profiili-";
-$a->strings["New profile created."] = "Uusi profiili luotu.";
-$a->strings["Profile unavailable to clone."] = "Profiili ei saatavilla kloonattavaksi.";
-$a->strings["Profile Name is required."] = "Profiilinimi on pakollinen.";
-$a->strings["Marital Status"] = "Siviilisääty";
-$a->strings["Romantic Partner"] = "Romanttinen kumppani";
-$a->strings["Work/Employment"] = "Työ";
-$a->strings["Religion"] = "Uskonto";
-$a->strings["Political Views"] = "Poliittiset näkemykset";
-$a->strings["Gender"] = "Sukupuoli";
-$a->strings["Sexual Preference"] = "Seksuaalinen suuntautuminen";
-$a->strings["XMPP"] = "XMPP";
-$a->strings["Homepage"] = "Kotisivu";
-$a->strings["Interests"] = "Kiinnostukset";
-$a->strings["Address"] = "Osoite";
-$a->strings["Location"] = "Sijainti";
-$a->strings["Profile updated."] = "Profiili päivitettiin.";
-$a->strings[" and "] = "ja";
-$a->strings["public profile"] = "julkinen profiili";
-$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "";
-$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["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";
-$a->strings["Basic information"] = "Perustiedot";
-$a->strings["Profile picture"] = "Profiilikuva";
-$a->strings["Preferences"] = "Mieltymykset";
-$a->strings["Status information"] = "Tilatiedot";
-$a->strings["Additional information"] = "Lisätietoja";
-$a->strings["Relation"] = "Suhde";
-$a->strings["Your Gender:"] = "Sukupuoli:";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Siviilisääty:";
-$a->strings["Example: fishing photography software"] = "Esimerkki: kalastus valokuvaus ohjelmistot";
-$a->strings["Profile Name:"] = "Profiilinimi:";
-$a->strings["Required"] = "Vaaditaan";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "";
-$a->strings["Your Full Name:"] = "Koko nimi:";
-$a->strings["Title/Description:"] = "Otsikko/kuvaus:";
-$a->strings["Street Address:"] = "Katuosoite:";
-$a->strings["Locality/City:"] = "Kaupunki:";
-$a->strings["Region/State:"] = "Alue/osavaltio:";
-$a->strings["Postal/Zip Code:"] = "Postinumero:";
-$a->strings["Country:"] = "Maa:";
-$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ä]:";
-$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["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["Musical interests"] = "Musiikki";
-$a->strings["Books, literature"] = "Kirjat, kirjallisuus";
-$a->strings["Television"] = "Televisio";
-$a->strings["Film/dance/culture/entertainment"] = "Elokuvat/tanssi/kulttuuri/viihde";
-$a->strings["Hobbies/Interests"] = "Harrastukset";
-$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["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["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["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. <a href=\"%s\">%s</a>). 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 <a href=\"%s\">local directory</a>. 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 <strong>not published</strong>."] = "Profiili <strong>ei ole julkaistu</strong>.";
-$a->strings["Your Identity Address is <strong>'%s'</strong> or '%s'."] = "Identiteettisi osoite on <strong>'%s'</strong> 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["New Password:"] = "Uusi salasana:";
-$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 <em>interesting</em> profile change"] = "muokkaat <em>kiinnostavalla tavalla</em> 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 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ä";
@@ -1241,678 +586,271 @@ $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["Click on a contact to add or remove."] = "Valitse kontakti, jota haluat poistaa tai lisätä.";
-$a->strings["Files"] = "Tiedostot";
-$a->strings["Theme settings updated."] = "Teeman asetukset päivitetty.";
-$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["Themes"] = "Teemat";
-$a->strings["Database"] = "Tietokanta";
-$a->strings["DB updates"] = "Tietokannan päivitykset";
-$a->strings["Inspect Queue"] = "Tarkista jono";
-$a->strings["Tools"] = "Työkalut";
-$a->strings["Contact Blocklist"] = "Kontaktien estolista";
-$a->strings["Server Blocklist"] = "Palvelimien estolista";
-$a->strings["Delete Item"] = "Poista kohde";
-$a->strings["Logs"] = "Lokit";
-$a->strings["View Logs"] = "Katso lokit";
-$a->strings["Diagnostics"] = "Diagnostiikka";
-$a->strings["PHP Info"] = "PHP tietoja";
-$a->strings["probe address"] = "";
-$a->strings["check webfinger"] = "Tarkista webfinger";
-$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";
-$a->strings["Display Terms of Service"] = "Näytä käyttöehdot";
-$a->strings["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."] = "";
-$a->strings["Display Privacy Statement"] = "Näytä tietosuojalausunto";
-$a->strings["Show some informations regarding the needed information to operate the node according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."] = "";
-$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["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";
-$a->strings["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."] = "";
-$a->strings["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."] = "";
-$a->strings["Add new entry to block list"] = "Lisää uusi kohde estolistaan";
-$a->strings["Server Domain"] = "Palvelimen verkkotunnus";
-$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = "";
-$a->strings["Block reason"] = "Estosyy";
-$a->strings["Add Entry"] = "Lisää merkintä";
-$a->strings["Save changes to the blocklist"] = "Tallenna muutoksia estolistaan";
-$a->strings["Current Entries in the Blocklist"] = "Nykyinen estolista";
-$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["%s contact unblocked"] = [
-       0 => "%s kontakti poistettu estolistalta",
-       1 => "%s kontaktia poistettu estolistalta",
+$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 <strong>may</strong> 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["Remote Contact Blocklist"] = "Etäkontakti estolista";
-$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "";
-$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",
+$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["URL of the remote contact to block."] = "Estettävän etäkontaktin URL-osoite";
-$a->strings["Delete this Item"] = "Poista tämä kohde";
-$a->strings["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."] = "";
-$a->strings["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."] = "";
-$a->strings["GUID"] = "GUID";
-$a->strings["The GUID of the item you want to delete."] = "Poistettavan kohteen GUID.";
-$a->strings["Item marked for deletion."] = "Kohde merkitty poistettavaksi.";
-$a->strings["unknown"] = "tuntematon";
-$a->strings["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."] = "";
-$a->strings["The <em>Auto Discovered Contact Directory</em> feature is not enabled, it will improve the data displayed here."] = "";
-$a->strings["Currently this node is aware of %d nodes with %d registered users from the following platforms:"] = "Tällä hetkellä tämä solmu havaitsee %d muita solmuja joissa %d rekisteröityneitä käyttäjiä. Tarkemmat tiedot:";
-$a->strings["ID"] = "";
-$a->strings["Recipient Name"] = "Vastaanottajan nimi";
-$a->strings["Recipient Profile"] = "Vastaanottajan profiili";
-$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."] = "";
-$a->strings["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 <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the command <tt>php bin/console.php dbstructure toinnodb</tt> of your Friendica installation for an automatic conversion.<br />"] = "";
-$a->strings["There is a new version of Friendica available for download. Your current version is %1\$s, upstream version is %2\$s"] = "";
-$a->strings["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."] = "Tietokannan päivitys epäonnistui. Suorita komento \"php bin/console.php dbstructure update\" komentoriviltä ja lue mahdolliset virheviestit.";
-$a->strings["The worker was never executed. Please check your database structure!"] = "Workeriä ei ole otettu käyttöön. Tarkista tietokantasi rakenne!";
-$a->strings["The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings."] = "Viimeisin worker -käynnistys tapahtui klo %s UTC, eli yli tunti sitten. Tarkista crontab -asetukset.";
-$a->strings["Normal Account"] = "Perustili";
-$a->strings["Automatic Follower Account"] = "Automaattinen seuraajatili";
-$a->strings["Public Forum Account"] = "Julkinen foorumitili";
-$a->strings["Automatic Friend Account"] = "Automaattinen kaveritili";
-$a->strings["Blog Account"] = "Blogitili";
-$a->strings["Private Forum Account"] = "Yksityinen foorumitili";
-$a->strings["Message queues"] = "Viestijonot";
-$a->strings["Summary"] = "Yhteenveto";
-$a->strings["Registered users"] = "Rekisteröityneet käyttäjät";
-$a->strings["Pending registrations"] = "Vireillä olevat rekisteröinnit";
-$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 <scheme>://<domain>"] = "Ei voitu jäsentää perusosoitetta. Täytyy sisältää ainakin <scheme>://<domain>";
-$a->strings["Site settings updated."] = "Sivuston asetukset päivitettiin.";
-$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["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["Users, Global Contacts"] = "Käyttäjät, maailmanlaajuiset kontaktit";
-$a->strings["Users, Global Contacts/fallback"] = "";
-$a->strings["One month"] = "Yksi kuukausi";
-$a->strings["Three months"] = "Kolme kuukautta";
-$a->strings["Half a year"] = "Puoli vuotta";
-$a->strings["One year"] = "Yksi vuosi";
-$a->strings["Multi user instance"] = "Monen käyttäjän instanssi";
-$a->strings["Closed"] = "Suljettu";
-$a->strings["Requires approval"] = "Edellyttää hyväksyntää";
-$a->strings["Open"] = "Avoin";
-$a->strings["No SSL policy, links will track page SSL state"] = "";
-$a->strings["Force all links to use SSL"] = "Pakota kaikki linkit käyttämään SSL-yhteyttä";
-$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "";
-$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"] = "";
-$a->strings["Performance"] = "Suoritus";
-$a->strings["Worker"] = "Worker";
-$a->strings["Message Relay"] = "Viestirele";
-$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "";
-$a->strings["Site name"] = "Sivuston nimi";
-$a->strings["Host name"] = "Palvelimen nimi";
-$a->strings["Sender Email"] = "Lähettäjän sähköposti";
-$a->strings["The email address your server shall use to send notification emails from."] = "Lähettäjän sähköpostiosoite palvelimen ilmoitussähköposteissa.";
-$a->strings["Banner/Logo"] = "Banneri/logo";
-$a->strings["Shortcut icon"] = "Pikakuvake";
-$a->strings["Link to an icon that will be used for browsers."] = "Linkki kuvakkeeseen jota selaimet saa käyttää.";
-$a->strings["Touch icon"] = "Kosketusnäyttökuvake";
-$a->strings["Link to an icon that will be used for tablets and mobiles."] = "Linkki kuvakkeeseen jota tabletit ja matkapuhelimet saa käyttää.";
-$a->strings["Additional Info"] = "Lisätietoja";
-$a->strings["For public servers: you can add additional information here that will be listed at %s/servers."] = "";
-$a->strings["System language"] = "Järjestelmän kieli";
-$a->strings["System theme"] = "Järjestelmäteema";
-$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
-$a->strings["Mobile system theme"] = "Mobiili järjestelmäteema";
-$a->strings["Theme for mobile devices"] = "Mobiiliteema";
-$a->strings["SSL link policy"] = "SSL-linkkikäytäntö";
-$a->strings["Determines whether generated links should be forced to use SSL"] = "Määrittää pakotetaanko tuotetut linkit käyttämään SSL-yhteyttä.";
-$a->strings["Force SSL"] = "Pakoita SSL-yhteyden käyttöä";
-$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "";
-$a->strings["Hide help entry from navigation menu"] = "";
-$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "";
-$a->strings["Single user instance"] = "Yksittäisen käyttäjän instanssi";
-$a->strings["Make this instance multi-user or single-user for the named user"] = "";
-$a->strings["Maximum image size"] = "Suurin kuvakoko";
-$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Ladattavan kuvatiedoston enimmäiskoko tavuina. Oletusarvo on 0, eli ei enimmäiskokoa.";
-$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["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.";
-$a->strings["Register text"] = "Rekisteröitymisteksti";
-$a->strings["Will be displayed prominently on the registration page. You can use BBCode here."] = "Näkyvästi esillä rekisteröitymissivulla. Voit käyttää BBCodeia.";
-$a->strings["Accounts abandoned after x days"] = "Käyttäjätilit hylätään X päivän jälkeen";
-$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "";
-$a->strings["Allowed friend domains"] = "Sallittuja kaveri-verkkotunnuksia";
-$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "";
-$a->strings["Allowed email domains"] = "Sallittuja sähköposti-verkkotunnuksia";
-$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"] = "";
-$a->strings["No OEmbed rich content"] = "";
-$a->strings["Don't show the rich content (e.g. embedded PDF), except from the domains listed below."] = "";
-$a->strings["Allowed OEmbed domains"] = "Sallittuja OEmbed -verkkotunnuksia";
-$a->strings["Comma separated list of domains which oembed content is allowed to be displayed. Wildcards are accepted."] = "";
-$a->strings["Block public"] = "Estä vierailijat";
-$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "";
-$a->strings["Force publish"] = "";
-$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "";
-$a->strings["Global directory URL"] = "Maailmanlaajuisen hakemiston URL-osoite";
-$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
-$a->strings["Private posts by default for new users"] = "";
-$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "";
-$a->strings["Don't include post content in email notifications"] = "Älä lisää julkaisun sisältö sähköposti-ilmoitukseen";
-$a->strings["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."] = "";
-$a->strings["Disallow public access to addons listed in the apps menu."] = "";
-$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "";
-$a->strings["Don't embed private images in posts"] = "Älä upota yksityisiä kuvia julkaisuissa";
-$a->strings["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."] = "";
-$a->strings["Allow Users to set remote_self"] = "";
-$a->strings["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."] = "";
-$a->strings["Block multiple registrations"] = "";
-$a->strings["Disallow users to register additional accounts for use as pages."] = "";
-$a->strings["OpenID support"] = "OpenID-tuki";
-$a->strings["OpenID support for registration and logins."] = "OpenID-tuki rekisteröitymiseen ja kirjautumiseen";
-$a->strings["Fullname check"] = "Koko nimi tarkistus";
-$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "";
-$a->strings["Community pages for visitors"] = "Yhteisösivu vieraille";
-$a->strings["Which community pages should be available for visitors. Local users always see both pages."] = "";
-$a->strings["Posts per user on community page"] = "";
-$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "Enimmäismäärä julkaisuja käyttäjää kohden yhteisösivulla. (Ei koske maailmanlaajuista yhteisösivua.)";
-$a->strings["Enable OStatus support"] = "Salli OStatus-tuki";
-$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "";
-$a->strings["Only import OStatus threads from our contacts"] = "Ainoastaan tuo OStatus -ketjuja kontakteiltamme";
-$a->strings["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."] = "";
-$a->strings["OStatus support can only be enabled if threading is enabled."] = "OStatus-tuki voidaan ottaa käyttöön ainoastaan jos ketjuttaminen on jo otettu käyttöön.";
-$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "Diaspora -tukea ei voitu ottaa käyttöön koska Friendica on asennettu alihakemistoon.";
-$a->strings["Enable Diaspora support"] = "Salli Diaspora-tuki";
-$a->strings["Provide built-in Diaspora network compatibility."] = "Ota käyttöön Diaspora-yhteensopivuus";
-$a->strings["Only allow Friendica contacts"] = "Salli ainoastaan Friendica -kontakteja";
-$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Kaikkien kontaktien on käytettävä Friendica-protokollaa. Kaikki muut protokollat poistetaan käytöstä.";
-$a->strings["Verify SSL"] = "Vahvista SSL";
-$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "";
-$a->strings["Proxy user"] = "Välityspalvelimen käyttäjä";
-$a->strings["Proxy URL"] = "Välityspalvelimen osoite";
-$a->strings["Network timeout"] = "Verkon aikakatkaisu";
-$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "";
-$a->strings["Maximum Load Average"] = "Kuorman enimmäiskeksiarvo";
-$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Järjestelmäkuormitus jolloin lähetys- ja kyselyprosessit lykätään (oletusarvo 50).";
-$a->strings["Maximum Load Average (Frontend)"] = "Kuorman enimmäiskeskiarvo (Frontend)";
-$a->strings["Maximum system load before the frontend quits service - default 50."] = "Järjestelmäkuormitus jolloin Frontend poistetaan käytöstä (oletusarvo 50).";
-$a->strings["Minimal Memory"] = "";
-$a->strings["Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."] = "";
-$a->strings["Maximum table size for optimization"] = "Taulukon enimmäiskoko optimointia varten";
-$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = "Taulukon enimmäiskoko (megatavuina) automaattista optimointia varten - oletusarvo 100 mt. Syötä -1 poistamaan optimointi käytöstä.";
-$a->strings["Minimum level of fragmentation"] = "";
-$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "";
-$a->strings["Periodical check of global contacts"] = "";
-$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "";
-$a->strings["Days between requery"] = "";
-$a->strings["Number of days after which a server is requeried for his contacts."] = "";
-$a->strings["Discover contacts from other servers"] = "Etsi kontakteja muilta palvelimilta";
-$a->strings["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'."] = "";
-$a->strings["Timeframe for fetching global contacts"] = "";
-$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "";
-$a->strings["Search the local directory"] = "Paikallisluettelohaku";
-$a->strings["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."] = "";
-$a->strings["Publish server information"] = "Julkaise palvelintiedot";
-$a->strings["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 <a href='http://the-federation.info/'>the-federation.info</a> for details."] = "";
-$a->strings["Check upstream version"] = "";
-$a->strings["Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview."] = "";
-$a->strings["Suppress Tags"] = "Piilota tunnisteet";
-$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Piilota tunnistelista julkaisun lopussa.";
-$a->strings["Path to item cache"] = "";
-$a->strings["The item caches buffers generated bbcode and external images."] = "";
-$a->strings["Cache duration in seconds"] = "";
-$a->strings["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."] = "";
-$a->strings["Maximum numbers of comments per post"] = "Julkaisun kommentiraja";
-$a->strings["How much comments should be shown for each post? Default value is 100."] = "";
-$a->strings["Temp path"] = "";
-$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "";
-$a->strings["Base path to installation"] = "Asennuksen peruspolku";
-$a->strings["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."] = "";
-$a->strings["Disable picture proxy"] = "";
-$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
-$a->strings["Only search in tags"] = "Tunnistehaku";
-$a->strings["On large systems the text search can slow down the system extremely."] = "";
-$a->strings["New base url"] = "Uusi perusosoite";
-$a->strings["Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users."] = "Vaihtaa tämän palvelimen perus-URL-osoitteen. Lähettää uudelleensijoitusviestit käyttäjien kaikille kontakteille Friendicassa ja Diasporassa*.";
-$a->strings["RINO Encryption"] = "RINO-salaus";
-$a->strings["Encryption layer between nodes."] = "Salauskerros solmujen välillä.";
-$a->strings["Enabled"] = "Käytössä";
-$a->strings["Maximum number of parallel workers"] = "Enimmäismäärä rinnakkaisia workereitä";
-$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "";
-$a->strings["Don't use 'proc_open' with the worker"] = "";
-$a->strings["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."] = "";
-$a->strings["Enable fastlane"] = "Käytä fastlane";
-$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "";
-$a->strings["Enable frontend worker"] = "Ota Frontend Worker käyttöön";
-$a->strings["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."] = "";
-$a->strings["Subscribe to relay"] = "Relen tilaus";
-$a->strings["Enables the receiving of public posts from the relay. They will be included in the search, subscribed tags and on the global community page."] = "";
-$a->strings["Relay server"] = "Relepalvelin";
-$a->strings["Address of the relay server where public posts should be send to. For example https://relay.diasp.org"] = "";
-$a->strings["Direct relay transfer"] = "Suora releen siirto";
-$a->strings["Enables the direct transfer to other servers without using the relay servers"] = "";
-$a->strings["Relay scope"] = "Relen soveltamisala";
-$a->strings["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."] = "";
-$a->strings["all"] = "kaikki";
-$a->strings["tags"] = "tunnisteet";
-$a->strings["Server tags"] = "palvelintunnisteet";
-$a->strings["Comma separated list of tags for the 'tags' subscription."] = "Pilkulla erotettu tunnistelista tunnistetilausta varten.";
-$a->strings["Allow user tags"] = "Salli käyttäjien tunnisteet";
-$a->strings["If enabled, the tags from the saved searches will used for the 'tags' subscription in addition to the 'relay_server_tags'."] = "Jos otettu käyttöön, tunnisteet tallennetuista hauista käytetään tunnistetilaukseen 'relay_server_tags'in lisäksi.";
-$a->strings["Update has been marked successful"] = "";
-$a->strings["Database structure update %s was successfully applied."] = "Tietokannan rakenteen %s-päivitys onnistui.";
-$a->strings["Executing of database structure update %s failed with error: %s"] = "Tietokannan rakennepäivitys %s epäonnistui virheviestillä %s";
-$a->strings["Executing %s failed with error: %s"] = "";
-$a->strings["Update %s was successfully applied."] = "%s-päivitys onnistui.";
-$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "";
-$a->strings["There was no additional update function %s that needed to be called."] = "";
-$a->strings["No failed updates."] = "Ei epäonnistuineita päivityksiä.";
-$a->strings["Check database structure"] = "Tarkista tietokannan rakenne";
-$a->strings["Failed Updates"] = "Epäonnistuineita päivityksiä";
-$a->strings["This does not include updates prior to 1139, which did not return a status."] = "";
-$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["%s user blocked/unblocked"] = [
-       0 => "%s käyttäjä estetty / poistettu estolistalta",
-       1 => "%s käyttäjää estetty / poistettu estolistalta",
-];
-$a->strings["%s user deleted"] = [
-       0 => "%s käyttäjä poistettu",
-       1 => "%s käyttäjää poistettu",
-];
-$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["Register date"] = "Rekisteripäivämäärä";
-$a->strings["Last login"] = "Viimeisin kirjautuminen";
-$a->strings["Last item"] = "Viimeisin kohde";
-$a->strings["Type"] = "";
-$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";
-$a->strings["New User"] = "Uusi käyttäjä";
-$a->strings["Deleted since"] = "Poistettu";
-$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
-$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
-$a->strings["Name of the new user."] = "Uuden käyttäjän nimi.";
-$a->strings["Nickname"] = "Lempinimi";
-$a->strings["Nickname of the new user."] = "Uuden käyttäjän lempinimi";
-$a->strings["Email address of the new user."] = "Uuden käyttäjän sähköpostiosoite.";
-$a->strings["Addon %s disabled."] = "Lisäosa %s poistettu käytöstä.";
-$a->strings["Addon %s enabled."] = "Lisäosa %s käytössä.";
-$a->strings["Disable"] = "Poista käytöstä";
-$a->strings["Enable"] = "Ota käyttöön";
-$a->strings["Toggle"] = "Vaihda";
-$a->strings["Author: "] = "Tekijä";
-$a->strings["Maintainer: "] = "Ylläpitäjä:";
-$a->strings["Reload active addons"] = "";
-$a->strings["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"] = "";
-$a->strings["No themes found."] = "Teemoja ei löytynyt.";
-$a->strings["Screenshot"] = "Kuvakaappaus";
-$a->strings["Reload active themes"] = "Lataa aktiiviset teemat uudelleen";
-$a->strings["No themes found on the system. They should be placed in %1\$s"] = "";
-$a->strings["[Experimental]"] = "[Kokeellinen]";
-$a->strings["[Unsupported]"] = "[Ei tueta]";
-$a->strings["Log settings updated."] = "Lokiasetukset päivitetty.";
-$a->strings["PHP log currently enabled."] = "PHP-loki käytössä";
-$a->strings["PHP log currently disabled."] = "PHP-loki pois käytöstä";
-$a->strings["Clear"] = "Tyhjennä";
-$a->strings["Enable Debugging"] = "Ota virheenkorjaustila käyttöön";
-$a->strings["Log file"] = "Lokitiedosto";
-$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "";
-$a->strings["Log level"] = "Lokitaso";
-$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 <strong>%1\$s</strong> log file.\\r\\n<br/>Check to see if file %1\$s exist and is readable."] = "";
-$a->strings["Couldn't open <strong>%1\$s</strong> log file.\\r\\n<br/>Check to see if file %1\$s is readable."] = "";
-$a->strings["Lock feature %s"] = "Lukitse ominaisuus %s";
-$a->strings["Manage Additional Features"] = "Hallitse lisäominaisuudet";
+$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 <strong>may</strong> 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["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["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 <strong>may</strong> 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["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["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 <strong>this</strong> profile."] = "Väärä identiteetti kirjautuneena sisään. Kirjaudu <strong>tähän</strong> 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, <a href=\"%s\">follow this link to find a public Friendica site and join us today</a>."] = "";
-$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["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>VAROITUS: Tämä on erittäin vaativaa</strong> ja jos kirjoitat virheellisiä tietoja, viestintäsi tämän henkilön kanssa voi lakata toimimasta.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Ole hyvä ja paina selaimesi 'Takaisin'-painiketta <strong>nyt</strong>, 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["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["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 <strong>may</strong> 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."] = "";
@@ -1922,7 +860,9 @@ $a->strings["Request could not be verified. (You may have previously submitted i
 $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";
@@ -1931,237 +871,906 @@ $a->strings["Your password may be changed from the <em>Settings</em> page after
 $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["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.";
-$a->strings["Your Friendica site database has been installed."] = "Friendica-sivustosi tietokanta on asennettu.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Sinun on ehkä tuotava tiedosto \"database.sql\" manuaalisesti käyttämällä phpMyAdminia tai MySQL:ää.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Lue tiedosto \"INSTALL.txt\".";
-$a->strings["Database already in use."] = "Tietokanta on jo käytössä.";
-$a->strings["System check"] = "Järjestelmän tarkistus";
-$a->strings["Check again"] = "Tarkista uudelleen";
-$a->strings["Database connection"] = "Tietokantayhteys";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Jotta voit asentaa Friendican, tarvitaan tieto siitä, miten tietokantaasi saa yhteyden.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Ota yhteyttä web-palveluntarjoajaasi tai sivuston ylläpitäjään, jos sinulla on näihin asetuksiin liittyviä kysymyksiä.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Alla määritetyn tietokannan tulisi olla jo olemassa. Jos se ei ole, luo se ennen kuin jatkat.";
-$a->strings["Database Server Name"] = "Tietokannan palvelimen nimi";
-$a->strings["Database Login Name"] = "Tietokannan käyttäjän nimi";
-$a->strings["Database Login Password"] = "Tietokannan käyttäjän salasana";
-$a->strings["For security reasons the password must not be empty"] = "Turvallisuussyistä salasanakenttä ei saa olla tyhjä";
-$a->strings["Database Name"] = "Tietokannan nimi";
-$a->strings["Site administrator email address"] = "Sivuston ylläpitäjän sähköpostiosoite";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Tilisi sähköpostiosoitteen on vastattava tätä, jotta voit käyttää ylläpitokäyttöliittymää.";
-$a->strings["Please select a default timezone for your website"] = "Valitse oletusaikavyöhyke sivustollesi";
-$a->strings["Site settings"] = "Sivuston asetukset";
-$a->strings["System Language:"] = "Järjestelmän kieli:";
-$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Valitse Friendica-sivustosi oletuskieli.";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Komentoriviversiota PHP:stä ei löytynyt web-palvelimen PATH:ista.";
-$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 <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-worker'>'Setup the worker'</a>"] = "";
-$a->strings["PHP executable path"] = "Polku PHP-ohjelmaan";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Kirjoita koko polku PHP-ohjelmaan. Voit jättää sen tyhjäksi, jos haluat jatkaa asennusta.";
-$a->strings["Command line PHP"] = "Komentorivi-PHP";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "";
-$a->strings["Found PHP version: "] = "PHP-versio löydetty:";
-$a->strings["PHP cli binary"] = "PHP cli -binääritiedosto";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Järjestelmäsi komentorivi-PHP:ssä ei ole käytössä asetusta \"register_argc_argv\".";
-$a->strings["This is required for message delivery to work."] = "Asetus vaaditaan viestien lähettämiseen.";
-$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"] = "Virhe: järjestelmäsi \"openssl_pkey_new\" -funktio ei pysty generoimaan salausavaimia.";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Jos on kyse Windows-pavelimesta, katso \"http://www.php.net/manual/en/openssl.installation.php\".";
-$a->strings["Generate encryption keys"] = "Luo salausavaimet";
-$a->strings["libCurl PHP module"] = "PHP-moduuli libCurl";
-$a->strings["GD graphics PHP module"] = "PHP-moduuli GD graphics";
-$a->strings["OpenSSL PHP module"] = "PHP-moduuli OpenSSL";
-$a->strings["PDO or MySQLi PHP module"] = "PDO tai MySQLi PHP-moduuli";
-$a->strings["mb_string PHP module"] = "PHP-moduuli mb_string";
-$a->strings["XML PHP module"] = "XML PHP-moduuli";
-$a->strings["iconv PHP module"] = "iconv PHP-moduuli";
-$a->strings["POSIX PHP module"] = "POSIX PHP-moduuli";
-$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite -moduuli";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Virhe: Apache-palvelimen mod-rewrite -moduuli vaaditaan, mutta sitä ei ole asennettu.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Virhe: libCURL PHP -moduuli vaaditaan, mutta sitä ei ole asennettu.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Virhe: GD graphics PHP -moduuli JPEG-tuella vaaditaan, mutta sitä ei ole asennettu.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Virhe: openssl PHP -moduuli vaaditaan, mutta sitä ei ole asennettu.";
-$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Virhe: PDO tai MySQLi PHP-moduuli vaaditaan, mutta sitä ei ole asennettu.";
-$a->strings["Error: The MySQL driver for PDO is not installed."] = "Virhe: PDO:n MySQL-ajuri ei ole asennettu";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Virhe: PHP-moduuli mb_string vaaditaan, mutta sitä ei ole asennettu.";
-$a->strings["Error: iconv PHP module required but not installed."] = "Virhe: iconv PHP-moduuli vaaditaan, mutta sitä ei ole asennettu.";
-$a->strings["Error: POSIX PHP module required but not installed."] = "Virhe: POSIX PHP-moduuli vaadittaan, mutta sitä ei ole asennettu.";
-$a->strings["Error, XML PHP module required but not installed."] = "Virhe: XML PHP-moduuli vaaditaan, mutta sitä ei ole asennettu.";
-$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."] = "Web-asennuksen pitäisi pystyä luomaan tiedosto nimeltä \".htconfig.php\" palvelimesi ylimpään kansioon, mutta se ei nyt onnistu.";
-$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."] = "Tämä on yleensä käyttöoikeusasetus, jolloin web-palvelimesi ei pysty kirjoittamaan tiedostoja kansioosi, vaikka itse siihen pystyisit.";
-$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."] = "Tämän menettelyn lopussa annamme sinulle tekstin tallennettavaksi tiedostoon nimeltä .htconfig.php Friendican ylätason kansiossa.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "";
-$a->strings[".htconfig.php is writable"] = ".htconfig.php on kirjoitettava";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "";
-$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."] = "";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "";
-$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["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";
-$a->strings["ImageMagick supports GIF"] = "ImageMagik tukee GIF-formaattia";
-$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."] = "Tietokannan asetustiedostoa \".htconfig.php\" ei pystytty kirjoittamaan. Käytä mukaanliitettyä tekstiä luomaan asetustiedosto web-palvelimesi juureen.";
-$a->strings["<h1>What next</h1>"] = "<h1>Mitä seuraavaksi</h1>";
-$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 <a href=\"%s/register\">registration page</a> 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 <em>Quick Start</em> 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 <em>Settings</em> 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 <strong>default</strong> 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 <em>Add New Contact</em> 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 <em>Connect</em> or <em>Follow</em> 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 <strong>help</strong> 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:<br> login: %s<br> password: %s<br><br>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 '<strong>nickname@%s</strong>'."] = "";
-$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["Profile deleted."] = "Profiili poistettiin.";
+$a->strings["Profile-"] = "Profiili-";
+$a->strings["New profile created."] = "Uusi profiili luotu.";
+$a->strings["Profile unavailable to clone."] = "Profiili ei saatavilla kloonattavaksi.";
+$a->strings["Profile Name is required."] = "Profiilinimi on pakollinen.";
+$a->strings["Marital Status"] = "Siviilisääty";
+$a->strings["Romantic Partner"] = "Romanttinen kumppani";
+$a->strings["Work/Employment"] = "Työ";
+$a->strings["Religion"] = "Uskonto";
+$a->strings["Political Views"] = "Poliittiset näkemykset";
+$a->strings["Gender"] = "Sukupuoli";
+$a->strings["Sexual Preference"] = "Seksuaalinen suuntautuminen";
+$a->strings["XMPP"] = "XMPP";
+$a->strings["Homepage"] = "Kotisivu";
+$a->strings["Interests"] = "Kiinnostukset";
+$a->strings["Address"] = "Osoite";
+$a->strings["Location"] = "Sijainti";
+$a->strings["Profile updated."] = "Profiili päivitettiin.";
+$a->strings[" and "] = "ja";
+$a->strings["public profile"] = "julkinen profiili";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "";
+$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["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";
+$a->strings["Basic information"] = "Perustiedot";
+$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["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> 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["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "";
+$a->strings["Your Full Name:"] = "Koko nimi:";
+$a->strings["Title/Description:"] = "Otsikko/kuvaus:";
+$a->strings["Street Address:"] = "Katuosoite:";
+$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ä]:";
+$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";
+$a->strings["Film/dance/culture/entertainment"] = "Elokuvat/tanssi/kulttuuri/viihde";
+$a->strings["Hobbies/Interests"] = "Harrastukset";
+$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["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:<br> login: %s<br> password: %s<br><br>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["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@%s</strong>'."] = "";
+$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";
+$a->strings["Tools"] = "Työkalut";
+$a->strings["Contact Blocklist"] = "Kontaktien estolista";
+$a->strings["Server Blocklist"] = "Palvelimien estolista";
+$a->strings["Delete Item"] = "Poista kohde";
+$a->strings["Logs"] = "Lokit";
+$a->strings["View Logs"] = "Katso lokit";
+$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";
+$a->strings["Display Terms of Service"] = "Näytä käyttöehdot";
+$a->strings["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."] = "";
+$a->strings["Display Privacy Statement"] = "Näytä tietosuojalausunto";
+$a->strings["Show some informations regarding the needed information to operate the node according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."] = "";
+$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";
+$a->strings["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."] = "";
+$a->strings["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."] = "";
+$a->strings["Add new entry to block list"] = "Lisää uusi kohde estolistaan";
+$a->strings["Server Domain"] = "Palvelimen verkkotunnus";
+$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = "";
+$a->strings["Block reason"] = "Estosyy";
+$a->strings["Add Entry"] = "Lisää merkintä";
+$a->strings["Save changes to the blocklist"] = "Tallenna muutoksia estolistaan";
+$a->strings["Current Entries in the Blocklist"] = "Nykyinen estolista";
+$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",
+];
+$a->strings["Remote Contact Blocklist"] = "Etäkontakti estolista";
+$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "";
+$a->strings["Block Remote Contact"] = "Estä etäkontakti";
+$a->strings["select all"] = "valitse kaikki";
+$a->strings["select none"] = "älä valitse mitään";
+$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["%s total blocked contact"] = [
+       0 => "Yhteensä %s estetty kontakti",
+       1 => "Yhteensä %s estettyjä kontakteja",
+];
+$a->strings["URL of the remote contact to block."] = "Estettävän etäkontaktin URL-osoite";
+$a->strings["Delete this Item"] = "Poista tämä kohde";
+$a->strings["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."] = "";
+$a->strings["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."] = "";
+$a->strings["GUID"] = "GUID";
+$a->strings["The GUID of the item you want to delete."] = "Poistettavan kohteen GUID.";
+$a->strings["Item marked for deletion."] = "Kohde merkitty poistettavaksi.";
+$a->strings["unknown"] = "tuntematon";
+$a->strings["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."] = "";
+$a->strings["The <em>Auto Discovered Contact Directory</em> feature is not enabled, it will improve the data displayed here."] = "";
+$a->strings["Currently this node is aware of %d nodes with %d registered users from the following platforms:"] = "Tällä hetkellä tämä solmu havaitsee %d muita solmuja joissa %d rekisteröityneitä käyttäjiä. Tarkemmat tiedot:";
+$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."] = "";
+$a->strings["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 <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the command <tt>php bin/console.php dbstructure toinnodb</tt> of your Friendica installation for an automatic conversion.<br />"] = "";
+$a->strings["There is a new version of Friendica available for download. Your current version is %1\$s, upstream version is %2\$s"] = "";
+$a->strings["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."] = "Tietokannan päivitys epäonnistui. Suorita komento \"php bin/console.php dbstructure update\" komentoriviltä ja lue mahdolliset virheviestit.";
+$a->strings["The worker was never executed. Please check your database structure!"] = "Workeriä ei ole otettu käyttöön. Tarkista tietokantasi rakenne!";
+$a->strings["The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings."] = "Viimeisin worker -käynnistys tapahtui klo %s UTC, eli yli tunti sitten. Tarkista crontab -asetukset.";
+$a->strings["Normal Account"] = "Perustili";
+$a->strings["Automatic Follower Account"] = "Automaattinen seuraajatili";
+$a->strings["Public Forum Account"] = "Julkinen foorumitili";
+$a->strings["Automatic Friend Account"] = "Automaattinen kaveritili";
+$a->strings["Blog Account"] = "Blogitili";
+$a->strings["Private Forum Account"] = "Yksityinen foorumitili";
+$a->strings["Message queues"] = "Viestijonot";
+$a->strings["Summary"] = "Yhteenveto";
+$a->strings["Registered users"] = "Rekisteröityneet käyttäjät";
+$a->strings["Pending registrations"] = "Vireillä olevat rekisteröinnit";
+$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 <scheme>://<domain>"] = "Ei voitu jäsentää perusosoitetta. Täytyy sisältää ainakin <scheme>://<domain>";
+$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["Users, Global Contacts"] = "Käyttäjät, maailmanlaajuiset kontaktit";
+$a->strings["Users, Global Contacts/fallback"] = "";
+$a->strings["One month"] = "Yksi kuukausi";
+$a->strings["Three months"] = "Kolme kuukautta";
+$a->strings["Half a year"] = "Puoli vuotta";
+$a->strings["One year"] = "Yksi vuosi";
+$a->strings["Multi user instance"] = "Monen käyttäjän instanssi";
+$a->strings["Closed"] = "Suljettu";
+$a->strings["Requires approval"] = "Edellyttää hyväksyntää";
+$a->strings["Open"] = "Avoin";
+$a->strings["No SSL policy, links will track page SSL state"] = "";
+$a->strings["Force all links to use SSL"] = "Pakota kaikki linkit käyttämään SSL-yhteyttä";
+$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "";
+$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["File upload"] = "Tiedoston lataus";
+$a->strings["Policies"] = "Käytännöt";
+$a->strings["Auto Discovered Contact Directory"] = "";
+$a->strings["Performance"] = "Suoritus";
+$a->strings["Worker"] = "Worker";
+$a->strings["Message Relay"] = "Viestirele";
+$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "";
+$a->strings["Site name"] = "Sivuston nimi";
+$a->strings["Host name"] = "Palvelimen nimi";
+$a->strings["Sender Email"] = "Lähettäjän sähköposti";
+$a->strings["The email address your server shall use to send notification emails from."] = "Lähettäjän sähköpostiosoite palvelimen ilmoitussähköposteissa.";
+$a->strings["Banner/Logo"] = "Banneri/logo";
+$a->strings["Shortcut icon"] = "Pikakuvake";
+$a->strings["Link to an icon that will be used for browsers."] = "Linkki kuvakkeeseen jota selaimet saa käyttää.";
+$a->strings["Touch icon"] = "Kosketusnäyttökuvake";
+$a->strings["Link to an icon that will be used for tablets and mobiles."] = "Linkki kuvakkeeseen jota tabletit ja matkapuhelimet saa käyttää.";
+$a->strings["Additional Info"] = "Lisätietoja";
+$a->strings["For public servers: you can add additional information here that will be listed at %s/servers."] = "";
+$a->strings["System language"] = "Järjestelmän kieli";
+$a->strings["System theme"] = "Järjestelmäteema";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
+$a->strings["Mobile system theme"] = "Mobiili järjestelmäteema";
+$a->strings["Theme for mobile devices"] = "Mobiiliteema";
+$a->strings["SSL link policy"] = "SSL-linkkikäytäntö";
+$a->strings["Determines whether generated links should be forced to use SSL"] = "Määrittää pakotetaanko tuotetut linkit käyttämään SSL-yhteyttä.";
+$a->strings["Force SSL"] = "Pakoita SSL-yhteyden käyttöä";
+$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "";
+$a->strings["Hide help entry from navigation menu"] = "";
+$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "";
+$a->strings["Single user instance"] = "Yksittäisen käyttäjän instanssi";
+$a->strings["Make this instance multi-user or single-user for the named user"] = "";
+$a->strings["Maximum image size"] = "Suurin kuvakoko";
+$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Ladattavan kuvatiedoston enimmäiskoko tavuina. Oletusarvo on 0, eli ei enimmäiskokoa.";
+$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."] = "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.";
+$a->strings["Register text"] = "Rekisteröitymisteksti";
+$a->strings["Will be displayed prominently on the registration page. You can use BBCode here."] = "Näkyvästi esillä rekisteröitymissivulla. Voit käyttää BBCodeia.";
+$a->strings["Accounts abandoned after x days"] = "Käyttäjätilit hylätään X päivän jälkeen";
+$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "";
+$a->strings["Allowed friend domains"] = "Sallittuja kaveri-verkkotunnuksia";
+$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "";
+$a->strings["Allowed email domains"] = "Sallittuja sähköposti-verkkotunnuksia";
+$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"] = "";
+$a->strings["No OEmbed rich content"] = "";
+$a->strings["Don't show the rich content (e.g. embedded PDF), except from the domains listed below."] = "";
+$a->strings["Allowed OEmbed domains"] = "Sallittuja OEmbed -verkkotunnuksia";
+$a->strings["Comma separated list of domains which oembed content is allowed to be displayed. Wildcards are accepted."] = "";
+$a->strings["Block public"] = "Estä vierailijat";
+$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "";
+$a->strings["Force publish"] = "";
+$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "";
+$a->strings["Global directory URL"] = "Maailmanlaajuisen hakemiston URL-osoite";
+$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
+$a->strings["Private posts by default for new users"] = "";
+$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "";
+$a->strings["Don't include post content in email notifications"] = "Älä lisää julkaisun sisältö sähköposti-ilmoitukseen";
+$a->strings["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."] = "";
+$a->strings["Disallow public access to addons listed in the apps menu."] = "";
+$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "";
+$a->strings["Don't embed private images in posts"] = "Älä upota yksityisiä kuvia julkaisuissa";
+$a->strings["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."] = "";
+$a->strings["Allow Users to set remote_self"] = "";
+$a->strings["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."] = "";
+$a->strings["Block multiple registrations"] = "";
+$a->strings["Disallow users to register additional accounts for use as pages."] = "";
+$a->strings["OpenID support"] = "OpenID-tuki";
+$a->strings["OpenID support for registration and logins."] = "OpenID-tuki rekisteröitymiseen ja kirjautumiseen";
+$a->strings["Fullname check"] = "Koko nimi tarkistus";
+$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "";
+$a->strings["Community pages for visitors"] = "Yhteisösivu vieraille";
+$a->strings["Which community pages should be available for visitors. Local users always see both pages."] = "";
+$a->strings["Posts per user on community page"] = "";
+$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "Enimmäismäärä julkaisuja käyttäjää kohden yhteisösivulla. (Ei koske maailmanlaajuista yhteisösivua.)";
+$a->strings["Enable OStatus support"] = "Salli OStatus-tuki";
+$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "";
+$a->strings["Only import OStatus threads from our contacts"] = "Ainoastaan tuo OStatus -ketjuja kontakteiltamme";
+$a->strings["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."] = "";
+$a->strings["OStatus support can only be enabled if threading is enabled."] = "OStatus-tuki voidaan ottaa käyttöön ainoastaan jos ketjuttaminen on jo otettu käyttöön.";
+$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "Diaspora -tukea ei voitu ottaa käyttöön koska Friendica on asennettu alihakemistoon.";
+$a->strings["Enable Diaspora support"] = "Salli Diaspora-tuki";
+$a->strings["Provide built-in Diaspora network compatibility."] = "Ota käyttöön Diaspora-yhteensopivuus";
+$a->strings["Only allow Friendica contacts"] = "Salli ainoastaan Friendica -kontakteja";
+$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Kaikkien kontaktien on käytettävä Friendica-protokollaa. Kaikki muut protokollat poistetaan käytöstä.";
+$a->strings["Verify SSL"] = "Vahvista SSL";
+$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "";
+$a->strings["Proxy user"] = "Välityspalvelimen käyttäjä";
+$a->strings["Proxy URL"] = "Välityspalvelimen osoite";
+$a->strings["Network timeout"] = "Verkon aikakatkaisu";
+$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "";
+$a->strings["Maximum Load Average"] = "Kuorman enimmäiskeksiarvo";
+$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Järjestelmäkuormitus jolloin lähetys- ja kyselyprosessit lykätään (oletusarvo 50).";
+$a->strings["Maximum Load Average (Frontend)"] = "Kuorman enimmäiskeskiarvo (Frontend)";
+$a->strings["Maximum system load before the frontend quits service - default 50."] = "Järjestelmäkuormitus jolloin Frontend poistetaan käytöstä (oletusarvo 50).";
+$a->strings["Minimal Memory"] = "";
+$a->strings["Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."] = "";
+$a->strings["Maximum table size for optimization"] = "Taulukon enimmäiskoko optimointia varten";
+$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = "Taulukon enimmäiskoko (megatavuina) automaattista optimointia varten - oletusarvo 100 mt. Syötä -1 poistamaan optimointi käytöstä.";
+$a->strings["Minimum level of fragmentation"] = "";
+$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "";
+$a->strings["Periodical check of global contacts"] = "";
+$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "";
+$a->strings["Days between requery"] = "";
+$a->strings["Number of days after which a server is requeried for his contacts."] = "";
+$a->strings["Discover contacts from other servers"] = "Etsi kontakteja muilta palvelimilta";
+$a->strings["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'."] = "";
+$a->strings["Timeframe for fetching global contacts"] = "";
+$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "";
+$a->strings["Search the local directory"] = "Paikallisluettelohaku";
+$a->strings["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."] = "";
+$a->strings["Publish server information"] = "Julkaise palvelintiedot";
+$a->strings["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 <a href='http://the-federation.info/'>the-federation.info</a> for details."] = "";
+$a->strings["Check upstream version"] = "";
+$a->strings["Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview."] = "";
+$a->strings["Suppress Tags"] = "Piilota tunnisteet";
+$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Piilota tunnistelista julkaisun lopussa.";
+$a->strings["Path to item cache"] = "";
+$a->strings["The item caches buffers generated bbcode and external images."] = "";
+$a->strings["Cache duration in seconds"] = "";
+$a->strings["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."] = "";
+$a->strings["Maximum numbers of comments per post"] = "Julkaisun kommentiraja";
+$a->strings["How much comments should be shown for each post? Default value is 100."] = "";
+$a->strings["Temp path"] = "";
+$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "";
+$a->strings["Base path to installation"] = "Asennuksen peruspolku";
+$a->strings["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."] = "";
+$a->strings["Disable picture proxy"] = "";
+$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
+$a->strings["Only search in tags"] = "Tunnistehaku";
+$a->strings["On large systems the text search can slow down the system extremely."] = "";
+$a->strings["New base url"] = "Uusi perusosoite";
+$a->strings["Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users."] = "Vaihtaa tämän palvelimen perus-URL-osoitteen. Lähettää uudelleensijoitusviestit käyttäjien kaikille kontakteille Friendicassa ja Diasporassa*.";
+$a->strings["RINO Encryption"] = "RINO-salaus";
+$a->strings["Encryption layer between nodes."] = "Salauskerros solmujen välillä.";
+$a->strings["Enabled"] = "Käytössä";
+$a->strings["Maximum number of parallel workers"] = "Enimmäismäärä rinnakkaisia workereitä";
+$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "";
+$a->strings["Don't use 'proc_open' with the worker"] = "";
+$a->strings["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."] = "";
+$a->strings["Enable fastlane"] = "Käytä fastlane";
+$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "";
+$a->strings["Enable frontend worker"] = "Ota Frontend Worker käyttöön";
+$a->strings["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."] = "";
+$a->strings["Subscribe to relay"] = "Relen tilaus";
+$a->strings["Enables the receiving of public posts from the relay. They will be included in the search, subscribed tags and on the global community page."] = "";
+$a->strings["Relay server"] = "Relepalvelin";
+$a->strings["Address of the relay server where public posts should be send to. For example https://relay.diasp.org"] = "";
+$a->strings["Direct relay transfer"] = "Suora releen siirto";
+$a->strings["Enables the direct transfer to other servers without using the relay servers"] = "";
+$a->strings["Relay scope"] = "Relen soveltamisala";
+$a->strings["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."] = "";
+$a->strings["all"] = "kaikki";
+$a->strings["tags"] = "tunnisteet";
+$a->strings["Server tags"] = "palvelintunnisteet";
+$a->strings["Comma separated list of tags for the 'tags' subscription."] = "Pilkulla erotettu tunnistelista tunnistetilausta varten.";
+$a->strings["Allow user tags"] = "Salli käyttäjien tunnisteet";
+$a->strings["If enabled, the tags from the saved searches will used for the 'tags' subscription in addition to the 'relay_server_tags'."] = "Jos otettu käyttöön, tunnisteet tallennetuista hauista käytetään tunnistetilaukseen 'relay_server_tags'in lisäksi.";
+$a->strings["Update has been marked successful"] = "";
+$a->strings["Database structure update %s was successfully applied."] = "Tietokannan rakenteen %s-päivitys onnistui.";
+$a->strings["Executing of database structure update %s failed with error: %s"] = "Tietokannan rakennepäivitys %s epäonnistui virheviestillä %s";
+$a->strings["Executing %s failed with error: %s"] = "";
+$a->strings["Update %s was successfully applied."] = "%s-päivitys onnistui.";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "";
+$a->strings["There was no additional update function %s that needed to be called."] = "";
+$a->strings["No failed updates."] = "Ei epäonnistuineita päivityksiä.";
+$a->strings["Check database structure"] = "Tarkista tietokannan rakenne";
+$a->strings["Failed Updates"] = "Epäonnistuineita päivityksiä";
+$a->strings["This does not include updates prior to 1139, which did not return a status."] = "";
+$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",
+];
+$a->strings["%s user deleted"] = [
+       0 => "%s käyttäjä poistettu",
+       1 => "%s käyttäjää poistettu",
+];
+$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["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"] = "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["Deny"] = "Kieltäydy";
+$a->strings["Site admin"] = "Sivuston ylläpito";
+$a->strings["Account expired"] = "Tili vanhentunut";
+$a->strings["New User"] = "Uusi käyttäjä";
+$a->strings["Deleted since"] = "Poistettu";
+$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
+$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
+$a->strings["Name of the new user."] = "Uuden käyttäjän nimi.";
+$a->strings["Nickname"] = "Lempinimi";
+$a->strings["Nickname of the new user."] = "Uuden käyttäjän lempinimi";
+$a->strings["Email address of the new user."] = "Uuden käyttäjän sähköpostiosoite.";
+$a->strings["Addon %s disabled."] = "Lisäosa %s poistettu käytöstä.";
+$a->strings["Addon %s enabled."] = "Lisäosa %s käytössä.";
+$a->strings["Disable"] = "Poista käytöstä";
+$a->strings["Enable"] = "Ota käyttöön";
+$a->strings["Toggle"] = "Vaihda";
+$a->strings["Author: "] = "Tekijä";
+$a->strings["Maintainer: "] = "Ylläpitäjä:";
+$a->strings["Reload active addons"] = "";
+$a->strings["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"] = "";
+$a->strings["No themes found."] = "Teemoja ei löytynyt.";
+$a->strings["Screenshot"] = "Kuvakaappaus";
+$a->strings["Reload active themes"] = "Lataa aktiiviset teemat uudelleen";
+$a->strings["No themes found on the system. They should be placed in %1\$s"] = "";
+$a->strings["[Experimental]"] = "[Kokeellinen]";
+$a->strings["[Unsupported]"] = "[Ei tueta]";
+$a->strings["Log settings updated."] = "Lokiasetukset päivitetty.";
+$a->strings["PHP log currently enabled."] = "PHP-loki käytössä";
+$a->strings["PHP log currently disabled."] = "PHP-loki pois käytöstä";
+$a->strings["Clear"] = "Tyhjennä";
+$a->strings["Enable Debugging"] = "Ota virheenkorjaustila käyttöön";
+$a->strings["Log file"] = "Lokitiedosto";
+$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "";
+$a->strings["Log level"] = "Lokitaso";
+$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 <strong>%1\$s</strong> log file.\\r\\n<br/>Check to see if file %1\$s exist and is readable."] = "";
+$a->strings["Couldn't open <strong>%1\$s</strong> log file.\\r\\n<br/>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["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["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "";
+$a->strings["This is Friendica, version"] = "Tämä on Friendica, versio";
+$a->strings["running at web location"] = "käynnissä osoitteessa";
+$a->strings["Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more about the Friendica project."] = "Vieraile osoitteessa <a href=\"https://friendi.ca\">Friendi.ca</a> 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 <a href=\"%1\$s/tos\">Terms of Service</a> of this node."] = "Lue tämän solmun <a href=\"%1\$s/tos\">käyttöehdot</a>.";
+$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.";
+$a->strings["Your Friendica site database has been installed."] = "Friendica-sivustosi tietokanta on asennettu.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Sinun on ehkä tuotava tiedosto \"database.sql\" manuaalisesti käyttämällä phpMyAdminia tai MySQL:ää.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Lue tiedosto \"INSTALL.txt\".";
+$a->strings["Database already in use."] = "Tietokanta on jo käytössä.";
+$a->strings["System check"] = "Järjestelmän tarkistus";
+$a->strings["Check again"] = "Tarkista uudelleen";
+$a->strings["Database connection"] = "Tietokantayhteys";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Jotta voit asentaa Friendican, tarvitaan tieto siitä, miten tietokantaasi saa yhteyden.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Ota yhteyttä web-palveluntarjoajaasi tai sivuston ylläpitäjään, jos sinulla on näihin asetuksiin liittyviä kysymyksiä.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Alla määritetyn tietokannan tulisi olla jo olemassa. Jos se ei ole, luo se ennen kuin jatkat.";
+$a->strings["Database Server Name"] = "Tietokannan palvelimen nimi";
+$a->strings["Database Login Name"] = "Tietokannan käyttäjän nimi";
+$a->strings["Database Login Password"] = "Tietokannan käyttäjän salasana";
+$a->strings["For security reasons the password must not be empty"] = "Turvallisuussyistä salasanakenttä ei saa olla tyhjä";
+$a->strings["Database Name"] = "Tietokannan nimi";
+$a->strings["Site administrator email address"] = "Sivuston ylläpitäjän sähköpostiosoite";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Tilisi sähköpostiosoitteen on vastattava tätä, jotta voit käyttää ylläpitokäyttöliittymää.";
+$a->strings["Please select a default timezone for your website"] = "Valitse oletusaikavyöhyke sivustollesi";
+$a->strings["Site settings"] = "Sivuston asetukset";
+$a->strings["System Language:"] = "Järjestelmän kieli:";
+$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Valitse Friendica-sivustosi oletuskieli.";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Komentoriviversiota PHP:stä ei löytynyt web-palvelimen PATH:ista.";
+$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 <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-worker'>'Setup the worker'</a>"] = "";
+$a->strings["PHP executable path"] = "Polku PHP-ohjelmaan";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Kirjoita koko polku PHP-ohjelmaan. Voit jättää sen tyhjäksi, jos haluat jatkaa asennusta.";
+$a->strings["Command line PHP"] = "Komentorivi-PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "";
+$a->strings["Found PHP version: "] = "PHP-versio löydetty:";
+$a->strings["PHP cli binary"] = "PHP cli -binääritiedosto";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Järjestelmäsi komentorivi-PHP:ssä ei ole käytössä asetusta \"register_argc_argv\".";
+$a->strings["This is required for message delivery to work."] = "Asetus vaaditaan viestien lähettämiseen.";
+$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"] = "Virhe: järjestelmäsi \"openssl_pkey_new\" -funktio ei pysty generoimaan salausavaimia.";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Jos on kyse Windows-pavelimesta, katso \"http://www.php.net/manual/en/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Luo salausavaimet";
+$a->strings["libCurl PHP module"] = "PHP-moduuli libCurl";
+$a->strings["GD graphics PHP module"] = "PHP-moduuli GD graphics";
+$a->strings["OpenSSL PHP module"] = "PHP-moduuli OpenSSL";
+$a->strings["PDO or MySQLi PHP module"] = "PDO tai MySQLi PHP-moduuli";
+$a->strings["mb_string PHP module"] = "PHP-moduuli mb_string";
+$a->strings["XML PHP module"] = "XML PHP-moduuli";
+$a->strings["iconv PHP module"] = "iconv PHP-moduuli";
+$a->strings["POSIX PHP module"] = "POSIX PHP-moduuli";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite -moduuli";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Virhe: Apache-palvelimen mod-rewrite -moduuli vaaditaan, mutta sitä ei ole asennettu.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Virhe: libCURL PHP -moduuli vaaditaan, mutta sitä ei ole asennettu.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Virhe: GD graphics PHP -moduuli JPEG-tuella vaaditaan, mutta sitä ei ole asennettu.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Virhe: openssl PHP -moduuli vaaditaan, mutta sitä ei ole asennettu.";
+$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Virhe: PDO tai MySQLi PHP-moduuli vaaditaan, mutta sitä ei ole asennettu.";
+$a->strings["Error: The MySQL driver for PDO is not installed."] = "Virhe: PDO:n MySQL-ajuri ei ole asennettu";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Virhe: PHP-moduuli mb_string vaaditaan, mutta sitä ei ole asennettu.";
+$a->strings["Error: iconv PHP module required but not installed."] = "Virhe: iconv PHP-moduuli vaaditaan, mutta sitä ei ole asennettu.";
+$a->strings["Error: POSIX PHP module required but not installed."] = "Virhe: POSIX PHP-moduuli vaadittaan, mutta sitä ei ole asennettu.";
+$a->strings["Error, XML PHP module required but not installed."] = "Virhe: XML PHP-moduuli vaaditaan, mutta sitä ei ole asennettu.";
+$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."] = "Web-asennuksen pitäisi pystyä luomaan tiedosto nimeltä \".htconfig.php\" palvelimesi ylimpään kansioon, mutta se ei nyt onnistu.";
+$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."] = "Tämä on yleensä käyttöoikeusasetus, jolloin web-palvelimesi ei pysty kirjoittamaan tiedostoja kansioosi, vaikka itse siihen pystyisit.";
+$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."] = "Tämän menettelyn lopussa annamme sinulle tekstin tallennettavaksi tiedostoon nimeltä .htconfig.php Friendican ylätason kansiossa.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php on kirjoitettava";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "";
+$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."] = "";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "";
+$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";
+$a->strings["ImageMagick supports GIF"] = "ImageMagik tukee GIF-formaattia";
+$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."] = "Tietokannan asetustiedostoa \".htconfig.php\" ei pystytty kirjoittamaan. Käytä mukaanliitettyä tekstiä luomaan asetustiedosto web-palvelimesi juureen.";
+$a->strings["<h1>What next</h1>"] = "<h1>Mitä seuraavaksi</h1>";
+$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 <a href=\"%s/register\">registration page</a> 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["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. <a href=\"%s\">%s</a>). 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 <a href=\"%s\">local directory</a>. 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 <strong>not published</strong>."] = "Profiili <strong>ei ole julkaistu</strong>.";
+$a->strings["Your Identity Address is <strong>'%s'</strong> or '%s'."] = "Identiteettisi osoite on <strong>'%s'</strong> 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 <em>interesting</em> profile change"] = "muokkaat <em>kiinnostavalla tavalla</em> 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";
+$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 visit the image"] = "";
-$a->strings["Select scheme"] = "Valitse malli";
+$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";
@@ -2169,13 +1778,410 @@ $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["greenzero"] = "greenzero";
-$a->strings["purplezero"] = "purplezero";
-$a->strings["easterbunny"] = "easterbunny";
-$a->strings["darkzero"] = "darkzero";
-$a->strings["comix"] = "comix";
-$a->strings["slackr"] = "slackr";
-$a->strings["Variations"] = "Muunnelmat";
+$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["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %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 <strong>may</strong> 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 <a href=\"%1\$s/settings/uexport\">account settings</a>. If the user wants to delete their account they can do so at <a href=\"%1\$s/removeme\">%1\$s/removeme</a>. 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.";
index a09bd6a28ec1b2ff742597880931b17154bbcc5b..eecbfba4082cd127128c1150427e422f2b02dbf3 100644 (file)
@@ -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 <waldemar.stoczkowski@gmail.com>\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,355 +77,648 @@ 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/enotify.php:31
+msgid "Friendica Notification"
+msgstr "Powiadomienia Friendica"
 
-#: 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/enotify.php:34
+msgid "Thank You,"
+msgstr "Dziękuję,"
 
-#: 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/enotify.php:37
+#, php-format
+msgid "%s Administrator"
+msgstr "%s Administrator"
 
-#: include/conversation.php:164 src/Model/Item.php:1666
-#: src/Protocol/Diaspora.php:2035
+#: include/enotify.php:39
 #, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s lubi to %2$s's %3$s"
+msgid "%1$s, %2$s Administrator"
+msgstr "%1$s,%2$sAdministrator"
 
-#: include/conversation.php:167 src/Model/Item.php:1671
+#: include/enotify.php:95
 #, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s nie lubi %2$s's %3$s"
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Powiadomienie] Nowa wiadomość otrzymana od %s"
 
-#: include/conversation.php:170
+#: include/enotify.php:97
 #, php-format
-msgid "%1$s attends %2$s's %3$s"
-msgstr "%1$sbierze udział w %2$s's%3$s "
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$swysłał ci nową prywatną wiadomość na %2$s "
 
-#: include/conversation.php:173
+#: include/enotify.php:98
+msgid "a private message"
+msgstr "prywatna wiadomość"
+
+#: include/enotify.php:98
 #, php-format
-msgid "%1$s doesn't attend %2$s's %3$s"
-msgstr "%1$s nie uczestniczy %2$s 's %3$s"
+msgid "%1$s sent you %2$s."
+msgstr "%1$s wysyła ci %2$s"
 
-#: include/conversation.php:176
+#: include/enotify.php:100
 #, php-format
-msgid "%1$s attends maybe %2$s's %3$s"
-msgstr "%1$s może uczęszcza %2$s 's %3$s"
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości"
 
-#: include/conversation.php:209 mod/dfrn_confirm.php:431
-#: src/Protocol/Diaspora.php:2510
+#: include/enotify.php:138
 #, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s jest teraz znajomym z %2$s"
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s skomentował [url=%2$s]a %3$s[/url]"
 
-#: include/conversation.php:250
+#: include/enotify.php:146
 #, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s zaczepił Cię %2$s"
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$sskomentował  [url=%2$s]%3$s %4$s[/url]"
 
-#: include/conversation.php:304 mod/tagger.php:110
+#: include/enotify.php:156
 #, 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"
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s skomentował [url=%2$s] twój %3$s[/ url]"
 
-#: include/conversation.php:331
-msgid "post/item"
-msgstr "stanowisko/pozycja"
+#: include/enotify.php:168
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Powiadomienie] Komentarz do rozmowy #%1$d przez %2$s"
 
-#: include/conversation.php:332
+#: include/enotify.php:170
 #, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s oznacz %2$s's %3$s jako ulubione"
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s skomentował rozmowę którą śledzisz"
 
-#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:355
-msgid "Likes"
-msgstr "Lubię to"
+#: include/enotify.php:173 include/enotify.php:188 include/enotify.php:203
+#: include/enotify.php:218 include/enotify.php:237 include/enotify.php:252
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na rozmowę"
 
-#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:359
-msgid "Dislikes"
-msgstr "Nie lubię tego"
+#: include/enotify.php:180
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Powiadomienie] %s napisał na twoim profilu"
 
-#: 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/enotify.php:182
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$sopublikowano na ścianie profilu w %2$s "
 
-#: include/conversation.php:606 mod/photos.php:1502
-msgid "Not attending"
-msgstr "Nie uczestniczyłem"
+#: 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 strony[/url] "
 
-#: include/conversation.php:606 mod/photos.php:1502
-msgid "Might attend"
-msgstr "Może wziąć udział"
+#: include/enotify.php:195
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Powiadomienie] %s dodał Cię"
 
-#: include/conversation.php:718 mod/photos.php:1569 src/Object/Post.php:178
-msgid "Select"
-msgstr "Wybierz"
+#: include/enotify.php:197
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s oznaczono Cię tagiem %2$s"
 
-#: 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/enotify.php:198
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]oznaczył Cię[/url]. "
 
-#: include/conversation.php:757 src/Object/Post.php:363
-#: src/Object/Post.php:364
+#: include/enotify.php:210
 #, php-format
-msgid "View %s's profile @ %s"
-msgstr "Pokaż %s's profil @ %s"
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica:Powiadomienie] %s udostępnił nowy wpis"
 
-#: include/conversation.php:769 src/Object/Post.php:351
-msgid "Categories:"
-msgstr "Kategorie:"
+#: include/enotify.php:212
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$sudostępnił nowy wpis na %2$s "
 
-#: include/conversation.php:770 src/Object/Post.php:352
-msgid "Filed under:"
-msgstr "Zapisano w:"
+#: include/enotify.php:213
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s[url=%2$s]udostępnił wpis[/url]."
 
-#: include/conversation.php:777 src/Object/Post.php:377
+#: include/enotify.php:225
 #, php-format
-msgid "%s from %s"
-msgstr "%s od %s"
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica: Powiadomienie] %1$s zaczepia Cię"
 
-#: include/conversation.php:792
-msgid "View in context"
-msgstr "Zobacz w kontekście"
+#: include/enotify.php:227
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s zaczepił Cię %2$s"
 
-#: 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/enotify.php:228
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s[url=%2$s] zaczepił Cię[/url]."
 
-#: include/conversation.php:865
-msgid "remove"
-msgstr "usuń"
+#: include/enotify.php:244
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Powiadomienie] %s otagował Twój post"
 
-#: include/conversation.php:869
-msgid "Delete Selected Items"
-msgstr "Usuń zaznaczone elementy"
+#: include/enotify.php:246
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$soznaczyłeś swój wpis na %2$s "
 
-#: include/conversation.php:1039 view/theme/frio/theme.php:352
-msgid "Follow Thread"
-msgstr "Śledź wątek"
+#: include/enotify.php:247
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$soznacz [url=%2$s]twój post[/url]"
 
-#: include/conversation.php:1040 src/Model/Contact.php:652
-msgid "View Status"
-msgstr "Zobacz status"
+#: include/enotify.php:259
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Powiadomienie] Zapoznanie wstępne"
 
-#: 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/enotify.php:261
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Otrzymałeś wstęp od '%1$s'  z %2$s"
 
-#: include/conversation.php:1042 src/Model/Contact.php:654
-msgid "View Photos"
-msgstr "Zobacz zdjęcia"
+#: include/enotify.php:262
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Zostałeś [url=%1$s] przyjęty [/ url] z %2$s."
 
-#: include/conversation.php:1043 src/Model/Contact.php:655
-msgid "Network Posts"
-msgstr "Wiadomości sieciowe"
+#: include/enotify.php:267 include/enotify.php:313
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Możesz odwiedzić ich profil na stronie %s"
 
-#: include/conversation.php:1044 src/Model/Contact.php:656
-msgid "View Contact"
-msgstr "Pokaż kontakt"
+#: include/enotify.php:269
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie."
 
-#: include/conversation.php:1045 src/Model/Contact.php:658
-msgid "Send PM"
-msgstr "Wyślij prywatną wiadomość"
+#: include/enotify.php:277
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr "[Friendica:Powiadomienie] Nowa osoba dzieli się z tobą"
 
-#: include/conversation.php:1049 src/Model/Contact.php:659
-msgid "Poke"
-msgstr "Zaczepka"
+#: include/enotify.php:279 include/enotify.php:280
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
+msgstr "%1$sdzieli się z tobą w %2$s "
 
-#: 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/enotify.php:287
+msgid "[Friendica:Notify] You have a new follower"
+msgstr "[Friendica:Powiadomienie] Masz nowego obserwatora"
 
-#: include/conversation.php:1173
+#: include/enotify.php:289 include/enotify.php:290
 #, php-format
-msgid "%s likes this."
-msgstr "%s lubi to."
+msgid "You have a new follower at %2$s : %1$s"
+msgstr "Masz nowego obserwatora na %2$s : %1$s"
 
-#: include/conversation.php:1176
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s nie lubi tego."
+#: include/enotify.php:302
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica: Powiadomienie] Otrzymano sugestię znajomego"
 
-#: include/conversation.php:1179
+#: include/enotify.php:304
 #, php-format
-msgid "%s attends."
-msgstr "%s uczestniczy."
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Otrzymałeś od znajomego sugestię '%1$s' na %2$s"
 
-#: include/conversation.php:1182
+#: include/enotify.php:305
 #, php-format
-msgid "%s doesn't attend."
-msgstr "%s nie uczestniczy."
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Otrzymałeś [url=%1$s] sugestię znajomego [/url] dla %2$s od %3$s."
 
-#: include/conversation.php:1185
-#, php-format
-msgid "%s attends maybe."
-msgstr "%s może uczęszcza."
+#: include/enotify.php:311
+msgid "Name:"
+msgstr "Imię:"
 
-#: include/conversation.php:1196
-msgid "and"
-msgstr "i"
+#: include/enotify.php:312
+msgid "Photo:"
+msgstr "Zdjęcie:"
 
-#: include/conversation.php:1202
+#: include/enotify.php:315
 #, php-format
-msgid "and %d other people"
-msgstr "i %d inni ludzie"
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Odwiedź stronę %s, aby zatwierdzić lub odrzucić sugestię."
 
-#: include/conversation.php:1211
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d ludzi </span> lubi to"
+#: include/enotify.php:323 include/enotify.php:338
+msgid "[Friendica:Notify] Connection accepted"
+msgstr "[Friendica: Powiadomienie] Połączenie zostało zaakceptowane"
 
-#: include/conversation.php:1212
+#: include/enotify.php:325 include/enotify.php:340
 #, php-format
-msgid "%s like this."
-msgstr "%s lubię to."
+msgid "'%1$s' has accepted your connection request at %2$s"
+msgstr "'%1$s' zaakceptował Twoją prośbę o połączenie na %2$s"
 
-#: include/conversation.php:1215
+#: include/enotify.php:326 include/enotify.php:341
 #, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d ludzi </span>nie lubi tego "
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr "%2$szaakceptował twoje [url=%1$s] żądanie połączenia [/url]. "
 
-#: include/conversation.php:1216
+#: include/enotify.php:331
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and "
+"email without restriction."
+msgstr "Jesteście teraz przyjaciółmi i możesz wymieniać aktualizacje statusu, zdjęcia i e-maile bez ograniczeń."
+
+#: include/enotify.php:333
 #, php-format
-msgid "%s don't like this."
-msgstr "%s nie lubię tego."
+msgid "Please visit %s if you wish to make any changes to this relationship."
+msgstr "Odwiedź stronę %s jeśli chcesz wprowadzić zmiany w tym związku."
 
-#: include/conversation.php:1219
+#: include/enotify.php:346
 #, php-format
-msgid "<span  %1$s>%2$d people</span> attend"
-msgstr "<span  %1$s>%2$dosoby</span> uczestniczą"
+msgid ""
+"'%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."
+msgstr "'%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."
 
-#: include/conversation.php:1220
+#: include/enotify.php:348
 #, php-format
-msgid "%s attend."
-msgstr "%suczestniczy"
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future."
+msgstr "'%1$s' możesz zdecydować o przedłużeniu tego w dwukierunkowy lub bardziej ścisłą relację w przyszłości. "
 
-#: include/conversation.php:1223
+#: include/enotify.php:350
 #, php-format
-msgid "<span  %1$s>%2$d people</span> don't attend"
-msgstr "<span  %1$s>%2$dludzie</span> nie uczestniczą"
+msgid "Please visit %s  if you wish to make any changes to this relationship."
+msgstr "Odwiedź stronę %s, jeśli chcesz wprowadzić zmiany w tej relacji."
 
-#: include/conversation.php:1224
+#: include/enotify.php:360 mod/removeme.php:43
+msgid "[Friendica System Notify]"
+msgstr "[Powiadomienie Systemu Friendica]"
+
+#: include/enotify.php:360
+msgid "registration request"
+msgstr "prośba o rejestrację"
+
+#: include/enotify.php:362
 #, php-format
-msgid "%s don't attend."
-msgstr "%s nie uczestnicz"
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr "Otrzymałeś wniosek rejestracyjny od '%1$s' na %2$s"
 
-#: include/conversation.php:1227
+#: include/enotify.php:363
 #, php-format
-msgid "<span  %1$s>%2$d people</span> attend maybe"
-msgstr "<span  %1$s>%2$dprzyjaciele</span>mogą uczestniczyć "
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr "Otrzymałeś [url=%1$s] żądanie rejestracji [/url] od %2$s."
 
-#: include/conversation.php:1228
+#: include/enotify.php:368
 #, php-format
-msgid "%s attend maybe."
-msgstr "%sbyć może uczestniczyć. "
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+msgstr "Pełna nazwa:\t%1$s \\Lokalizacja nSite:\t%2$s\\ nNazwa Użytkownika: \t%3$s(%4$s)"
 
-#: include/conversation.php:1258 include/conversation.php:1274
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Widoczne dla <strong>wszystkich</strong>"
+#: include/enotify.php:374
+#, php-format
+msgid "Please visit %s to approve or reject the request."
+msgstr "Odwiedź stronę %s, aby zatwierdzić lub odrzucić wniosek."
 
-#: 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:144 include/conversation.php:282
+#: include/text.php:1753 src/Model/Item.php:1796
+msgid "event"
+msgstr "wydarzenie"
 
-#: include/conversation.php:1260 include/conversation.php:1276
-msgid "Please enter a video link/URL:"
-msgstr "Podaj link do filmu"
+#: 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:1261 include/conversation.php:1277
-msgid "Please enter an audio link/URL:"
-msgstr "Podaj link do muzyki"
+#: 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:1262 include/conversation.php:1278
-msgid "Tag term:"
-msgstr "Termin tagu:"
+#: 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:1263 include/conversation.php:1279
-#: mod/filer.php:34
-msgid "Save to Folder:"
-msgstr "Zapisz w folderze:"
+#: 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:1264 include/conversation.php:1280
-msgid "Where are you right now?"
-msgstr "Gdzie teraz jesteś?"
+#: 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:1265
-msgid "Delete item(s)?"
-msgstr "Usunąć pozycję (pozycje)?"
+#: 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:1312
-msgid "New Post"
-msgstr "Nowy Post"
+#: 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:1315
-msgid "Share"
-msgstr "Podziel się"
+#: 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: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:250
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s zaczepił Cię %2$s"
 
-#: include/conversation.php:1317 mod/editpost.php:112
-msgid "upload photo"
-msgstr "dodaj zdjęcie"
+#: 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:1318 mod/editpost.php:113
-msgid "Attach file"
-msgstr "Załącz plik"
+#: include/conversation.php:331
+msgid "post/item"
+msgstr "stanowisko/pozycja"
 
-#: include/conversation.php:1319 mod/editpost.php:114
-msgid "attach file"
-msgstr "załącz plik"
+#: 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: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:605 mod/profiles.php:355 mod/photos.php:1501
+msgid "Likes"
+msgstr "Lubię to"
 
-#: include/conversation.php:1321 mod/editpost.php:116
-msgid "web link"
-msgstr "Adres www"
+#: include/conversation.php:605 mod/profiles.php:359 mod/photos.php:1501
+msgid "Dislikes"
+msgstr "Nie lubię tego"
 
-#: include/conversation.php:1322 mod/editpost.php:117
-msgid "Insert video link"
-msgstr "Wstaw link do filmu"
+#: 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:1323 mod/editpost.php:118
+#: 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 "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d ludzi </span> lubi to"
+
+#: include/conversation.php:1212
+#, php-format
+msgid "%s like this."
+msgstr "%s lubię to."
+
+#: include/conversation.php:1215
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d ludzi </span>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 "<span  %1$s>%2$d people</span> attend"
+msgstr "<span  %1$s>%2$dosoby</span> uczestniczą"
+
+#: include/conversation.php:1220
+#, php-format
+msgid "%s attend."
+msgstr "%suczestniczy"
+
+#: include/conversation.php:1223
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't attend"
+msgstr "<span  %1$s>%2$dludzie</span> nie uczestniczą"
+
+#: include/conversation.php:1224
+#, php-format
+msgid "%s don't attend."
+msgstr "%s nie uczestnicz"
+
+#: include/conversation.php:1227
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend maybe"
+msgstr "<span  %1$s>%2$dprzyjaciele</span>mogą 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 <strong>everybody</strong>"
+msgstr "Widoczne dla <strong>wszystkich</strong>"
+
+#: 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"
 
@@ -530,12 +766,21 @@ msgstr "zezwolenia"
 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
+#: 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"
@@ -548,8 +793,8 @@ msgstr "Wstaw do kontaktów"
 msgid "Private post"
 msgstr "Prywatne posty"
 
-#: include/conversation.php:1364 mod/editpost.php:153
-#: src/Model/Profile.php:342
+#: include/conversation.php:1364 src/Model/Profile.php:342
+#: mod/editpost.php:153
 msgid "Message"
 msgstr "Wiadomość"
 
@@ -598,465 +843,173 @@ msgstr[3] ""
 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"
-
-#: include/enotify.php:34
-msgid "Thank You,"
-msgstr "Dziękuję,"
+#: include/security.php:81
+msgid "Welcome "
+msgstr "Witaj "
 
-#: include/enotify.php:37
-#, php-format
-msgid "%s Administrator"
-msgstr "%s Administrator"
+#: include/security.php:82
+msgid "Please upload a profile photo."
+msgstr "Proszę dodać zdjęcie profilowe."
 
-#: include/enotify.php:39
-#, php-format
-msgid "%1$s, %2$s Administrator"
-msgstr "%1$s,%2$sAdministrator"
-
-#: include/enotify.php:95
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Powiadomienie] Nowa wiadomość otrzymana od %s"
+#: include/security.php:84
+msgid "Welcome back "
+msgstr "Witaj ponownie "
 
-#: include/enotify.php:97
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$swysłał ci nową prywatną wiadomość na %2$s "
+#: 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 "Znacznik zabezpieczeń formularza nie był poprawny. Prawdopodobnie stało się tak, ponieważ formularz został otwarty zbyt długo (> 3 godziny) przed jego przesłaniem."
 
-#: include/enotify.php:98
-msgid "a private message"
-msgstr "prywatna wiadomość"
+#: include/text.php:302
+msgid "newer"
+msgstr "nowsze"
 
-#: include/enotify.php:98
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s wysyła ci %2$s"
+#: include/text.php:303
+msgid "older"
+msgstr "starsze"
 
-#: include/enotify.php:100
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości"
+#: include/text.php:308
+msgid "first"
+msgstr "pierwszy"
 
-#: include/enotify.php:138
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s skomentował [url=%2$s]a %3$s[/url]"
+#: include/text.php:309
+msgid "prev"
+msgstr "poprzedni"
 
-#: include/enotify.php:146
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$sskomentował  [url=%2$s]%3$s %4$s[/url]"
+#: include/text.php:343
+msgid "next"
+msgstr "następny"
 
-#: include/enotify.php:156
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s skomentował [url=%2$s] twój %3$s[/ url]"
+#: include/text.php:344
+msgid "last"
+msgstr "ostatni"
 
-#: include/enotify.php:168
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica:Powiadomienie] Komentarz do rozmowy #%1$d przez %2$s"
+#: include/text.php:398
+msgid "Loading more entries..."
+msgstr "Ładuję więcej wpisów..."
 
-#: include/enotify.php:170
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s skomentował rozmowę którą śledzisz"
+#: include/text.php:399
+msgid "The end"
+msgstr "Koniec"
 
-#: include/enotify.php:173 include/enotify.php:188 include/enotify.php:203
-#: include/enotify.php:218 include/enotify.php:237 include/enotify.php:252
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na rozmowę"
+#: include/text.php:884
+msgid "No contacts"
+msgstr "Brak kontaktów"
 
-#: include/enotify.php:180
+#: include/text.php:908
 #, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Powiadomienie] %s napisał na twoim profilu"
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d kontakt"
+msgstr[1] "%d kontaktów"
+msgstr[2] "%d kontakty"
+msgstr[3] "%d Kontakty"
 
-#: include/enotify.php:182
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$sopublikowano na ścianie profilu w %2$s "
+#: include/text.php:921
+msgid "View Contacts"
+msgstr "Widok kontaktów"
 
-#: 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] "
+#: include/text.php:1010 mod/notes.php:67 mod/filer.php:35
+#: mod/editpost.php:110
+msgid "Save"
+msgstr "Zapisz"
 
-#: include/enotify.php:195
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Powiadomienie] %s dodał Cię"
+#: include/text.php:1010
+msgid "Follow"
+msgstr "Śledzić"
 
-#: include/enotify.php:197
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s oznaczono Cię tagiem %2$s"
+#: include/text.php:1016 src/Content/Nav.php:142 mod/search.php:155
+msgid "Search"
+msgstr "Szukaj"
 
-#: include/enotify.php:198
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]oznaczył Cię[/url]. "
+#: include/text.php:1019 src/Content/Nav.php:58
+msgid "@name, !forum, #tags, content"
+msgstr "@imię, !forum, #tagi, treść"
 
-#: include/enotify.php:210
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica:Powiadomienie] %s udostępnił nowy wpis"
+#: include/text.php:1025 src/Content/Nav.php:145
+msgid "Full Text"
+msgstr "Pełny tekst"
 
-#: include/enotify.php:212
-#, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr "%1$sudostępnił nowy wpis na %2$s "
+#: include/text.php:1026 src/Content/Widget/TagCloud.php:54
+#: src/Content/Nav.php:146
+msgid "Tags"
+msgstr "Tagi"
 
-#: include/enotify.php:213
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr "%1$s[url=%2$s]udostępnił wpis[/url]."
+#: 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/enotify.php:225
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica: Powiadomienie] %1$s zaczepia Cię"
+#: include/text.php:1030 src/Content/ForumManager.php:125
+#: src/Content/Nav.php:151 view/theme/vier/theme.php:254
+msgid "Forums"
+msgstr "Fora"
 
-#: include/enotify.php:227
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s zaczepił Cię %2$s"
+#: include/text.php:1074
+msgid "poke"
+msgstr "zaczep"
 
-#: include/enotify.php:228
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s[url=%2$s] zaczepił Cię[/url]."
+#: include/text.php:1074
+msgid "poked"
+msgstr "zaczepił Cię"
 
-#: include/enotify.php:244
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Powiadomienie] %s otagował Twój post"
+#: include/text.php:1075
+msgid "ping"
+msgstr "ping"
 
-#: include/enotify.php:246
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$soznaczyłeś swój wpis na %2$s "
+#: include/text.php:1075
+msgid "pinged"
+msgstr "napięcia"
 
-#: include/enotify.php:247
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$soznacz [url=%2$s]twój post[/url]"
+#: include/text.php:1076
+msgid "prod"
+msgstr "zaczep"
 
-#: include/enotify.php:259
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Powiadomienie] Zapoznanie wstępne"
+#: include/text.php:1076
+msgid "prodded"
+msgstr "zaczepiać"
 
-#: include/enotify.php:261
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Otrzymałeś wstęp od '%1$s'  z %2$s"
+#: include/text.php:1077
+msgid "slap"
+msgstr "klask"
 
-#: 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."
+#: include/text.php:1077
+msgid "slapped"
+msgstr "spoliczkowany"
 
-#: include/enotify.php:267 include/enotify.php:313
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Możesz odwiedzić ich profil na stronie %s"
+#: include/text.php:1078
+msgid "finger"
+msgstr "wskaż"
 
-#: include/enotify.php:269
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie."
+#: include/text.php:1078
+msgid "fingered"
+msgstr "dotknięty"
 
-#: include/enotify.php:277
-msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr "[Friendica:Powiadomienie] Nowa osoba dzieli się z tobą"
+#: include/text.php:1079
+msgid "rebuff"
+msgstr "odrzuć"
 
-#: include/enotify.php:279 include/enotify.php:280
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr "%1$sdzieli się z tobą w %2$s "
+#: include/text.php:1079
+msgid "rebuffed"
+msgstr "odrzucony"
 
-#: include/enotify.php:287
-msgid "[Friendica:Notify] You have a new follower"
-msgstr "[Friendica:Powiadomienie] Masz nowego obserwatora"
+#: include/text.php:1093 src/Model/Event.php:379 mod/settings.php:943
+msgid "Monday"
+msgstr "Poniedziałek"
 
-#: include/enotify.php:289 include/enotify.php:290
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
-msgstr "Masz nowego obserwatora na %2$s : %1$s"
+#: include/text.php:1093 src/Model/Event.php:380
+msgid "Tuesday"
+msgstr "Wtorek"
 
-#: include/enotify.php:302
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica: Powiadomienie] Otrzymano sugestię znajomego"
+#: include/text.php:1093 src/Model/Event.php:381
+msgid "Wednesday"
+msgstr "Środa"
 
-#: include/enotify.php:304
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Otrzymałeś od znajomego sugestię '%1$s' na %2$s"
-
-#: include/enotify.php:305
-#, php-format
-msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "Otrzymałeś [url=%1$s] sugestię znajomego [/url] dla %2$s od %3$s."
-
-#: include/enotify.php:311
-msgid "Name:"
-msgstr "Imię:"
-
-#: include/enotify.php:312
-msgid "Photo:"
-msgstr "Zdjęcie:"
-
-#: include/enotify.php:315
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Odwiedź stronę %s, aby zatwierdzić lub odrzucić sugestię."
-
-#: include/enotify.php:323 include/enotify.php:338
-msgid "[Friendica:Notify] Connection accepted"
-msgstr "[Friendica: Powiadomienie] Połączenie zostało zaakceptowane"
-
-#: include/enotify.php:325 include/enotify.php:340
-#, php-format
-msgid "'%1$s' has accepted your connection request at %2$s"
-msgstr "'%1$s' zaakceptował Twoją prośbę o połączenie na %2$s"
-
-#: include/enotify.php:326 include/enotify.php:341
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
-msgstr "%2$szaakceptował twoje [url=%1$s] żądanie połączenia [/url]. "
-
-#: include/enotify.php:331
-msgid ""
-"You are now mutual friends and may exchange status updates, photos, and "
-"email without restriction."
-msgstr "Jesteście teraz przyjaciółmi i możesz wymieniać aktualizacje statusu, zdjęcia i e-maile bez ograniczeń."
-
-#: include/enotify.php:333
-#, php-format
-msgid "Please visit %s if you wish to make any changes to this relationship."
-msgstr "Odwiedź stronę %s jeśli chcesz wprowadzić zmiany w tym związku."
-
-#: include/enotify.php:346
-#, php-format
-msgid ""
-"'%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."
-msgstr "'%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."
-
-#: include/enotify.php:348
-#, php-format
-msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future."
-msgstr "'%1$s' możesz zdecydować o przedłużeniu tego w dwukierunkowy lub bardziej ścisłą relację w przyszłości. "
-
-#: include/enotify.php:350
-#, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
-msgstr "Odwiedź stronę %s, jeśli chcesz wprowadzić zmiany w tej relacji."
-
-#: include/enotify.php:360 mod/removeme.php:43
-msgid "[Friendica System Notify]"
-msgstr "[Powiadomienie Systemu Friendica]"
-
-#: include/enotify.php:360
-msgid "registration request"
-msgstr "prośba o rejestrację"
-
-#: include/enotify.php:362
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
-msgstr "Otrzymałeś wniosek rejestracyjny od '%1$s' na %2$s"
-
-#: include/enotify.php:363
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
-msgstr "Otrzymałeś [url=%1$s] żądanie rejestracji [/url] od %2$s."
-
-#: include/enotify.php:368
-#, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-msgstr "Pełna nazwa:\t%1$s \\Lokalizacja nSite:\t%2$s\\ nNazwa Użytkownika: \t%3$s(%4$s)"
-
-#: include/enotify.php:374
-#, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr "Odwiedź stronę %s, aby zatwierdzić lub odrzucić wniosek."
-
-#: include/security.php:81
-msgid "Welcome "
-msgstr "Witaj "
-
-#: include/security.php:82
-msgid "Please upload a profile photo."
-msgstr "Proszę dodać zdjęcie profilowe."
-
-#: include/security.php:84
-msgid "Welcome back "
-msgstr "Witaj ponownie "
-
-#: 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 "Znacznik zabezpieczeń formularza nie był poprawny. Prawdopodobnie stało się tak, ponieważ formularz został otwarty zbyt długo (> 3 godziny) przed jego przesłaniem."
-
-#: include/text.php:302
-msgid "newer"
-msgstr "nowsze"
-
-#: include/text.php:303
-msgid "older"
-msgstr "starsze"
-
-#: include/text.php:308
-msgid "first"
-msgstr "pierwszy"
-
-#: include/text.php:309
-msgid "prev"
-msgstr "poprzedni"
-
-#: include/text.php:343
-msgid "next"
-msgstr "następny"
-
-#: include/text.php:344
-msgid "last"
-msgstr "ostatni"
-
-#: include/text.php:398
-msgid "Loading more entries..."
-msgstr "Ładuję więcej wpisów..."
-
-#: include/text.php:399
-msgid "The end"
-msgstr "Koniec"
-
-#: include/text.php:884
-msgid "No contacts"
-msgstr "Brak kontaktów"
-
-#: include/text.php:908
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d kontakt"
-msgstr[1] "%d kontaktów"
-msgstr[2] "%d kontakty"
-msgstr[3] "%d Kontakty"
-
-#: include/text.php:921
-msgid "View Contacts"
-msgstr "Widok kontaktów"
-
-#: include/text.php:1010 mod/filer.php:35 mod/editpost.php:110
-#: mod/notes.php:67
-msgid "Save"
-msgstr "Zapisz"
-
-#: include/text.php:1010
-msgid "Follow"
-msgstr "Śledzić"
-
-#: include/text.php:1016 mod/search.php:155 src/Content/Nav.php:142
-msgid "Search"
-msgstr "Szukaj"
-
-#: include/text.php:1019 src/Content/Nav.php:58
-msgid "@name, !forum, #tags, content"
-msgstr "@imię, !forum, #tagi, treść"
-
-#: include/text.php:1025 src/Content/Nav.php:145
-msgid "Full Text"
-msgstr "Pełny tekst"
-
-#: include/text.php:1026 src/Content/Nav.php:146
-#: src/Content/Widget/TagCloud.php:54
-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
-msgid "Contacts"
-msgstr "Kontakty"
-
-#: include/text.php:1030 view/theme/vier/theme.php:254
-#: src/Content/ForumManager.php:125 src/Content/Nav.php:151
-msgid "Forums"
-msgstr "Fora"
-
-#: include/text.php:1074
-msgid "poke"
-msgstr "zaczep"
-
-#: include/text.php:1074
-msgid "poked"
-msgstr "zaczepił Cię"
-
-#: include/text.php:1075
-msgid "ping"
-msgstr "ping"
-
-#: include/text.php:1075
-msgid "pinged"
-msgstr "napięcia"
-
-#: include/text.php:1076
-msgid "prod"
-msgstr ""
-
-#: include/text.php:1076
-msgid "prodded"
-msgstr ""
-
-#: include/text.php:1077
-msgid "slap"
-msgstr "klask"
-
-#: include/text.php:1077
-msgid "slapped"
-msgstr "spoliczkowany"
-
-#: include/text.php:1078
-msgid "finger"
-msgstr "wskaż"
-
-#: include/text.php:1078
-msgid "fingered"
-msgstr "dotknięty"
-
-#: include/text.php:1079
-msgid "rebuff"
-msgstr "odrzuć"
-
-#: include/text.php:1079
-msgid "rebuffed"
-msgstr "odrzucony"
-
-#: include/text.php:1093 mod/settings.php:943 src/Model/Event.php:379
-msgid "Monday"
-msgstr "Poniedziałek"
-
-#: include/text.php:1093 src/Model/Event.php:380
-msgid "Tuesday"
-msgstr "Wtorek"
-
-#: include/text.php:1093 src/Model/Event.php:381
-msgid "Wednesday"
-msgstr "Środa"
-
-#: include/text.php:1093 src/Model/Event.php:382
-msgid "Thursday"
-msgstr "Czwartek"
+#: include/text.php:1093 src/Model/Event.php:382
+msgid "Thursday"
+msgstr "Czwartek"
 
 #: include/text.php:1093 src/Model/Event.php:383
 msgid "Friday"
@@ -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,8355 +1189,8404 @@ 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
-msgid "Connect"
-msgstr "Połącz"
+#: include/items.php:382
+msgid "Do you really want to delete this item?"
+msgstr "Czy na pewno chcesz usunąć ten element?"
 
-#: mod/api.php:85 mod/api.php:107
-msgid "Authorize application connection"
-msgstr "Autoryzacja połączenia aplikacji"
+#: 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"
 
-#: 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:"
+#: 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ń."
 
-#: mod/api.php:95
-msgid "Please login to continue."
-msgstr "Zaloguj się aby kontynuować."
+#: include/items.php:471
+msgid "Archives"
+msgstr "Archiwum"
 
-#: 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?"
+#: 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"
 
-#: 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/Item.php:1677
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
+msgstr "%1$suczestniczy %2$s's %3$s "
 
-#: 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/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 "
 
-#: mod/apps.php:19
-msgid "Applications"
-msgstr "Aplikacje"
+#: 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 "
 
-#: mod/apps.php:22
-msgid "No installed applications."
-msgstr "Brak zainstalowanych aplikacji."
+#: src/Model/Contact.php:657
+msgid "Drop Contact"
+msgstr "Upuść kontakt"
 
-#: mod/attach.php:15
-msgid "Item not available."
-msgstr "Element niedostępny."
+#: src/Model/Contact.php:1060
+msgid "Organisation"
+msgstr "Organizacja"
 
-#: mod/attach.php:25
-msgid "Item was not found."
-msgstr "Element nie znaleziony."
+#: src/Model/Contact.php:1063
+msgid "News"
+msgstr "Aktualności"
 
-#: mod/common.php:91
-msgid "No contacts in common."
-msgstr "Brak wspólnych kontaktów."
+#: src/Model/Contact.php:1066
+msgid "Forum"
+msgstr "Forum"
 
-#: mod/common.php:140 mod/contacts.php:886
-msgid "Common Friends"
-msgstr "Wspólni znajomi"
+#: src/Model/Contact.php:1235 mod/dfrn_request.php:345
+msgid "Disallowed profile URL."
+msgstr "Nie dozwolony adres URL profilu."
 
-#: mod/credits.php:18
-msgid "Credits"
-msgstr "Zaufany"
+#: 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"
 
-#: mod/credits.php:19
+#: src/Model/Contact.php:1245
+msgid "Connect URL missing."
+msgstr "Brak adresu URL połączenia."
+
+#: src/Model/Contact.php:1254
 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!"
+"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."
 
-#: mod/crepair.php:87
-msgid "Contact settings applied."
-msgstr "Ustawienia kontaktu zaktualizowane."
+#: 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"
 
-#: mod/crepair.php:89
-msgid "Contact update failed."
-msgstr "Nie udało się zaktualizować kontaktu."
+#: 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ł."
 
-#: 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/Contact.php:1314
+msgid "The profile address specified does not provide adequate information."
+msgstr "Dany adres profilu nie dostarcza odpowiednich informacji."
 
-#: mod/crepair.php:114
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>OSTRZEŻENIE: Jest to bardzo zaawansowane</strong> i jeśli wprowadzisz niepoprawne informacje, twoja komunikacja z tym kontaktem może przestać działać."
+#: src/Model/Contact.php:1319
+msgid "An author or name was not found."
+msgstr "Autor lub nazwa nie zostało znalezione."
 
-#: mod/crepair.php:115
+#: 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 ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj <strong>teraz</strong> przycisku 'powrót' na swojej przeglądarce."
+"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."
 
-#: mod/crepair.php:129 mod/crepair.php:131
-msgid "No mirroring"
-msgstr "Bez dublowania"
+#: 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."
 
-#: mod/crepair.php:129
-msgid "Mirror as forwarded posting"
-msgstr "Przesłany lustrzany post"
+#: 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."
 
-#: mod/crepair.php:129 mod/crepair.php:131
-msgid "Mirror as my own posting"
-msgstr "Lustro mojego własnego komentarza"
+#: 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."
 
-#: mod/crepair.php:144
-msgid "Return to contact editor"
-msgstr "Wróć do edytora kontaktów"
+#: src/Model/Contact.php:1388
+msgid "Unable to retrieve contact information."
+msgstr "Nie można otrzymać informacji kontaktowych"
 
-#: mod/crepair.php:146
-msgid "Refetch contact data"
-msgstr "Odśwież dane kontaktowe"
+#: src/Model/Contact.php:1537 mod/dfrn_request.php:568
+#: mod/dfrn_confirm.php:661
+msgid "[Name Withheld]"
+msgstr "[Nazwa zastrzeżona]"
 
-#: 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ź"
+#: src/Model/Contact.php:1605 src/Protocol/DFRN.php:1482
+#, php-format
+msgid "%s's birthday"
+msgstr "Urodziny %s"
 
-#: mod/crepair.php:149
-msgid "Remote Self"
-msgstr "Zdalny Self"
+#: src/Model/Contact.php:1606 src/Protocol/DFRN.php:1483
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Urodziny %s"
 
-#: mod/crepair.php:152
-msgid "Mirror postings from this contact"
-msgstr "Publikacje lustrzane od tego kontaktu"
+#: src/Model/Mail.php:40 src/Model/Mail.php:174
+msgid "[no subject]"
+msgstr "[bez tematu]"
 
-#: 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."
+#: src/Model/Profile.php:97
+msgid "Requested account is not available."
+msgstr "Żądane konto jest niedostępne."
 
-#: 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"
+#: src/Model/Profile.php:118 mod/profile.php:37
+msgid "Requested profile is not available."
+msgstr "Żądany profil jest niedostępny"
 
-#: mod/crepair.php:159
-msgid "Account Nickname"
-msgstr "Nazwa konta"
+#: src/Model/Profile.php:168 src/Model/Profile.php:399
+#: src/Model/Profile.php:863
+msgid "Edit profile"
+msgstr "Edytuj profil"
 
-#: mod/crepair.php:160
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Zmienna - zastępuje Imię/Pseudonim"
+#: 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/crepair.php:161
-msgid "Account URL"
-msgstr "URL konta"
+#: src/Model/Profile.php:336
+msgid "Atom feed"
+msgstr "Kanał Atom"
 
-#: mod/crepair.php:162
-msgid "Friend Request URL"
-msgstr "URL żądajacy znajomości"
+#: src/Model/Profile.php:372 src/Content/Nav.php:205
+msgid "Profiles"
+msgstr "Profile"
 
-#: mod/crepair.php:163
-msgid "Friend Confirm URL"
-msgstr "URL potwierdzający znajomość"
+#: src/Model/Profile.php:372
+msgid "Manage/edit profiles"
+msgstr "Zarządzaj profilami"
 
-#: mod/crepair.php:164
-msgid "Notification Endpoint URL"
-msgstr "Zgłoszenie Punktu Końcowego URL"
+#: src/Model/Profile.php:379 src/Model/Profile.php:401 mod/profiles.php:777
+msgid "Change profile photo"
+msgstr "Zmień zdjęcie profilowe"
 
-#: mod/crepair.php:165
-msgid "Poll/Feed URL"
-msgstr "Adres Ankiety/RSS"
+#: src/Model/Profile.php:380 mod/profiles.php:778
+msgid "Create New Profile"
+msgstr "Utwórz nowy profil"
 
-#: mod/crepair.php:166
-msgid "New photo from this URL"
-msgstr "Nowe zdjęcie z tego adresu URL"
+#: src/Model/Profile.php:389 mod/profiles.php:767
+msgid "Profile Image"
+msgstr "Zdjęcie profilowe"
 
-#: 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"
+#: src/Model/Profile.php:392 mod/profiles.php:769
+msgid "visible to everybody"
+msgstr "widoczne dla wszystkich"
 
-#: 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"
+#: src/Model/Profile.php:393 mod/profiles.php:675 mod/profiles.php:770
+msgid "Edit visibility"
+msgstr "Edytuj widoczność"
 
-#: mod/fbrowser.php:105 mod/fbrowser.php:136 mod/profile_photo.php:250
-msgid "Upload"
-msgstr "Załaduj"
+#: 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/fbrowser.php:131
-msgid "Files"
-msgstr "Pliki"
+#: src/Model/Profile.php:420 src/Model/Profile.php:749 mod/directory.php:151
+#: mod/notifications.php:253
+msgid "Gender:"
+msgstr "Płeć:"
 
-#: 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"
+#: src/Model/Profile.php:421 src/Model/Profile.php:773 mod/directory.php:152
+msgid "Status:"
+msgstr "Status:"
 
-#: mod/hcard.php:18
-msgid "No profile"
-msgstr "Brak profilu"
+#: src/Model/Profile.php:422 src/Model/Profile.php:790 mod/directory.php:153
+msgid "Homepage:"
+msgstr "Strona główna:"
 
-#: mod/help.php:48
-msgid "Help:"
-msgstr "Pomoc:"
+#: 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/help.php:54 view/theme/vier/theme.php:298 src/Content/Nav.php:134
-msgid "Help"
-msgstr "Pomoc"
+#: src/Model/Profile.php:424 mod/contacts.php:662
+msgid "XMPP:"
+msgstr "XMPP:"
 
-#: mod/help.php:63 index.php:325
-msgid "Page not found."
-msgstr "Strona nie znaleziona."
+#: src/Model/Profile.php:520 mod/notifications.php:261 mod/contacts.php:71
+msgid "Network:"
+msgstr "Sieć:"
 
-#: mod/home.php:39
-#, php-format
-msgid "Welcome to %s"
-msgstr "Witamy w %s"
+#: src/Model/Profile.php:550 src/Model/Profile.php:643
+msgid "g A l F d"
+msgstr "g A I F d"
 
-#: mod/lockview.php:38 mod/lockview.php:46
-msgid "Remote privacy information not available."
-msgstr "Dane prywatne nie są zdalnie dostępne"
+#: src/Model/Profile.php:551
+msgid "F d"
+msgstr ""
 
-#: mod/lockview.php:55
-msgid "Visible to:"
-msgstr "Widoczne dla:"
+#: src/Model/Profile.php:608 src/Model/Profile.php:707
+msgid "[today]"
+msgstr "[dziś]"
 
-#: mod/maintenance.php:24
-msgid "System down for maintenance"
-msgstr "System wyłączony w celu konserwacji"
+#: src/Model/Profile.php:619
+msgid "Birthday Reminders"
+msgstr "Przypomnienia o urodzinach"
 
-#: mod/newmember.php:11
-msgid "Welcome to Friendica"
-msgstr "Witamy na Friendica"
+#: src/Model/Profile.php:620
+msgid "Birthdays this week:"
+msgstr "Urodziny w tym tygodniu:"
 
-#: mod/newmember.php:12
-msgid "New Member Checklist"
-msgstr "Lista nowych członków"
+#: src/Model/Profile.php:694
+msgid "[No description]"
+msgstr "[Brak opisu]"
 
-#: 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."
+#: src/Model/Profile.php:721
+msgid "Event Reminders"
+msgstr "Przypominacze wydarzeń"
 
-#: mod/newmember.php:15
-msgid "Getting Started"
-msgstr "Pierwsze kroki"
+#: src/Model/Profile.php:722
+msgid "Events this week:"
+msgstr "Wydarzenia w tym tygodniu:"
 
-#: mod/newmember.php:17
-msgid "Friendica Walk-Through"
-msgstr "Friendica Przejdź-Przez"
+#: 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:17
-msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr "Na stronie <em>Szybki start</em> - znajdź krótkie wprowadzenie do swojego profilu i kart sieciowych, stwórz nowe połączenia i znajdź kilka grup do przyłączenia się."
+#: src/Model/Profile.php:742 mod/settings.php:1209
+msgid "Full Name:"
+msgstr "Imię i Nazwisko:"
 
-#: 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"
+#: src/Model/Profile.php:745
+msgid "Member since:"
+msgstr "Członek od:"
 
-#: mod/newmember.php:21
-msgid "Go to Your Settings"
-msgstr "Idź do swoich ustawień"
+#: src/Model/Profile.php:753
+msgid "j F, Y"
+msgstr "d M, R"
 
-#: mod/newmember.php:21
-msgid ""
-"On your <em>Settings</em> 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."
+#: src/Model/Profile.php:754
+msgid "j F"
+msgstr "d M"
 
-#: 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źć."
+#: src/Model/Profile.php:762 src/Util/Temporal.php:147
+msgid "Birthday:"
+msgstr "Urodziny:"
 
-#: 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
-msgid "Profile"
-msgstr "Profil użytkownika"
+#: src/Model/Profile.php:769
+msgid "Age:"
+msgstr "Wiek:"
 
-#: 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:782
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "od %1$d %2$s"
 
-#: 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."
+#: src/Model/Profile.php:786 mod/profiles.php:694
+msgid "Sexual Preference:"
+msgstr "Preferencje seksualne:"
 
-#: mod/newmember.php:27
-msgid "Edit Your Profile"
-msgstr "Edytuj własny profil"
+#: src/Model/Profile.php:794 mod/profiles.php:721
+msgid "Hometown:"
+msgstr "Miasto rodzinne:"
 
-#: mod/newmember.php:27
-msgid ""
-"Edit your <strong>default</strong> 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/Profile.php:798 mod/notifications.php:251 mod/follow.php:174
+#: mod/contacts.php:666
+msgid "Tags:"
+msgstr "Tagi:"
 
-#: mod/newmember.php:28
-msgid "Profile Keywords"
-msgstr "Słowa kluczowe profilu"
+#: src/Model/Profile.php:802 mod/profiles.php:722
+msgid "Political Views:"
+msgstr "Poglądy polityczne:"
 
-#: 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/Profile.php:806
+msgid "Religion:"
+msgstr "Religia:"
 
-#: mod/newmember.php:30
-msgid "Connecting"
-msgstr "Łączę się..."
+#: src/Model/Profile.php:814
+msgid "Hobbies/Interests:"
+msgstr "Hobby/Zainteresowania:"
 
-#: mod/newmember.php:36
-msgid "Importing Emails"
-msgstr "Importuję emaile..."
+#: src/Model/Profile.php:818 mod/profiles.php:726
+msgid "Likes:"
+msgstr "Lubią to:"
 
-#: 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"
+#: src/Model/Profile.php:822 mod/profiles.php:727
+msgid "Dislikes:"
+msgstr "Nie lubię tego:"
 
-#: mod/newmember.php:39
-msgid "Go to Your Contacts Page"
-msgstr "Idź do strony z Twoimi kontaktami"
+#: src/Model/Profile.php:826
+msgid "Contact information and Social Networks:"
+msgstr "Informacje kontaktowe i sieci społeczne"
 
-#: 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 <em>Add New Contact</em> 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 <em>Dodaj nowy kontakt</em>."
+#: src/Model/Profile.php:830
+msgid "Musical interests:"
+msgstr "Zainteresowania muzyczne:"
 
-#: mod/newmember.php:40
-msgid "Go to Your Site's Directory"
-msgstr "Idż do twojej strony"
+#: src/Model/Profile.php:834
+msgid "Books, literature:"
+msgstr "Książki, literatura:"
 
-#: mod/newmember.php:40
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> 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 <em>Połącz</em> lub <em>Śledź</em> na stronie profilu. Jeśli chcesz, podaj swój własny adres tożsamości."
+#: src/Model/Profile.php:838
+msgid "Television:"
+msgstr "Telewizja:"
 
-#: mod/newmember.php:41
-msgid "Finding New People"
-msgstr "Znajdowanie nowych osób"
+#: src/Model/Profile.php:842
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film/taniec/kultura/rozrywka"
 
-#: 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"
+#: src/Model/Profile.php:846
+msgid "Love/Romance:"
+msgstr "Miłość/Romans:"
 
-#: mod/newmember.php:43 src/Model/Group.php:414
-msgid "Groups"
-msgstr "Grupy"
+#: src/Model/Profile.php:850
+msgid "Work/employment:"
+msgstr "Praca/zatrudnienie:"
 
-#: mod/newmember.php:45
-msgid "Group Your Contacts"
-msgstr "Grupuj Swoje kontakty"
+#: src/Model/Profile.php:854
+msgid "School/education:"
+msgstr "Szkoła/edukacja:"
 
-#: 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ć."
+#: src/Model/Profile.php:859
+msgid "Forums:"
+msgstr "Fora:"
 
-#: mod/newmember.php:48
-msgid "Why Aren't My Posts Public?"
-msgstr "Dlaczego moje posty nie są publiczne?"
+#: src/Model/Profile.php:868 mod/events.php:531
+msgid "Basic"
+msgstr "Podstawowy"
 
-#: 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."
+#: src/Model/Profile.php:869 mod/events.php:532 mod/admin.php:1351
+#: mod/contacts.php:895
+msgid "Advanced"
+msgstr "Zaawansowany"
 
-#: mod/newmember.php:52
-msgid "Getting Help"
-msgstr "Otrzymaj pomoc"
+#: 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"
 
-#: mod/newmember.php:54
-msgid "Go to the Help Section"
-msgstr "Przejdź do sekcji pomocy"
+#: 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"
 
-#: mod/newmember.php:54
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Na naszych stronach <strong>pomocy</strong> można znaleźć szczegółowe informacje na temat innych funkcji programu i zasobów."
+#: src/Model/Profile.php:903 mod/contacts.php:866
+msgid "Profile Details"
+msgstr "Szczegóły profilu"
 
-#: 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 "Obejrzyj %s's profil [%s]"
+#: 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"
 
-#: mod/nogroup.php:43 mod/contacts.php:960
-msgid "Edit contact"
-msgstr "Edytuj kontakt"
+#: src/Model/Profile.php:911 mod/photos.php:108
+msgid "Photo Albums"
+msgstr "Albumy zdjęć"
 
-#: mod/nogroup.php:63
-msgid "Contacts who are not members of a group"
-msgstr "Kontakty spoza członków grupy"
+#: 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"
 
-#: mod/p.php:14
-msgid "Not Extended"
-msgstr "Nie przedłużony"
+#: 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"
 
-#: mod/repair_ostatus.php:18
-msgid "Resubscribing to OStatus contacts"
-msgstr "Ponowne subskrybowanie kontaktów OStatus"
+#: 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"
 
-#: mod/repair_ostatus.php:34
-msgid "Error"
-msgstr "Błąd"
+#: src/Model/Profile.php:950 mod/notes.php:52
+msgid "Personal Notes"
+msgstr "Notatki"
 
-#: mod/repair_ostatus.php:48 mod/ostatus_subscribe.php:64
-msgid "Done"
-msgstr "Gotowe"
+#: src/Model/Profile.php:953
+msgid "Only You Can See This"
+msgstr "Tylko ty możesz to zobaczyć"
 
-#: mod/repair_ostatus.php:54 mod/ostatus_subscribe.php:88
-msgid "Keep this window open until done."
-msgstr "Pozostaw to okno otwarte, dopóki nie będzie gotowe."
+#: src/Model/Event.php:36 src/Model/Event.php:814 mod/localtime.php:19
+msgid "l F d, Y \\@ g:i A"
+msgstr ""
 
-#: mod/suggest.php:36
-msgid "Do you really want to delete this suggestion?"
-msgstr "Czy na pewno chcesz usunąć te sugestie ?"
+#: 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:"
 
-#: mod/suggest.php:73
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Brak dostępnych sugestii. Jeśli jest to nowa witryna, spróbuj ponownie za 24 godziny."
+#: 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:"
 
-#: mod/suggest.php:84 mod/suggest.php:104
-msgid "Ignore/Hide"
-msgstr "Ignoruj/Ukryj"
+#: src/Model/Event.php:368
+msgid "all-day"
+msgstr "cały dzień"
 
-#: 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ć"
+#: src/Model/Event.php:391
+msgid "Jun"
+msgstr "cze"
 
-#: 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 "[Dodatkowa zawartość - odśwież stronę by zobaczyć]"
+#: src/Model/Event.php:394
+msgid "Sept"
+msgstr "wrz"
 
-#: 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 "Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro."
+#: src/Model/Event.php:412 mod/events.php:400 mod/cal.php:280
+msgid "today"
+msgstr "dzisiaj"
 
-#: mod/uimport.php:70 mod/register.php:285
-msgid "Import"
-msgstr "Import"
+#: src/Model/Event.php:413 src/Util/Temporal.php:304 mod/events.php:401
+#: mod/cal.php:281
+msgid "month"
+msgstr "miesiąc"
 
-#: mod/uimport.php:72
-msgid "Move account"
-msgstr "Przenieś konto"
+#: src/Model/Event.php:414 src/Util/Temporal.php:305 mod/events.php:402
+#: mod/cal.php:282
+msgid "week"
+msgstr "tydzień"
 
-#: mod/uimport.php:73
-msgid "You can import an account from another Friendica server."
-msgstr "Możesz zaimportować konto z innego serwera Friendica."
+#: src/Model/Event.php:415 src/Util/Temporal.php:306 mod/events.php:403
+#: mod/cal.php:283
+msgid "day"
+msgstr "dzień"
 
-#: 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 "Musisz wyeksportować konto ze starego serwera i przesłać je tutaj. Odtworzymy twoje stare konto tutaj ze wszystkimi twoimi kontaktami. Postaramy się również poinformować twoich znajomych, że się tutaj przeniosłeś."
+#: src/Model/Event.php:417
+msgid "No events to display"
+msgstr "Brak wydarzeń do wyświetlenia"
 
-#: 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 "Ta funkcja jest eksperymentalna. Nie możemy importować kontaktów z sieci OStatus (GNU Social/Statusnet) lub z Diaspory"
+#: src/Model/Event.php:543
+msgid "l, F j"
+msgstr "d, M d "
 
-#: mod/uimport.php:76
-msgid "Account file"
-msgstr "Pliki konta"
+#: src/Model/Event.php:566
+msgid "Edit event"
+msgstr "Edytuj wydarzenie"
 
-#: mod/uimport.php:76
-msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
-msgstr "Aby eksportować konto, wejdź w \"Ustawienia->Eksport danych osobistych\" i wybierz \"Eksportuj konto\""
+#: src/Model/Event.php:567
+msgid "Duplicate event"
+msgstr "Zduplikowane zdarzenie"
 
-#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s witamy %2$s"
+#: src/Model/Event.php:568
+msgid "Delete event"
+msgstr "Usuń wydarzenie"
 
-#: 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."
+#: src/Model/Event.php:815
+msgid "D g:i A"
+msgstr ""
 
-#: mod/match.php:104
-msgid "is interested in:"
-msgstr "interesuje się:"
+#: src/Model/Event.php:816
+msgid "g:i A"
+msgstr ""
 
-#: mod/match.php:120
-msgid "Profile Match"
-msgstr "Dopasowanie profilu"
+#: src/Model/Event.php:901 src/Model/Event.php:903
+msgid "Show map"
+msgstr "Pokaż mapę"
 
-#: mod/match.php:125 mod/dirfind.php:253
-msgid "No matches"
-msgstr "Brak wyników"
+#: src/Model/Event.php:902
+msgid "Hide map"
+msgstr "Ukryj mapę"
 
-#: mod/notifications.php:37
-msgid "Invalid request identifier."
-msgstr "Nieprawidłowe żądanie identyfikatora."
+#: src/Model/Group.php:44
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> 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 <strong>mogą</strong> dotyczyć tej grupy i wszystkich przyszłych członków. Jeśli nie jest to zamierzone, utwórz inną grupę o innej nazwie."
 
-#: mod/notifications.php:46 mod/notifications.php:183
-#: mod/notifications.php:230
-msgid "Discard"
-msgstr "Odrzuć"
+#: src/Model/Group.php:341
+msgid "Default privacy group for new contacts"
+msgstr "Domyślne ustawienia prywatności dla nowych kontaktów"
 
-#: 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"
+#: src/Model/Group.php:374
+msgid "Everybody"
+msgstr "Wszyscy"
 
-#: mod/notifications.php:98 src/Content/Nav.php:189
-msgid "Notifications"
-msgstr "Powiadomienia"
+#: src/Model/Group.php:394
+msgid "edit"
+msgstr "edytuj"
 
-#: mod/notifications.php:107
-msgid "Network Notifications"
-msgstr "Powiadomienia sieciowe"
+#: src/Model/Group.php:413 mod/network.php:202
+msgid "add"
+msgstr "dodaj"
 
-#: mod/notifications.php:113 mod/notify.php:81
-msgid "System Notifications"
-msgstr "Powiadomienia systemowe"
+#: src/Model/Group.php:414 mod/newmember.php:43
+msgid "Groups"
+msgstr "Grupy"
 
-#: mod/notifications.php:119
-msgid "Personal Notifications"
-msgstr "Prywatne powiadomienia"
+#: src/Model/Group.php:418
+msgid "Edit group"
+msgstr "Edytuj grupy"
 
-#: mod/notifications.php:125
-msgid "Home Notifications"
-msgstr "Powiadomienia domowe"
+#: src/Model/Group.php:419
+msgid "Contacts not in any group"
+msgstr "Kontakt nie jest w żadnej grupie"
 
-#: mod/notifications.php:155
-msgid "Show Ignored Requests"
-msgstr "Pokaż ignorowane żądania"
+#: src/Model/Group.php:420
+msgid "Create a new group"
+msgstr "Stwórz nową grupę"
 
-#: mod/notifications.php:155
-msgid "Hide Ignored Requests"
-msgstr "Ukryj zignorowane prośby"
+#: src/Model/Group.php:421 mod/group.php:103 mod/group.php:199
+msgid "Group Name: "
+msgstr "Nazwa grupy: "
 
-#: mod/notifications.php:167 mod/notifications.php:237
-msgid "Notification type: "
-msgstr "Typ powiadomienia:"
+#: src/Model/Group.php:422
+msgid "Edit groups"
+msgstr "Edytuj grupy"
 
-#: mod/notifications.php:170
-#, php-format
-msgid "suggested by %s"
-msgstr "zaproponowane przez %s"
+#: 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"
 
-#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646
-msgid "Hide this contact from others"
-msgstr "Ukryj ten kontakt przed innymi"
+#: src/Model/User.php:154
+msgid "Login failed"
+msgstr "Logowanie nieudane"
 
-#: mod/notifications.php:176 mod/notifications.php:255
-msgid "Post a new friend activity"
-msgstr "Opublikuj aktywność nowego znajomego"
+#: src/Model/User.php:185
+msgid "Not enough information to authenticate"
+msgstr "Za mało informacji do uwierzytelnienia"
 
-#: mod/notifications.php:176 mod/notifications.php:255
-msgid "if applicable"
-msgstr "jeśli dotyczy"
+#: src/Model/User.php:214 src/Core/Console/NewPassword.php:74 mod/cal.php:297
+msgid "User not found"
+msgstr "Użytkownik nie znaleziony"
 
-#: mod/notifications.php:179 mod/notifications.php:264 mod/admin.php:1796
-msgid "Approve"
-msgstr "Zatwierdź"
+#: 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."
 
-#: mod/notifications.php:198
-msgid "Claims to be known to you: "
-msgstr "Twierdzi, że go znasz:"
-
-#: mod/notifications.php:199
-msgid "yes"
-msgstr "tak"
+#: src/Model/User.php:342
+msgid "An invitation is required."
+msgstr "Wymagane zaproszenie."
 
-#: mod/notifications.php:199
-msgid "no"
-msgstr "nie"
+#: src/Model/User.php:346
+msgid "Invitation could not be verified."
+msgstr "Zaproszenie niezweryfikowane."
 
-#: 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?"
+#: src/Model/User.php:353
+msgid "Invalid OpenID url"
+msgstr "Nieprawidłowy adres url OpenID"
 
-#: mod/notifications.php:201 mod/notifications.php:206
-#, php-format
+#: src/Model/User.php:366 src/Module/Login.php:100
 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."
+"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/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."
+#: src/Model/User.php:366 src/Module/Login.php:100
+msgid "The error message was:"
+msgstr "Komunikat o błędzie:"
 
-#: 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."
+#: src/Model/User.php:372
+msgid "Please enter the required information."
+msgstr "Wprowadź wymagane informacje"
 
-#: mod/notifications.php:218
-msgid "Friend"
-msgstr "Znajomy"
+#: src/Model/User.php:385
+msgid "Please use a shorter name."
+msgstr "Użyj dłuższej nazwy."
 
-#: mod/notifications.php:219
-msgid "Sharer"
-msgstr "Udostępniający/a"
+#: src/Model/User.php:388
+msgid "Name too short."
+msgstr "Nazwa jest za krótka."
 
-#: mod/notifications.php:219
-msgid "Subscriber"
-msgstr "Subskrybent"
+#: 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."
 
-#: 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"
+#: 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."
 
-#: 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:"
+#: src/Model/User.php:405
+msgid "Not a valid email address."
+msgstr "Niepoprawny adres e mail.."
 
-#: mod/notifications.php:251 mod/contacts.php:666 mod/follow.php:174
-#: src/Model/Profile.php:796
-msgid "Tags:"
-msgstr "Tagi:"
+#: src/Model/User.php:409 src/Model/User.php:417
+msgid "Cannot use that email."
+msgstr "Nie możesz użyć tego e-maila. "
 
-#: mod/notifications.php:253 mod/directory.php:151 src/Model/Profile.php:420
-#: src/Model/Profile.php:747
-msgid "Gender:"
-msgstr "Płeć:"
+#: 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 _."
 
-#: 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"
+#: 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."
 
-#: mod/notifications.php:261 mod/contacts.php:71 src/Model/Profile.php:520
-msgid "Network:"
-msgstr "Sieć:"
+#: src/Model/User.php:441
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń."
 
-#: mod/notifications.php:275
-msgid "No introductions."
-msgstr "Brak dostępu."
+#: 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."
 
-#: mod/notifications.php:316
-msgid "Show unread"
-msgstr "Pokaż nieprzeczytane"
+#: src/Model/User.php:498 view/theme/duepuntozero/config.php:54
+msgid "default"
+msgstr "standardowe"
 
-#: mod/notifications.php:316
-msgid "Show all"
-msgstr "Pokaż wszystko"
+#: 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."
 
-#: mod/notifications.php:322
-#, php-format
-msgid "No more %s notifications."
-msgstr "Nigdy więcej %s powiadomień."
+#: 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."
 
-#: mod/openid.php:29
-msgid "OpenID protocol error. No ID returned."
-msgstr "Błąd protokołu OpenID. Nie znaleziono identyfikatora."
+#: src/Model/User.php:515 src/Content/ContactSelector.php:169
+msgid "Friends"
+msgstr "Przyjaciele"
 
-#: mod/openid.php:66
+#: src/Model/User.php:519
 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."
+"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/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:134
-msgid "Login failed."
-msgstr "Logowanie nieudane."
+#: src/Model/User.php:593
+#, 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."
 
-#: 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."
+#: src/Model/User.php:603
+#, php-format
+msgid "Registration at %s"
+msgstr "Rejestracja w %s"
 
-#: mod/dfrn_confirm.php:132
+#: src/Model/User.php:621
+#, php-format
 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."
+"\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/dfrn_confirm.php:242
-msgid "Response from remote site was not understood."
-msgstr "Odpowiedź do zdalnej strony nie została zrozumiana"
+#: 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."
 
-#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254
-msgid "Unexpected response from remote site: "
-msgstr "Nieoczekiwana odpowiedź od strony zdalnej:"
+#: src/Model/User.php:659 mod/admin.php:1611
+#, php-format
+msgid "Registration details for %s"
+msgstr "Szczegóły rejestracji dla %s"
 
-#: mod/dfrn_confirm.php:263
-msgid "Confirmation completed successfully."
-msgstr "Potwierdzenie zostało pomyślnie zakończone."
+#: src/Content/Text/BBCode.php:416
+msgid "view full size"
+msgstr "Zobacz w pełnym wymiarze"
 
-#: mod/dfrn_confirm.php:275
-msgid "Temporary failure. Please wait and try again."
-msgstr "Tymczasowa awaria. Proszę czekać i spróbuj ponownie."
+#: 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"
 
-#: mod/dfrn_confirm.php:278
-msgid "Introduction failed or was revoked."
-msgstr "Wprowadzenie nie powiodło się lub zostało odwołane."
+#: src/Content/Text/BBCode.php:980
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a>%3$s"
 
-#: mod/dfrn_confirm.php:283
-msgid "Remote site reported: "
-msgstr "Zdalna witryna zgłoszona:"
+#: src/Content/Text/BBCode.php:1538 src/Content/Text/BBCode.php:1560
+msgid "$1 wrote:"
+msgstr "$1 napisał:"
 
-#: mod/dfrn_confirm.php:396
-msgid "Unable to set contact photo."
-msgstr "Nie można ustawić zdjęcia kontaktu."
+#: src/Content/Text/BBCode.php:1620 src/Content/Text/BBCode.php:1621
+msgid "Encrypted content"
+msgstr "Szyfrowana treść"
 
-#: mod/dfrn_confirm.php:498
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Nie znaleziono użytkownika dla '%s'"
+#: src/Content/Text/BBCode.php:1740
+msgid "Invalid source protocol"
+msgstr "Nieprawidłowy protokół źródłowy"
 
-#: mod/dfrn_confirm.php:508
-msgid "Our site encryption key is apparently messed up."
-msgstr "Klucz kodujący jest najwyraźniej uszkodzony."
+#: src/Content/Text/BBCode.php:1751
+msgid "Invalid link protocol"
+msgstr "Niepoprawny link protokołu"
 
-#: 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ć."
+#: src/Content/Feature.php:79
+msgid "General Features"
+msgstr "Funkcje ogólne"
 
-#: mod/dfrn_confirm.php:535
-msgid "Contact record was not found for you on our site."
-msgstr "Nie znaleziono kontaktu na naszej stronie"
+#: src/Content/Feature.php:81
+msgid "Multiple Profiles"
+msgstr "Wiele profili"
 
-#: 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"
+#: src/Content/Feature.php:81
+msgid "Ability to create multiple profiles"
+msgstr "Umożliwienie tworzenia wielu profili"
 
-#: mod/dfrn_confirm.php:565
+#: src/Content/Feature.php:82
+msgid "Photo Location"
+msgstr "Lokalizacja zdjęcia"
+
+#: src/Content/Feature.php:82
 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."
+"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ą."
 
-#: 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."
+#: src/Content/Feature.php:83
+msgid "Export Public Calendar"
+msgstr "Eksportowanie publicznego kalendarza"
 
-#: 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"
+#: src/Content/Feature.php:83
+msgid "Ability for visitors to download the public calendar"
+msgstr "Umożliwienie pobierania kalendarza publicznego przez odwiedzających"
 
-#: mod/dfrn_confirm.php:661 mod/dfrn_request.php:568
-#: src/Model/Contact.php:1537
-msgid "[Name Withheld]"
-msgstr "[Nazwa zastrzeżona]"
+#: src/Content/Feature.php:88
+msgid "Post Composition Features"
+msgstr "Ustawienia funkcji postów"
 
-#: mod/dfrn_confirm.php:694
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s dołączył/a do %2$s"
+#: src/Content/Feature.php:89
+msgid "Post Preview"
+msgstr "Podgląd posta"
 
-#: mod/manage.php:180
-msgid "Manage Identities and/or Pages"
-msgstr "Zarządzaj Tożsamościami i/lub Stronami."
+#: 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"
 
-#: 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\""
+#: src/Content/Feature.php:90
+msgid "Auto-mention Forums"
+msgstr "Automatyczne wymienianie forów"
 
-#: mod/manage.php:182
-msgid "Select an identity to manage: "
-msgstr "Wybierz tożsamość do zarządzania:"
+#: 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."
 
-#: 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."
+#: src/Content/Feature.php:95
+msgid "Network Sidebar Widgets"
+msgstr "Widgety paska bocznego sieci"
 
-#: 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"
+#: src/Content/Feature.php:96
+msgid "Search by Date"
+msgstr "Szukanie wg daty"
 
-#: 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?"
+#: src/Content/Feature.php:96
+msgid "Ability to select posts by date ranges"
+msgstr "Wybierz wpisy według zakresów dat"
 
-#: mod/wall_attach.php:112
-#, php-format
-msgid "File exceeds size limit of %s"
-msgstr "Plik przekracza limit rozmiaru wynoszący %s"
+#: src/Content/Feature.php:97 src/Content/Feature.php:127
+msgid "List Forums"
+msgstr "Lista forów"
 
-#: mod/wall_attach.php:136 mod/wall_attach.php:152
-msgid "File upload failed."
-msgstr "Przesyłanie pliku nie powiodło się."
+#: 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"
 
-#: mod/dfrn_request.php:94
-msgid "This introduction has already been accepted."
-msgstr "To wprowadzenie zostało już zaakceptowane."
+#: src/Content/Feature.php:98
+msgid "Group Filter"
+msgstr "Filtr grupowy"
 
-#: 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."
+#: 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"
 
-#: 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."
+#: src/Content/Feature.php:99
+msgid "Network Filter"
+msgstr "Filtr sieciowy"
 
-#: 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."
+#: 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"
 
-#: 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"
+#: src/Content/Feature.php:100 mod/network.php:201 mod/search.php:46
+msgid "Saved Searches"
+msgstr "Zapisywanie wyszukiwania"
 
-#: mod/dfrn_request.php:162
-msgid "Introduction complete."
-msgstr "Wprowadzanie zakończone."
+#: src/Content/Feature.php:100
+msgid "Save search terms for re-use"
+msgstr "Zapisz wyszukiwane hasła do ponownego użycia"
 
-#: mod/dfrn_request.php:199
-msgid "Unrecoverable protocol error."
-msgstr "Nieodwracalny błąd protokołu."
+#: src/Content/Feature.php:105
+msgid "Network Tabs"
+msgstr "Etykiety sieciowe"
 
-#: mod/dfrn_request.php:226
-msgid "Profile unavailable."
-msgstr "Profil niedostępny."
+#: src/Content/Feature.php:106
+msgid "Network Personal Tab"
+msgstr "Etykieta Sieć Osobista"
 
-#: 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ń."
+#: 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"
 
-#: mod/dfrn_request.php:249
-msgid "Spam protection measures have been invoked."
-msgstr "Wprowadzono zabezpieczenia przed spamem."
+#: src/Content/Feature.php:107
+msgid "Network New Tab"
+msgstr "Etykieta Nowe Posty Sieciowe"
 
-#: mod/dfrn_request.php:250
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Przyjaciele namawiają do spróbowania za 24h."
+#: 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)"
 
-#: mod/dfrn_request.php:280
-msgid "Invalid locator"
-msgstr "Nieprawidłowy lokalizator"
+#: src/Content/Feature.php:108
+msgid "Network Shared Links Tab"
+msgstr "Etykieta Udostępnianie Łącz Sieciowych"
 
-#: mod/dfrn_request.php:316
-msgid "You have already introduced yourself here."
-msgstr "Już się tu przedstawiłeś."
+#: 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"
 
-#: 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"
+#: src/Content/Feature.php:113
+msgid "Post/Comment Tools"
+msgstr "Narzędzia post/komentarz"
 
-#: mod/dfrn_request.php:339
-msgid "Invalid profile URL."
-msgstr "Nieprawidłowy URL profilu."
+#: src/Content/Feature.php:114
+msgid "Multiple Deletion"
+msgstr "Wielokrotne Usuwanie"
 
-#: mod/dfrn_request.php:345 src/Model/Contact.php:1235
-msgid "Disallowed profile URL."
-msgstr "Nie dozwolony adres URL profilu."
+#: src/Content/Feature.php:114
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Wybierz i usuń wiele postów/komentarzy jednocześnie"
 
-#: 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"
+#: src/Content/Feature.php:115
+msgid "Edit Sent Posts"
+msgstr "Edytuj wysłane posty"
 
-#: mod/dfrn_request.php:419 mod/contacts.php:230
-msgid "Failed to update contact record."
-msgstr "Aktualizacja rekordu kontaktu nie powiodła się."
+#: 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"
 
-#: mod/dfrn_request.php:439
-msgid "Your introduction has been sent."
-msgstr "Twoje dane zostały wysłane."
+#: src/Content/Feature.php:116
+msgid "Tagging"
+msgstr "Tagowanie"
 
-#: 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."
+#: src/Content/Feature.php:116
+msgid "Ability to tag existing posts"
+msgstr "Umożliwienie oznaczania istniejących postów"
 
-#: mod/dfrn_request.php:493
-msgid "Please login to confirm introduction."
-msgstr "Zaloguj się, aby potwierdzić wprowadzenie."
+#: src/Content/Feature.php:117
+msgid "Post Categories"
+msgstr "Kategorie postów"
 
-#: mod/dfrn_request.php:501
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na <strong>tego</strong> użytkownika. "
+#: src/Content/Feature.php:117
+msgid "Add categories to your posts"
+msgstr "Dodaj kategorie do twoich postów"
 
-#: mod/dfrn_request.php:515 mod/dfrn_request.php:532
-msgid "Confirm"
-msgstr "Potwierdź"
+#: src/Content/Feature.php:118 src/Content/Widget.php:200
+msgid "Saved Folders"
+msgstr "Zapisane foldery"
 
-#: mod/dfrn_request.php:527
-msgid "Hide this contact"
-msgstr "Ukryj kontakt"
+#: src/Content/Feature.php:118
+msgid "Ability to file posts under folders"
+msgstr "Umożliwienie przesyłania postów do folderów"
 
-#: mod/dfrn_request.php:530
-#, php-format
-msgid "Welcome home %s."
-msgstr "Welcome home %s."
+#: src/Content/Feature.php:119
+msgid "Dislike Posts"
+msgstr "Nie lubię Postów"
 
-#: 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."
+#: src/Content/Feature.php:119
+msgid "Ability to dislike posts/comments"
+msgstr "Możliwa niechęć do postów/komentarzy"
 
-#: 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"
+#: src/Content/Feature.php:120
+msgid "Star Posts"
+msgstr "Oznacz posty gwiazdką"
 
-#: 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:"
+#: src/Content/Feature.php:120
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Oznacz specjalne posty gwiazdką"
 
-#: mod/dfrn_request.php:645
-#, php-format
-msgid ""
-"If you are not yet a member of the free social web, <a href=\"%s\">follow "
-"this link to find a public Friendica site and join us today</a>."
-msgstr "Jeśli nie jesteś jeszcze członkiem darmowej sieci społecznościowej, <a href=\"%s\">kliknij ten link, aby znaleźć publiczną witrynę Friendica i dołącz do nas już dziś</a>."
+#: src/Content/Feature.php:121
+msgid "Mute Post Notifications"
+msgstr "Ignoruj ​​powiadomienia pocztą"
 
-#: mod/dfrn_request.php:650
-msgid "Friend/Connection Request"
-msgstr "Przyjaciel/Prośba o połączenie"
+#: src/Content/Feature.php:121
+msgid "Ability to mute notifications for a thread"
+msgstr "Ignoruj powiadomienia dla wątku"
 
-#: 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?"
+#: src/Content/Feature.php:126
+msgid "Advanced Profile Settings"
+msgstr "Zaawansowane ustawienia profilu"
 
-#: mod/dfrn_request.php:654 mod/follow.php:151
-msgid "Add a personal note:"
-msgstr "Dodaj osobistą notkę:"
+#: 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"
 
-#: mod/dfrn_request.php:656 src/Content/ContactSelector.php:79
-msgid "Friendica"
-msgstr "Friendica"
+#: src/Content/Feature.php:128
+msgid "Tag Cloud"
+msgstr "Chmura tagów"
 
-#: mod/dfrn_request.php:657
-msgid "GNU Social (Pleroma, Mastodon)"
-msgstr "GNU Social (Pleroma, Mastodon)"
+#: src/Content/Feature.php:128
+msgid "Provide a personal tag cloud on your profile page"
+msgstr "Podaj osobistą chmurę tagów na stronie profilu"
 
-#: mod/dfrn_request.php:658
-msgid "Diaspora (Socialhome, Hubzilla)"
-msgstr "Diaspora (Socialhome, Hubzilla)"
+#: src/Content/Feature.php:129
+msgid "Display Membership Date"
+msgstr "Wyświetl datę członkostwa"
 
-#: 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."
+#: src/Content/Feature.php:129
+msgid "Display membership date in profile"
+msgstr "Wyświetl datę członkostwa w profilu"
 
-#: mod/dfrn_request.php:660 mod/unfollow.php:113 mod/follow.php:157
-msgid "Your Identity Address:"
-msgstr "Twój adres tożsamości:"
+#: src/Content/Widget/CalendarExport.php:61
+msgid "Export"
+msgstr "Eksport"
 
-#: mod/dfrn_request.php:662 mod/unfollow.php:65 mod/follow.php:62
-msgid "Submit Request"
-msgstr "Wyślij zgłoszenie"
+#: src/Content/Widget/CalendarExport.php:62
+msgid "Export calendar as ical"
+msgstr "Wyeksportuj kalendarz jako ical"
 
-#: mod/filer.php:34
-msgid "- select -"
-msgstr "- wybierz -"
+#: src/Content/Widget/CalendarExport.php:63
+msgid "Export calendar as csv"
+msgstr "Eksportuj kalendarz jako csv"
 
-#: mod/localtime.php:19 src/Model/Event.php:36 src/Model/Event.php:814
-msgid "l F d, Y \\@ g:i A"
-msgstr ""
+#: src/Content/Widget.php:33
+msgid "Add New Contact"
+msgstr "Dodaj nowy kontakt"
 
-#: mod/localtime.php:33
-msgid "Time Conversion"
-msgstr "Zmiana czasu"
+#: src/Content/Widget.php:34
+msgid "Enter address or web location"
+msgstr "Wpisz adres lub lokalizację sieciową"
 
-#: 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."
+#: 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"
 
-#: mod/localtime.php:39
+#: src/Content/Widget.php:53
 #, php-format
-msgid "UTC time: %s"
-msgstr "Czas UTC %s"
+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"
 
-#: mod/localtime.php:42
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Obecna strefa czasowa: %s"
+#: src/Content/Widget.php:59
+msgid "Find People"
+msgstr "Znajdź ludzi"
 
-#: mod/localtime.php:46
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Zmień strefę czasową: %s"
+#: src/Content/Widget.php:60
+msgid "Enter name or interest"
+msgstr "Wpisz nazwę lub zainteresowanie"
 
-#: mod/localtime.php:52
-msgid "Please select your timezone:"
-msgstr "Wybierz swoją strefę czasową:"
+#: src/Content/Widget.php:62
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Przykład: Jan Kowalski, Wędkarstwo"
 
-#: mod/notify.php:77
-msgid "No more system notifications."
-msgstr "Nie ma więcej powiadomień systemowych."
+#: src/Content/Widget.php:63 mod/directory.php:209 mod/contacts.php:820
+msgid "Find"
+msgstr "Znajdź"
 
-#: mod/ping.php:292
-msgid "{0} wants to be your friend"
-msgstr "{0} chce być Twoim znajomym"
+#: 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ć"
 
-#: mod/ping.php:307
-msgid "{0} sent you a message"
-msgstr "{0} wysłałem Ci wiadomość"
+#: src/Content/Widget.php:65 view/theme/vier/theme.php:202
+msgid "Similar Interests"
+msgstr "Podobne zainteresowania"
 
-#: mod/ping.php:322
-msgid "{0} requested registration"
-msgstr "{0} wymagana rejestracja"
+#: src/Content/Widget.php:66
+msgid "Random Profile"
+msgstr "Domyślny profil"
 
-#: mod/poke.php:192
-msgid "Poke/Prod"
-msgstr ""
+#: src/Content/Widget.php:67 view/theme/vier/theme.php:204
+msgid "Invite Friends"
+msgstr "Zaproś znajomych"
 
-#: mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr ""
+#: src/Content/Widget.php:68
+msgid "View Global Directory"
+msgstr "Wyświetl globalny katalog"
 
-#: mod/poke.php:194
-msgid "Recipient"
-msgstr "Odbiorca"
+#: src/Content/Widget.php:159
+msgid "Networks"
+msgstr "Sieci"
 
-#: mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Wybierz, co chcesz zrobić"
+#: src/Content/Widget.php:162
+msgid "All Networks"
+msgstr "Wszystkie Sieci"
 
-#: mod/poke.php:198
-msgid "Make this post private"
-msgstr "Ustaw ten post jako prywatny"
+#: src/Content/Widget.php:203 src/Content/Widget.php:243
+msgid "Everything"
+msgstr "Wszystko"
 
-#: 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."
+#: src/Content/Widget.php:240
+msgid "Categories"
+msgstr "Kategorie"
 
-#: mod/profperm.php:28 mod/group.php:83 index.php:443
-msgid "Permission denied"
-msgstr "Odmowa dostępu"
+#: 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] ""
 
-#: mod/profperm.php:34 mod/profperm.php:65
-msgid "Invalid profile identifier."
-msgstr "Nieprawidłowa nazwa użytkownika."
+#: src/Content/ContactSelector.php:55
+msgid "Frequently"
+msgstr "Często"
 
-#: mod/profperm.php:111
-msgid "Profile Visibility Editor"
-msgstr "Ustawienia widoczności profilu"
+#: src/Content/ContactSelector.php:56
+msgid "Hourly"
+msgstr "Co godzinę"
 
-#: 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."
+#: src/Content/ContactSelector.php:57
+msgid "Twice daily"
+msgstr "Dwa razy dziennie"
 
-#: mod/profperm.php:124
-msgid "Visible To"
-msgstr "Widoczne dla"
+#: src/Content/ContactSelector.php:58
+msgid "Daily"
+msgstr "Codziennie"
 
-#: mod/profperm.php:140
-msgid "All Contacts (with secure profile access)"
-msgstr "Wszystkie kontakty (z bezpiecznym dostępem do profilu)"
+#: src/Content/ContactSelector.php:59
+msgid "Weekly"
+msgstr "Co tydzień"
 
-#: mod/regmod.php:68
-msgid "Account approved."
-msgstr "Konto zatwierdzone."
+#: src/Content/ContactSelector.php:60
+msgid "Monthly"
+msgstr "Miesięczne"
 
-#: mod/regmod.php:93
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Rejestracja odwołana dla %s"
+#: src/Content/ContactSelector.php:79 mod/dfrn_request.php:656
+msgid "Friendica"
+msgstr "Friendica"
 
-#: mod/regmod.php:102
-msgid "Please login."
-msgstr "Proszę się zalogować."
+#: src/Content/ContactSelector.php:80
+msgid "OStatus"
+msgstr "OStatus"
 
-#: mod/search.php:37 mod/network.php:194
-msgid "Remove term"
-msgstr "Usuń wpis"
+#: src/Content/ContactSelector.php:81
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: mod/search.php:46 mod/network.php:201 src/Content/Feature.php:100
-msgid "Saved Searches"
-msgstr "Zapisane wyszukiwania"
+#: 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"
 
-#: mod/search.php:105
-msgid "Only logged in users are permitted to perform a search."
-msgstr "Tylko zalogowani użytkownicy mogą wyszukiwać."
+#: src/Content/ContactSelector.php:83 mod/settings.php:805
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: mod/search.php:129
-msgid "Too Many Requests"
-msgstr "Zbyt dużo próśb"
+#: src/Content/ContactSelector.php:84
+msgid "Facebook"
+msgstr "Facebook"
 
-#: 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ę."
+#: src/Content/ContactSelector.php:85
+msgid "Zot!"
+msgstr "Zot!"
 
-#: mod/search.php:228 mod/community.php:136
-msgid "No results."
-msgstr "Brak wyników."
+#: src/Content/ContactSelector.php:86
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: mod/search.php:234
-#, php-format
-msgid "Items tagged with: %s"
-msgstr "Przedmioty oznaczone tagiem: %s"
+#: src/Content/ContactSelector.php:87
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: mod/search.php:236 mod/contacts.php:819
-#, php-format
-msgid "Results for: %s"
-msgstr "Wyniki dla: %s"
+#: src/Content/ContactSelector.php:88
+msgid "MySpace"
+msgstr "MySpace"
 
-#: mod/subthread.php:113
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$skolejny %2$s %3$s "
+#: src/Content/ContactSelector.php:89
+msgid "Google+"
+msgstr "Google+"
 
-#: mod/tagrm.php:47
-msgid "Tag removed"
-msgstr "Tag usunięty"
+#: src/Content/ContactSelector.php:90
+msgid "pump.io"
+msgstr "pump.io"
 
-#: mod/tagrm.php:85
-msgid "Remove Item Tag"
-msgstr "Usuń pozycję Tag"
+#: src/Content/ContactSelector.php:91
+msgid "Twitter"
+msgstr "Twitter"
 
-#: mod/tagrm.php:87
-msgid "Select a tag to remove: "
-msgstr "Wybierz tag do usunięcia"
+#: src/Content/ContactSelector.php:92
+msgid "Diaspora Connector"
+msgstr "Łącze Diaspora"
 
-#: mod/tagrm.php:98 mod/delegate.php:177
-msgid "Remove"
-msgstr "Usuń"
+#: src/Content/ContactSelector.php:93
+msgid "GNU Social Connector"
+msgstr "GNU Połączenie Społecznościowe"
 
-#: mod/uexport.php:44
-msgid "Export account"
-msgstr "Eksportuj konto"
+#: src/Content/ContactSelector.php:94
+msgid "pnut"
+msgstr "orzech"
 
-#: 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."
+#: src/Content/ContactSelector.php:95
+msgid "App.net"
+msgstr "App.net"
 
-#: mod/uexport.php:45
-msgid "Export all"
-msgstr "Eksportuj wszystko"
+#: src/Content/ContactSelector.php:125
+msgid "Male"
+msgstr "Mężczyzna"
 
-#: 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)"
+#: src/Content/ContactSelector.php:125
+msgid "Female"
+msgstr "Kobieta"
 
-#: mod/uexport.php:52 mod/settings.php:107
-msgid "Export personal data"
-msgstr "Eksportuje dane personalne"
+#: src/Content/ContactSelector.php:125
+msgid "Currently Male"
+msgstr "Obecnie mężczyzna"
 
-#: mod/viewcontacts.php:87
-msgid "No contacts."
-msgstr "brak kontaktów"
+#: src/Content/ContactSelector.php:125
+msgid "Currently Female"
+msgstr "Obecnie Kobieta"
 
-#: mod/viewsrc.php:12
-msgid "Access denied."
-msgstr "Brak dostępu"
+#: src/Content/ContactSelector.php:125
+msgid "Mostly Male"
+msgstr "Głównie mężczyzna"
 
-#: 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 "Obraz przekracza limit rozmiaru wynoszący %s"
+#: src/Content/ContactSelector.php:125
+msgid "Mostly Female"
+msgstr "Głównie kobieta"
 
-#: 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ę."
+#: src/Content/ContactSelector.php:125
+msgid "Transgender"
+msgstr "Transseksualny"
 
-#: 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ęć"
+#: src/Content/ContactSelector.php:125
+msgid "Intersex"
+msgstr "Interseksualne"
 
-#: 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ę"
+#: src/Content/ContactSelector.php:125
+msgid "Transsexual"
+msgstr "Transseksualny"
 
-#: mod/wallmessage.php:49 mod/wallmessage.php:112
-#, 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."
+#: src/Content/ContactSelector.php:125
+msgid "Hermaphrodite"
+msgstr "Hermafrodyta"
 
-#: mod/wallmessage.php:57 mod/message.php:73
-msgid "No recipient selected."
-msgstr "Nie wybrano odbiorcy."
+#: src/Content/ContactSelector.php:125
+msgid "Neuter"
+msgstr "Rodzaj nijaki"
 
-#: mod/wallmessage.php:60
-msgid "Unable to check your home location."
-msgstr "Nie można sprawdzić twojej lokalizacji."
+#: src/Content/ContactSelector.php:125
+msgid "Non-specific"
+msgstr "Niespecyficzne"
 
-#: mod/wallmessage.php:63 mod/message.php:80
-msgid "Message could not be sent."
-msgstr "Wiadomość nie może zostać wysłana"
+#: src/Content/ContactSelector.php:125
+msgid "Other"
+msgstr "Inne"
 
-#: mod/wallmessage.php:66 mod/message.php:83
-msgid "Message collection failure."
-msgstr "Błąd zbierania komunikatów."
+#: src/Content/ContactSelector.php:147
+msgid "Males"
+msgstr "Mężczyźni"
 
-#: mod/wallmessage.php:69 mod/message.php:86
-msgid "Message sent."
-msgstr "Wysłano."
+#: src/Content/ContactSelector.php:147
+msgid "Females"
+msgstr "Kobiety"
 
-#: mod/wallmessage.php:86 mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Brak odbiorcy."
+#: src/Content/ContactSelector.php:147
+msgid "Gay"
+msgstr "Gej"
 
-#: mod/wallmessage.php:132 mod/message.php:250
-msgid "Send Private Message"
-msgstr "Wyślij prywatną wiadomość"
+#: src/Content/ContactSelector.php:147
+msgid "Lesbian"
+msgstr "Lesbijka"
 
-#: 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 "Jeśli chcesz %s odpowiedzieć, sprawdź, czy ustawienia prywatności w Twojej witrynie zezwalają na prywatne wiadomości od nieznanych nadawców."
+#: src/Content/ContactSelector.php:147
+msgid "No Preference"
+msgstr "Brak preferencji"
 
-#: mod/wallmessage.php:134 mod/message.php:251 mod/message.php:421
-msgid "To:"
-msgstr "Do:"
+#: src/Content/ContactSelector.php:147
+msgid "Bisexual"
+msgstr "Biseksualny"
 
-#: mod/wallmessage.php:135 mod/message.php:255 mod/message.php:423
-msgid "Subject:"
-msgstr "Temat:"
+#: src/Content/ContactSelector.php:147
+msgid "Autosexual"
+msgstr "Niezidentyfikowany"
 
-#: mod/wallmessage.php:141 mod/message.php:259 mod/message.php:426
-#: mod/invite.php:149
-msgid "Your message:"
-msgstr "Twoja wiadomość:"
+#: src/Content/ContactSelector.php:147
+msgid "Abstinent"
+msgstr "Abstynent"
 
-#: mod/bookmarklet.php:23 src/Content/Nav.php:114 src/Module/Login.php:312
-msgid "Login"
-msgstr "Login"
+#: src/Content/ContactSelector.php:147
+msgid "Virgin"
+msgstr "Dziewica"
 
-#: mod/bookmarklet.php:51
-msgid "The post was created"
-msgstr "Post został utworzony"
+#: src/Content/ContactSelector.php:147
+msgid "Deviant"
+msgstr "Zboczeniec"
 
-#: mod/community.php:46
-msgid "Community option not available."
-msgstr "Opcja wspólnotowa jest niedostępna."
+#: src/Content/ContactSelector.php:147
+msgid "Fetish"
+msgstr "Fetysz"
 
-#: mod/community.php:63
-msgid "Not available."
-msgstr "Niedostępne."
+#: src/Content/ContactSelector.php:147
+msgid "Oodles"
+msgstr "Nadmiar"
 
-#: mod/community.php:76
-msgid "Local Community"
-msgstr "Lokalna społeczność"
+#: src/Content/ContactSelector.php:147
+msgid "Nonsexual"
+msgstr "Nieseksualny"
 
-#: mod/community.php:79
-msgid "Posts from local users on this server"
-msgstr "Wpisy od lokalnych użytkowników na tym serwerze"
+#: src/Content/ContactSelector.php:169
+msgid "Single"
+msgstr "Singiel"
 
-#: mod/community.php:87
-msgid "Global Community"
-msgstr "Globalna społeczność"
+#: src/Content/ContactSelector.php:169
+msgid "Lonely"
+msgstr "Samotny"
 
-#: mod/community.php:90
-msgid "Posts from users of the whole federated network"
-msgstr "Wpisy od użytkowników całej sieci stowarzyszonej"
+#: src/Content/ContactSelector.php:169
+msgid "Available"
+msgstr "Dostępny"
 
-#: 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."
+#: src/Content/ContactSelector.php:169
+msgid "Unavailable"
+msgstr "Niedostępny"
 
-#: mod/editpost.php:25 mod/editpost.php:35
-msgid "Item not found"
-msgstr "Nie znaleziono elementu"
+#: src/Content/ContactSelector.php:169
+msgid "Has crush"
+msgstr "Ma sympatii"
 
-#: mod/editpost.php:42
-msgid "Edit post"
-msgstr "Edytuj post"
+#: src/Content/ContactSelector.php:169
+msgid "Infatuated"
+msgstr "Zakochany"
 
-#: mod/editpost.php:134 src/Core/ACL.php:315
-msgid "CC: email addresses"
-msgstr "CC: adresy e-mail"
+#: src/Content/ContactSelector.php:169
+msgid "Dating"
+msgstr "Randki"
 
-#: 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"
+#: src/Content/ContactSelector.php:169
+msgid "Unfaithful"
+msgstr "Niewierny"
 
-#: mod/fsuggest.php:72
-msgid "Friend suggestion sent."
-msgstr "Wysłana propozycja dodania do znajomych."
+#: src/Content/ContactSelector.php:169
+msgid "Sex Addict"
+msgstr "Uzależniony od seksu"
 
-#: mod/fsuggest.php:101
-msgid "Suggest Friends"
-msgstr "Proponuję znajomych"
+#: src/Content/ContactSelector.php:169
+msgid "Friends/Benefits"
+msgstr "Przyjaciele/Korzyści"
 
-#: mod/fsuggest.php:103
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Zaproponuj znajomych dla %s"
+#: src/Content/ContactSelector.php:169
+msgid "Casual"
+msgstr "Przypadkowy"
 
-#: mod/group.php:36
-msgid "Group created."
-msgstr "Grupa utworzona."
+#: src/Content/ContactSelector.php:169
+msgid "Engaged"
+msgstr "Zaręczeni"
 
-#: mod/group.php:42
-msgid "Could not create group."
-msgstr "Nie mogę stworzyć grupy"
+#: src/Content/ContactSelector.php:169
+msgid "Married"
+msgstr "Małżeństwo"
 
-#: mod/group.php:56 mod/group.php:157
-msgid "Group not found."
-msgstr "Nie znaleziono grupy"
+#: src/Content/ContactSelector.php:169
+msgid "Imaginarily married"
+msgstr "Fikcyjnie w związku małżeńskim"
 
-#: mod/group.php:70
-msgid "Group name changed."
-msgstr "Nazwa grupy zmieniona"
+#: src/Content/ContactSelector.php:169
+msgid "Partners"
+msgstr "Partnerzy"
 
-#: mod/group.php:97
-msgid "Save Group"
-msgstr "Zapisz grupę"
+#: src/Content/ContactSelector.php:169
+msgid "Cohabiting"
+msgstr "Konkubinat"
 
-#: mod/group.php:102
-msgid "Create a group of contacts/friends."
-msgstr "Stwórz grupę znajomych."
+#: src/Content/ContactSelector.php:169
+msgid "Common law"
+msgstr "Prawo zwyczajowe"
 
-#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421
-msgid "Group Name: "
-msgstr "Nazwa grupy: "
+#: src/Content/ContactSelector.php:169
+msgid "Happy"
+msgstr "Szczęśliwy"
 
-#: mod/group.php:127
-msgid "Group removed."
-msgstr "Grupa usunięta."
+#: src/Content/ContactSelector.php:169
+msgid "Not looking"
+msgstr "Nie patrzę"
 
-#: mod/group.php:129
-msgid "Unable to remove group."
-msgstr "Nie można usunąć grupy."
+#: src/Content/ContactSelector.php:169
+msgid "Swinger"
+msgstr "Swinger"
 
-#: mod/group.php:192
-msgid "Delete Group"
-msgstr "Usuń grupę"
+#: src/Content/ContactSelector.php:169
+msgid "Betrayed"
+msgstr "Zdradzony"
 
-#: mod/group.php:198
-msgid "Group Editor"
-msgstr "Edytor grupy"
+#: src/Content/ContactSelector.php:169
+msgid "Separated"
+msgstr "W separacji"
 
-#: mod/group.php:203
-msgid "Edit Group Name"
-msgstr "Edytuj nazwę grupy"
+#: src/Content/ContactSelector.php:169
+msgid "Unstable"
+msgstr "Niestabilny"
 
-#: mod/group.php:213
-msgid "Members"
-msgstr "Członkowie"
+#: src/Content/ContactSelector.php:169
+msgid "Divorced"
+msgstr "Rozwiedzeni"
 
-#: mod/group.php:215 mod/contacts.php:719
-msgid "All Contacts"
-msgstr "Wszystkie kontakty"
+#: src/Content/ContactSelector.php:169
+msgid "Imaginarily divorced"
+msgstr "Fikcyjnie rozwiedziony/a"
 
-#: mod/group.php:216 mod/network.php:639
-msgid "Group is empty"
-msgstr "Grupa jest pusta"
+#: src/Content/ContactSelector.php:169
+msgid "Widowed"
+msgstr "Wdowiec"
 
-#: mod/group.php:229
-msgid "Remove Contact"
-msgstr "Usuń Kontakt"
+#: src/Content/ContactSelector.php:169
+msgid "Uncertain"
+msgstr "Nieokreślony"
 
-#: mod/group.php:253
-msgid "Add Contact"
-msgstr "Dodaj Kontakt"
+#: src/Content/ContactSelector.php:169
+msgid "It's complicated"
+msgstr "To skomplikowane"
 
-#: mod/message.php:30 src/Content/Nav.php:198
-msgid "New Message"
-msgstr "Nowa wiadomość"
+#: src/Content/ContactSelector.php:169
+msgid "Don't care"
+msgstr "Nie przejmuj się"
 
-#: mod/message.php:77
-msgid "Unable to locate contact information."
-msgstr "Nie można znaleźć informacji kontaktowych."
+#: src/Content/ContactSelector.php:169
+msgid "Ask me"
+msgstr "Zapytaj mnie "
 
-#: mod/message.php:112 view/theme/frio/theme.php:268 src/Content/Nav.php:195
-msgid "Messages"
-msgstr "Wiadomości"
+#: src/Content/OEmbed.php:253
+msgid "Embedding disabled"
+msgstr "Osadzanie wyłączone"
 
-#: mod/message.php:136
-msgid "Do you really want to delete this message?"
-msgstr "Czy na pewno chcesz usunąć tę wiadomość?"
+#: src/Content/OEmbed.php:373
+msgid "Embedded content"
+msgstr "Osadzona zawartość"
 
-#: mod/message.php:156
-msgid "Message deleted."
-msgstr "Wiadomość usunięta."
+#: src/Content/ForumManager.php:127 view/theme/vier/theme.php:256
+msgid "External link to forum"
+msgstr "Zewnętrzny link do forum"
 
-#: mod/message.php:185
-msgid "Conversation removed."
-msgstr "Rozmowa usunięta."
+#: src/Content/Nav.php:53
+msgid "Nothing new here"
+msgstr "Brak nowych zdarzeń"
 
-#: mod/message.php:291
-msgid "No messages."
-msgstr "Brak wiadomości."
+#: src/Content/Nav.php:57
+msgid "Clear notifications"
+msgstr "Wyczyść powiadomienia"
 
-#: mod/message.php:330
-msgid "Message not available."
-msgstr "Wiadomość nie jest dostępna."
+#: src/Content/Nav.php:97 src/Module/Login.php:311
+#: view/theme/frio/theme.php:256
+msgid "Logout"
+msgstr "Wyloguj się"
 
-#: mod/message.php:397
-msgid "Delete message"
-msgstr "Usuń wiadomość"
+#: src/Content/Nav.php:97 view/theme/frio/theme.php:256
+msgid "End this session"
+msgstr "Zakończ sesję"
 
-#: 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"
+#: 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"
 
-#: mod/message.php:414 mod/message.php:497
-msgid "Delete conversation"
-msgstr "Usuń rozmowę"
+#: src/Content/Nav.php:101 view/theme/frio/theme.php:260
+msgid "Your profile page"
+msgstr "Twoja strona profilowa"
 
-#: mod/message.php:416
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Brak bezpiecznej komunikacji. <strong>Możesz</strong> odpowiedzieć na stronie profilu nadawcy."
+#: src/Content/Nav.php:102 view/theme/frio/theme.php:261
+msgid "Your photos"
+msgstr "Twoje zdjęcia"
 
-#: mod/message.php:420
-msgid "Send Reply"
-msgstr "Odpowiedz"
+#: src/Content/Nav.php:103 view/theme/frio/theme.php:262
+msgid "Your videos"
+msgstr "Twoje filmy"
 
-#: mod/message.php:471
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Nieznany nadawca - %s"
+#: src/Content/Nav.php:104 view/theme/frio/theme.php:263
+msgid "Your events"
+msgstr "Twoje wydarzenia"
 
-#: mod/message.php:473
-#, php-format
-msgid "You and %s"
-msgstr "Ty i %s"
+#: src/Content/Nav.php:105
+msgid "Personal notes"
+msgstr "Notatki"
 
-#: mod/message.php:475
-#, php-format
-msgid "%s and You"
-msgstr "%s i ty"
+#: src/Content/Nav.php:105
+msgid "Your personal notes"
+msgstr "Twoje prywatne notatki"
 
-#: 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"
+#: src/Content/Nav.php:114 src/Module/Login.php:312 mod/bookmarklet.php:23
+msgid "Login"
+msgstr "Zaloguj się"
 
-#: mod/notes.php:52 src/Model/Profile.php:948
-msgid "Personal Notes"
-msgstr "Notatki"
+#: src/Content/Nav.php:114
+msgid "Sign in"
+msgstr "Zaloguj się"
 
-#: mod/photos.php:108 src/Model/Profile.php:909
-msgid "Photo Albums"
-msgstr "Albumy zdjęć"
+#: src/Content/Nav.php:124 src/Content/Nav.php:181
+#: src/Core/NotificationsManager.php:192
+msgid "Home"
+msgstr "Strona domowa"
 
-#: mod/photos.php:109 mod/photos.php:1713
-msgid "Recent Photos"
-msgstr "Ostatnio dodane zdjęcia"
+#: src/Content/Nav.php:124
+msgid "Home Page"
+msgstr "Strona startowa"
 
-#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715
-msgid "Upload New Photos"
-msgstr "Wyślij nowe zdjęcie"
+#: src/Content/Nav.php:128 src/Module/Login.php:283 mod/register.php:279
+msgid "Register"
+msgstr "Zarejestruj"
 
-#: mod/photos.php:126 mod/settings.php:50
-msgid "everybody"
-msgstr "wszyscy"
+#: src/Content/Nav.php:128
+msgid "Create an account"
+msgstr "Załóż konto"
 
-#: mod/photos.php:184
-msgid "Contact information unavailable"
-msgstr "Informacje kontaktowe są niedostępne."
+#: src/Content/Nav.php:134 mod/help.php:54 view/theme/vier/theme.php:298
+msgid "Help"
+msgstr "Pomoc"
 
-#: mod/photos.php:204
-msgid "Album not found."
-msgstr "Album nie znaleziony"
+#: src/Content/Nav.php:134
+msgid "Help and documentation"
+msgstr "Pomoc i dokumentacja"
 
-#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161
-msgid "Delete Album"
-msgstr "Usuń album"
+#: src/Content/Nav.php:138
+msgid "Apps"
+msgstr "Aplikacje"
 
-#: 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?"
+#: src/Content/Nav.php:138
+msgid "Addon applications, utilities, games"
+msgstr "Wtyczki, aplikacje, narzędzia, gry"
 
-#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446
-msgid "Delete Photo"
-msgstr "Usuń zdjęcie"
+#: src/Content/Nav.php:142
+msgid "Search site content"
+msgstr "Przeszukaj zawartość strony"
 
-#: mod/photos.php:319
-msgid "Do you really want to delete this photo?"
-msgstr "Czy na pewno chcesz usunąć to zdjęcie ?"
+#: src/Content/Nav.php:165
+msgid "Community"
+msgstr "Społeczność"
 
-#: mod/photos.php:667
-msgid "a photo"
-msgstr "zdjęcie"
+#: src/Content/Nav.php:165
+msgid "Conversations on this and other servers"
+msgstr "Rozmowy na tym i innych serwerach"
 
-#: 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"
+#: src/Content/Nav.php:172
+msgid "Directory"
+msgstr "Katalog"
 
-#: 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"
+#: src/Content/Nav.php:172
+msgid "People directory"
+msgstr "Katalog osób"
 
-#: mod/photos.php:772
-msgid "Image file is missing"
-msgstr "Brak pliku obrazu"
+#: src/Content/Nav.php:174 mod/admin.php:179
+msgid "Information"
+msgstr "Informacje"
 
-#: 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"
+#: src/Content/Nav.php:174
+msgid "Information about this friendica instance"
+msgstr "Informacje o tej instancji friendica"
 
-#: mod/photos.php:803
-msgid "Image file is empty."
-msgstr "Plik obrazka jest pusty."
+#: src/Content/Nav.php:178 src/Core/NotificationsManager.php:178
+#: mod/admin.php:758 view/theme/frio/theme.php:266
+msgid "Network"
+msgstr "Sieć"
 
-#: mod/photos.php:940
-msgid "No photos selected"
-msgstr "Nie zaznaczono zdjęć"
+#: src/Content/Nav.php:178 view/theme/frio/theme.php:266
+msgid "Conversations from your friends"
+msgstr "Rozmowy Twoich przyjaciół"
 
-#: mod/photos.php:1036 mod/videos.php:309
-msgid "Access to this item is restricted."
-msgstr "Dostęp do tego obiektu jest ograniczony."
+#: src/Content/Nav.php:179
+msgid "Network Reset"
+msgstr "Resetowanie sieci"
 
-#: mod/photos.php:1090
-msgid "Upload Photos"
-msgstr "Prześlij zdjęcia"
+#: src/Content/Nav.php:179
+msgid "Load Network page with no filters"
+msgstr "Załaduj stronę sieci bez filtrów"
 
-#: mod/photos.php:1094 mod/photos.php:1156
-msgid "New album name: "
-msgstr "Nazwa nowego albumu:"
+#: src/Content/Nav.php:185 src/Core/NotificationsManager.php:199
+msgid "Introductions"
+msgstr "Zapoznanie"
 
-#: mod/photos.php:1095
-msgid "or existing album name: "
-msgstr "lub istniejąca nazwa albumu:"
+#: src/Content/Nav.php:185
+msgid "Friend Requests"
+msgstr "Prośba o przyjęcie do grona znajomych"
 
-#: mod/photos.php:1096
-msgid "Do not show a status post for this upload"
-msgstr "Nie pokazuj statusu postów dla tego wysłania"
+#: src/Content/Nav.php:186 mod/notifications.php:98
+msgid "Notifications"
+msgstr "Powiadomienia"
 
-#: mod/photos.php:1098 mod/photos.php:1441 mod/events.php:533
-#: src/Core/ACL.php:318
-msgid "Permissions"
-msgstr "Uprawnienia"
+#: src/Content/Nav.php:187
+msgid "See all notifications"
+msgstr "Zobacz wszystkie powiadomienia"
 
-#: mod/photos.php:1106 mod/photos.php:1449 mod/settings.php:1229
-msgid "Show to Groups"
-msgstr "Pokaż Grupy"
+#: src/Content/Nav.php:188 mod/settings.php:870
+msgid "Mark as seen"
+msgstr "Oznacz jako przeczytane"
 
-#: mod/photos.php:1107 mod/photos.php:1450 mod/settings.php:1230
-msgid "Show to Contacts"
-msgstr "Pokaż kontakty"
+#: src/Content/Nav.php:188
+msgid "Mark all system notifications seen"
+msgstr "Oznacz wszystkie powiadomienia systemu jako przeczytane"
 
-#: mod/photos.php:1167
-msgid "Edit Album"
-msgstr "Edytuj album"
+#: src/Content/Nav.php:191 mod/message.php:112 view/theme/frio/theme.php:268
+msgid "Messages"
+msgstr "Wiadomości"
 
-#: mod/photos.php:1172
-msgid "Show Newest First"
-msgstr "Najpierw pokaż najnowsze"
+#: src/Content/Nav.php:191 view/theme/frio/theme.php:268
+msgid "Private mail"
+msgstr "Prywatne maile"
 
-#: mod/photos.php:1174
-msgid "Show Oldest First"
-msgstr "Najpierw pokaż najstarsze"
+#: src/Content/Nav.php:192
+msgid "Inbox"
+msgstr "Odebrane"
 
-#: mod/photos.php:1195 mod/photos.php:1698
-msgid "View Photo"
-msgstr "Zobacz zdjęcie"
+#: src/Content/Nav.php:193
+msgid "Outbox"
+msgstr "Wysłane"
 
-#: 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."
+#: src/Content/Nav.php:194 mod/message.php:30
+msgid "New Message"
+msgstr "Nowa wiadomość"
 
-#: mod/photos.php:1238
-msgid "Photo not available"
-msgstr "Zdjęcie niedostępne"
+#: src/Content/Nav.php:197
+msgid "Manage"
+msgstr "Zarządzaj"
 
-#: mod/photos.php:1301
-msgid "View photo"
-msgstr "Zobacz zdjęcie"
+#: src/Content/Nav.php:197
+msgid "Manage other pages"
+msgstr "Zarządzaj innymi stronami"
 
-#: mod/photos.php:1301
-msgid "Edit photo"
-msgstr "Edytuj zdjęcie"
+#: src/Content/Nav.php:200 mod/settings.php:93
+msgid "Delegations"
+msgstr "Delegowanie"
 
-#: mod/photos.php:1302
-msgid "Use as profile photo"
-msgstr "Ustaw jako zdjęcie profilowe"
+#: src/Content/Nav.php:200 mod/delegate.php:169
+msgid "Delegate Page Management"
+msgstr "Deleguj zarządzanie stronami"
 
-#: mod/photos.php:1308 src/Object/Post.php:149
-msgid "Private Message"
-msgstr "Wiadomość prywatna"
+#: 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"
 
-#: mod/photos.php:1327
-msgid "View Full Size"
-msgstr "Zobacz w pełnym rozmiarze"
+#: src/Content/Nav.php:202 view/theme/frio/theme.php:269
+msgid "Account settings"
+msgstr "Ustawienia konta"
 
-#: mod/photos.php:1414
-msgid "Tags: "
-msgstr "Tagi:"
+#: src/Content/Nav.php:205
+msgid "Manage/Edit Profiles"
+msgstr "Zarządzaj/Edytuj profile"
 
-#: mod/photos.php:1417
-msgid "[Remove any tag]"
-msgstr "[Usunąć znacznik]"
+#: src/Content/Nav.php:208 view/theme/frio/theme.php:270
+msgid "Manage/edit friends and contacts"
+msgstr "Zarządzaj listą przyjaciół i kontaktami"
 
-#: mod/photos.php:1432
-msgid "New album name"
-msgstr "Nazwa nowego albumu"
+#: src/Content/Nav.php:213 mod/admin.php:222
+msgid "Admin"
+msgstr "Administator"
 
-#: mod/photos.php:1433
-msgid "Caption"
-msgstr "Zawartość"
+#: src/Content/Nav.php:213
+msgid "Site setup and configuration"
+msgstr "Konfiguracja i ustawienia instancji"
 
-#: mod/photos.php:1434
-msgid "Add a Tag"
-msgstr "Dodaj tag"
+#: src/Content/Nav.php:216
+msgid "Navigation"
+msgstr "Nawigacja"
 
-#: 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"
+#: src/Content/Nav.php:216
+msgid "Site map"
+msgstr "Mapa strony"
 
-#: mod/photos.php:1435
-msgid "Do not rotate"
-msgstr "Nie obracaj"
+#: src/Worker/Delivery.php:390
+msgid "(no subject)"
+msgstr "(bez tematu)"
 
-#: mod/photos.php:1436
-msgid "Rotate CW (right)"
-msgstr "Obróć CW (w prawo)"
+#: src/App.php:511
+msgid "Delete this item?"
+msgstr "Usunąć ten element?"
 
-#: mod/photos.php:1437
-msgid "Rotate CCW (left)"
-msgstr "Obróć CCW (w lewo)"
+#: src/App.php:513
+msgid "show fewer"
+msgstr "Pokaż mniej"
 
-#: mod/photos.php:1471 src/Object/Post.php:296
-msgid "I like this (toggle)"
-msgstr "Lubię to (zmień)"
+#: src/Module/Login.php:86 src/Module/Login.php:134 mod/openid.php:116
+msgid "Login failed."
+msgstr "Logowanie nieudane."
 
-#: mod/photos.php:1472 src/Object/Post.php:297
-msgid "I don't like this (toggle)"
-msgstr "Nie lubię tego (zmień)"
+#: src/Module/Login.php:282
+msgid "Create a New Account"
+msgstr "Załóż nowe konto"
 
-#: 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"
+#: src/Module/Login.php:314 mod/lostpass.php:119
+msgid "Nickname or Email: "
+msgstr "Pseudonim lub Email:"
 
-#: 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"
+#: src/Module/Login.php:315
+msgid "Password: "
+msgstr "Hasło:"
 
-#: mod/photos.php:1634
-msgid "Map"
-msgstr "Mapa"
+#: src/Module/Login.php:316
+msgid "Remember me"
+msgstr "Zapamiętaj mnie"
 
-#: mod/photos.php:1704 mod/videos.php:387
-msgid "View Album"
-msgstr "Zobacz album"
+#: src/Module/Login.php:319
+msgid "Or login using OpenID: "
+msgstr "Lub zaloguj się korzystając z OpenID:"
 
-#: mod/profile.php:37 src/Model/Profile.php:118
-msgid "Requested profile is not available."
-msgstr "Żądany profil jest niedostępny"
+#: src/Module/Login.php:325
+msgid "Forgot your password?"
+msgstr "Zapomniałeś swojego hasła?"
 
-#: mod/profile.php:78 src/Protocol/OStatus.php:1252
-#, php-format
-msgid "%s's posts"
-msgstr "%s posty "
+#: src/Module/Login.php:326 mod/lostpass.php:136
+msgid "Password Reset"
+msgstr "Zresetuj hasło"
 
-#: mod/profile.php:79 src/Protocol/OStatus.php:1253
-#, php-format
-msgid "%s's comments"
-msgstr "%s komentarze "
+#: src/Module/Login.php:328
+msgid "Website Terms of Service"
+msgstr "Warunki korzystania z witryny"
 
-#: mod/profile.php:80 src/Protocol/OStatus.php:1251
-#, php-format
-msgid "%s's timeline"
-msgstr "%s oś czasu "
+#: src/Module/Login.php:329
+msgid "terms of service"
+msgstr "warunki użytkowania"
 
-#: 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."
+#: src/Module/Login.php:331
+msgid "Website Privacy Policy"
+msgstr "Polityka Prywatności Witryny"
 
-#: mod/profile.php:194
-msgid "Tips for New Members"
-msgstr "Wskazówki dla nowych użytkowników"
+#: src/Module/Login.php:332
+msgid "privacy policy"
+msgstr "polityka prywatności"
 
-#: mod/videos.php:139
-msgid "Do you really want to delete this video?"
-msgstr "Czy na pewno chcesz usunąć ten film wideo?"
+#: 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"
 
-#: mod/videos.php:144
-msgid "Delete Video"
-msgstr "Usuń wideo"
+#: src/Module/Tos.php:51
+msgid "Privacy Statement"
+msgstr "Oświadczenie o prywatności"
 
-#: mod/videos.php:207
-msgid "No videos selected"
-msgstr "Nie zaznaczono filmów"
+#: 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."
 
-#: mod/videos.php:396
-msgid "Recent Videos"
-msgstr "Ostatnio dodane filmy"
+#: 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."
 
-#: mod/videos.php:398
-msgid "Upload New Videos"
-msgstr "Wstaw nowe filmy"
+#: src/Module/Tos.php:54
+#, php-format
+msgid ""
+"At any point in time a logged in user can export their account data from the"
+" <a href=\"%1$s/settings/uexport\">account settings</a>. If the user wants "
+"to delete their account they can do so at <a "
+"href=\"%1$s/removeme\">%1$s/removeme</a>. The deletion of the account will "
+"be permanent."
+msgstr "W dowolnym momencie zalogowany użytkownik może wyeksportować dane swojego konta z <a href=\"%1$s/settings/uexport\">ustawień konta</a>. Jeśli użytkownik chce usunąć swoje konto, może to zrobić w <a href=\"%1$s/removeme\">%1$s/usuń mnie. Usunięcie konta będzie trwałe."
 
-#: 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"
+#: src/Module/Logout.php:28
+msgid "Logged out."
+msgstr "Wyloguj"
 
-#: mod/cal.php:275 mod/events.php:392
-msgid "View"
-msgstr "Widok"
+#: 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ęć"
 
-#: mod/cal.php:276 mod/events.php:394
-msgid "Previous"
-msgstr "Poprzedni"
+#: src/Object/Post.php:128
+msgid "This entry was edited"
+msgstr "Ten wpis został zedytowany"
 
-#: mod/cal.php:277 mod/events.php:395 mod/install.php:209
-msgid "Next"
-msgstr "Następny"
+#: src/Object/Post.php:149 mod/photos.php:1308
+msgid "Private Message"
+msgstr "Wiadomość prywatna"
 
-#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412
-msgid "today"
-msgstr "dzisiaj"
+#: src/Object/Post.php:155 src/Object/Post.php:157 mod/settings.php:737
+msgid "Edit"
+msgstr "Edytuj"
 
-#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304
-#: src/Model/Event.php:413
-msgid "month"
-msgstr "miesiąc"
+#: src/Object/Post.php:182
+msgid "save to folder"
+msgstr "zapisz w folderze"
 
-#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305
-#: src/Model/Event.php:414
-msgid "week"
-msgstr "tydzień"
+#: src/Object/Post.php:235
+msgid "I will attend"
+msgstr "Będę uczestniczyć"
 
-#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306
-#: src/Model/Event.php:415
-msgid "day"
-msgstr "dzień"
+#: src/Object/Post.php:235
+msgid "I will not attend"
+msgstr "Nie będę uczestniczyć"
 
-#: mod/cal.php:284 mod/events.php:404
-msgid "list"
-msgstr "lista"
+#: src/Object/Post.php:235
+msgid "I might attend"
+msgstr "Mogę wziąć udział"
 
-#: mod/cal.php:297 src/Core/Console/NewPassword.php:73 src/Model/User.php:214
-msgid "User not found"
-msgstr "Użytkownik nie znaleziony"
+#: src/Object/Post.php:263
+msgid "add star"
+msgstr "dodaj gwiazdkę"
 
-#: mod/cal.php:313
-msgid "This calendar format is not supported"
-msgstr "Ten format kalendarza nie jest obsługiwany"
+#: src/Object/Post.php:264
+msgid "remove star"
+msgstr "anuluj gwiazdkę"
 
-#: mod/cal.php:315
-msgid "No exportable data found"
-msgstr "Nie znaleziono danych do eksportu"
+#: src/Object/Post.php:265
+msgid "toggle star status"
+msgstr "włącz status gwiazdy"
 
-#: mod/cal.php:332
-msgid "calendar"
-msgstr "kalendarz"
+#: src/Object/Post.php:268
+msgid "starred"
+msgstr "gwiazdką"
 
-#: mod/contacts.php:157
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+#: src/Object/Post.php:274
+msgid "ignore thread"
+msgstr "zignoruj ​​wątek"
 
-#: 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."
+#: src/Object/Post.php:275
+msgid "unignore thread"
+msgstr "odignoruj ​​wątek"
 
-#: mod/contacts.php:194
-msgid "Could not locate selected profile."
-msgstr "Nie można znaleźć wybranego profilu."
+#: src/Object/Post.php:276
+msgid "toggle ignore status"
+msgstr "przełącz status ignorowania"
 
-#: mod/contacts.php:228
-msgid "Contact updated."
-msgstr "Kontakt zaktualizowany"
+#: src/Object/Post.php:279 mod/ostatus_subscribe.php:83
+msgid "ignored"
+msgstr "Ignoruj"
 
-#: mod/contacts.php:421
-msgid "Contact has been blocked"
-msgstr "Kontakt został zablokowany"
+#: src/Object/Post.php:285
+msgid "add tag"
+msgstr "dodaj tag"
 
-#: mod/contacts.php:421
-msgid "Contact has been unblocked"
-msgstr "Kontakt został odblokowany"
+#: src/Object/Post.php:296 mod/photos.php:1471
+msgid "I like this (toggle)"
+msgstr "Lubię to (zmień)"
 
-#: mod/contacts.php:432
-msgid "Contact has been ignored"
-msgstr "Kontakt jest ignorowany"
+#: src/Object/Post.php:296
+msgid "like"
+msgstr "lubię to"
 
-#: mod/contacts.php:432
-msgid "Contact has been unignored"
-msgstr "Kontakt nie jest ignorowany"
+#: src/Object/Post.php:297 mod/photos.php:1472
+msgid "I don't like this (toggle)"
+msgstr "Nie lubię tego (zmień)"
 
-#: mod/contacts.php:443
-msgid "Contact has been archived"
-msgstr "Kontakt został zarchiwizowany"
+#: src/Object/Post.php:297
+msgid "dislike"
+msgstr "nie lubię tego"
 
-#: mod/contacts.php:443
-msgid "Contact has been unarchived"
-msgstr "Kontakt został przywrócony"
+#: src/Object/Post.php:300
+msgid "Share this"
+msgstr "Udostępnij to"
 
-#: mod/contacts.php:467
-msgid "Drop contact"
-msgstr "Usuń kontakt"
+#: src/Object/Post.php:300
+msgid "share"
+msgstr "udostępnij"
 
-#: 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?"
+#: src/Object/Post.php:365
+msgid "to"
+msgstr "do"
 
-#: mod/contacts.php:488
-msgid "Contact has been removed."
-msgstr "Kontakt został usunięty."
+#: src/Object/Post.php:366
+msgid "via"
+msgstr "przez"
 
-#: mod/contacts.php:519
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Jesteś już znajomym z %s"
+#: src/Object/Post.php:367
+msgid "Wall-to-Wall"
+msgstr "Wall-to-Wall"
 
-#: mod/contacts.php:523
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Współdzielisz z %s"
+#: src/Object/Post.php:368
+msgid "via Wall-To-Wall:"
+msgstr "via Wall-To-Wall:"
 
-#: mod/contacts.php:527
+#: 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 "%s is sharing with you"
-msgstr "%s współdzieli z tobą"
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] " %d komentarz"
+msgstr[1] " %d komentarzy"
+msgstr[2] " %d komentarzy"
+msgstr[3] " %d komentarzy"
 
-#: mod/contacts.php:547
-msgid "Private communications are not available for this contact."
-msgstr "Prywatna rozmowa jest niemożliwa dla tego kontaktu"
+#: 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"
 
-#: mod/contacts.php:549
-msgid "Never"
-msgstr "Nigdy"
+#: 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ź"
 
-#: mod/contacts.php:552
-msgid "(Update was successful)"
-msgstr "(Aktualizacja przebiegła pomyślnie)"
+#: src/Object/Post.php:797
+msgid "Bold"
+msgstr "Pogrubienie"
 
-#: mod/contacts.php:552
-msgid "(Update was not successful)"
-msgstr "(Aktualizacja nie powiodła się)"
+#: src/Object/Post.php:798
+msgid "Italic"
+msgstr "Kursywa"
 
-#: 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"
+#: src/Object/Post.php:799
+msgid "Underline"
+msgstr "Podkreślenie"
 
-#: 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."
+#: src/Object/Post.php:800
+msgid "Quote"
+msgstr "Cytat"
 
-#: mod/contacts.php:572 mod/admin.php:1272 mod/admin.php:1435
-#: mod/admin.php:1445
-msgid "Disabled"
-msgstr "Wyłączony"
+#: src/Object/Post.php:801
+msgid "Code"
+msgstr "Kod"
 
-#: mod/contacts.php:573
-msgid "Fetch information"
-msgstr "Pobierz informacje"
+#: src/Object/Post.php:802
+msgid "Image"
+msgstr "Obraz"
 
-#: mod/contacts.php:574
-msgid "Fetch keywords"
-msgstr "Pobierz słowa kluczowe"
+#: src/Object/Post.php:803
+msgid "Link"
+msgstr "Link"
 
-#: mod/contacts.php:575
-msgid "Fetch information and keywords"
-msgstr "Pobierz informacje i słowa kluczowe"
+#: src/Object/Post.php:804
+msgid "Video"
+msgstr "Video"
 
-#: mod/contacts.php:599 mod/unfollow.php:100
-msgid "Disconnect/Unfollow"
-msgstr "Rozłącz/Nie obserwuj"
+#: src/Database/DBStructure.php:32
+msgid "There are no tables on MyISAM."
+msgstr "W MyISAM nie ma tabel."
 
-#: mod/contacts.php:608
-msgid "Contact"
-msgstr "Kontakt"
+#: 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."
 
-#: mod/contacts.php:611
-msgid "Profile Visibility"
-msgstr "Widoczność profilu"
+#: 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]"
 
-#: mod/contacts.php:612
+#: src/Database/DBStructure.php:191
 #, 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"
+"\n"
+"Error %d occurred during database update:\n"
+"%s\n"
+msgstr "\nWystąpił błąd %d podczas aktualizacji bazy danych:\n%s\n"
 
-#: mod/contacts.php:613
-msgid "Contact Information / Notes"
-msgstr "Informacje kontaktowe/Notatki"
+#: src/Database/DBStructure.php:194
+msgid "Errors encountered performing database changes: "
+msgstr "Napotkane błędy powodujące zmiany w bazie danych:"
 
-#: mod/contacts.php:614
-msgid "Their personal note"
-msgstr "Ich osobista uwaga"
+#: src/Database/DBStructure.php:210
+msgid ": Database update"
+msgstr ": Aktualizacja bazy danych"
 
-#: mod/contacts.php:616
-msgid "Edit contact notes"
-msgstr "Edytuj notatki kontaktu"
+#: src/Database/DBStructure.php:460
+#, php-format
+msgid "%s: updating %s table."
+msgstr "%s: aktualizowanie %s tabeli."
 
-#: mod/contacts.php:620
-msgid "Block/Unblock contact"
-msgstr "Zablokuj/odblokuj kontakt"
+#: src/Core/UserImport.php:104
+msgid "Error decoding account file"
+msgstr "Błąd podczas odczytu pliku konta"
 
-#: mod/contacts.php:621
-msgid "Ignore contact"
-msgstr "Ignoruj kontakt"
+#: 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?"
 
-#: mod/contacts.php:622
-msgid "Repair URL settings"
-msgstr "Napraw ustawienia adresu"
+#: src/Core/UserImport.php:118
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "Użytkownik '%s' już istnieje na tym serwerze!"
 
-#: mod/contacts.php:623
-msgid "View conversations"
-msgstr "Wyświetl rozmowy"
+#: src/Core/UserImport.php:151
+msgid "User creation error"
+msgstr "Błąd tworzenia użytkownika"
 
-#: mod/contacts.php:628
-msgid "Last update:"
-msgstr "Ostatnia aktualizacja:"
+#: src/Core/UserImport.php:169
+msgid "User profile creation error"
+msgstr "Błąd tworzenia profilu użytkownika"
 
-#: mod/contacts.php:630
-msgid "Update public posts"
-msgstr "Zaktualizuj publiczne posty"
+#: 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 "
 
-#: mod/contacts.php:632 mod/contacts.php:1002
-msgid "Update now"
-msgstr "Aktualizuj teraz"
+#: 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."
 
-#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
-#: mod/admin.php:485 mod/admin.php:1800
-msgid "Unblock"
-msgstr "Odblokuj"
+#: 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."
 
-#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
-#: mod/admin.php:484 mod/admin.php:1799
-msgid "Block"
-msgstr "Zablokuj"
+#: 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."
 
-#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
-msgid "Unignore"
-msgstr "Odblokuj"
+#: src/Core/Console/NewPassword.php:85 mod/settings.php:407
+msgid "Password changed."
+msgstr "Hasło zostało zmianione."
 
-#: mod/contacts.php:642
-msgid "Currently blocked"
-msgstr "Obecnie zablokowany"
+#: 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)"
 
-#: mod/contacts.php:643
-msgid "Currently ignored"
-msgstr "Obecnie zignorowany"
+#: 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"
 
-#: mod/contacts.php:644
-msgid "Currently archived"
-msgstr "Obecnie zarchiwizowany"
+#: src/Core/ACL.php:295
+msgid "Post to Email"
+msgstr "Prześlij e-mailem"
 
-#: mod/contacts.php:645
-msgid "Awaiting connection acknowledge"
-msgstr "Oczekiwanie na potwierdzenie połączenia"
+#: src/Core/ACL.php:301
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Ukryć szczegóły twojego profilu przed nieznajomymi?"
 
-#: mod/contacts.php:646
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal <strong>mogą</strong> być widoczne"
+#: src/Core/ACL.php:300
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Wtyczki są wyłączone, ponieważ \"%s\" jest włączone."
 
-#: mod/contacts.php:647
-msgid "Notification for new posts"
-msgstr "Powiadomienie o nowych postach"
+#: src/Core/ACL.php:307
+msgid "Visible to everybody"
+msgstr "Widoczny dla wszystkich"
 
-#: 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"
+#: src/Core/ACL.php:308 view/theme/vier/config.php:115
+msgid "show"
+msgstr "pokaż"
 
-#: mod/contacts.php:650
-msgid "Blacklisted keywords"
-msgstr "Słowa kluczowe na czarnej liście"
+#: src/Core/ACL.php:309 view/theme/vier/config.php:115
+msgid "don't show"
+msgstr "nie pokazuj"
 
-#: 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'"
+#: src/Core/ACL.php:315 mod/editpost.php:134
+msgid "CC: email addresses"
+msgstr "CC: adresy e-mail"
 
-#: mod/contacts.php:662 src/Model/Profile.php:424
-msgid "XMPP:"
-msgstr "XMPP:"
+#: 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"
 
-#: mod/contacts.php:667
-msgid "Actions"
-msgstr "Akcja"
+#: src/Core/ACL.php:318 mod/events.php:533 mod/photos.php:1098
+#: mod/photos.php:1441
+msgid "Permissions"
+msgstr "Uprawnienia"
 
-#: 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"
+#: src/Core/ACL.php:319
+msgid "Close"
+msgstr "Zamknij"
 
-#: mod/contacts.php:670
-msgid "Contact Settings"
-msgstr "Ustawienia kontaktów"
+#: src/Core/NotificationsManager.php:171
+msgid "System"
+msgstr "System"
 
-#: mod/contacts.php:711
-msgid "Suggestions"
-msgstr "Sugestie"
+#: src/Core/NotificationsManager.php:185 mod/network.php:955
+#: mod/profiles.php:687
+msgid "Personal"
+msgstr "Osobiste"
 
-#: mod/contacts.php:714
-msgid "Suggest potential friends"
-msgstr "Sugerowani znajomi"
+#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s skomentował wpis %s"
 
-#: mod/contacts.php:722
-msgid "Show all contacts"
-msgstr "Pokaż wszystkie kontakty"
-
-#: mod/contacts.php:727
-msgid "Unblocked"
-msgstr "Odblokowany"
+#: src/Core/NotificationsManager.php:267
+#, php-format
+msgid "%s created a new post"
+msgstr "%s dodał nowy wpis"
 
-#: mod/contacts.php:730
-msgid "Only show unblocked contacts"
-msgstr "Pokaż tylko odblokowane kontakty"
+#: src/Core/NotificationsManager.php:281
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s polubił wpis %s"
 
-#: mod/contacts.php:735
-msgid "Blocked"
-msgstr "Zablokowany"
+#: src/Core/NotificationsManager.php:294
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s nie lubi tych %s postów"
 
-#: mod/contacts.php:738
-msgid "Only show blocked contacts"
-msgstr "Pokaż tylko zablokowane kontakty"
+#: src/Core/NotificationsManager.php:307
+#, php-format
+msgid "%s is attending %s's event"
+msgstr "%suczestniczy %sw wydarzeniu "
 
-#: mod/contacts.php:743
-msgid "Ignored"
-msgstr "Zignorowany"
+#: src/Core/NotificationsManager.php:320
+#, php-format
+msgid "%s is not attending %s's event"
+msgstr "%snie uczestniczy %s w wydarzeniu "
 
-#: mod/contacts.php:746
-msgid "Only show ignored contacts"
-msgstr "Pokaż tylko ignorowane kontakty"
+#: src/Core/NotificationsManager.php:333
+#, php-format
+msgid "%s may attend %s's event"
+msgstr "%smoże uczestniczyć %s w wydarzeniu"
 
-#: mod/contacts.php:751
-msgid "Archived"
-msgstr "Zarchiwizowane"
+#: src/Core/NotificationsManager.php:350
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s jest teraz znajomym %s"
 
-#: mod/contacts.php:754
-msgid "Only show archived contacts"
-msgstr "Pokaż tylko zarchiwizowane kontakty"
+#: src/Core/NotificationsManager.php:825
+msgid "Friend Suggestion"
+msgstr "Propozycja znajomych"
 
-#: mod/contacts.php:759
-msgid "Hidden"
-msgstr "Ukryty"
+#: src/Core/NotificationsManager.php:851
+msgid "Friend/Connect Request"
+msgstr "Prośba o dodanie do przyjaciół/powiązanych"
 
-#: mod/contacts.php:762
-msgid "Only show hidden contacts"
-msgstr "Pokaż tylko ukryte kontakty"
+#: src/Core/NotificationsManager.php:851
+msgid "New Follower"
+msgstr "Nowy obserwujący"
 
-#: mod/contacts.php:818
-msgid "Search your contacts"
-msgstr "Wyszukaj w kontaktach"
+#: src/Util/Temporal.php:81 src/Util/Temporal.php:83 mod/profiles.php:689
+msgid "Miscellaneous"
+msgstr "Różny"
 
-#: mod/contacts.php:820 mod/directory.php:209 src/Content/Widget.php:63
-msgid "Find"
-msgstr "Znajdź"
+#: src/Util/Temporal.php:149 mod/profiles.php:712
+msgid "Age: "
+msgstr "Wiek: "
 
-#: mod/contacts.php:826 mod/settings.php:170 mod/settings.php:701
-msgid "Update"
-msgstr "Zaktualizuj"
+#: src/Util/Temporal.php:151
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "RRRR-MM-DD lub MM-DD"
 
-#: mod/contacts.php:829 mod/contacts.php:1027
-msgid "Archive"
-msgstr "Archiwum"
+#: src/Util/Temporal.php:294
+msgid "never"
+msgstr "nigdy"
 
-#: mod/contacts.php:829 mod/contacts.php:1027
-msgid "Unarchive"
-msgstr "Przywróć z archiwum"
+#: src/Util/Temporal.php:300
+msgid "less than a second ago"
+msgstr "mniej niż sekundę temu"
 
-#: mod/contacts.php:832
-msgid "Batch Actions"
-msgstr "Akcje wsadowe"
+#: src/Util/Temporal.php:303
+msgid "year"
+msgstr "rok"
 
-#: 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"
+#: src/Util/Temporal.php:303
+msgid "years"
+msgstr "lata"
 
-#: mod/contacts.php:866 src/Model/Profile.php:901
-msgid "Profile Details"
-msgstr "Szczegóły profilu"
+#: src/Util/Temporal.php:304
+msgid "months"
+msgstr "miesiące"
 
-#: mod/contacts.php:878
-msgid "View all contacts"
-msgstr "Zobacz wszystkie kontakty"
+#: src/Util/Temporal.php:305
+msgid "weeks"
+msgstr "tygodnie"
 
-#: mod/contacts.php:889
-msgid "View all common friends"
-msgstr "Zobacz wszystkich popularnych znajomych"
+#: src/Util/Temporal.php:306
+msgid "days"
+msgstr "dni"
 
-#: mod/contacts.php:895 mod/events.php:532 mod/admin.php:1351
-#: src/Model/Profile.php:867
-msgid "Advanced"
-msgstr "Zaawansowany"
+#: src/Util/Temporal.php:307
+msgid "hour"
+msgstr "godzina"
 
-#: mod/contacts.php:898
-msgid "Advanced Contact Settings"
-msgstr "Zaawansowane ustawienia kontaktów"
+#: src/Util/Temporal.php:307
+msgid "hours"
+msgstr "godziny"
 
-#: mod/contacts.php:930
-msgid "Mutual Friendship"
-msgstr "Wzajemna przyjaźń"
+#: src/Util/Temporal.php:308
+msgid "minute"
+msgstr "minuta"
 
-#: mod/contacts.php:934
-msgid "is a fan of yours"
-msgstr "jest twoim fanem"
+#: src/Util/Temporal.php:308
+msgid "minutes"
+msgstr "minuty"
 
-#: mod/contacts.php:938
-msgid "you are a fan of"
-msgstr "jesteś fanem"
+#: src/Util/Temporal.php:309
+msgid "second"
+msgstr "sekunda"
 
-#: mod/contacts.php:1013
-msgid "Toggle Blocked status"
-msgstr "Przełącz na Zablokowany"
+#: src/Util/Temporal.php:309
+msgid "seconds"
+msgstr "sekundy"
 
-#: mod/contacts.php:1021
-msgid "Toggle Ignored status"
-msgstr "Przełącz ignorowany status"
+#: src/Util/Temporal.php:318
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s temu"
 
-#: mod/contacts.php:1029
-msgid "Toggle Archive status"
-msgstr "Przełącz status archiwum"
+#: src/Protocol/OStatus.php:1251 mod/profile.php:80
+#, php-format
+msgid "%s's timeline"
+msgstr "%s oś czasu "
 
-#: mod/contacts.php:1037
-msgid "Delete contact"
-msgstr "Usuń kontakt"
+#: src/Protocol/OStatus.php:1252 mod/profile.php:78
+#, php-format
+msgid "%s's posts"
+msgstr "%s posty "
 
-#: mod/delegate.php:37
-msgid "Parent user not found."
-msgstr "Nie znaleziono użytkownika nadrzędnego."
+#: src/Protocol/OStatus.php:1253 mod/profile.php:79
+#, php-format
+msgid "%s's comments"
+msgstr "%s komentarze "
 
-#: mod/delegate.php:144
-msgid "No parent user"
-msgstr "Brak nadrzędnego użytkownika"
+#: src/Protocol/OStatus.php:1799
+#, php-format
+msgid "%s is now following %s."
+msgstr "%sjest teraz następujące %s. "
 
-#: mod/delegate.php:159
-msgid "Parent Password:"
-msgstr "Hasło nadrzędne:"
+#: src/Protocol/OStatus.php:1800
+msgid "following"
+msgstr "następujący"
 
-#: 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."
+#: src/Protocol/OStatus.php:1803
+#, php-format
+msgid "%s stopped following %s."
+msgstr "%sprzestał śledzić %s. "
 
-#: mod/delegate.php:164
-msgid "Parent User"
-msgstr "Użytkownik nadrzędny"
+#: src/Protocol/OStatus.php:1804
+msgid "stopped following"
+msgstr "przestał śledzić"
 
-#: 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."
+#: src/Protocol/Diaspora.php:2680
+msgid "Sharing notification from Diaspora network"
+msgstr "Wspólne powiadomienie z sieci Diaspora"
 
-#: 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"
+#: src/Protocol/Diaspora.php:3756
+msgid "Attachments:"
+msgstr "Załączniki:"
 
-#: mod/delegate.php:169 src/Content/Nav.php:204
-msgid "Delegate Page Management"
-msgstr "Deleguj zarządzanie stronami"
+#: 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/delegate.php:170
-msgid "Delegates"
-msgstr "Oddeleguj"
+#: mod/directory.php:202 view/theme/vier/theme.php:201
+msgid "Global Directory"
+msgstr "Globalny Katalog"
 
-#: 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/directory.php:204
+msgid "Find on this site"
+msgstr "Znajdź na tej stronie"
 
-#: mod/delegate.php:173
-msgid "Existing Page Delegates"
-msgstr "Obecni delegaci stron"
+#: mod/directory.php:206
+msgid "Results for:"
+msgstr "Wyniki dla:"
 
-#: mod/delegate.php:175
-msgid "Potential Delegates"
-msgstr "Potencjalni delegaci"
+#: mod/directory.php:208
+msgid "Site Directory"
+msgstr "Katalog Witryny"
 
-#: 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/directory.php:213
+msgid "No entries (some entries may be hidden)."
+msgstr "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)."
 
-#: 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/dirfind.php:49
+#, php-format
+msgid "People Search - %s"
+msgstr "Szukaj osób - %s"
 
-#: mod/events.php:393
-msgid "Create New Event"
-msgstr "Stwórz nowe wydarzenie"
+#: mod/dirfind.php:60
+#, php-format
+msgid "Forum Search - %s"
+msgstr "Przeszukiwanie forum - %s"
 
-#: mod/events.php:506
-msgid "Event details"
-msgstr "Szczegóły wydarzenia"
+#: mod/dirfind.php:253 mod/match.php:125
+msgid "No matches"
+msgstr "Brak wyników"
 
-#: mod/events.php:507
-msgid "Starting date and Title are required."
-msgstr "Data rozpoczęcia i tytuł są wymagane."
+#: mod/repair_ostatus.php:18
+msgid "Resubscribing to OStatus contacts"
+msgstr "Ponowne subskrybowanie kontaktów OStatus"
 
-#: mod/events.php:508 mod/events.php:509
-msgid "Event Starts:"
-msgstr "Rozpoczęcie wydarzenia:"
+#: mod/repair_ostatus.php:34
+msgid "Error"
+msgstr "Błąd"
 
-#: mod/events.php:508 mod/events.php:520 mod/profiles.php:700
-msgid "Required"
-msgstr "Wymagany"
+#: mod/repair_ostatus.php:48 mod/ostatus_subscribe.php:64
+msgid "Done"
+msgstr "Gotowe"
 
-#: 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/repair_ostatus.php:54 mod/ostatus_subscribe.php:88
+msgid "Keep this window open until done."
+msgstr "Pozostaw to okno otwarte, dopóki nie będzie gotowe."
 
-#: mod/events.php:512 mod/events.php:513
-msgid "Event Finishes:"
-msgstr "Zakończenie wydarzenia:"
+#: mod/ping.php:292
+msgid "{0} wants to be your friend"
+msgstr "{0} chce być Twoim znajomym"
 
-#: mod/events.php:514 mod/events.php:527
-msgid "Adjust for viewer timezone"
-msgstr "Dopasuj dla strefy czasowej widza"
+#: mod/ping.php:307
+msgid "{0} sent you a message"
+msgstr "{0} wysłałem Ci wiadomość"
 
-#: mod/events.php:516
-msgid "Description:"
-msgstr "Opis:"
+#: mod/ping.php:322
+msgid "{0} requested registration"
+msgstr "{0} wymagana rejestracja"
 
-#: mod/events.php:520 mod/events.php:522
-msgid "Title:"
-msgstr "Tytuł:"
+#: mod/suggest.php:36
+msgid "Do you really want to delete this suggestion?"
+msgstr "Czy na pewno chcesz usunąć te sugestie ?"
 
-#: mod/events.php:523 mod/events.php:524
-msgid "Share this event"
-msgstr "Udostępnij te wydarzenie"
+#: mod/suggest.php:73
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Brak dostępnych sugestii. Jeśli jest to nowa witryna, spróbuj ponownie za 24 godziny."
 
-#: mod/events.php:531 src/Model/Profile.php:866
-msgid "Basic"
-msgstr "Podstawowy"
+#: mod/suggest.php:84 mod/suggest.php:104
+msgid "Ignore/Hide"
+msgstr "Ignoruj/Ukryj"
 
-#: mod/events.php:552
-msgid "Failed to remove event"
-msgstr "Nie udało się usunąć wydarzenia"
+#: 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/events.php:554
-msgid "Event removed"
-msgstr "Wydarzenie zostało usunięte"
+#: 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/feedtest.php:20
-msgid "You must be logged in to use this module"
-msgstr "Musisz być zalogowany, aby korzystać z tego modułu"
+#: 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/feedtest.php:48
-msgid "Source URL"
-msgstr "Źródłowy adres URL"
+#: 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/install.php:114
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica Serwer Komunikacyjny - Instalacja"
+#: mod/profile_photo.php:134
+msgid "Unable to process image"
+msgstr "Nie udało się przetworzyć obrazu."
 
-#: mod/install.php:120
-msgid "Could not connect to database."
-msgstr "Nie można nawiązać połączenia z bazą danych"
+#: 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/install.php:124
-msgid "Could not create table."
-msgstr "Nie mogę stworzyć tabeli."
+#: 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/install.php:130
-msgid "Your Friendica site database has been installed."
-msgstr "Twoja baza danych witryny Friendica została zainstalowana."
+#: mod/profile_photo.php:247
+msgid "Upload File:"
+msgstr "Wyślij plik:"
 
-#: 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/profile_photo.php:248
+msgid "Select a profile:"
+msgstr "Wybierz profil:"
 
-#: 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/profile_photo.php:249 mod/profiles.php:691 mod/newmember.php:26
+msgid "Upload Profile Photo"
+msgstr "Wyślij zdjęcie profilowe"
 
-#: mod/install.php:148
-msgid "Database already in use."
-msgstr "Baza danych jest już w użyciu."
+#: mod/profile_photo.php:250 mod/fbrowser.php:105 mod/fbrowser.php:136
+msgid "Upload"
+msgstr "Załaduj"
 
-#: mod/install.php:205
-msgid "System check"
-msgstr "Sprawdzanie systemu"
+#: mod/profile_photo.php:253
+msgid "or"
+msgstr "lub"
 
-#: mod/install.php:210
-msgid "Check again"
-msgstr "Sprawdź ponownie"
+#: mod/profile_photo.php:253
+msgid "skip this step"
+msgstr "pomiń ten krok"
 
-#: mod/install.php:230
-msgid "Database connection"
-msgstr "Połączenie z bazą danych"
+#: mod/profile_photo.php:253
+msgid "select a photo from your photo albums"
+msgstr "wybierz zdjęcie z twojego albumu"
 
-#: 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/profile_photo.php:266
+msgid "Crop Image"
+msgstr "Przytnij zdjęcie"
 
-#: 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/profile_photo.php:267
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Dostosuj kadrowanie obrazu, aby uzyskać optymalny obraz."
 
-#: 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/profile_photo.php:269
+msgid "Done Editing"
+msgstr "Zakończono edycję"
 
-#: mod/install.php:237
-msgid "Database Server Name"
-msgstr "Nazwa serwera bazy danych"
+#: mod/profile_photo.php:305
+msgid "Image uploaded successfully."
+msgstr "Zdjęcie wczytano pomyślnie "
 
-#: mod/install.php:238
-msgid "Database Login Name"
-msgstr "Nazwa użytkownika bazy danych"
+#: 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/install.php:239
-msgid "Database Login Password"
-msgstr "Hasło logowania do bazy danych"
+#: mod/removeme.php:43
+msgid "User deleted their account"
+msgstr "Użytkownik usunął swoje konto"
 
-#: 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/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/install.php:240
-msgid "Database Name"
-msgstr "Nazwa bazy danych"
+#: mod/removeme.php:45
+#, php-format
+msgid "The user id is %d"
+msgstr "Identyfikatorem użytkownika jest %d"
 
-#: mod/install.php:241 mod/install.php:281
-msgid "Site administrator email address"
-msgstr "Adres e-mail administratora strony"
+#: mod/removeme.php:76 mod/removeme.php:79
+msgid "Remove My Account"
+msgstr "Usuń moje konto"
 
-#: mod/install.php:241 mod/install.php:281
+#: mod/removeme.php:77
 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."
+"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/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/removeme.php:78
+msgid "Please enter your password for verification:"
+msgstr "Wprowadź hasło w celu weryfikacji."
 
-#: mod/install.php:271
-msgid "Site settings"
-msgstr "Ustawienia strony"
-
-#: mod/install.php:285
-msgid "System Language:"
-msgstr "Język systemu:"
+#: mod/manage.php:180
+msgid "Manage Identities and/or Pages"
+msgstr "Zarządzaj Tożsamościami i/lub Stronami."
 
-#: mod/install.php:285
+#: mod/manage.php:181
 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"
+"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/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 <a "
-"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
-"up-the-worker'>'Setup the worker'</a>"
-msgstr "Jeśli nie masz zainstalowanej na serwerze wersji PHP z wiersza poleceń, nie będziesz mógł uruchomić przetwarzania w tle. Zobacz <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-worker'>'Konfiguracja pracownika'</a>"
+#: mod/manage.php:182
+msgid "Select an identity to manage: "
+msgstr "Wybierz tożsamość do zarządzania:"
 
-#: mod/install.php:330
-msgid "PHP executable path"
-msgstr "Ścieżka wykonywalna PHP"
+#: 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ć]"
 
-#: mod/install.php:330
+#: mod/uimport.php:55 mod/register.php:191
 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"
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro."
 
-#: 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/uimport.php:70 mod/register.php:285
+msgid "Import"
+msgstr "Import"
 
-#: mod/install.php:359
-msgid "This is required for message delivery to work."
-msgstr "Jest wymagane, aby dostarczanie wiadomości działało."
+#: mod/uimport.php:72
+msgid "Move account"
+msgstr "Przenieś konto"
 
-#: mod/install.php:361
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: mod/uimport.php:73
+msgid "You can import an account from another Friendica server."
+msgstr "Możesz zaimportować konto z innego serwera Friendica."
 
-#: mod/install.php:384
+#: mod/uimport.php:74
 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"
+"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 "Musisz wyeksportować konto ze starego serwera i przesłać je tutaj. Odtworzymy twoje stare konto tutaj ze wszystkimi twoimi kontaktami. Postaramy się również poinformować twoich znajomych, że się tutaj przeniosłeś."
 
-#: mod/install.php:385
+#: mod/uimport.php:75
 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\"."
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (GNU Social/Statusnet) or from Diaspora"
+msgstr "Ta funkcja jest eksperymentalna. Nie możemy importować kontaktów z sieci OStatus (GNU Social/Statusnet) lub z Diaspory"
 
-#: mod/install.php:387
-msgid "Generate encryption keys"
-msgstr "Generuj klucz kodowania"
+#: mod/uimport.php:76
+msgid "Account file"
+msgstr "Pliki konta"
 
-#: mod/install.php:394
-msgid "libCurl PHP module"
-msgstr "Moduł libCurl PHP"
+#: mod/uimport.php:76
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+msgstr "Aby eksportować konto, wejdź w \"Ustawienia->Eksport danych osobistych\" i wybierz \"Eksportuj konto\""
 
-#: mod/install.php:395
-msgid "GD graphics PHP module"
-msgstr "Moduł PHP-GD"
+#: mod/invite.php:33
+msgid "Total invitation limit exceeded."
+msgstr "Przekroczono limit zaproszeń ogółem."
 
-#: mod/install.php:396
-msgid "OpenSSL PHP module"
-msgstr "Moduł PHP OpenSSL"
+#: mod/invite.php:55
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s : Nieprawidłowy adres e-mail."
 
-#: mod/install.php:397
-msgid "PDO or MySQLi PHP module"
-msgstr "Moduł PDO lub MySQLi PHP"
+#: mod/invite.php:87
+msgid "Please join us on Friendica"
+msgstr "Dołącz do nas na Friendica"
 
-#: mod/install.php:398
-msgid "mb_string PHP module"
-msgstr "Moduł mb_string PHP"
+#: mod/invite.php:96
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Przekroczono limit zaproszeń. Skontaktuj się z administratorem witryny."
 
-#: mod/install.php:399
-msgid "XML PHP module"
-msgstr "Moduł XML PHP"
+#: mod/invite.php:100
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : Nie udało się dostarczyć wiadomości."
 
-#: mod/install.php:400
-msgid "iconv PHP module"
-msgstr "Moduł PHP iconv"
+#: 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/install.php:401
-msgid "POSIX PHP module"
-msgstr "Moduł POSIX PHP"
+#: mod/invite.php:122
+msgid "You have no more invitations available"
+msgstr "Nie masz już dostępnych zaproszeń"
 
-#: mod/install.php:405 mod/install.php:407
-msgid "Apache mod_rewrite module"
-msgstr "Moduł Apache mod_rewrite"
+#: 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 "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/install.php:405
+#: mod/invite.php:132
+#, php-format
 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."
+"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/install.php:413
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany."
+#: 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/install.php:417
+#: mod/invite.php:137
 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."
+"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/install.php:421
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany."
+#: 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/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/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/install.php:429
-msgid "Error: The MySQL driver for PDO is not installed."
-msgstr "Błąd: Sterownik MySQL dla PDO nie jest zainstalowany."
+#: mod/invite.php:147
+msgid "Send invitations"
+msgstr "Wyślij zaproszenie"
 
-#: 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/invite.php:148
+msgid "Enter email addresses, one per line:"
+msgstr "Wprowadź adresy e-mail, po jednym w wierszu:"
 
-#: mod/install.php:437
-msgid "Error: iconv PHP module required but not installed."
-msgstr "Błąd: wymagany moduł PHP iconv, ale nie zainstalowany."
+#: mod/invite.php:149 mod/message.php:259 mod/message.php:426
+#: mod/wallmessage.php:141
+msgid "Your message:"
+msgstr "Twoja wiadomość:"
 
-#: mod/install.php:441
-msgid "Error: POSIX PHP module required but not installed."
-msgstr "Błąd: wymagany moduł POSIX PHP, ale nie zainstalowany."
+#: 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/install.php:451
-msgid "Error, XML PHP module required but not installed."
-msgstr "Błąd, wymagany moduł XML PHP, ale nie zainstalowany."
+#: mod/invite.php:152
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Musisz podać ten kod zaproszenia: $invite_code"
 
-#: mod/install.php:463
+#: mod/invite.php:152
 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ć."
+"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/install.php:464
+#: mod/invite.php:154
 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."
+"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/install.php:466
+#: mod/openid.php:29
+msgid "OpenID protocol error. No ID returned."
+msgstr "Błąd protokołu OpenID. Nie znaleziono identyfikatora."
+
+#: mod/openid.php:66
 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."
+"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/install.php:469
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php jest zapisywalny"
+#: mod/hcard.php:18
+msgid "No profile"
+msgstr "Brak profilu"
 
-#: 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/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/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/apps.php:19
+msgid "Applications"
+msgstr "Aplikacje"
 
-#: 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/apps.php:22
+msgid "No installed applications."
+msgstr "Brak zainstalowanych aplikacji."
 
-#: mod/install.php:482
+#: mod/network.php:194 mod/search.php:37
+msgid "Remove term"
+msgstr "Usuń wpis"
+
+#: mod/network.php:547
+#, php-format
 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."
+"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/install.php:485
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 jest zapisywalny"
+#: 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/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/network.php:618
+msgid "No such group"
+msgstr "Nie ma takiej grupy"
 
-#: mod/install.php:503
-msgid "Url rewrite is working"
-msgstr "Działający adres URL"
+#: mod/network.php:639 mod/group.php:216
+msgid "Group is empty"
+msgstr "Grupa jest pusta"
 
-#: mod/install.php:522
-msgid "ImageMagick PHP extension is not installed"
-msgstr "Rozszerzenie PHP ImageMagick nie jest zainstalowane"
+#: mod/network.php:643
+#, php-format
+msgid "Group: %s"
+msgstr "Grupa: %s"
 
-#: mod/install.php:524
-msgid "ImageMagick PHP extension is installed"
-msgstr "Rozszerzenie PHP ImageMagick jest zainstalowane"
+#: 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/install.php:526
-msgid "ImageMagick supports GIF"
-msgstr "ImageMagick obsługuje GIF"
+#: mod/network.php:672
+msgid "Invalid contact."
+msgstr "Nieprawidłowy kontakt."
 
-#: 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/network.php:936
+msgid "Commented Order"
+msgstr "Porządek według komentarzy"
 
-#: mod/install.php:556
-msgid "<h1>What next</h1>"
-msgstr "<h1>Co dalej</h1>"
+#: mod/network.php:939
+msgid "Sort by Comment Date"
+msgstr "Sortuj według daty komentarza"
 
-#: 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/network.php:944
+msgid "Posted Order"
+msgstr "Porządek według wpisów"
 
-#: mod/install.php:560
-#, php-format
-msgid ""
-"Go to your new Friendica node <a href=\"%s/register\">registration page</a> "
-"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 <a href=\"%s/register\">strony rejestracji</a> 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:947
+msgid "Sort by Post Date"
+msgstr "Sortuj według daty postów"
 
-#: mod/item.php:114
-msgid "Unable to locate original post."
-msgstr "Nie można zlokalizować oryginalnej wiadomości."
+#: mod/network.php:958
+msgid "Posts that mention or involve you"
+msgstr "Posty, które wspominają lub angażują Ciebie"
 
-#: mod/item.php:274
-msgid "Empty post discarded."
-msgstr "Pusty wpis został odrzucony."
+#: mod/network.php:966
+msgid "New"
+msgstr "Nowy"
 
-#: 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/network.php:969
+msgid "Activity Stream - by date"
+msgstr "Strumień aktywności - według daty"
 
-#: mod/item.php:801
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Możesz odwiedzić ich online pod adresem %s"
+#: mod/network.php:977
+msgid "Shared Links"
+msgstr "Udostępnione łącza"
 
-#: 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/network.php:980
+msgid "Interesting Links"
+msgstr "Interesujące linki"
 
-#: mod/item.php:806
-#, php-format
-msgid "%s posted an update."
-msgstr "%s zaktualizował wpis."
+#: mod/network.php:988
+msgid "Starred"
+msgstr "Ulubione"
 
-#: mod/oexchange.php:30
-msgid "Post successful."
-msgstr "Post dodany pomyślnie"
+#: mod/network.php:991
+msgid "Favourite Posts"
+msgstr "Ulubione posty"
 
-#: mod/ostatus_subscribe.php:21
-msgid "Subscribing to OStatus contacts"
-msgstr "Subskrybowanie kontaktów OStatus"
+#: mod/friendica.php:77
+msgid "This is Friendica, version"
+msgstr "To jest Friendica, wersja"
 
-#: mod/ostatus_subscribe.php:33
-msgid "No contact provided."
-msgstr "Brak kontaktu."
+#: mod/friendica.php:78
+msgid "running at web location"
+msgstr "otwierane na serwerze"
 
-#: mod/ostatus_subscribe.php:40
-msgid "Couldn't fetch information for contact."
-msgstr "Nie można pobrać informacji o kontakcie."
+#: mod/friendica.php:82
+msgid ""
+"Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
+"about the Friendica project."
+msgstr "Odwiedź stronę <a href=\"https://friendi.ca\">Friendi.ca</a> aby dowiedzieć się więcej o projekcie Friendica."
 
-#: mod/ostatus_subscribe.php:50
-msgid "Couldn't fetch friends for contact."
-msgstr "Nie można pobrać znajomych do kontaktu."
+#: mod/friendica.php:86
+msgid "Bug reports and issues: please visit"
+msgstr "Raporty o błędach i problemy: odwiedź stronę"
 
-#: mod/ostatus_subscribe.php:78
-msgid "success"
-msgstr "powodzenie"
+#: mod/friendica.php:86
+msgid "the bugtracker at github"
+msgstr "bugtracker na github"
 
-#: mod/ostatus_subscribe.php:80
-msgid "failed"
-msgstr "nie powiodło się"
+#: 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/ostatus_subscribe.php:83 src/Object/Post.php:279
-msgid "ignored"
-msgstr "Ignoruj"
+#: mod/friendica.php:103
+msgid "Installed addons/apps:"
+msgstr "Zainstalowane dodatki/aplikacje:"
 
-#: 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/friendica.php:117
+msgid "No installed addons/apps"
+msgstr "Brak zainstalowanych dodatków/aplikacji"
 
-#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104
-#: mod/profile_photo.php:315
+#: mod/friendica.php:122
 #, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Redukcja rozmiaru obrazka [%s] nie powiodła się."
+msgid "Read about the <a href=\"%1$s/tos\">Terms of Service</a> of this node."
+msgstr "Przeczytaj o <a href=\"%1$s/tos\">Warunkach świadczenia usług</a> tego węzła."
 
-#: 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/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/profile_photo.php:134
-msgid "Unable to process image"
-msgstr "Nie udało się przetworzyć obrazu."
+#: mod/friendica.php:128 mod/admin.php:354 mod/admin.php:372
+msgid "Reason for the block"
+msgstr "Powód blokowania"
 
-#: 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/subthread.php:113
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$skolejny %2$s %3$s "
 
-#: mod/profile_photo.php:253
-msgid "or"
-msgstr "lub"
+#: 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/profile_photo.php:253
-msgid "skip this step"
-msgstr "pomiń ten krok"
+#: mod/profiles.php:58
+msgid "Profile deleted."
+msgstr "Konto usunięte."
 
-#: mod/profile_photo.php:253
-msgid "select a photo from your photo albums"
-msgstr "wybierz zdjęcie z twojego albumu"
+#: mod/profiles.php:74 mod/profiles.php:110
+msgid "Profile-"
+msgstr "Profil-"
 
-#: mod/profile_photo.php:266
-msgid "Crop Image"
-msgstr "Przytnij zdjęcie"
+#: mod/profiles.php:93 mod/profiles.php:132
+msgid "New profile created."
+msgstr "Utworzono nowy profil."
 
-#: mod/profile_photo.php:267
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Dostosuj kadrowanie obrazu, aby uzyskać optymalny obraz."
+#: mod/profiles.php:116
+msgid "Profile unavailable to clone."
+msgstr "Nie można powileić profilu "
 
-#: mod/profile_photo.php:269
-msgid "Done Editing"
-msgstr "Zakończono edycję"
+#: mod/profiles.php:206
+msgid "Profile Name is required."
+msgstr "Nazwa Profilu jest wymagana"
 
-#: mod/profile_photo.php:305
-msgid "Image uploaded successfully."
-msgstr "Zdjęcie wczytano pomyślnie "
+#: mod/profiles.php:347
+msgid "Marital Status"
+msgstr "Stan cywilny"
 
-#: 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/profiles.php:351
+msgid "Romantic Partner"
+msgstr "Romantyczny partner"
 
-#: mod/unfollow.php:47
-msgid "Contact unfollowed"
-msgstr "Skontaktuj się z obserwowanym"
+#: mod/profiles.php:363
+msgid "Work/Employment"
+msgstr "Praca/Zatrudnienie"
 
-#: mod/unfollow.php:73
-msgid "You aren't a friend of this contact."
-msgstr "Nie jesteś przyjacielem tego kontaktu."
+#: mod/profiles.php:366
+msgid "Religion"
+msgstr "Religia"
 
-#: 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/profiles.php:370
+msgid "Political Views"
+msgstr "Poglądy polityczne"
 
-#: mod/admin.php:106
-msgid "Theme settings updated."
-msgstr "Zaktualizowano ustawienia motywów."
+#: mod/profiles.php:374
+msgid "Gender"
+msgstr "Płeć"
 
-#: mod/admin.php:179 src/Content/Nav.php:174
-msgid "Information"
-msgstr "Informacje"
+#: mod/profiles.php:378
+msgid "Sexual Preference"
+msgstr "Orientacja seksualna"
 
-#: mod/admin.php:180
-msgid "Overview"
-msgstr "Przegląd"
+#: mod/profiles.php:382
+msgid "XMPP"
+msgstr "XMPP"
 
-#: mod/admin.php:181 mod/admin.php:718
-msgid "Federation Statistics"
-msgstr "Statystyki Organizacji"
+#: mod/profiles.php:386
+msgid "Homepage"
+msgstr "Strona Główna"
 
-#: mod/admin.php:182
-msgid "Configuration"
-msgstr "Konfiguracja"
+#: mod/profiles.php:390 mod/profiles.php:686
+msgid "Interests"
+msgstr "Zainteresowania"
 
-#: mod/admin.php:183 mod/admin.php:1345
-msgid "Site"
-msgstr "Strona"
+#: mod/profiles.php:394 mod/admin.php:490
+msgid "Address"
+msgstr "Adres"
 
-#: mod/admin.php:184 mod/admin.php:1273 mod/admin.php:1788 mod/admin.php:1804
-msgid "Users"
-msgstr "Użytkownicy"
+#: mod/profiles.php:401 mod/profiles.php:682
+msgid "Location"
+msgstr "Lokalizacja"
 
-#: mod/admin.php:185 mod/admin.php:1904 mod/admin.php:1964 mod/settings.php:86
-msgid "Addons"
-msgstr "Dodatki"
+#: mod/profiles.php:486
+msgid "Profile updated."
+msgstr "Profil zaktualizowany."
 
-#: mod/admin.php:186 mod/admin.php:2173 mod/admin.php:2217
-msgid "Themes"
-msgstr "Wygląd"
+#: mod/profiles.php:564
+msgid " and "
+msgstr " i "
 
-#: mod/admin.php:187 mod/settings.php:64
-msgid "Additional features"
-msgstr "Dodatkowe funkcje"
+#: mod/profiles.php:573
+msgid "public profile"
+msgstr "profil publiczny"
 
-#: 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/profiles.php:576
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$szmienione %2$s  na &ldquo;%3$s&rdquo;"
 
-#: mod/admin.php:189
-msgid "Database"
-msgstr "Baza danych"
+#: mod/profiles.php:577
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr " - Odwiedź %1$s's %2$s"
 
-#: mod/admin.php:190
-msgid "DB updates"
-msgstr "Aktualizacje DB"
+#: 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/admin.php:191 mod/admin.php:753
-msgid "Inspect Queue"
-msgstr "Sprawdź kolejkę"
+#: mod/profiles.php:633
+msgid "Hide contacts and friends:"
+msgstr "Ukryj kontakty i znajomych:"
 
-#: mod/admin.php:192
-msgid "Tools"
-msgstr "Narzędzia"
+#: 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/admin.php:193
-msgid "Contact Blocklist"
-msgstr "Lista zablokowanych kontaktów"
+#: 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/admin.php:194 mod/admin.php:362
-msgid "Server Blocklist"
-msgstr "Lista zablokowanych serwerów"
+#: mod/profiles.php:658
+msgid "Show more profile fields:"
+msgstr "Pokaż więcej pól profilu:"
 
-#: mod/admin.php:195 mod/admin.php:521
-msgid "Delete Item"
-msgstr "Usuń przedmiot"
+#: mod/profiles.php:670
+msgid "Profile Actions"
+msgstr "Akcje profilowe"
 
-#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2291
-msgid "Logs"
-msgstr "Logi"
+#: mod/profiles.php:671
+msgid "Edit Profile Details"
+msgstr "Edytuj profil."
 
-#: mod/admin.php:198 mod/admin.php:2358
-msgid "View Logs"
-msgstr "Zobacz rejestry"
+#: mod/profiles.php:673
+msgid "Change Profile Photo"
+msgstr "Zmień zdjęcie profilowe"
 
-#: mod/admin.php:200
-msgid "Diagnostics"
-msgstr "Diagnostyka"
+#: mod/profiles.php:674
+msgid "View this profile"
+msgstr "Wyświetl ten profil"
 
-#: mod/admin.php:201
-msgid "PHP Info"
-msgstr "Informacje o PHP"
+#: mod/profiles.php:676
+msgid "Create a new profile using these settings"
+msgstr "Stwórz nowy profil wykorzystując te ustawienia"
 
-#: mod/admin.php:202
-msgid "probe address"
-msgstr "adres sondy"
+#: mod/profiles.php:677
+msgid "Clone this profile"
+msgstr "Sklonuj ten profil"
 
-#: mod/admin.php:203
-msgid "check webfinger"
-msgstr "sprawdź webfinger"
+#: mod/profiles.php:678
+msgid "Delete this profile"
+msgstr "Usuń ten profil"
 
-#: mod/admin.php:222 src/Content/Nav.php:217
-msgid "Admin"
-msgstr "Administator"
+#: mod/profiles.php:680
+msgid "Basic information"
+msgstr "Podstawowe informacje"
 
-#: mod/admin.php:223
-msgid "Addon Features"
-msgstr "Funkcje dodatkowe"
+#: mod/profiles.php:681
+msgid "Profile picture"
+msgstr "Zdjęcie profilowe"
 
-#: mod/admin.php:224
-msgid "User registrations waiting for confirmation"
-msgstr "Rejestracje użytkownika czekają na potwierdzenie."
+#: mod/profiles.php:683
+msgid "Preferences"
+msgstr "Preferencje"
 
-#: 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
-msgid "Administration"
-msgstr "Administracja"
+#: mod/profiles.php:684
+msgid "Status information"
+msgstr "Informacje o stanie"
 
-#: mod/admin.php:303
-msgid "Display Terms of Service"
-msgstr "Wyświetl Warunki korzystania z usługi"
+#: mod/profiles.php:685
+msgid "Additional information"
+msgstr "Dodatkowe informacje"
 
-#: 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 "Włącz stronę Warunki świadczenia usług. Jeśli ta opcja jest włączona, link do warunków zostanie dodany do formularza rejestracyjnego i strony z informacjami ogólnymi."
+#: mod/profiles.php:688
+msgid "Relation"
+msgstr "Relacje"
 
-#: mod/admin.php:304
-msgid "Display Privacy Statement"
-msgstr "Wyświetl oświadczenie o prywatności"
+#: mod/profiles.php:692
+msgid "Your Gender:"
+msgstr "Płeć:"
 
-#: mod/admin.php:304
-#, php-format
-msgid ""
-"Show some informations regarding the needed information to operate the node "
-"according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."
-msgstr "Pokaż niektóre informacje dotyczące potrzebnych informacji do obsługi węzła zgodnie np. do <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."
+#: mod/profiles.php:693
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Stan cywilny:"
 
-#: mod/admin.php:305
-msgid "The Terms of Service"
-msgstr "Warunki świadczenia usług"
+#: mod/profiles.php:695
+msgid "Example: fishing photography software"
+msgstr "Przykład: oprogramowanie do fotografowania ryb"
 
-#: mod/admin.php:305
+#: 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 ""
-"Enter the Terms of Service for your node here. You can use BBCode. Headers "
-"of sections should be [h2] and below."
-msgstr "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."
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "To jest Twój <strong> publiczny </strong> profil. <br/><strong>Może </strong> zostać wyświetlony przez każdego kto używa internetu."
 
-#: mod/admin.php:353
-msgid "The blocked domain"
-msgstr "Zablokowana domena"
+#: mod/profiles.php:703
+msgid "Your Full Name:"
+msgstr "Imię i Nazwisko:"
 
-#: mod/admin.php:354 mod/admin.php:372 mod/friendica.php:128
-msgid "Reason for the block"
-msgstr "Powód blokowania"
+#: mod/profiles.php:704
+msgid "Title/Description:"
+msgstr "Tytuł/Opis :"
 
-#: mod/admin.php:354 mod/admin.php:367
-msgid "The reason why you blocked this domain."
-msgstr "Powód zablokowania tej domeny."
+#: mod/profiles.php:707
+msgid "Street Address:"
+msgstr "Ulica:"
 
-#: mod/admin.php:355
-msgid "Delete domain"
-msgstr "Usuń domenę"
+#: mod/profiles.php:708
+msgid "Locality/City:"
+msgstr "Miejscowość/Miasto:"
 
-#: mod/admin.php:355
-msgid "Check to delete this entry from the blocklist"
-msgstr "Zaznacz, aby usunąć ten wpis z listy bloków"
+#: mod/profiles.php:709
+msgid "Region/State:"
+msgstr "Region/Państwo:"
 
-#: 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 "Na tej stronie można zdefiniować czarną listę serwerów ze stowarzyszonej sieci, które nie mogą współdziałać z danym węzłem. Dla wszystkich wprowadzonych domen powinieneś podać powód, dla którego zablokowałeś serwer zdalny."
+#: mod/profiles.php:710
+msgid "Postal/Zip Code:"
+msgstr "Kod Pocztowy:"
 
-#: 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 "Lista zablokowanych serwerów zostanie publicznie udostępniona na stronie /friendica, dzięki czemu użytkownicy i osoby badające problemy z komunikacją mogą łatwo znaleźć przyczynę."
+#: mod/profiles.php:711
+msgid "Country:"
+msgstr "Kraj:"
 
-#: mod/admin.php:365
-msgid "Add new entry to block list"
-msgstr "Dodaj nowy wpis do listy bloków"
+#: mod/profiles.php:715
+msgid "Who: (if applicable)"
+msgstr "Kto: (jeśli dotyczy)"
 
-#: mod/admin.php:366
-msgid "Server Domain"
-msgstr "Domena serwera"
+#: mod/profiles.php:715
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Przykłady: cathy123, Cathy Williams, cathy@example.com"
 
-#: mod/admin.php:366
-msgid ""
-"The domain of the new server to add to the block list. Do not include the "
-"protocol."
-msgstr "Domena nowego serwera do dodania do listy bloków. Nie dołączaj protokołu."
+#: mod/profiles.php:716
+msgid "Since [date]:"
+msgstr "Od [data]:"
 
-#: mod/admin.php:367
-msgid "Block reason"
-msgstr "Powód zablokowania"
+#: mod/profiles.php:718
+msgid "Tell us about yourself..."
+msgstr "Napisz o sobie..."
 
-#: mod/admin.php:368
-msgid "Add Entry"
-msgstr "Dodaj wpis"
+#: mod/profiles.php:719
+msgid "XMPP (Jabber) address:"
+msgstr "Adres XMPP (Jabber):"
 
-#: mod/admin.php:369
-msgid "Save changes to the blocklist"
-msgstr "Zapisz zmiany w Liście zablokowanych"
+#: mod/profiles.php:719
+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ć."
 
-#: mod/admin.php:370
-msgid "Current Entries in the Blocklist"
-msgstr "Aktualne wpisy na liście zablokowanych"
+#: mod/profiles.php:720
+msgid "Homepage URL:"
+msgstr "Adres URL strony domowej:"
 
-#: mod/admin.php:373
-msgid "Delete entry from blocklist"
-msgstr "Usuń wpis z listy zablokowanych"
+#: mod/profiles.php:723
+msgid "Religious Views:"
+msgstr "Poglądy religijne:"
 
-#: mod/admin.php:376
-msgid "Delete entry from blocklist?"
-msgstr "Usunąć wpis z listy zablokowanych?"
+#: mod/profiles.php:724
+msgid "Public Keywords:"
+msgstr "Publiczne słowa kluczowe:"
 
-#: mod/admin.php:402
-msgid "Server added to blocklist."
-msgstr "Serwer dodany do listy zablokowanych."
+#: 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/admin.php:418
-msgid "Site blocklist updated."
-msgstr "Zaktualizowano listę bloków witryny."
+#: mod/profiles.php:725
+msgid "Private Keywords:"
+msgstr "Prywatne słowa kluczowe:"
 
-#: 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/profiles.php:725
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Używany do wyszukiwania profili, niepokazywany innym)"
 
-#: 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/profiles.php:728
+msgid "Musical interests"
+msgstr "Muzyka"
 
-#: mod/admin.php:450
-#, php-format
-msgid "%s contact unblocked"
-msgid_plural "%s contacts unblocked"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+#: mod/profiles.php:729
+msgid "Books, literature"
+msgstr "Literatura"
 
-#: mod/admin.php:479
-msgid "Remote Contact Blocklist"
-msgstr "Lista zablokowanych kontaktów zdalnych"
+#: mod/profiles.php:730
+msgid "Television"
+msgstr "Telewizja"
 
-#: mod/admin.php:480
-msgid ""
-"This page allows you to prevent any message from a remote contact to reach "
-"your node."
-msgstr "Ta strona pozwala zapobiec wysyłaniu do węzła wiadomości od kontaktu zdalnego."
+#: mod/profiles.php:731
+msgid "Film/dance/culture/entertainment"
+msgstr "Film/taniec/kultura/rozrywka"
 
-#: mod/admin.php:481
-msgid "Block Remote Contact"
-msgstr "Zablokuj kontakt zdalny"
+#: mod/profiles.php:732
+msgid "Hobbies/Interests"
+msgstr "Zainteresowania"
 
-#: mod/admin.php:482 mod/admin.php:1790
-msgid "select all"
-msgstr "Zaznacz wszystko"
+#: mod/profiles.php:733
+msgid "Love/romance"
+msgstr "Miłość/romans"
 
-#: mod/admin.php:483
-msgid "select none"
-msgstr "wybierz brak"
+#: mod/profiles.php:734
+msgid "Work/employment"
+msgstr "Praca/zatrudnienie"
 
-#: mod/admin.php:486
-msgid "No remote contact is blocked from this node."
-msgstr "Z tego węzła nie jest blokowany kontakt zdalny."
+#: mod/profiles.php:735
+msgid "School/education"
+msgstr "Szkoła/edukacja"
 
-#: mod/admin.php:488
-msgid "Blocked Remote Contacts"
-msgstr "Zablokowane kontakty zdalne"
+#: mod/profiles.php:736
+msgid "Contact information and Social Networks"
+msgstr "Dane kontaktowe i Sieci społecznościowe"
 
-#: mod/admin.php:489
-msgid "Block New Remote Contact"
-msgstr "Zablokuj nowy kontakt zdalny"
+#: mod/profiles.php:776
+msgid "Edit/Manage Profiles"
+msgstr "Edycja/Zarządzanie profilami"
 
-#: mod/admin.php:490
-msgid "Photo"
-msgstr "Zdjęcie"
+#: 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/admin.php:490 mod/profiles.php:394
-msgid "Address"
-msgstr "Adres"
+#: 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/admin.php:498
-#, php-format
-msgid "%s total blocked contact"
-msgid_plural "%s total blocked contacts"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+#: mod/events.php:392 mod/cal.php:275
+msgid "View"
+msgstr "Widok"
 
-#: mod/admin.php:500
-msgid "URL of the remote contact to block."
-msgstr "Adres URL kontaktu zdalnego do zablokowania."
+#: mod/events.php:393
+msgid "Create New Event"
+msgstr "Stwórz nowe wydarzenie"
 
-#: mod/admin.php:522
-msgid "Delete this Item"
-msgstr "Usuń ten przedmiot"
+#: mod/events.php:394 mod/cal.php:276
+msgid "Previous"
+msgstr "Poprzedni"
 
-#: 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 "Na tej stronie możesz usunąć przedmiot ze swojego węzła. Jeśli element jest publikowaniem na najwyższym poziomie, cały wątek zostanie usunięty."
+#: mod/events.php:395 mod/cal.php:277 mod/install.php:209
+msgid "Next"
+msgstr "Następny"
 
-#: 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 "Musisz znać identyfikator GUID tego przedmiotu. Możesz go znaleźć np. patrząc na wyświetlany adres URL. Ostatnia część http://example.com/display/123456 to GUID, tutaj 123456."
+#: mod/events.php:404 mod/cal.php:284
+msgid "list"
+msgstr "lista"
 
-#: mod/admin.php:525
-msgid "GUID"
-msgstr "GUID"
+#: mod/events.php:506
+msgid "Event details"
+msgstr "Szczegóły wydarzenia"
 
-#: mod/admin.php:525
-msgid "The GUID of the item you want to delete."
-msgstr "Identyfikator elementu GUID, który chcesz usunąć."
+#: mod/events.php:507
+msgid "Starting date and Title are required."
+msgstr "Data rozpoczęcia i tytuł są wymagane."
 
-#: mod/admin.php:564
-msgid "Item marked for deletion."
-msgstr "Przedmiot oznaczony do usunięcia."
+#: mod/events.php:508 mod/events.php:509
+msgid "Event Starts:"
+msgstr "Rozpoczęcie wydarzenia:"
 
-#: mod/admin.php:635
-msgid "unknown"
-msgstr "nieznany"
+#: 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/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 "Ta strona zawiera kilka numerów do znanej części federacyjnej sieci społecznościowej, do której należy Twój węzeł Friendica. Liczby te nie są kompletne, ale odzwierciedlają tylko część sieci, o której wie twój węzeł."
+#: mod/events.php:512 mod/events.php:513
+msgid "Event Finishes:"
+msgstr "Zakończenie wydarzenia:"
 
-#: mod/admin.php:712
-msgid ""
-"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
-"will improve the data displayed here."
-msgstr "Funkcja <em>Katalog kontaktów automatycznie odkrytych</em> nie jest włączona, poprawi ona wyświetlane tutaj dane."
+#: mod/events.php:514 mod/events.php:527
+msgid "Adjust for viewer timezone"
+msgstr "Dopasuj dla strefy czasowej widza"
 
-#: mod/admin.php:724
-#, php-format
-msgid ""
-"Currently this node is aware of %d nodes with %d registered users from the "
-"following platforms:"
-msgstr "Obecnie węzeł ten jest świadomy %dwęzłów z %d zarejestrowanymi użytkownikami z następujących platform:"
+#: mod/events.php:516
+msgid "Description:"
+msgstr "Opis:"
 
-#: mod/admin.php:755
-msgid "ID"
-msgstr "ID"
+#: mod/events.php:520 mod/events.php:522
+msgid "Title:"
+msgstr "Tytuł:"
 
-#: mod/admin.php:756
-msgid "Recipient Name"
-msgstr "Nazwa odbiorcy"
+#: mod/events.php:523 mod/events.php:524
+msgid "Share this event"
+msgstr "Udostępnij te wydarzenie"
 
-#: mod/admin.php:757
-msgid "Recipient Profile"
-msgstr "Profil odbiorcy"
+#: mod/events.php:552
+msgid "Failed to remove event"
+msgstr "Nie udało się usunąć wydarzenia"
 
-#: 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/events.php:554
+msgid "Event removed"
+msgstr "Wydarzenie zostało usunięte"
 
-#: mod/admin.php:759
-msgid "Created"
-msgstr "Utwórz"
+#: mod/notify.php:77
+msgid "No more system notifications."
+msgstr "Nie ma więcej powiadomień systemowych."
 
-#: mod/admin.php:760
-msgid "Last Tried"
-msgstr "Ostatnia wypróbowana"
+#: mod/notify.php:81 mod/notifications.php:113
+msgid "System Notifications"
+msgstr "Powiadomienia systemowe"
 
-#: 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 "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."
+#: 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/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 <a href=\"%s\">here</a> for a guide that may be helpful "
-"converting the table engines. You may also use the command <tt>php "
-"bin/console.php dbstructure toinnodb</tt> of your Friendica installation for"
-" an automatic conversion.<br />"
-msgstr "Twoja baza danych nadal działa z tabelami MyISAM. Powinieneś zmienić typ silnika na InnoDB. Ponieważ Friendica będzie używać funkcji związanych z InnoDB tylko w przyszłości, powinieneś to zmienić! Zobacz <a href=\"%s\">tutaj</a> przewodnik, który może być pomocny w konwersji silników stołowych. Możesz także użyć polecenia <tt>php bin/console.php dbstructure toinnodb</tt> instalacji Friendica do automatycznej konwersji.<br />"
+#: mod/fsuggest.php:72
+msgid "Friend suggestion sent."
+msgstr "Wysłana propozycja dodania do znajomych."
 
-#: mod/admin.php:792
+#: mod/fsuggest.php:101
+msgid "Suggest Friends"
+msgstr "Proponuję znajomych"
+
+#: mod/fsuggest.php:103
 #, 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 "Dostępna jest nowa wersja aplikacji Friendica. Twoja aktualna wersja to %1$s wyższa wersja to %2$s"
+msgid "Suggest a friend for %s"
+msgstr "Zaproponuj znajomych dla %s"
 
-#: 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 "Aktualizacja bazy danych nie powiodła się. Uruchom polecenie \"php bin/console.php dbstructure update\" z wiersza poleceń i sprawdź błędy, które mogą się pojawić."
+#: mod/attach.php:15
+msgid "Item not available."
+msgstr "Element niedostępny."
 
-#: mod/admin.php:808
-msgid "The worker was never executed. Please check your database structure!"
-msgstr "Pracownik nigdy nie został stracony. Sprawdź swoją strukturę bazy danych!"
+#: mod/attach.php:25
+msgid "Item was not found."
+msgstr "Element nie znaleziony."
 
-#: 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 "Ostatnie wykonanie robota było w %s UTC. To jest starsze niż jedna godzina. Sprawdź ustawienia crontab."
+#: mod/allfriends.php:51
+msgid "No friends to display."
+msgstr "Brak znajomych do wyświetlenia"
 
-#: mod/admin.php:816 mod/admin.php:1739
-msgid "Normal Account"
-msgstr "Konto normalne"
+#: mod/viewcontacts.php:87
+msgid "No contacts."
+msgstr "brak kontaktów"
 
-#: mod/admin.php:817 mod/admin.php:1740
-msgid "Automatic Follower Account"
-msgstr "Automatyczne konto obserwatora"
+#: 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/admin.php:818 mod/admin.php:1741
-msgid "Public Forum Account"
-msgstr "Publiczne konto na forum"
+#: mod/ostatus_subscribe.php:21
+msgid "Subscribing to OStatus contacts"
+msgstr "Subskrybowanie kontaktów OStatus"
 
-#: mod/admin.php:819 mod/admin.php:1742
-msgid "Automatic Friend Account"
-msgstr "Automatyczny przyjaciel konta"
+#: mod/ostatus_subscribe.php:33
+msgid "No contact provided."
+msgstr "Brak kontaktu."
 
-#: mod/admin.php:820
-msgid "Blog Account"
-msgstr "Konto Bloga"
+#: mod/ostatus_subscribe.php:40
+msgid "Couldn't fetch information for contact."
+msgstr "Nie można pobrać informacji o kontakcie."
 
-#: mod/admin.php:821
-msgid "Private Forum Account"
-msgstr "Prywatne konto na forum"
+#: mod/ostatus_subscribe.php:50
+msgid "Couldn't fetch friends for contact."
+msgstr "Nie można pobrać znajomych do kontaktu."
 
-#: mod/admin.php:843
-msgid "Message queues"
-msgstr "Wiadomości"
+#: mod/ostatus_subscribe.php:78
+msgid "success"
+msgstr "powodzenie"
 
-#: mod/admin.php:849
-msgid "Summary"
-msgstr "Podsumowanie"
+#: mod/ostatus_subscribe.php:80
+msgid "failed"
+msgstr "nie powiodło się"
 
-#: mod/admin.php:851
-msgid "Registered users"
-msgstr "Zarejestrowani użytkownicy"
+#: mod/api.php:85 mod/api.php:107
+msgid "Authorize application connection"
+msgstr "Autoryzacja połączenia aplikacji"
 
-#: mod/admin.php:853
-msgid "Pending registrations"
-msgstr "Rejestracje w toku."
+#: 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/admin.php:854
-msgid "Version"
-msgstr "Wersja"
+#: mod/api.php:95
+msgid "Please login to continue."
+msgstr "Zaloguj się aby kontynuować."
 
-#: mod/admin.php:859
-msgid "Active addons"
-msgstr "Aktywne dodatki"
+#: 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/admin.php:890
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr "Nie można zanalizować podstawowego adresu URL. Musi mieć co najmniej <scheme>: //<domain>"
+#: mod/settings.php:50 mod/photos.php:126
+msgid "everybody"
+msgstr "wszyscy"
 
-#: mod/admin.php:1209
-msgid "Site settings updated."
-msgstr "Ustawienia strony zaktualizowane"
+#: mod/settings.php:55
+msgid "Account"
+msgstr "Konto"
 
-#: mod/admin.php:1236 mod/settings.php:905
-msgid "No special theme for mobile devices"
-msgstr "Brak specialnego motywu dla urządzeń mobilnych"
+#: mod/settings.php:64 mod/admin.php:187
+msgid "Additional features"
+msgstr "Dodatkowe funkcje"
 
-#: mod/admin.php:1265
-msgid "No community page"
-msgstr "Brak strony społeczności"
+#: mod/settings.php:72
+msgid "Display"
+msgstr "Wyświetlanie"
 
-#: mod/admin.php:1266
-msgid "Public postings from users of this site"
-msgstr "Publikacje publiczne od użytkowników tej strony"
+#: mod/settings.php:79 mod/settings.php:842
+msgid "Social Networks"
+msgstr "Portale społecznościowe"
 
-#: mod/admin.php:1267
-msgid "Public postings from the federated network"
-msgstr "Publikacje wpisy ze sfederowanej sieci"
+#: mod/settings.php:86 mod/admin.php:185 mod/admin.php:1918 mod/admin.php:1978
+msgid "Addons"
+msgstr "Dodatki"
 
-#: mod/admin.php:1268
-msgid "Public postings from local users and the federated network"
-msgstr "Publikacje publiczne od użytkowników lokalnych i sieci federacyjnej"
+#: mod/settings.php:100
+msgid "Connected apps"
+msgstr "Powiązane aplikacje"
 
-#: mod/admin.php:1274
-msgid "Users, Global Contacts"
-msgstr "Użytkownicy, kontakty globalne"
+#: mod/settings.php:107 mod/uexport.php:52
+msgid "Export personal data"
+msgstr "Eksportuje dane personalne"
 
-#: mod/admin.php:1275
-msgid "Users, Global Contacts/fallback"
-msgstr "Użytkownicy, kontakty globalne/awaryjne"
+#: mod/settings.php:114
+msgid "Remove account"
+msgstr "Usuń konto"
 
-#: mod/admin.php:1279
-msgid "One month"
-msgstr "Miesiąc"
+#: mod/settings.php:168
+msgid "Missing some important data!"
+msgstr "Brakuje ważnych danych!"
 
-#: mod/admin.php:1280
-msgid "Three months"
-msgstr "Trzy miesiące"
+#: mod/settings.php:170 mod/settings.php:701 mod/contacts.php:826
+msgid "Update"
+msgstr "Zaktualizuj"
 
-#: mod/admin.php:1281
-msgid "Half a year"
-msgstr "Pół roku"
+#: 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/admin.php:1282
-msgid "One year"
-msgstr "Rok"
+#: mod/settings.php:284
+msgid "Email settings updated."
+msgstr "Zaktualizowano ustawienia email."
 
-#: mod/admin.php:1287
-msgid "Multi user instance"
-msgstr "Tryb wielu użytkowników"
+#: mod/settings.php:300
+msgid "Features updated"
+msgstr "Funkcje zaktualizowane"
 
-#: mod/admin.php:1310
-msgid "Closed"
-msgstr "Zamknięta"
+#: 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/admin.php:1311
-msgid "Requires approval"
-msgstr "Wymagane zatwierdzenie."
+#: mod/settings.php:389
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Puste hasła są niedozwolone. Hasło niezmienione."
 
-#: mod/admin.php:1312
-msgid "Open"
-msgstr "Otwarte"
+#: mod/settings.php:400
+msgid "Wrong password."
+msgstr "Złe hasło."
 
-#: mod/admin.php:1316
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Brak SSL , linki będą śledzić stan SSL ."
+#: mod/settings.php:496
+msgid " Please use a shorter name."
+msgstr "Proszę użyć krótszej nazwy."
 
-#: mod/admin.php:1317
-msgid "Force all links to use SSL"
-msgstr "Wymuś by linki używały SSL."
+#: mod/settings.php:499
+msgid " Name too short."
+msgstr "Za krótka nazwa."
 
-#: mod/admin.php:1318
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Wewnętrzne Certyfikaty , użyj SSL tylko dla linków lokalnych . "
+#: mod/settings.php:507
+msgid "Wrong Password"
+msgstr "Złe hasło"
 
-#: mod/admin.php:1322
-msgid "Don't check"
-msgstr "Nie sprawdzaj"
+#: mod/settings.php:512
+msgid "Invalid email."
+msgstr "Niepoprawny e-mail."
 
-#: mod/admin.php:1323
-msgid "check the stable version"
-msgstr "sprawdź wersję stabilną"
+#: mod/settings.php:519
+msgid "Cannot change to that email."
+msgstr "Nie można zmienić tego e-maila."
 
-#: mod/admin.php:1324
-msgid "check the development version"
-msgstr "sprawdź wersję rozwojową"
+#: 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/admin.php:1347
-msgid "Republish users to directory"
-msgstr "Ponownie opublikuj użytkowników w katalogu"
+#: 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/admin.php:1348 mod/register.php:264
-msgid "Registration"
-msgstr "Rejestracja"
+#: mod/settings.php:615
+msgid "Settings updated."
+msgstr "Zaktualizowano ustawienia."
 
-#: mod/admin.php:1349
-msgid "File upload"
-msgstr "Plik załadowano"
+#: mod/settings.php:674 mod/settings.php:700 mod/settings.php:736
+msgid "Add application"
+msgstr "Dodaj aplikację"
 
-#: mod/admin.php:1350
-msgid "Policies"
-msgstr "zasady"
+#: 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/admin.php:1352
-msgid "Auto Discovered Contact Directory"
-msgstr "Katalog kontaktów automatycznie odkrytych"
+#: 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/admin.php:1353
-msgid "Performance"
-msgstr "Ustawienia"
+#: mod/settings.php:678 mod/settings.php:704
+msgid "Consumer Key"
+msgstr "Klucz klienta"
 
-#: mod/admin.php:1354
-msgid "Worker"
-msgstr "Pracownik"
+#: mod/settings.php:679 mod/settings.php:705
+msgid "Consumer Secret"
+msgstr "Tajny klucz klienta"
 
-#: mod/admin.php:1355
-msgid "Message Relay"
-msgstr "Przekazywanie wiadomości"
+#: mod/settings.php:680 mod/settings.php:706
+msgid "Redirect"
+msgstr "Przekierowanie"
 
-#: mod/admin.php:1356
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Relokacja - OSTRZEŻENIE: funkcja zaawansowana. Może spowodować, że serwer będzie nieosiągalny."
+#: mod/settings.php:681 mod/settings.php:707
+msgid "Icon url"
+msgstr "Adres Url ikony"
 
-#: mod/admin.php:1359
-msgid "Site name"
-msgstr "Nazwa strony"
+#: mod/settings.php:692
+msgid "You can't edit this application."
+msgstr "Nie możesz edytować tej aplikacji."
 
-#: mod/admin.php:1360
-msgid "Host name"
-msgstr "Nazwa hosta"
+#: mod/settings.php:735
+msgid "Connected Apps"
+msgstr "Powiązane aplikacje"
 
-#: mod/admin.php:1361
-msgid "Sender Email"
-msgstr "E-mail nadawcy"
+#: mod/settings.php:739
+msgid "Client key starts with"
+msgstr "Klucz klienta zaczyna się od"
 
-#: mod/admin.php:1361
-msgid ""
-"The email address your server shall use to send notification emails from."
-msgstr "Adres e-mail używany przez Twój serwer do wysyłania e-maili z powiadomieniami."
+#: mod/settings.php:740
+msgid "No name"
+msgstr "Bez nazwy"
 
-#: mod/admin.php:1362
-msgid "Banner/Logo"
-msgstr "Logo"
+#: mod/settings.php:741
+msgid "Remove authorization"
+msgstr "Odwołaj upoważnienie"
 
-#: mod/admin.php:1363
-msgid "Shortcut icon"
-msgstr "Ikona skrótu"
+#: mod/settings.php:752
+msgid "No Addon settings configured"
+msgstr "Brak skonfigurowanych ustawień Dodatków"
 
-#: mod/admin.php:1363
-msgid "Link to an icon that will be used for browsers."
-msgstr "Link do ikony, która będzie używana w przeglądarkach."
+#: mod/settings.php:761
+msgid "Addon Settings"
+msgstr "Ustawienia Dodatków"
 
-#: mod/admin.php:1364
-msgid "Touch icon"
-msgstr "Dołącz ikonę"
+#: mod/settings.php:775 mod/admin.php:2442 mod/admin.php:2443
+msgid "Off"
+msgstr "Wyłącz"
 
-#: mod/admin.php:1364
-msgid "Link to an icon that will be used for tablets and mobiles."
-msgstr "Link do ikony, która będzie używana w tabletach i telefonach komórkowych."
+#: mod/settings.php:775 mod/admin.php:2442 mod/admin.php:2443
+msgid "On"
+msgstr "Włącz"
 
-#: mod/admin.php:1365
-msgid "Additional Info"
-msgstr "Dodatkowe informacje"
+#: mod/settings.php:782
+msgid "Additional Features"
+msgstr "Dodatkowe funkcje"
 
-#: mod/admin.php:1365
-#, php-format
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/servers."
-msgstr "W przypadku serwerów publicznych: możesz tu dodać dodatkowe informacje, które będą wymienione na %s/servers."
+#: mod/settings.php:805 mod/settings.php:806
+msgid "enabled"
+msgstr "włączony"
 
-#: mod/admin.php:1366
-msgid "System language"
-msgstr "Język systemu"
+#: mod/settings.php:805 mod/settings.php:806
+msgid "disabled"
+msgstr "wyłączony"
 
-#: mod/admin.php:1367
-msgid "System theme"
-msgstr "Motyw systemowy"
+#: 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/admin.php:1367
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Domyślny motyw systemu - może być nadpisany przez profil użytkownika  <a href='#' id='cnftheme'>zmień ustawienia motywów</a>"
+#: mod/settings.php:806
+msgid "GNU Social (OStatus)"
+msgstr "GNU Społeczny (OStatus)"
 
-#: mod/admin.php:1368
-msgid "Mobile system theme"
-msgstr "Motyw systemu mobilnego"
+#: 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/admin.php:1368
-msgid "Theme for mobile devices"
-msgstr "Motyw na urządzenia mobilne"
+#: mod/settings.php:847
+msgid "General Social Media Settings"
+msgstr "Ogólne ustawienia mediów społecznościowych"
 
-#: mod/admin.php:1369
-msgid "SSL link policy"
-msgstr "polityka SSL"
+#: mod/settings.php:848
+msgid "Disable Content Warning"
+msgstr "Wyłącz ostrzeżenie o treści"
 
-#: mod/admin.php:1369
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Określa kiedy generowane linki powinny używać wymuszonego SSl."
+#: 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/admin.php:1370
-msgid "Force SSL"
-msgstr "Wymuś SSL"
+#: mod/settings.php:849
+msgid "Disable intelligent shortening"
+msgstr "Wyłącz inteligentne skracanie"
 
-#: mod/admin.php:1370
+#: mod/settings.php:849
 msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
-" to endless loops."
-msgstr "Wymuszaj wszystkie żądania SSL bez SSL - Uwaga: w niektórych systemach może to prowadzić do niekończących się pętli."
+"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/admin.php:1371
-msgid "Hide help entry from navigation menu"
-msgstr "Wyłącz pomoc w menu nawigacyjnym "
+#: 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/admin.php:1371
+#: mod/settings.php:850
 msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr "Chowa pozycje menu dla stron pomocy ze strony nawigacyjnej. Możesz nadal ją wywołać poprzez komendę /help."
-
-#: mod/admin.php:1372
-msgid "Single user instance"
-msgstr "Tryb pojedynczego użytkownika"
+"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/admin.php:1372
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr "Ustawia tryb dla wielu użytkowników lub pojedynczego użytkownika dla nazwanego użytkownika"
+#: mod/settings.php:851
+msgid "Default group for OStatus contacts"
+msgstr "Domyślna grupa dla kontaktów OStatus"
 
-#: mod/admin.php:1373
-msgid "Maximum image size"
-msgstr "Maksymalny rozmiar zdjęcia"
+#: mod/settings.php:852
+msgid "Your legacy GNU Social account"
+msgstr "Twoje starsze konto społecznościowe GNU"
 
-#: mod/admin.php:1373
+#: mod/settings.php:852
 msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Maksymalny rozmiar w bitach dla wczytywanego obrazu . Domyślnie jest to  0 , co oznacza bez limitu ."
+"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/admin.php:1374
-msgid "Maximum image length"
-msgstr "Maksymalna długość obrazu"
+#: mod/settings.php:855
+msgid "Repair OStatus subscriptions"
+msgstr "Napraw subskrypcje OStatus"
 
-#: mod/admin.php:1374
+#: mod/settings.php:859
+msgid "Email/Mailbox Setup"
+msgstr "Ustawienia  emaila/skrzynki mailowej"
+
+#: mod/settings.php:860
 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."
+"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/admin.php:1375
-msgid "JPEG image quality"
-msgstr "jakość obrazu JPEG"
+#: mod/settings.php:861
+msgid "Last successful email check:"
+msgstr "Ostatni sprawdzony e-mail:"
 
-#: 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 . "
+#: mod/settings.php:863
+msgid "IMAP server name:"
+msgstr "Nazwa serwera IMAP:"
 
-#: mod/admin.php:1377
-msgid "Register policy"
-msgstr "Zasady rejestracji"
+#: mod/settings.php:864
+msgid "IMAP port:"
+msgstr "Port IMAP:"
 
-#: mod/admin.php:1378
-msgid "Maximum Daily Registrations"
-msgstr "Maksymalna dzienna rejestracja"
+#: mod/settings.php:865
+msgid "Security:"
+msgstr "Ochrona:"
 
-#: 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 "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."
+#: mod/settings.php:865 mod/settings.php:870
+msgid "None"
+msgstr "Brak"
 
-#: mod/admin.php:1379
-msgid "Register text"
-msgstr "Zarejestruj tekst"
+#: mod/settings.php:866
+msgid "Email login name:"
+msgstr "Nazwa logowania e-mail:"
 
-#: mod/admin.php:1379
-msgid ""
-"Will be displayed prominently on the registration page. You can use BBCode "
-"here."
-msgstr "Będą wyświetlane w widocznym miejscu na stronie rejestracji. Możesz użyć BBCode tutaj."
+#: mod/settings.php:867
+msgid "Email password:"
+msgstr "E-mail hasło:"
 
-#: mod/admin.php:1380
-msgid "Accounts abandoned after x days"
-msgstr "Konto porzucone od x dni."
+#: mod/settings.php:868
+msgid "Reply-to address:"
+msgstr "Adres zwrotny:"
 
-#: mod/admin.php:1380
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Nie będzie marnować zasobów systemu wypytując zewnętrzne strony o opuszczone konta. Ustaw 0 dla braku limitu czasu ."
+#: mod/settings.php:869
+msgid "Send public posts to all email contacts:"
+msgstr "Wyślij publiczny post do wszystkich kontaktów e-mail"
 
-#: mod/admin.php:1381
-msgid "Allowed friend domains"
-msgstr "Dozwolone domeny przyjaciół"
+#: mod/settings.php:870
+msgid "Action after import:"
+msgstr "Akcja po zaimportowaniu:"
 
-#: 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 "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. "
+#: mod/settings.php:870
+msgid "Move to folder"
+msgstr "Przenieś do folderu"
 
-#: mod/admin.php:1382
-msgid "Allowed email domains"
-msgstr "Dozwolone domeny e-mailowe"
+#: mod/settings.php:871
+msgid "Move to folder:"
+msgstr "Przenieś do folderu:"
 
-#: 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 "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"
+#: mod/settings.php:905 mod/admin.php:1236
+msgid "No special theme for mobile devices"
+msgstr "Brak specialnego motywu dla urządzeń mobilnych"
 
-#: mod/admin.php:1383
-msgid "No OEmbed rich content"
-msgstr "Brak treści multimedialnych ze znaczkiem HTML"
+#: mod/settings.php:914
+#, php-format
+msgid "%s - (Unsupported)"
+msgstr "%s - (Nieobsługiwane)"
 
-#: mod/admin.php:1383
-msgid ""
-"Don't show the rich content (e.g. embedded PDF), except from the domains "
-"listed below."
-msgstr "Nie wyświetlaj zasobów treści (np. osadzonego pliku PDF), z wyjątkiem domen wymienionych poniżej."
+#: mod/settings.php:916
+#, php-format
+msgid "%s - (Experimental)"
+msgstr "%s- (Eksperymentalne)"
 
-#: mod/admin.php:1384
-msgid "Allowed OEmbed domains"
-msgstr "Dozwolone domeny OEmbed"
+#: mod/settings.php:959
+msgid "Display Settings"
+msgstr "Wyświetl ustawienia"
 
-#: mod/admin.php:1384
-msgid ""
-"Comma separated list of domains which oembed content is allowed to be "
-"displayed. Wildcards are accepted."
-msgstr "Rozdzielana przecinkami lista domen, w których wyświetlana jest treść, może być wyświetlana. Symbole wieloznaczne są akceptowane."
+#: mod/settings.php:965 mod/settings.php:989
+msgid "Display Theme:"
+msgstr "Wyświetl motyw:"
 
-#: mod/admin.php:1385
-msgid "Block public"
-msgstr "Blokuj publicznie"
+#: mod/settings.php:966
+msgid "Mobile Theme:"
+msgstr "Motyw dla urządzeń mobilnych:"
 
-#: mod/admin.php:1385
+#: mod/settings.php:967
+msgid "Suppress warning of insecure networks"
+msgstr "Ukryj ostrzeżenie przed niebezpiecznymi sieciami"
+
+#: mod/settings.php:967
 msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Zaznacz, aby zablokować publiczny dostęp do wszystkich publicznych stron prywatnych w tej witrynie, chyba że jesteś zalogowany."
+"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/admin.php:1386
-msgid "Force publish"
-msgstr "Wymuś publikację"
+#: mod/settings.php:968
+msgid "Update browser every xx seconds"
+msgstr "Odświeżaj stronę co xx sekund"
 
-#: mod/admin.php:1386
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Zaznacz, aby wymusić umieszczenie wszystkich profili w tej witrynie w katalogu witryny."
+#: 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/admin.php:1387
-msgid "Global directory URL"
-msgstr "Globalny adres URL katalogu"
+#: mod/settings.php:969
+msgid "Number of items to display per page:"
+msgstr "Liczba elementów do wyświetlenia na stronie:"
 
-#: 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 "Adres URL do katalogu globalnego. Jeśli nie zostanie to ustawione, katalog globalny jest całkowicie niedostępny dla aplikacji."
+#: mod/settings.php:969 mod/settings.php:970
+msgid "Maximum of 100 items"
+msgstr "Maksymalnie 100 elementów"
 
-#: mod/admin.php:1388
-msgid "Private posts by default for new users"
-msgstr "Prywatne posty domyślnie dla nowych użytkownikó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/admin.php:1388
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "Ustaw domyślne uprawnienia do publikowania dla wszystkich nowych członków na domyślną grupę prywatności, a nie publiczną."
+#: mod/settings.php:971
+msgid "Don't show emoticons"
+msgstr "Nie pokazuj emotikonek"
 
-#: mod/admin.php:1389
-msgid "Don't include post content in email notifications"
-msgstr "Nie wklejaj zawartości postu do powiadomienia o poczcie"
+#: mod/settings.php:972
+msgid "Calendar"
+msgstr "Kalendarz"
 
-#: 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 "W celu ochrony prywatności, nie włączaj zawartości postu/komentarza/wiadomości prywatnej/etc. do powiadomień w wiadomościach mailowych wysyłanych z tej strony."
+#: mod/settings.php:973
+msgid "Beginning of week:"
+msgstr "Początek tygodnia:"
 
-#: mod/admin.php:1390
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Nie zezwalaj na publiczny dostęp do dodatkowych wtyczek wyszczególnionych w menu aplikacji."
+#: mod/settings.php:974
+msgid "Don't show notices"
+msgstr "Nie pokazuj powiadomień"
 
-#: mod/admin.php:1390
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr "Zaznaczenie tego pola spowoduje ograniczenie dodatków wymienionych w menu aplikacji tylko dla członków."
+#: mod/settings.php:975
+msgid "Infinite scroll"
+msgstr "Nieskończone przewijanie"
 
-#: mod/admin.php:1391
-msgid "Don't embed private images in posts"
-msgstr "Nie umieszczaj prywatnych zdjęć w postach"
+#: 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/admin.php:1391
+#: mod/settings.php:976
 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 "Nie zastępuj lokalnie hostowanych zdjęć prywatnych we wpisach za pomocą osadzonej kopii obrazu. Oznacza to, że osoby, które otrzymują posty zawierające prywatne zdjęcia, będą musiały uwierzytelnić i wczytać każdy obraz, co może trochę potrwać."
+"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/admin.php:1392
-msgid "Allow Users to set remote_self"
-msgstr "Zezwól użytkownikom na ustawienie remote_self"
+#: mod/settings.php:977
+msgid "Bandwith Saver Mode"
+msgstr "Tryb oszczędzania przepustowości"
 
-#: mod/admin.php:1392
+#: mod/settings.php:977
 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 "Po sprawdzeniu tego każdy użytkownik może zaznaczyć każdy kontakt jako zdalny w oknie dialogowym kontaktu naprawczego. Ustawienie tej flagi na kontakcie powoduje dublowanie każdego wpisu tego kontaktu w strumieniu użytkowników."
+"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/admin.php:1393
-msgid "Block multiple registrations"
-msgstr "Zablokuj wielokrotną rejestrację"
+#: mod/settings.php:978
+msgid "Smart Threading"
+msgstr "Inteligentne gwintowanie"
 
-#: mod/admin.php:1393
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Nie pozwalaj użytkownikom na zakładanie dodatkowych kont do używania jako strony. "
+#: 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/admin.php:1394
-msgid "OpenID support"
-msgstr "Wsparcie OpenID"
+#: mod/settings.php:980
+msgid "General Theme Settings"
+msgstr "Ogólne ustawienia motywu"
 
-#: mod/admin.php:1394
-msgid "OpenID support for registration and logins."
-msgstr "Obsługa OpenID do rejestracji i logowania."
+#: mod/settings.php:981
+msgid "Custom Theme Settings"
+msgstr "Niestandardowe ustawienia motywów"
 
-#: mod/admin.php:1395
-msgid "Fullname check"
-msgstr "Sprawdzanie pełnej nazwy"
+#: mod/settings.php:982
+msgid "Content Settings"
+msgstr "Ustawienia zawartości"
 
-#: mod/admin.php:1395
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr "Aby ograniczyć spam, wymagaj by użytkownik przy rejestracji w polu Imię i nazwisko użył spacji pomiędzy imieniem i nazwiskiem."
+#: 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/admin.php:1396
-msgid "Community pages for visitors"
-msgstr "Strony społecznościowe dla odwiedzających"
+#: 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/admin.php:1396
-msgid ""
-"Which community pages should be available for visitors. Local users always "
-"see both pages."
-msgstr "Które strony społeczności powinny być dostępne dla odwiedzających. Lokalni użytkownicy zawsze widzą obie strony."
+#: mod/settings.php:1044
+msgid "Account Types"
+msgstr "Rodzaje kont"
 
-#: mod/admin.php:1397
-msgid "Posts per user on community page"
-msgstr "Lista postów użytkownika na stronie społeczności"
+#: mod/settings.php:1045
+msgid "Personal Page Subtypes"
+msgstr "Podtypy osobistych stron"
 
-#: mod/admin.php:1397
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
-msgstr "Maksymalna liczba postów na użytkownika na stronie społeczności. (Nie dotyczy 'społeczności globalnej')"
+#: mod/settings.php:1046
+msgid "Community Forum Subtypes"
+msgstr "Podtypy społeczności forum"
 
-#: mod/admin.php:1398
-msgid "Enable OStatus support"
-msgstr "Włącz wsparcie OStatus"
+#: mod/settings.php:1053 mod/admin.php:1746
+msgid "Personal Page"
+msgstr "Strona osobista"
 
-#: 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 "Zapewnij kompatybilność z OStatus (StatusNet, GNU Social itp.). Cała komunikacja w stanie OStatus jest jawna, dlatego ostrzeżenia o prywatności będą czasami wyświetlane."
+#: mod/settings.php:1054
+msgid "Account for a personal profile."
+msgstr "Konto dla profilu osobistego."
 
-#: mod/admin.php:1399
-msgid "Only import OStatus threads from our contacts"
-msgstr "Importuj wątki OStatus tylko z naszych kontaktów"
+#: mod/settings.php:1057 mod/admin.php:1747
+msgid "Organisation Page"
+msgstr "Strona Organizacji"
 
-#: mod/admin.php:1399
+#: mod/settings.php:1058
 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 "Normalnie importujemy każdą treść z naszych kontaktów OStatus. W tej opcji przechowujemy tylko wątki uruchomione przez kontakt znany w naszym systemie."
+"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/admin.php:1400
-msgid "OStatus support can only be enabled if threading is enabled."
-msgstr "Obsługa OStatus może być włączona tylko wtedy, gdy włączone jest wątkowanie."
+#: mod/settings.php:1061 mod/admin.php:1748
+msgid "News Page"
+msgstr "Strona Wiadomości"
 
-#: mod/admin.php:1402
+#: mod/settings.php:1062
 msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub"
-" directory."
-msgstr "Obsługa Diaspory nie może być włączona, ponieważ Friendica została zainstalowana w podkatalogu."
+"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/admin.php:1403
-msgid "Enable Diaspora support"
-msgstr "Włączyć obsługę Diaspory"
+#: mod/settings.php:1065 mod/admin.php:1749
+msgid "Community Forum"
+msgstr "Forum społecznościowe"
 
-#: mod/admin.php:1403
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Zapewnij wbudowaną kompatybilność z siecią Diaspora."
+#: mod/settings.php:1066
+msgid "Account for community discussions."
+msgstr "Konto do dyskusji w społeczności."
 
-#: mod/admin.php:1404
-msgid "Only allow Friendica contacts"
-msgstr "Dopuść tylko kontakty Friendrica"
+#: mod/settings.php:1069 mod/admin.php:1739
+msgid "Normal Account Page"
+msgstr "Normalna strona konta"
 
-#: mod/admin.php:1404
+#: mod/settings.php:1070
 msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "Wszyscy znajomi muszą używać protokołów Friendica. Wszystkie inne wbudowane protokoły komunikacyjne są wyłączone."
+"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/admin.php:1405
-msgid "Verify SSL"
-msgstr "Weryfikacja SSL"
+#: mod/settings.php:1073 mod/admin.php:1740
+msgid "Soapbox Page"
+msgstr "Strona Soapbox"
 
-#: mod/admin.php:1405
+#: mod/settings.php:1074
 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 "Jeśli chcesz, możesz włączyć ścisłe sprawdzanie certyfikatu. Oznacza to, że nie możesz połączyć się (w ogóle) z własnoręcznie podpisanymi stronami SSL."
-
-#: mod/admin.php:1406
-msgid "Proxy user"
-msgstr "Użytkownik proxy"
-
-#: mod/admin.php:1407
-msgid "Proxy URL"
-msgstr "URL Proxy"
+"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/admin.php:1408
-msgid "Network timeout"
-msgstr "Network timeout"
+#: mod/settings.php:1077 mod/admin.php:1741
+msgid "Public Forum"
+msgstr "Forum publiczne"
 
-#: mod/admin.php:1408
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Wartość jest w sekundach. Ustaw na 0 dla nieograniczonej (niezalecane)."
+#: mod/settings.php:1078
+msgid "Automatically approves all contact requests."
+msgstr "Automatycznie zatwierdza wszystkie prośby o kontakt."
 
-#: mod/admin.php:1409
-msgid "Maximum Load Average"
-msgstr "Maksymalne obciążenie średnie"
+#: mod/settings.php:1081 mod/admin.php:1742
+msgid "Automatic Friend Page"
+msgstr "Automatyczna strona znajomego"
 
-#: mod/admin.php:1409
+#: mod/settings.php:1082
 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."
+"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/admin.php:1410
-msgid "Maximum Load Average (Frontend)"
-msgstr "Maksymalne obciążenie średnie (Frontend)"
+#: mod/settings.php:1085
+msgid "Private Forum [Experimental]"
+msgstr "Prywatne Forum [Eksperymentalne]"
 
-#: mod/admin.php:1410
-msgid "Maximum system load before the frontend quits service - default 50."
-msgstr "Maksymalne obciążenie systemu, zanim frontend zakończy pracę - domyślnie 50."
+#: mod/settings.php:1086
+msgid "Requires manual approval of contact requests."
+msgstr "Wymaga ręcznego zatwierdzania żądań kontaktów."
 
-#: mod/admin.php:1411
-msgid "Minimal Memory"
-msgstr "Minimalna pamięć"
+#: mod/settings.php:1097
+msgid "OpenID:"
+msgstr "OpenID:"
 
-#: mod/admin.php:1411
-msgid ""
-"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
-"default 0 (deactivated)."
-msgstr "Minimalna wolna pamięć w MB dla pracownika. Potrzebuje dostępu do /proc/ meminfo - domyślnie 0 (wyłączone)."
+#: 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/admin.php:1412
-msgid "Maximum table size for optimization"
-msgstr "Maksymalny rozmiar stołu do optymalizacji"
+#: 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/admin.php:1412
+#: mod/settings.php:1105
+#, php-format
 msgid ""
-"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
-"Enter -1 to disable it."
-msgstr "Maksymalny rozmiar tabeli (w MB) dla automatycznej optymalizacji - domyślnie 100 MB. Wprowadź -1, aby go wyłączyć."
+"Your profile will be published in the global friendica directories (e.g. <a "
+"href=\"%s\">%s</a>). Your profile will be visible in public."
+msgstr "Twój profil zostanie opublikowany w globalnych katalogach friendica (np.<a href=\"%s\">%s</a>). Twój profil będzie widoczny publicznie."
 
-#: mod/admin.php:1413
-msgid "Minimum level of fragmentation"
-msgstr "Minimalny poziom fragmentacji"
+#: 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/admin.php:1413
+#: mod/settings.php:1111
+#, php-format
 msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
-msgstr "Minimalny poziom fragmentacji, aby rozpocząć automatyczną optymalizację - domyślna wartość to 30%."
+"Your profile will be published in this node's <a href=\"%s\">local "
+"directory</a>. Your profile details may be publicly visible depending on the"
+" system settings."
+msgstr "Twój profil zostanie opublikowany w lokalnym katalogu tego <a href=\"%s\">węzła</a>. Dane Twojego profilu mogą być publicznie widoczne w zależności od ustawień systemu."
 
-#: mod/admin.php:1415
-msgid "Periodical check of global contacts"
-msgstr "Okresowa kontrola kontaktów globalnych"
+#: 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/admin.php:1415
+#: mod/settings.php:1118
 msgid ""
-"If enabled, the global contacts are checked periodically for missing or "
-"outdated data and the vitality of the contacts and servers."
-msgstr "Jeśli jest włączona, kontakty globalne są okresowo sprawdzane pod kątem brakujących lub nieaktualnych danych oraz żywotności kontaktów i serwerów."
+"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/admin.php:1416
-msgid "Days between requery"
-msgstr "Dni między żądaniem"
+#: mod/settings.php:1122
+msgid "Hide your profile details from anonymous viewers?"
+msgstr "Ukryć dane Twojego profilu przed anonimowymi widzami?"
 
-#: mod/admin.php:1416
-msgid "Number of days after which a server is requeried for his contacts."
-msgstr "Liczba dni, po upływie których serwer jest żądany dla swoich kontaktów."
+#: 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/admin.php:1417
-msgid "Discover contacts from other servers"
-msgstr "Odkryj kontakty z innych serwerów"
+#: 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/admin.php:1417
+#: mod/settings.php:1126
 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 "Okresowo wysyłaj zapytanie do innych serwerów o kontakty. Możesz wybierać pomiędzy 'użytkownikami': użytkownikami w systemie zdalnym, 'Kontakty globalne': aktywne kontakty znane w systemie. Zastępowanie jest przeznaczone dla serwerów Redmatrix i starszych serwerów Friendica, w których kontakty globalne nie były dostępne. Funkcja awaryjna zwiększa obciążenie serwera, dlatego zalecanym ustawieniem jest 'Użytkownicy, kontakty globalne'."
+"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/admin.php:1418
-msgid "Timeframe for fetching global contacts"
-msgstr "Czas pobierania globalnych kontaktów"
+#: mod/settings.php:1130
+msgid "Allow friends to tag your posts?"
+msgstr "Zezwolić na oznaczanie Twoich postów przez znajomych?"
 
-#: 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 "Po aktywowaniu wykrywania ta wartość określa czas działania globalnych kontaktów pobieranych z innych serwerów."
+#: 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/admin.php:1419
-msgid "Search the local directory"
-msgstr "Wyszukaj w lokalnym katalogu"
+#: 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/admin.php:1419
+#: mod/settings.php:1134
 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 "Wyszukaj lokalny katalog zamiast katalogu globalnego. Podczas wyszukiwania lokalnie każde wyszukiwanie zostanie wykonane w katalogu globalnym w tle. Poprawia to wyniki wyszukiwania, gdy wyszukiwanie jest powtarzane."
+"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/admin.php:1421
-msgid "Publish server information"
-msgstr "Publikuj informacje o serwerze"
+#: mod/settings.php:1138
+msgid "Permit unknown people to send you private mail?"
+msgstr "Zezwolić nieznanym osobom na wysyłanie prywatnych wiadomości?"
 
-#: mod/admin.php:1421
+#: mod/settings.php:1138
 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 <a"
-" href='http://the-federation.info/'>the-federation.info</a> for details."
-msgstr "Jeśli opcja jest włączona, ogólne dane serwera i użytkowania zostaną opublikowane. Dane zawierają nazwę i wersję serwera, liczbę użytkowników z profilami publicznymi, liczbę postów oraz aktywowane protokoły i konektory. Aby uzyskać szczegółowe informacje, patrz <a href='http://the-federation.info/'>the-federation.info</a>."
+"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/admin.php:1423
-msgid "Check upstream version"
-msgstr "Sprawdź wersję powyżej"
+#: mod/settings.php:1142
+msgid "Profile is <strong>not published</strong>."
+msgstr "Profil <strong>nie jest opublikowany</strong>"
 
-#: 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 "Umożliwia sprawdzenie nowych wersji Friendica na github. Jeśli pojawi się nowa wersja, zostaniesz o tym poinformowany w panelu administracyjnym."
+#: mod/settings.php:1148
+#, php-format
+msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
+msgstr "Twój adres tożsamości to <strong>'%s'</strong> lub '%s'."
 
-#: mod/admin.php:1424
-msgid "Suppress Tags"
-msgstr "Ukryj tagi"
+#: mod/settings.php:1155
+msgid "Automatically expire posts after this many days:"
+msgstr "Posty wygasną automatycznie po następującej liczbie dni:"
 
-#: mod/admin.php:1424
-msgid "Suppress showing a list of hashtags at the end of the posting."
-msgstr "Pomiń wyświetlenie listy hashtagów na końcu postu."
+#: 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/admin.php:1425
-msgid "Path to item cache"
-msgstr "Ścieżka do pamięci podręcznej"
+#: mod/settings.php:1156
+msgid "Advanced expiration settings"
+msgstr "Zaawansowane ustawienia wygasania"
 
-#: mod/admin.php:1425
-msgid "The item caches buffers generated bbcode and external images."
-msgstr "Pozycja buforuje bufory generowane bbcode i obrazy zewnętrzne."
+#: mod/settings.php:1157
+msgid "Advanced Expiration"
+msgstr "Zaawansowane wygasanie"
 
-#: mod/admin.php:1426
-msgid "Cache duration in seconds"
-msgstr "Czas trwania w sekundach"
+#: mod/settings.php:1158
+msgid "Expire posts:"
+msgstr "Wygasające posty:"
 
-#: 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 "Jak długo powinny być przechowywane pliki pamięci podręcznej? Wartość domyślna to 86400 sekund (jeden dzień). Aby wyłączyć pamięć podręczną elementów, ustaw wartość na -1."
+#: mod/settings.php:1159
+msgid "Expire personal notes:"
+msgstr "Wygasanie osobistych notatek:"
 
-#: mod/admin.php:1427
-msgid "Maximum numbers of comments per post"
-msgstr "Maksymalna liczba komentarzy na post"
+#: mod/settings.php:1160
+msgid "Expire starred posts:"
+msgstr "Wygasaj posty oznaczone gwiazdką:"
 
-#: mod/admin.php:1427
-msgid "How much comments should be shown for each post? Default value is 100."
-msgstr "Ile komentarzy powinno być pokazywanych dla każdego posta? Domyślna wartość to 100."
+#: mod/settings.php:1161
+msgid "Expire photos:"
+msgstr "Wygasanie zdjęć:"
 
-#: mod/admin.php:1428
-msgid "Temp path"
-msgstr "Ścieżka do Temp"
+#: mod/settings.php:1162
+msgid "Only expire posts by others:"
+msgstr "Wygaszaj tylko te posty, które zostały napisane przez inne osoby:"
 
-#: 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 "Jeśli masz zastrzeżony system, w którym serwer internetowy nie może uzyskać dostępu do ścieżki temp systemu, wprowadź tutaj inną ścieżkę."
+#: mod/settings.php:1192
+msgid "Account Settings"
+msgstr "Ustawienia konta"
 
-#: mod/admin.php:1429
-msgid "Base path to installation"
-msgstr "Podstawowa ścieżka do instalacji"
+#: mod/settings.php:1200
+msgid "Password Settings"
+msgstr "Ustawienia hasła"
 
-#: 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 "Jeśli system nie może wykryć poprawnej ścieżki do instalacji, wprowadź tutaj poprawną ścieżkę. To ustawienie powinno być ustawione tylko wtedy, gdy używasz ograniczonego systemu i dowiązań symbolicznych do twojego webroota."
+#: mod/settings.php:1201 mod/register.php:273
+msgid "New Password:"
+msgstr "Nowe hasło:"
 
-#: mod/admin.php:1430
-msgid "Disable picture proxy"
-msgstr "Wyłącz obraz proxy"
+#: mod/settings.php:1202 mod/register.php:274
+msgid "Confirm:"
+msgstr "Potwierdź:"
 
-#: mod/admin.php:1430
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
-msgstr "Proxy obrazu zwiększa wydajność i prywatność. Nie należy go stosować w systemach o bardzo niskiej przepustowości."
+#: mod/settings.php:1202
+msgid "Leave password fields blank unless changing"
+msgstr "Pozostaw pole hasła puste, chyba że chcesz je zmienić."
 
-#: mod/admin.php:1431
-msgid "Only search in tags"
-msgstr "Szukaj tylko w tagach"
+#: mod/settings.php:1203
+msgid "Current Password:"
+msgstr "Aktualne hasło:"
 
-#: mod/admin.php:1431
-msgid "On large systems the text search can slow down the system extremely."
-msgstr "W dużych systemach wyszukiwanie tekstu może wyjątkowo spowolnić system."
+#: 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/admin.php:1433
-msgid "New base url"
-msgstr "Nowy bazowy adres url"
+#: mod/settings.php:1204
+msgid "Password:"
+msgstr "Hasło:"
 
-#: mod/admin.php:1433
-msgid ""
-"Change base url for this server. Sends relocate message to all Friendica and"
-" Diaspora* contacts of all users."
-msgstr "Zmień bazowy adres URL dla tego serwera. Wysyła wiadomość o przeniesieniu do wszystkich kontaktów Friendica i Diaspora* wszystkich użytkowników."
-
-#: mod/admin.php:1435
-msgid "RINO Encryption"
-msgstr "Szyfrowanie RINO"
+#: mod/settings.php:1208
+msgid "Basic Settings"
+msgstr "Ustawienia podstawowe"
 
-#: mod/admin.php:1435
-msgid "Encryption layer between nodes."
-msgstr "Warstwa szyfrowania między węzłami."
+#: mod/settings.php:1210
+msgid "Email Address:"
+msgstr "Adres email:"
 
-#: mod/admin.php:1435
-msgid "Enabled"
-msgstr "Włącz"
+#: mod/settings.php:1211
+msgid "Your Timezone:"
+msgstr "Twoja strefa czasowa:"
 
-#: mod/admin.php:1437
-msgid "Maximum number of parallel workers"
-msgstr "Maksymalna liczba równoległych pracowników"
+#: mod/settings.php:1212
+msgid "Your Language:"
+msgstr "Twój język:"
 
-#: mod/admin.php:1437
+#: mod/settings.php:1212
 msgid ""
-"On shared hosters set this to 2. On larger systems, values of 10 are great. "
-"Default value is 4."
-msgstr "Na współdzielonych hostach ustaw to na 2. W większych systemach wartości 10 są świetne. Domyślna wartość to 4."
-
-#: mod/admin.php:1438
-msgid "Don't use 'proc_open' with the worker"
-msgstr "Nie używaj 'proc_open' z robotnikiem"
+"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/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 "Włącz to, jeśli twój system nie zezwala na użycie 'proc_open'. Może się to zdarzyć w przypadku współdzielonych hosterów. Jeśli ta opcja jest włączona, powinieneś zwiększyć częstotliwość wywołań pracowniczych w twoim pliku crontab."
+#: mod/settings.php:1213
+msgid "Default Post Location:"
+msgstr "Domyślna lokalizacja wiadomości:"
 
-#: mod/admin.php:1439
-msgid "Enable fastlane"
-msgstr "Włącz Fastlane"
+#: mod/settings.php:1214
+msgid "Use Browser Location:"
+msgstr "Użyj lokalizacji przeglądarki:"
 
-#: 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 "Po włączeniu system Fastlane uruchamia dodatkowego pracownika, jeśli procesy o wyższym priorytecie są blokowane przez procesy o niższym priorytecie."
+#: mod/settings.php:1217
+msgid "Security and Privacy Settings"
+msgstr "Ustawienia bezpieczeństwa i prywatności"
 
-#: mod/admin.php:1440
-msgid "Enable frontend worker"
-msgstr "Włącz pracownika frontend"
+#: mod/settings.php:1219
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maksymalna dzienna liczba zaproszeń do grona przyjaciół:"
 
-#: 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 "Po włączeniu proces roboczy jest wyzwalany, gdy wykonywany jest dostęp do zaplecza \\x28e.g. wiadomości są dostarczane\\x29. W mniejszych witrynach możesz chcieć wywoływać %s/robotnika regularnie przez zewnętrzne zadanie cron. Tę opcję należy włączyć tylko wtedy, gdy nie można używać zadań cron/zaplanowanych na serwerze."
+#: mod/settings.php:1219 mod/settings.php:1248
+msgid "(to prevent spam abuse)"
+msgstr "(aby zapobiec spamowaniu)"
 
-#: mod/admin.php:1442
-msgid "Subscribe to relay"
-msgstr "Subskrybuj przekaźnik"
+#: mod/settings.php:1220
+msgid "Default Post Permissions"
+msgstr "Domyślne prawa dostępu wiadomości"
 
-#: 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 "Umożliwia odbieranie publicznych wiadomości z przekaźnika. Zostaną uwzględnione w tagach wyszukiwania, subskrybowanych i na stronie społeczności globalnej."
+#: mod/settings.php:1221
+msgid "(click to open/close)"
+msgstr "(kliknij by otworzyć/zamknąć)"
 
-#: mod/admin.php:1443
-msgid "Relay server"
-msgstr "Serwer przekazujący"
+#: mod/settings.php:1229 mod/photos.php:1106 mod/photos.php:1449
+msgid "Show to Groups"
+msgstr "Pokaż Grupy"
 
-#: mod/admin.php:1443
-msgid ""
-"Address of the relay server where public posts should be send to. For "
-"example https://relay.diasp.org"
-msgstr "Adres serwera przekazującego, do którego należy wysyłać publiczne posty. Na przykład https://relay.diasp.org"
+#: mod/settings.php:1230 mod/photos.php:1107 mod/photos.php:1450
+msgid "Show to Contacts"
+msgstr "Pokaż kontakty"
 
-#: mod/admin.php:1444
-msgid "Direct relay transfer"
-msgstr "Bezpośredni transfer przekaźników"
+#: mod/settings.php:1231
+msgid "Default Private Post"
+msgstr "Domyślny Prywatny Wpis"
 
-#: mod/admin.php:1444
-msgid ""
-"Enables the direct transfer to other servers without using the relay servers"
-msgstr "Umożliwia bezpośredni transfer do innych serwerów bez korzystania z serwerów przekazujących"
+#: mod/settings.php:1232
+msgid "Default Public Post"
+msgstr "Domyślny Publiczny Post"
 
-#: mod/admin.php:1445
-msgid "Relay scope"
-msgstr "Zakres przekaźnika"
+#: mod/settings.php:1236
+msgid "Default Permissions for New Posts"
+msgstr "Uprawnienia domyślne dla nowych postów"
 
-#: 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 "Może być 'wszystkim' lub 'tagami'. 'wszystko' oznacza, że ​​każdy post publiczny powinien zostać odebrany. 'tagi' oznaczają, że powinny być odbierane tylko posty z wybranymi tagami."
+#: 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/admin.php:1445
-msgid "all"
-msgstr "wszystko"
+#: mod/settings.php:1251
+msgid "Notification Settings"
+msgstr "Ustawienia powiadomień"
 
-#: mod/admin.php:1445
-msgid "tags"
-msgstr "tagi"
+#: mod/settings.php:1252
+msgid "By default post a status message when:"
+msgstr "Publikuj domyślnie komunikat o stanie, gdy:"
 
-#: mod/admin.php:1446
-msgid "Server tags"
-msgstr "Serwer tagów"
+#: mod/settings.php:1253
+msgid "accepting a friend request"
+msgstr "przyjęto prośbę o dodanie do znajomych"
 
-#: mod/admin.php:1446
-msgid "Comma separated list of tags for the 'tags' subscription."
-msgstr "Lista oddzielonych przecinkami znaczników dla subskrypcji 'tagów'."
+#: mod/settings.php:1254
+msgid "joining a forum/community"
+msgstr "dołączono do forum/społeczności"
 
-#: mod/admin.php:1447
-msgid "Allow user tags"
-msgstr "Pozwól na tagi użytkowników"
+#: mod/settings.php:1255
+msgid "making an <em>interesting</em> profile change"
+msgstr "dokonano <em>interesującej</em> zmiany profilu"
 
-#: 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 "Po włączeniu tagi z zapisanych wyszukiwań będą używane do subskrypcji 'tagów' oprócz 'relay_server_tags'."
+#: mod/settings.php:1256
+msgid "Send a notification email when:"
+msgstr "Wyślij powiadmonienia na email, kiedy:"
 
-#: mod/admin.php:1475
-msgid "Update has been marked successful"
-msgstr "Aktualizacja została oznaczona jako udana"
+#: mod/settings.php:1257
+msgid "You receive an introduction"
+msgstr "Otrzymałeś zaproszenie"
 
-#: mod/admin.php:1482
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "Pomyślnie zastosowano aktualizację %s struktury bazy danych."
+#: mod/settings.php:1258
+msgid "Your introductions are confirmed"
+msgstr "Twoje zaproszenie jest potwierdzone"
 
-#: mod/admin.php:1485
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
-msgstr "Wykonanie aktualizacji %s struktury bazy danych nie powiodło się z powodu błędu:%s"
+#: mod/settings.php:1259
+msgid "Someone writes on your profile wall"
+msgstr "Ktoś pisze na twoim profilu"
 
-#: mod/admin.php:1498
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr "Wykonanie %s nie powiodło się z powodu błędu:%s"
+#: mod/settings.php:1260
+msgid "Someone writes a followup comment"
+msgstr "Ktoś pisze komentarz nawiązujący."
 
-#: mod/admin.php:1500
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Aktualizacja %s została pomyślnie zastosowana."
+#: mod/settings.php:1261
+msgid "You receive a private message"
+msgstr "Otrzymałeś prywatną wiadomość"
 
-#: mod/admin.php:1503
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "Aktualizacja %s nie zwróciła statusu. Nieznane, jeśli się udało."
+#: mod/settings.php:1262
+msgid "You receive a friend suggestion"
+msgstr "Otrzymałeś propozycję od znajomych"
 
-#: mod/admin.php:1506
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
-msgstr "Nie było dodatkowej funkcji %s aktualizacji, która musiała zostać wywołana."
+#: mod/settings.php:1263
+msgid "You are tagged in a post"
+msgstr "Jesteś oznaczony tagiem w poście"
 
-#: mod/admin.php:1526
-msgid "No failed updates."
-msgstr "Brak błędów aktualizacji."
+#: mod/settings.php:1264
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Jesteś zaczepiony/zaczepiona/itp. w poście"
 
-#: mod/admin.php:1527
-msgid "Check database structure"
-msgstr "Sprawdź strukturę bazy danych"
+#: mod/settings.php:1266
+msgid "Activate desktop notifications"
+msgstr "Aktywuj powiadomienia na pulpicie"
 
-#: mod/admin.php:1532
-msgid "Failed Updates"
-msgstr "Błąd aktualizacji"
+#: mod/settings.php:1266
+msgid "Show desktop popup on new notifications"
+msgstr "Pokaż wyskakujące okienko dla nowych powiadomień"
 
-#: mod/admin.php:1533
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr "Nie dotyczy to aktualizacji przed 1139, który nie zwrócił statusu."
+#: mod/settings.php:1268
+msgid "Text-only notification emails"
+msgstr "E-maile z powiadomieniami tekstowymi"
 
-#: mod/admin.php:1534
-msgid "Mark success (if update was manually applied)"
-msgstr "Oznacz sukces (jeśli aktualizacja została ręcznie zastosowana)"
+#: 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/admin.php:1535
-msgid "Attempt to execute this update step automatically"
-msgstr "Spróbuj automatycznie wykonać ten krok aktualizacji"
+#: mod/settings.php:1272
+msgid "Show detailled notifications"
+msgstr "Pokaż szczegółowe powiadomienia"
 
-#: mod/admin.php:1574
-#, php-format
+#: mod/settings.php:1274
 msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tthe administrator of %2$s has set up an account for you."
-msgstr "\n\t\t\tSzanowny/a Panie/Pani %1$s, \n\t\t\t\tadministrator %2$s założył dla ciebie konto."
+"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/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 "\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/settings.php:1276
+msgid "Advanced Account/Page Type Settings"
+msgstr "Zaawansowane ustawienia konta/rodzaju strony"
 
-#: mod/admin.php:1611 src/Model/User.php:663
-#, php-format
-msgid "Registration details for %s"
-msgstr "Szczegóły rejestracji dla %s"
+#: mod/settings.php:1277
+msgid "Change the behaviour of this account for special situations"
+msgstr "Zmień zachowanie tego konta w sytuacjach specjalnych"
 
-#: mod/admin.php:1621
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+#: mod/settings.php:1280
+msgid "Relocate"
+msgstr "Przeniesienie"
 
-#: mod/admin.php:1627
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] " %s użytkownik usunięty"
-msgstr[1] " %s użytkownicy usunięci"
-msgstr[2] " %s usuniętych użytkowników "
-msgstr[3] " %s usuniętych użytkowników "
+#: 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/admin.php:1674
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Użytkownik '%s' usunięty"
+#: mod/settings.php:1282
+msgid "Resend relocate message to contacts"
+msgstr "Wyślij ponownie przenieść wiadomości do kontaktów"
 
-#: mod/admin.php:1682
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Użytkownik '%s' odblokowany"
+#: mod/regmod.php:68
+msgid "Account approved."
+msgstr "Konto zatwierdzone."
 
-#: mod/admin.php:1682
+#: mod/regmod.php:93
 #, php-format
-msgid "User '%s' blocked"
-msgstr "Użytkownik '%s' zablokowany"
+msgid "Registration revoked for %s"
+msgstr "Rejestracja odwołana dla %s"
 
-#: 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/regmod.php:102
+msgid "Please login."
+msgstr "Proszę się zalogować."
 
-#: mod/admin.php:1781 mod/admin.php:1806
-msgid "Register date"
-msgstr "Data rejestracji"
+#: mod/group.php:36
+msgid "Group created."
+msgstr "Grupa utworzona."
 
-#: mod/admin.php:1781 mod/admin.php:1806
-msgid "Last login"
-msgstr "Ostatnie logowanie"
+#: mod/group.php:42
+msgid "Could not create group."
+msgstr "Nie mogę stworzyć grupy"
 
-#: mod/admin.php:1781 mod/admin.php:1806
-msgid "Last item"
-msgstr "Ostatni element"
+#: mod/group.php:56 mod/group.php:157
+msgid "Group not found."
+msgstr "Nie znaleziono grupy"
 
-#: mod/admin.php:1781 mod/settings.php:55
-msgid "Account"
-msgstr "Konto"
+#: mod/group.php:70
+msgid "Group name changed."
+msgstr "Nazwa grupy zmieniona"
 
-#: mod/admin.php:1789
-msgid "Add User"
-msgstr "Dodaj użytkownika"
+#: mod/group.php:83 mod/profperm.php:28 index.php:443
+msgid "Permission denied"
+msgstr "Odmowa dostępu"
 
-#: mod/admin.php:1791
-msgid "User registrations waiting for confirm"
-msgstr "zarejestrowany użytkownik czeka na potwierdzenie"
+#: mod/group.php:97
+msgid "Save Group"
+msgstr "Zapisz grupę"
 
-#: mod/admin.php:1792
-msgid "User waiting for permanent deletion"
-msgstr "Użytkownik czekający na trwałe usunięcie"
+#: mod/group.php:102
+msgid "Create a group of contacts/friends."
+msgstr "Stwórz grupę znajomych."
 
-#: mod/admin.php:1793
-msgid "Request date"
-msgstr "Data prośby"
+#: mod/group.php:127
+msgid "Group removed."
+msgstr "Grupa usunięta."
 
-#: mod/admin.php:1794
-msgid "No registrations."
-msgstr "brak rejestracji"
+#: mod/group.php:129
+msgid "Unable to remove group."
+msgstr "Nie można usunąć grupy."
 
-#: mod/admin.php:1795
-msgid "Note from the user"
-msgstr "Uwaga od użytkownika"
+#: mod/group.php:192
+msgid "Delete Group"
+msgstr "Usuń grupę"
 
-#: mod/admin.php:1797
-msgid "Deny"
-msgstr "Odmów"
+#: mod/group.php:198
+msgid "Group Editor"
+msgstr "Edytor grupy"
 
-#: mod/admin.php:1801
-msgid "Site admin"
-msgstr "Administracja stroną"
+#: mod/group.php:203
+msgid "Edit Group Name"
+msgstr "Edytuj nazwę grupy"
 
-#: mod/admin.php:1802
-msgid "Account expired"
-msgstr "Konto wygasło."
+#: mod/group.php:213
+msgid "Members"
+msgstr "Członkowie"
 
-#: mod/admin.php:1805
-msgid "New User"
-msgstr "Nowy użytkownik"
+#: mod/group.php:215 mod/contacts.php:719
+msgid "All Contacts"
+msgstr "Wszystkie kontakty"
 
-#: mod/admin.php:1806
-msgid "Deleted since"
-msgstr "Skasowany od"
+#: mod/group.php:229
+msgid "Remove Contact"
+msgstr "Usuń Kontakt"
 
-#: mod/admin.php:1811
-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/group.php:253
+msgid "Add Contact"
+msgstr "Dodaj Kontakt"
 
-#: mod/admin.php:1812
-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/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/admin.php:1822
-msgid "Name of the new user."
-msgstr "Nazwa nowego użytkownika."
+#: mod/fbrowser.php:131
+msgid "Files"
+msgstr "Pliki"
 
-#: mod/admin.php:1823
-msgid "Nickname"
-msgstr "Pseudonim"
+#: mod/admin.php:106
+msgid "Theme settings updated."
+msgstr "Zaktualizowano ustawienia motywów."
 
-#: mod/admin.php:1823
-msgid "Nickname of the new user."
-msgstr "Pseudonim nowego użytkownika."
+#: mod/admin.php:180
+msgid "Overview"
+msgstr "Przegląd"
 
-#: mod/admin.php:1824
-msgid "Email address of the new user."
-msgstr "Adres email nowego użytkownika."
+#: mod/admin.php:181 mod/admin.php:718
+msgid "Federation Statistics"
+msgstr "Statystyki Organizacji"
 
-#: mod/admin.php:1866
-#, php-format
-msgid "Addon %s disabled."
-msgstr "Dodatek %s wyłączony."
+#: mod/admin.php:182
+msgid "Configuration"
+msgstr "Konfiguracja"
 
-#: mod/admin.php:1870
-#, php-format
-msgid "Addon %s enabled."
-msgstr "Dodatek %s włączony."
+#: mod/admin.php:183 mod/admin.php:1345
+msgid "Site"
+msgstr "Strona"
 
-#: mod/admin.php:1880 mod/admin.php:2129
-msgid "Disable"
-msgstr "Wyłącz"
+#: mod/admin.php:184 mod/admin.php:1273 mod/admin.php:1802 mod/admin.php:1818
+msgid "Users"
+msgstr "Użytkownicy"
 
-#: mod/admin.php:1883 mod/admin.php:2132
-msgid "Enable"
-msgstr "Zezwól"
+#: mod/admin.php:186 mod/admin.php:2187 mod/admin.php:2231
+msgid "Themes"
+msgstr "Wygląd"
 
-#: mod/admin.php:1905 mod/admin.php:2174
-msgid "Toggle"
-msgstr "Włącz"
+#: mod/admin.php:189
+msgid "Database"
+msgstr "Baza danych"
 
-#: mod/admin.php:1913 mod/admin.php:2183
-msgid "Author: "
-msgstr "Autor: "
+#: mod/admin.php:190
+msgid "DB updates"
+msgstr "Aktualizacje DB"
 
-#: mod/admin.php:1914 mod/admin.php:2184
-msgid "Maintainer: "
-msgstr "Opiekun:"
+#: mod/admin.php:191 mod/admin.php:753
+msgid "Inspect Queue"
+msgstr "Sprawdź kolejkę"
 
-#: mod/admin.php:1966
-msgid "Reload active addons"
-msgstr "Załaduj ponownie aktywne dodatki"
+#: mod/admin.php:192
+msgid "Tools"
+msgstr "Narzędzia"
 
-#: mod/admin.php:1971
-#, 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 "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:193
+msgid "Contact Blocklist"
+msgstr "Lista zablokowanych kontaktów"
 
-#: mod/admin.php:2091
-msgid "No themes found."
-msgstr "Nie znaleziono motywów."
+#: mod/admin.php:194 mod/admin.php:362
+msgid "Server Blocklist"
+msgstr "Lista zablokowanych serwerów"
 
-#: mod/admin.php:2165
-msgid "Screenshot"
-msgstr "Zrzut ekranu"
+#: mod/admin.php:195 mod/admin.php:521
+msgid "Delete Item"
+msgstr "Usuń przedmiot"
 
-#: mod/admin.php:2219
-msgid "Reload active themes"
-msgstr "Przeładuj aktywne motywy"
+#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2305
+msgid "Logs"
+msgstr "Logi"
 
-#: mod/admin.php:2224
-#, 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:198 mod/admin.php:2372
+msgid "View Logs"
+msgstr "Zobacz rejestry"
 
-#: mod/admin.php:2225
-msgid "[Experimental]"
-msgstr "[Eksperymentalne]"
+#: mod/admin.php:200
+msgid "Diagnostics"
+msgstr "Diagnostyka"
 
-#: mod/admin.php:2226
-msgid "[Unsupported]"
-msgstr "[Niewspieralne]"
+#: mod/admin.php:201
+msgid "PHP Info"
+msgstr "Informacje o PHP"
 
-#: mod/admin.php:2250
-msgid "Log settings updated."
-msgstr "Zaktualizowano ustawienia logów."
+#: mod/admin.php:202
+msgid "probe address"
+msgstr "adres sondy"
 
-#: mod/admin.php:2282
-msgid "PHP log currently enabled."
-msgstr "Dziennik PHP jest obecnie włączony."
+#: mod/admin.php:203
+msgid "check webfinger"
+msgstr "sprawdź webfinger"
 
-#: mod/admin.php:2284
-msgid "PHP log currently disabled."
-msgstr "Dziennik PHP jest obecnie wyłączony."
+#: mod/admin.php:223
+msgid "Addon Features"
+msgstr "Funkcje dodatkowe"
 
-#: mod/admin.php:2293
-msgid "Clear"
-msgstr "Wyczyść"
+#: mod/admin.php:224
+msgid "User registrations waiting for confirmation"
+msgstr "Rejestracje użytkownika czekają na potwierdzenie."
 
-#: mod/admin.php:2297
-msgid "Enable Debugging"
-msgstr "Włącz debugowanie"
+#: 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 "Administracja"
 
-#: mod/admin.php:2298
-msgid "Log file"
-msgstr "Plik logów"
+#: mod/admin.php:303
+msgid "Display Terms of Service"
+msgstr "Wyświetl Warunki korzystania z usługi"
 
-#: mod/admin.php:2298
+#: mod/admin.php:303
 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
-msgid "Log level"
-msgstr "Poziom logów"
-
-#: mod/admin.php:2301
-msgid "PHP logging"
-msgstr "Logowanie w PHP"
+"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 "Włącz stronę Warunki świadczenia usług. Jeśli ta opcja jest włączona, link do warunków zostanie dodany do formularza rejestracyjnego i strony z informacjami ogólnymi."
 
-#: mod/admin.php:2302
-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 "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:304
+msgid "Display Privacy Statement"
+msgstr "Wyświetl oświadczenie o prywatności"
 
-#: mod/admin.php:2333
+#: mod/admin.php:304
 #, php-format
 msgid ""
-"Error trying to open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see "
-"if file %1$s exist and is readable."
-msgstr "Błąd podczas próby otwarcia <strong>%1$s</strong> pliku dziennika. \\r\\n <br/>Sprawdź, czy plik %1$s istnieje i czy można go odczytać."
+"Show some informations regarding the needed information to operate the node "
+"according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."
+msgstr "Pokaż niektóre informacje dotyczące potrzebnych informacji do obsługi węzła zgodnie np. do <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."
 
-#: mod/admin.php:2337
-#, php-format
-msgid ""
-"Couldn't open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see if file"
-" %1$s is readable."
-msgstr "Nie można otworzyć <strong>%1$s</strong>pliku dziennika. \\r\\n<br/>Sprawdź, czy plik %1$s jest czytelny."
+#: mod/admin.php:305
+msgid "The Terms of Service"
+msgstr "Warunki świadczenia usług"
 
-#: mod/admin.php:2428 mod/admin.php:2429 mod/settings.php:775
-msgid "Off"
-msgstr "Wyłącz"
+#: 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 "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."
 
-#: mod/admin.php:2428 mod/admin.php:2429 mod/settings.php:775
-msgid "On"
-msgstr "Włącz"
+#: mod/admin.php:353
+msgid "The blocked domain"
+msgstr "Zablokowana domena"
 
-#: mod/admin.php:2429
-#, php-format
-msgid "Lock feature %s"
-msgstr "Funkcja blokady %s"
+#: mod/admin.php:354 mod/admin.php:367
+msgid "The reason why you blocked this domain."
+msgstr "Powód zablokowania tej domeny."
 
-#: mod/admin.php:2437
-msgid "Manage Additional Features"
-msgstr "Zarządzaj dodatkowymi funkcjami"
+#: mod/admin.php:355
+msgid "Delete domain"
+msgstr "Usuń domenę"
 
-#: mod/babel.php:22
-msgid "Source input"
-msgstr "Źródło wejściowe"
+#: mod/admin.php:355
+msgid "Check to delete this entry from the blocklist"
+msgstr "Zaznacz, aby usunąć ten wpis z listy bloków"
 
-#: mod/babel.php:28
-msgid "BBCode::convert (raw HTML)"
-msgstr "BBCode:: konwersjia (raw HTML)"
+#: 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 "Na tej stronie można zdefiniować czarną listę serwerów ze stowarzyszonej sieci, które nie mogą współdziałać z danym węzłem. Dla wszystkich wprowadzonych domen powinieneś podać powód, dla którego zablokowałeś serwer zdalny."
 
-#: mod/babel.php:33
-msgid "BBCode::convert"
-msgstr "BBCode::przekształć"
+#: 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 "Lista zablokowanych serwerów zostanie publicznie udostępniona na stronie /friendica, dzięki czemu użytkownicy i osoby badające problemy z komunikacją mogą łatwo znaleźć przyczynę."
 
-#: mod/babel.php:39
-msgid "BBCode::convert => HTML::toBBCode"
-msgstr "BBCode::przekształć => HTML::toBBCode"
+#: mod/admin.php:365
+msgid "Add new entry to block list"
+msgstr "Dodaj nowy wpis do listy bloków"
 
-#: mod/babel.php:45
-msgid "BBCode::toMarkdown"
-msgstr "BBCode::toMarkdown"
+#: mod/admin.php:366
+msgid "Server Domain"
+msgstr "Domena serwera"
 
-#: mod/babel.php:51
-msgid "BBCode::toMarkdown => Markdown::convert"
-msgstr "BBCode::toMarkdown => Markdown::przekształć"
+#: mod/admin.php:366
+msgid ""
+"The domain of the new server to add to the block list. Do not include the "
+"protocol."
+msgstr "Domena nowego serwera do dodania do listy bloków. Nie dołączaj protokołu."
 
-#: mod/babel.php:57
-msgid "BBCode::toMarkdown => Markdown::toBBCode"
-msgstr "BBCode::toMarkdown => Markdown::toBBCode"
+#: mod/admin.php:367
+msgid "Block reason"
+msgstr "Powód zablokowania"
 
-#: mod/babel.php:63
-msgid "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
-msgstr "BBCode::toMarkdown => Markdown::przekształć => HTML::toBBCode"
+#: mod/admin.php:368
+msgid "Add Entry"
+msgstr "Dodaj wpis"
 
-#: mod/babel.php:70
-msgid "Source input \\x28Diaspora format\\x29"
-msgstr "Źródło wejściowe \\x28Diaspora format\\x29"
+#: mod/admin.php:369
+msgid "Save changes to the blocklist"
+msgstr "Zapisz zmiany w Liście zablokowanych"
 
-#: mod/babel.php:76
-msgid "Markdown::toBBCode"
-msgstr "Markdown::toBBCode"
+#: mod/admin.php:370
+msgid "Current Entries in the Blocklist"
+msgstr "Aktualne wpisy na liście zablokowanych"
 
-#: mod/babel.php:83
-msgid "Raw HTML input"
-msgstr "Surowe wejście HTML"
+#: mod/admin.php:373
+msgid "Delete entry from blocklist"
+msgstr "Usuń wpis z listy zablokowanych"
 
-#: mod/babel.php:88
-msgid "HTML Input"
-msgstr "Wejście HTML"
+#: mod/admin.php:376
+msgid "Delete entry from blocklist?"
+msgstr "Usunąć wpis z listy zablokowanych?"
 
-#: mod/babel.php:94
-msgid "HTML::toBBCode"
-msgstr "HTML::toBBCode"
+#: mod/admin.php:402
+msgid "Server added to blocklist."
+msgstr "Serwer dodany do listy zablokowanych."
 
-#: mod/babel.php:100
-msgid "HTML::toPlaintext"
-msgstr "HTML::toPlaintext"
+#: mod/admin.php:418
+msgid "Site blocklist updated."
+msgstr "Zaktualizowano listę bloków witryny."
 
-#: mod/babel.php:108
-msgid "Source text"
-msgstr "Tekst źródłowy"
+#: mod/admin.php:450
+#, php-format
+msgid "%s contact unblocked"
+msgid_plural "%s contacts unblocked"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
 
-#: mod/babel.php:109
-msgid "BBCode"
-msgstr "BBCode"
+#: mod/admin.php:479
+msgid "Remote Contact Blocklist"
+msgstr "Lista zablokowanych kontaktów zdalnych"
 
-#: mod/babel.php:110
-msgid "Markdown"
-msgstr "Markdown"
+#: mod/admin.php:480
+msgid ""
+"This page allows you to prevent any message from a remote contact to reach "
+"your node."
+msgstr "Ta strona pozwala zapobiec wysyłaniu do węzła wiadomości od kontaktu zdalnego."
 
-#: mod/babel.php:111
-msgid "HTML"
-msgstr "HTML"
+#: mod/admin.php:481
+msgid "Block Remote Contact"
+msgstr "Zablokuj kontakt zdalny"
 
-#: mod/directory.php:152 src/Model/Profile.php:421 src/Model/Profile.php:771
-msgid "Status:"
-msgstr "Status:"
+#: mod/admin.php:482 mod/admin.php:1804
+msgid "select all"
+msgstr "Zaznacz wszystko"
 
-#: mod/directory.php:153 src/Model/Profile.php:422 src/Model/Profile.php:788
-msgid "Homepage:"
-msgstr "Strona główna:"
+#: mod/admin.php:483
+msgid "select none"
+msgstr "wybierz brak"
 
-#: mod/directory.php:202 view/theme/vier/theme.php:201
-msgid "Global Directory"
-msgstr "Globalny Katalog"
+#: 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/directory.php:204
-msgid "Find on this site"
-msgstr "Znajdź na tej stronie"
+#: 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/directory.php:206
-msgid "Results for:"
-msgstr "Wyniki dla:"
+#: mod/admin.php:486
+msgid "No remote contact is blocked from this node."
+msgstr "Z tego węzła nie jest blokowany kontakt zdalny."
 
-#: 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/follow.php:45
-msgid "The contact could not be added."
-msgstr "Nie można dodać kontaktu."
+#: mod/admin.php:488
+msgid "Blocked Remote Contacts"
+msgstr "Zablokowane kontakty zdalne"
 
-#: mod/follow.php:73
-msgid "You already added this contact."
-msgstr "Już dodałeś ten kontakt."
+#: mod/admin.php:489
+msgid "Block New Remote Contact"
+msgstr "Zablokuj nowy kontakt zdalny"
 
-#: mod/follow.php:83
-msgid "Diaspora support isn't enabled. Contact can't be added."
-msgstr "Obsługa Diaspory nie jest włączona. Kontakt nie może zostać dodany."
+#: mod/admin.php:490
+msgid "Photo"
+msgstr "Zdjęcie"
 
-#: mod/follow.php:90
-msgid "OStatus support is disabled. Contact can't be added."
-msgstr "Obsługa OStatus jest wyłączona. Kontakt nie może zostać dodany."
+#: 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/follow.php:97
-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/admin.php:498
+#, php-format
+msgid "%s total blocked contact"
+msgid_plural "%s total blocked contacts"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
 
-#: mod/friendica.php:77
-msgid "This is Friendica, version"
-msgstr "To jest Friendica, wersja"
+#: mod/admin.php:500
+msgid "URL of the remote contact to block."
+msgstr "Adres URL kontaktu zdalnego do zablokowania."
 
-#: mod/friendica.php:78
-msgid "running at web location"
-msgstr "otwierane na serwerze"
+#: mod/admin.php:522
+msgid "Delete this Item"
+msgstr "Usuń ten przedmiot"
 
-#: mod/friendica.php:82
+#: mod/admin.php:523
 msgid ""
-"Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
-"about the Friendica project."
-msgstr "Odwiedź stronę <a href=\"https://friendi.ca\">Friendi.ca</a> 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ę"
+"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 "Na tej stronie możesz usunąć przedmiot ze swojego węzła. Jeśli element jest publikowaniem na najwyższym poziomie, cały wątek zostanie usunięty."
 
-#: mod/friendica.php:86
-msgid "the bugtracker at github"
-msgstr "bugtracker na github"
+#: 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 "Musisz znać identyfikator GUID tego przedmiotu. Możesz go znaleźć np. patrząc na wyświetlany adres URL. Ostatnia część http://example.com/display/123456 to GUID, tutaj 123456."
 
-#: 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/admin.php:525
+msgid "GUID"
+msgstr "GUID"
 
-#: mod/friendica.php:103
-msgid "Installed addons/apps:"
-msgstr "Zainstalowane dodatki/aplikacje:"
+#: mod/admin.php:525
+msgid "The GUID of the item you want to delete."
+msgstr "Identyfikator elementu GUID, który chcesz usunąć."
 
-#: mod/friendica.php:117
-msgid "No installed addons/apps"
-msgstr "Brak zainstalowanych dodatków/aplikacji"
+#: mod/admin.php:564
+msgid "Item marked for deletion."
+msgstr "Przedmiot oznaczony do usunięcia."
 
-#: mod/friendica.php:122
-#, php-format
-msgid "Read about the <a href=\"%1$s/tos\">Terms of Service</a> of this node."
-msgstr "Przeczytaj o <a href=\"%1$s/tos\">Warunkach świadczenia usług</a> tego węzła."
+#: mod/admin.php:635
+msgid "unknown"
+msgstr "nieznany"
 
-#: 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/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 "Ta strona zawiera kilka numerów do znanej części federacyjnej sieci społecznościowej, do której należy Twój węzeł Friendica. Liczby te nie są kompletne, ale odzwierciedlają tylko część sieci, o której wie twój węzeł."
 
-#: mod/invite.php:33
-msgid "Total invitation limit exceeded."
-msgstr "Przekroczono limit zaproszeń ogółem."
+#: mod/admin.php:712
+msgid ""
+"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
+"will improve the data displayed here."
+msgstr "Funkcja <em>Katalog kontaktów automatycznie odkrytych</em> nie jest włączona, poprawi ona wyświetlane tutaj dane."
 
-#: mod/invite.php:55
+#: mod/admin.php:724
 #, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : Nieprawidłowy adres e-mail."
+msgid ""
+"Currently this node is aware of %d nodes with %d registered users from the "
+"following platforms:"
+msgstr "Obecnie węzeł ten jest świadomy %dwęzłów z %d zarejestrowanymi użytkownikami z następujących platform:"
 
-#: mod/invite.php:87
-msgid "Please join us on Friendica"
-msgstr "Dołącz do nas na Friendica"
+#: mod/admin.php:755
+msgid "ID"
+msgstr "ID"
 
-#: mod/invite.php:96
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Przekroczono limit zaproszeń. Skontaktuj się z administratorem witryny."
+#: mod/admin.php:756
+msgid "Recipient Name"
+msgstr "Nazwa odbiorcy"
 
-#: mod/invite.php:100
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : Nie udało się dostarczyć wiadomości."
+#: mod/admin.php:757
+msgid "Recipient Profile"
+msgstr "Profil odbiorcy"
 
-#: 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/admin.php:759
+msgid "Created"
+msgstr "Utwórz"
 
-#: mod/invite.php:122
-msgid "You have no more invitations available"
-msgstr "Nie masz już dostępnych zaproszeń"
+#: mod/admin.php:760
+msgid "Last Tried"
+msgstr "Ostatnia wypróbowana"
 
-#: mod/invite.php:130
-#, php-format
+#: mod/admin.php:761
 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."
+"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 "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."
 
-#: mod/invite.php:132
+#: mod/admin.php:785
 #, 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."
+"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 <a href=\"%s\">here</a> for a guide that may be helpful "
+"converting the table engines. You may also use the command <tt>php "
+"bin/console.php dbstructure toinnodb</tt> of your Friendica installation for"
+" an automatic conversion.<br />"
+msgstr "Twoja baza danych nadal działa z tabelami MyISAM. Powinieneś zmienić typ silnika na InnoDB. Ponieważ Friendica będzie używać funkcji związanych z InnoDB tylko w przyszłości, powinieneś to zmienić! Zobacz <a href=\"%s\">tutaj</a> przewodnik, który może być pomocny w konwersji silników stołowych. Możesz także użyć polecenia <tt>php bin/console.php dbstructure toinnodb</tt> instalacji Friendica do automatycznej konwersji.<br />"
 
-#: mod/invite.php:133
+#: mod/admin.php:792
 #, 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ć."
+"There is a new version of Friendica available for download. Your current "
+"version is %1$s, upstream version is %2$s"
+msgstr "Dostępna jest nowa wersja aplikacji Friendica. Twoja aktualna wersja to %1$s wyższa wersja to %2$s"
 
-#: mod/invite.php:137
+#: mod/admin.php:802
 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."
+"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 "Aktualizacja bazy danych nie powiodła się. Uruchom polecenie \"php bin/console.php dbstructure update\" z wiersza poleceń i sprawdź błędy, które mogą się pojawić."
 
-#: 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/admin.php:808
+msgid "The worker was never executed. Please check your database structure!"
+msgstr "Pracownik nigdy nie został stracony. Sprawdź swoją strukturę bazy danych!"
 
-#: mod/invite.php:140
+#: mod/admin.php:811
 #, 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/invite.php:147
-msgid "Send invitations"
-msgstr "Wyślij zaproszenie"
+msgid ""
+"The last worker execution was on %s UTC. This is older than one hour. Please"
+" check your crontab settings."
+msgstr "Ostatnie wykonanie robota było w %s UTC. To jest starsze niż jedna godzina. Sprawdź ustawienia crontab."
 
-#: mod/invite.php:148
-msgid "Enter email addresses, one per line:"
-msgstr "Wprowadź adresy e-mail, po jednym w wierszu:"
+#: mod/admin.php:816
+msgid "Normal Account"
+msgstr "Konto normalne"
 
-#: 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/admin.php:817
+msgid "Automatic Follower Account"
+msgstr "Automatyczne konto obserwatora"
 
-#: mod/invite.php:152
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Musisz podać ten kod zaproszenia: $invite_code"
+#: mod/admin.php:818
+msgid "Public Forum Account"
+msgstr "Publiczne konto na forum"
 
-#: 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/admin.php:819
+msgid "Automatic Friend Account"
+msgstr "Automatyczny przyjaciel konta"
 
-#: 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/admin.php:820
+msgid "Blog Account"
+msgstr "Konto Bloga"
 
-#: mod/lostpass.php:27
-msgid "No valid account found."
-msgstr "Nie znaleziono ważnego konta."
+#: mod/admin.php:821
+msgid "Private Forum Account"
+msgstr "Prywatne konto na forum"
 
-#: mod/lostpass.php:39
-msgid "Password reset request issued. Check your email."
-msgstr "Prośba o zresetowanie hasła została zatwierdzona. Sprawdź swój e-mail."
+#: mod/admin.php:843
+msgid "Message queues"
+msgstr "Wiadomości"
 
-#: 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 "\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."
+#: mod/admin.php:849
+msgid "Summary"
+msgstr "Podsumowanie"
 
-#: 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 "\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"
+#: mod/admin.php:851
+msgid "Registered users"
+msgstr "Zarejestrowani użytkownicy"
 
-#: mod/lostpass.php:73
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Prośba o reset hasła na %s"
+#: mod/admin.php:853
+msgid "Pending registrations"
+msgstr "Rejestracje w toku."
 
-#: mod/lostpass.php:89
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Prośba nie może być zweryfikowana. (Mogłeś już ją poprzednio wysłać.) Reset hasła nie powiódł się."
+#: mod/admin.php:854
+msgid "Version"
+msgstr "Wersja"
 
-#: mod/lostpass.php:102
-msgid "Request has expired, please make a new one."
-msgstr "Żądanie wygasło. Zrób nowe."
+#: mod/admin.php:859
+msgid "Active addons"
+msgstr "Aktywne dodatki"
 
-#: mod/lostpass.php:117
-msgid "Forgot your Password?"
-msgstr "Zapomniałeś hasła?"
+#: mod/admin.php:890
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "Nie można zanalizować podstawowego adresu URL. Musi mieć co najmniej <scheme>: //<domain>"
 
-#: mod/lostpass.php:118
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"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/admin.php:1209
+msgid "Site settings updated."
+msgstr "Ustawienia strony zaktualizowane"
 
-#: mod/lostpass.php:119 src/Module/Login.php:314
-msgid "Nickname or Email: "
-msgstr "Pseudonim lub Email:"
+#: mod/admin.php:1265
+msgid "No community page"
+msgstr "Brak strony społeczności"
 
-#: mod/lostpass.php:120
-msgid "Reset"
-msgstr "Zresetuj"
+#: mod/admin.php:1266
+msgid "Public postings from users of this site"
+msgstr "Publikacje publiczne od użytkowników tej strony"
 
-#: mod/lostpass.php:136 src/Module/Login.php:326
-msgid "Password Reset"
-msgstr "Zresetuj hasło"
+#: mod/admin.php:1267
+msgid "Public postings from the federated network"
+msgstr "Publikacje wpisy ze sfederowanej sieci"
 
-#: mod/lostpass.php:137
-msgid "Your password has been reset as requested."
-msgstr "Twoje hasło zostało zresetowane zgodnie z żądaniem."
+#: mod/admin.php:1268
+msgid "Public postings from local users and the federated network"
+msgstr "Publikacje publiczne od użytkowników lokalnych i sieci federacyjnej"
 
-#: mod/lostpass.php:138
-msgid "Your new password is"
-msgstr "Twoje nowe hasło to"
+#: mod/admin.php:1272 mod/admin.php:1435 mod/admin.php:1445
+#: mod/contacts.php:572
+msgid "Disabled"
+msgstr "Wyłączony"
 
-#: mod/lostpass.php:139
-msgid "Save or copy your new password - and then"
-msgstr "Zapisz lub skopiuj nowe hasło - a następnie"
+#: mod/admin.php:1274
+msgid "Users, Global Contacts"
+msgstr "Użytkownicy, kontakty globalne"
 
-#: mod/lostpass.php:140
-msgid "click here to login"
-msgstr "Kliknij tutaj aby się zalogować"
+#: mod/admin.php:1275
+msgid "Users, Global Contacts/fallback"
+msgstr "Użytkownicy, kontakty globalne/awaryjne"
 
-#: mod/lostpass.php:141
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Twoje hasło może być zmienione w <em>Ustawieniach</em> po udanym zalogowaniu."
+#: mod/admin.php:1279
+msgid "One month"
+msgstr "Miesiąc"
 
-#: 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 "\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"
+#: mod/admin.php:1280
+msgid "Three months"
+msgstr "Trzy miesiące"
 
-#: 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\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"
+#: mod/admin.php:1281
+msgid "Half a year"
+msgstr "Pół roku"
 
-#: mod/lostpass.php:169
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Twoje hasło zostało zmienione na %s"
+#: mod/admin.php:1282
+msgid "One year"
+msgstr "Rok"
 
-#: mod/network.php:202 src/Model/Group.php:413
-msgid "add"
-msgstr "dodaj"
+#: mod/admin.php:1287
+msgid "Multi user instance"
+msgstr "Tryb wielu użytkowników"
 
-#: 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] ""
-msgstr[2] ""
-msgstr[3] ""
+#: mod/admin.php:1310
+msgid "Closed"
+msgstr "Zamknięte"
 
-#: 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/admin.php:1311
+msgid "Requires approval"
+msgstr "Wymagane zatwierdzenie."
 
-#: mod/network.php:618
-msgid "No such group"
-msgstr "Nie ma takiej grupy"
+#: mod/admin.php:1312
+msgid "Open"
+msgstr "Otwarta"
 
-#: mod/network.php:643
-#, php-format
-msgid "Group: %s"
-msgstr "Grupa: %s"
+#: mod/admin.php:1316
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Brak SSL , linki będą śledzić stan SSL ."
 
-#: 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/admin.php:1317
+msgid "Force all links to use SSL"
+msgstr "Wymuś by linki używały SSL."
 
-#: mod/network.php:672
-msgid "Invalid contact."
-msgstr "Nieprawidłowy kontakt."
+#: mod/admin.php:1318
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Wewnętrzne Certyfikaty , użyj SSL tylko dla linków lokalnych . "
 
-#: mod/network.php:936
-msgid "Commented Order"
-msgstr "Porządek według komentarzy"
+#: mod/admin.php:1322
+msgid "Don't check"
+msgstr "Nie sprawdzaj"
 
-#: mod/network.php:939
-msgid "Sort by Comment Date"
-msgstr "Sortuj według daty komentarza"
+#: mod/admin.php:1323
+msgid "check the stable version"
+msgstr "sprawdź wersję stabilną"
 
-#: mod/network.php:944
-msgid "Posted Order"
-msgstr "Porządek według wpisów"
+#: mod/admin.php:1324
+msgid "check the development version"
+msgstr "sprawdź wersję rozwojową"
+
+#: mod/admin.php:1347
+msgid "Republish users to directory"
+msgstr "Ponownie opublikuj użytkowników w katalogu"
+
+#: mod/admin.php:1348 mod/register.php:264
+msgid "Registration"
+msgstr "Rejestracja"
+
+#: mod/admin.php:1349
+msgid "File upload"
+msgstr "Przesyłanie plików"
+
+#: mod/admin.php:1350
+msgid "Policies"
+msgstr "Zasady"
+
+#: mod/admin.php:1352
+msgid "Auto Discovered Contact Directory"
+msgstr "Katalog kontaktów automatycznie odkrytych"
+
+#: mod/admin.php:1353
+msgid "Performance"
+msgstr "Ustawienia"
+
+#: mod/admin.php:1354
+msgid "Worker"
+msgstr "Pracownik"
+
+#: mod/admin.php:1355
+msgid "Message Relay"
+msgstr "Przekazywanie wiadomości"
 
-#: mod/network.php:947
-msgid "Sort by Post Date"
-msgstr "Sortuj według daty postów"
+#: mod/admin.php:1356
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Relokacja - OSTRZEŻENIE: funkcja zaawansowana. Może spowodować, że serwer będzie nieosiągalny."
 
-#: mod/network.php:955 mod/profiles.php:687
-#: src/Core/NotificationsManager.php:185
-msgid "Personal"
-msgstr "Osobiste"
+#: mod/admin.php:1359
+msgid "Site name"
+msgstr "Nazwa strony"
 
-#: mod/network.php:958
-msgid "Posts that mention or involve you"
-msgstr "Posty, które wspominają lub angażują Ciebie"
+#: mod/admin.php:1360
+msgid "Host name"
+msgstr "Nazwa hosta"
 
-#: mod/network.php:966
-msgid "New"
-msgstr "Nowy"
+#: mod/admin.php:1361
+msgid "Sender Email"
+msgstr "E-mail nadawcy"
 
-#: mod/network.php:969
-msgid "Activity Stream - by date"
-msgstr "Strumień aktywności - według daty"
+#: mod/admin.php:1361
+msgid ""
+"The email address your server shall use to send notification emails from."
+msgstr "Adres e-mail używany przez Twój serwer do wysyłania e-maili z powiadomieniami."
 
-#: mod/network.php:977
-msgid "Shared Links"
-msgstr "Udostępnione łącza"
+#: mod/admin.php:1362
+msgid "Banner/Logo"
+msgstr "Logo"
 
-#: mod/network.php:980
-msgid "Interesting Links"
-msgstr "Interesujące linki"
+#: mod/admin.php:1363
+msgid "Shortcut icon"
+msgstr "Ikona skrótu"
 
-#: mod/network.php:988
-msgid "Starred"
-msgstr "Ulubione"
+#: mod/admin.php:1363
+msgid "Link to an icon that will be used for browsers."
+msgstr "Link do ikony, która będzie używana w przeglądarkach."
 
-#: mod/network.php:991
-msgid "Favourite Posts"
-msgstr "Ulubione posty"
+#: mod/admin.php:1364
+msgid "Touch icon"
+msgstr "Dołącz ikonę"
 
-#: mod/profiles.php:58
-msgid "Profile deleted."
-msgstr "Konto usunięte."
+#: mod/admin.php:1364
+msgid "Link to an icon that will be used for tablets and mobiles."
+msgstr "Link do ikony, która będzie używana w tabletach i telefonach komórkowych."
 
-#: mod/profiles.php:74 mod/profiles.php:110
-msgid "Profile-"
-msgstr "Profil-"
+#: mod/admin.php:1365
+msgid "Additional Info"
+msgstr "Dodatkowe informacje"
 
-#: mod/profiles.php:93 mod/profiles.php:132
-msgid "New profile created."
-msgstr "Utworzono nowy profil."
+#: mod/admin.php:1365
+#, php-format
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at %s/servers."
+msgstr "W przypadku serwerów publicznych: możesz tu dodać dodatkowe informacje, które będą wymienione na %s/servers."
 
-#: mod/profiles.php:116
-msgid "Profile unavailable to clone."
-msgstr "Nie można powileić profilu "
+#: mod/admin.php:1366
+msgid "System language"
+msgstr "Język systemu"
 
-#: mod/profiles.php:206
-msgid "Profile Name is required."
-msgstr "Nazwa Profilu jest wymagana"
+#: mod/admin.php:1367
+msgid "System theme"
+msgstr "Motyw systemowy"
 
-#: mod/profiles.php:347
-msgid "Marital Status"
-msgstr "Stan cywilny"
+#: mod/admin.php:1367
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Domyślny motyw systemu - może być nadpisany przez profil użytkownika  <a href='#' id='cnftheme'>zmień ustawienia motywów</a>"
 
-#: mod/profiles.php:351
-msgid "Romantic Partner"
-msgstr "Romantyczny partner"
+#: mod/admin.php:1368
+msgid "Mobile system theme"
+msgstr "Motyw systemu mobilnego"
 
-#: mod/profiles.php:363
-msgid "Work/Employment"
-msgstr "Praca/Zatrudnienie"
+#: mod/admin.php:1368
+msgid "Theme for mobile devices"
+msgstr "Motyw na urządzenia mobilne"
 
-#: mod/profiles.php:366
-msgid "Religion"
-msgstr "Religia"
+#: mod/admin.php:1369
+msgid "SSL link policy"
+msgstr "polityka SSL"
 
-#: mod/profiles.php:370
-msgid "Political Views"
-msgstr "Poglądy polityczne"
+#: mod/admin.php:1369
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Określa kiedy generowane linki powinny używać wymuszonego SSl."
 
-#: mod/profiles.php:374
-msgid "Gender"
-msgstr "Płeć"
+#: mod/admin.php:1370
+msgid "Force SSL"
+msgstr "Wymuś SSL"
 
-#: mod/profiles.php:378
-msgid "Sexual Preference"
-msgstr "Orientacja seksualna"
+#: mod/admin.php:1370
+msgid ""
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
+" to endless loops."
+msgstr "Wymuszaj wszystkie żądania SSL bez SSL - Uwaga: w niektórych systemach może to prowadzić do niekończących się pętli."
 
-#: mod/profiles.php:382
-msgid "XMPP"
-msgstr "XMPP"
+#: mod/admin.php:1371
+msgid "Hide help entry from navigation menu"
+msgstr "Wyłącz pomoc w menu nawigacyjnym "
 
-#: mod/profiles.php:386
-msgid "Homepage"
-msgstr "Strona Główna"
+#: 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 "Chowa pozycje menu dla stron pomocy ze strony nawigacyjnej. Możesz nadal ją wywołać poprzez komendę /help."
 
-#: mod/profiles.php:390 mod/profiles.php:686
-msgid "Interests"
-msgstr "Zainteresowania"
+#: mod/admin.php:1372
+msgid "Single user instance"
+msgstr "Tryb pojedynczego użytkownika"
 
-#: mod/profiles.php:401 mod/profiles.php:682
-msgid "Location"
-msgstr "Lokalizacja"
+#: mod/admin.php:1372
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Ustawia tryb dla wielu użytkowników lub pojedynczego użytkownika dla nazwanego użytkownika"
 
-#: mod/profiles.php:486
-msgid "Profile updated."
-msgstr "Profil zaktualizowany."
+#: mod/admin.php:1373
+msgid "Maximum image size"
+msgstr "Maksymalny rozmiar zdjęcia"
 
-#: mod/profiles.php:564
-msgid " and "
-msgstr " i "
+#: mod/admin.php:1373
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Maksymalny rozmiar w bitach dla wczytywanego obrazu . Domyślnie jest to  0 , co oznacza bez limitu ."
 
-#: mod/profiles.php:573
-msgid "public profile"
-msgstr "profil publiczny"
+#: mod/admin.php:1374
+msgid "Maximum image length"
+msgstr "Maksymalna długość obrazu"
 
-#: mod/profiles.php:576
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$szmienione %2$s  na &ldquo;%3$s&rdquo;"
+#: mod/admin.php:1374
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Maksymalna długość w pikselach dłuższego boku przesyłanego obrazu. Wartością domyślną jest -1, co oznacza brak ograniczeń."
 
-#: mod/profiles.php:577
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " - Odwiedź %1$s's %2$s"
+#: mod/admin.php:1375
+msgid "JPEG image quality"
+msgstr "Jakość obrazu JPEG"
 
-#: 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/admin.php:1375
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+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/profiles.php:633
-msgid "Hide contacts and friends:"
-msgstr "Ukryj kontakty i znajomych:"
+#: mod/admin.php:1377
+msgid "Register policy"
+msgstr "Zasady rejestracji"
 
-#: 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/admin.php:1378
+msgid "Maximum Daily Registrations"
+msgstr "Maksymalna dzienna rejestracja"
 
-#: mod/profiles.php:658
-msgid "Show more profile fields:"
-msgstr "Pokaż więcej pól profilu:"
+#: 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 "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."
 
-#: mod/profiles.php:670
-msgid "Profile Actions"
-msgstr "Akcje profilowe"
+#: mod/admin.php:1379
+msgid "Register text"
+msgstr "Zarejestruj tekst"
 
-#: mod/profiles.php:671
-msgid "Edit Profile Details"
-msgstr "Edytuj profil."
+#: mod/admin.php:1379
+msgid ""
+"Will be displayed prominently on the registration page. You can use BBCode "
+"here."
+msgstr "Będą wyświetlane w widocznym miejscu na stronie rejestracji. Możesz użyć BBCode tutaj."
 
-#: mod/profiles.php:673
-msgid "Change Profile Photo"
-msgstr "Zmień zdjęcie profilowe"
+#: mod/admin.php:1380
+msgid "Accounts abandoned after x days"
+msgstr "Konto porzucone od x dni."
 
-#: mod/profiles.php:674
-msgid "View this profile"
-msgstr "Wyświetl ten profil"
+#: mod/admin.php:1380
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Nie będzie marnować zasobów systemu wypytując zewnętrzne strony o opuszczone konta. Ustaw 0 dla braku limitu czasu ."
+
+#: mod/admin.php:1381
+msgid "Allowed friend domains"
+msgstr "Dozwolone domeny przyjaciół"
 
-#: mod/profiles.php:675 mod/profiles.php:770 src/Model/Profile.php:393
-msgid "Edit visibility"
-msgstr "Edytuj widoczność"
+#: 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 "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/profiles.php:676
-msgid "Create a new profile using these settings"
-msgstr "Stwórz nowy profil wykorzystując te ustawienia"
+#: mod/admin.php:1382
+msgid "Allowed email domains"
+msgstr "Dozwolone domeny e-mailowe"
 
-#: mod/profiles.php:677
-msgid "Clone this profile"
-msgstr "Sklonuj ten profil"
+#: 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 "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"
 
-#: mod/profiles.php:678
-msgid "Delete this profile"
-msgstr "Usuń ten profil"
+#: mod/admin.php:1383
+msgid "No OEmbed rich content"
+msgstr "Brak treści multimedialnych ze znaczkiem HTML"
 
-#: mod/profiles.php:680
-msgid "Basic information"
-msgstr "Podstawowe informacje"
+#: mod/admin.php:1383
+msgid ""
+"Don't show the rich content (e.g. embedded PDF), except from the domains "
+"listed below."
+msgstr "Nie wyświetlaj zasobów treści (np. osadzonego pliku PDF), z wyjątkiem domen wymienionych poniżej."
 
-#: mod/profiles.php:681
-msgid "Profile picture"
-msgstr "Zdjęcie profilowe"
+#: mod/admin.php:1384
+msgid "Allowed OEmbed domains"
+msgstr "Dozwolone domeny OEmbed"
 
-#: mod/profiles.php:683
-msgid "Preferences"
-msgstr "Preferencje"
+#: mod/admin.php:1384
+msgid ""
+"Comma separated list of domains which oembed content is allowed to be "
+"displayed. Wildcards are accepted."
+msgstr "Rozdzielana przecinkami lista domen, w których wyświetlana jest treść, może być wyświetlana. Symbole wieloznaczne są akceptowane."
 
-#: mod/profiles.php:684
-msgid "Status information"
-msgstr "Informacje o stanie"
+#: mod/admin.php:1385
+msgid "Block public"
+msgstr "Blokuj publicznie"
 
-#: mod/profiles.php:685
-msgid "Additional information"
-msgstr "Dodatkowe informacje"
+#: 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 "Zaznacz, aby zablokować publiczny dostęp do wszystkich publicznych stron prywatnych w tej witrynie, chyba że jesteś zalogowany."
 
-#: mod/profiles.php:688
-msgid "Relation"
-msgstr "Relacje"
+#: mod/admin.php:1386
+msgid "Force publish"
+msgstr "Wymuś publikację"
 
-#: mod/profiles.php:689 src/Util/Temporal.php:81 src/Util/Temporal.php:83
-msgid "Miscellaneous"
-msgstr "Różny"
+#: mod/admin.php:1386
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Zaznacz, aby wymusić umieszczenie wszystkich profili w tej witrynie w katalogu witryny."
 
-#: mod/profiles.php:692
-msgid "Your Gender:"
-msgstr "Płeć:"
+#: mod/admin.php:1387
+msgid "Global directory URL"
+msgstr "Globalny adres URL katalogu"
 
-#: mod/profiles.php:693
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Stan cywilny:"
+#: 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 "Adres URL do katalogu globalnego. Jeśli nie zostanie to ustawione, katalog globalny jest całkowicie niedostępny dla aplikacji."
 
-#: mod/profiles.php:694 src/Model/Profile.php:784
-msgid "Sexual Preference:"
-msgstr "Preferencje seksualne:"
+#: mod/admin.php:1388
+msgid "Private posts by default for new users"
+msgstr "Prywatne posty domyślnie dla nowych użytkowników"
 
-#: mod/profiles.php:695
-msgid "Example: fishing photography software"
-msgstr "Przykład: oprogramowanie do fotografowania ryb"
+#: mod/admin.php:1388
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Ustaw domyślne uprawnienia do publikowania dla wszystkich nowych członków na domyślną grupę prywatności, a nie publiczną."
 
-#: mod/profiles.php:700
-msgid "Profile Name:"
-msgstr "Nazwa profilu:"
+#: mod/admin.php:1389
+msgid "Don't include post content in email notifications"
+msgstr "Nie wklejaj zawartości postu do powiadomienia o poczcie"
 
-#: mod/profiles.php:702
+#: mod/admin.php:1389
 msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "To jest Twój <strong> publiczny </strong> profil. <br/><strong>Może </strong> zostać wyświetlony przez każdego kto używa internetu."
+"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 "W celu ochrony prywatności, nie włączaj zawartości postu/komentarza/wiadomości prywatnej/etc. do powiadomień w wiadomościach mailowych wysyłanych z tej strony."
 
-#: mod/profiles.php:703
-msgid "Your Full Name:"
-msgstr "Imię i Nazwisko:"
+#: mod/admin.php:1390
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Nie zezwalaj na publiczny dostęp do dodatkowych wtyczek wyszczególnionych w menu aplikacji."
 
-#: mod/profiles.php:704
-msgid "Title/Description:"
-msgstr "Tytuł/Opis :"
+#: mod/admin.php:1390
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr "Zaznaczenie tego pola spowoduje ograniczenie dodatków wymienionych w menu aplikacji tylko dla członków."
 
-#: mod/profiles.php:707
-msgid "Street Address:"
-msgstr "Ulica:"
+#: mod/admin.php:1391
+msgid "Don't embed private images in posts"
+msgstr "Nie umieszczaj prywatnych zdjęć w postach"
 
-#: mod/profiles.php:708
-msgid "Locality/City:"
-msgstr "Miejscowość/Miasto:"
+#: 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 "Nie zastępuj lokalnie hostowanych zdjęć prywatnych we wpisach za pomocą osadzonej kopii obrazu. Oznacza to, że osoby, które otrzymują posty zawierające prywatne zdjęcia, będą musiały uwierzytelnić i wczytać każdy obraz, co może trochę potrwać."
 
-#: mod/profiles.php:709
-msgid "Region/State:"
-msgstr "Region/Państwo:"
+#: mod/admin.php:1392
+msgid "Allow Users to set remote_self"
+msgstr "Zezwól użytkownikom na ustawienie remote_self"
 
-#: mod/profiles.php:710
-msgid "Postal/Zip Code:"
-msgstr "Kod Pocztowy:"
+#: 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 "Po sprawdzeniu tego każdy użytkownik może zaznaczyć każdy kontakt jako zdalny w oknie dialogowym kontaktu naprawczego. Ustawienie tej flagi na kontakcie powoduje dublowanie każdego wpisu tego kontaktu w strumieniu użytkowników."
 
-#: mod/profiles.php:711
-msgid "Country:"
-msgstr "Kraj:"
+#: mod/admin.php:1393
+msgid "Block multiple registrations"
+msgstr "Zablokuj wielokrotną rejestrację"
 
-#: mod/profiles.php:712 src/Util/Temporal.php:149
-msgid "Age: "
-msgstr "Wiek: "
+#: mod/admin.php:1393
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Nie pozwalaj użytkownikom na zakładanie dodatkowych kont do używania jako strony. "
 
-#: mod/profiles.php:715
-msgid "Who: (if applicable)"
-msgstr "Kto: (jeśli dotyczy)"
+#: mod/admin.php:1394
+msgid "OpenID support"
+msgstr "Wsparcie OpenID"
 
-#: mod/profiles.php:715
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Przykłady: cathy123, Cathy Williams, cathy@example.com"
+#: mod/admin.php:1394
+msgid "OpenID support for registration and logins."
+msgstr "Obsługa OpenID do rejestracji i logowania."
 
-#: mod/profiles.php:716
-msgid "Since [date]:"
-msgstr "Od [data]:"
+#: mod/admin.php:1395
+msgid "Fullname check"
+msgstr "Sprawdzanie pełnej nazwy"
 
-#: mod/profiles.php:718
-msgid "Tell us about yourself..."
-msgstr "Napisz o sobie..."
+#: mod/admin.php:1395
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Aby ograniczyć spam, wymagaj by użytkownik przy rejestracji w polu Imię i nazwisko użył spacji pomiędzy imieniem i nazwiskiem."
 
-#: mod/profiles.php:719
-msgid "XMPP (Jabber) address:"
-msgstr "Adres XMPP (Jabber):"
+#: mod/admin.php:1396
+msgid "Community pages for visitors"
+msgstr "Strony społecznościowe dla odwiedzających"
 
-#: mod/profiles.php:719
+#: mod/admin.php:1396
 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ć."
-
-#: mod/profiles.php:720
-msgid "Homepage URL:"
-msgstr "Adres URL strony domowej:"
+"Which community pages should be available for visitors. Local users always "
+"see both pages."
+msgstr "Które strony społeczności powinny być dostępne dla odwiedzających. Lokalni użytkownicy zawsze widzą obie strony."
 
-#: mod/profiles.php:721 src/Model/Profile.php:792
-msgid "Hometown:"
-msgstr "Miasto rodzinne:"
+#: mod/admin.php:1397
+msgid "Posts per user on community page"
+msgstr "Lista postów użytkownika na stronie społeczności"
 
-#: mod/profiles.php:722 src/Model/Profile.php:800
-msgid "Political Views:"
-msgstr "Poglądy polityczne:"
+#: mod/admin.php:1397
+msgid ""
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
+msgstr "Maksymalna liczba postów na użytkownika na stronie społeczności. (Nie dotyczy 'społeczności globalnej')"
 
-#: mod/profiles.php:723
-msgid "Religious Views:"
-msgstr "Poglądy religijne:"
+#: mod/admin.php:1398
+msgid "Enable OStatus support"
+msgstr "Włącz wsparcie OStatus"
 
-#: mod/profiles.php:724
-msgid "Public Keywords:"
-msgstr "Publiczne słowa kluczowe:"
+#: 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 "Zapewnij kompatybilność z OStatus (StatusNet, GNU Social itp.). Cała komunikacja w stanie OStatus jest jawna, dlatego ostrzeżenia o prywatności będą czasami wyświetlane."
 
-#: 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/admin.php:1399
+msgid "Only import OStatus threads from our contacts"
+msgstr "Importuj wątki OStatus tylko z naszych kontaktów"
 
-#: mod/profiles.php:725
-msgid "Private Keywords:"
-msgstr "Prywatne słowa kluczowe:"
+#: 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 "Normalnie importujemy każdą treść z naszych kontaktów OStatus. W tej opcji przechowujemy tylko wątki uruchomione przez kontakt znany w naszym systemie."
 
-#: mod/profiles.php:725
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Używany do wyszukiwania profili, niepokazywany innym)"
+#: mod/admin.php:1400
+msgid "OStatus support can only be enabled if threading is enabled."
+msgstr "Obsługa OStatus może być włączona tylko wtedy, gdy włączone jest wątkowanie."
 
-#: mod/profiles.php:726 src/Model/Profile.php:816
-msgid "Likes:"
-msgstr "Lubią to:"
+#: mod/admin.php:1402
+msgid ""
+"Diaspora support can't be enabled because Friendica was installed into a sub"
+" directory."
+msgstr "Obsługa Diaspory nie może być włączona, ponieważ Friendica została zainstalowana w podkatalogu."
 
-#: mod/profiles.php:727 src/Model/Profile.php:820
-msgid "Dislikes:"
-msgstr "Nie lubię tego:"
+#: mod/admin.php:1403
+msgid "Enable Diaspora support"
+msgstr "Włączyć obsługę Diaspory"
 
-#: mod/profiles.php:728
-msgid "Musical interests"
-msgstr "Muzyka"
+#: mod/admin.php:1403
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Zapewnij wbudowaną kompatybilność z siecią Diaspora."
 
-#: mod/profiles.php:729
-msgid "Books, literature"
-msgstr "Literatura"
+#: mod/admin.php:1404
+msgid "Only allow Friendica contacts"
+msgstr "Dopuść tylko kontakty Friendrica"
 
-#: mod/profiles.php:730
-msgid "Television"
-msgstr "Telewizja"
+#: mod/admin.php:1404
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Wszyscy znajomi muszą używać protokołów Friendica. Wszystkie inne wbudowane protokoły komunikacyjne są wyłączone."
 
-#: mod/profiles.php:731
-msgid "Film/dance/culture/entertainment"
-msgstr "Film/taniec/kultura/rozrywka"
+#: mod/admin.php:1405
+msgid "Verify SSL"
+msgstr "Weryfikacja SSL"
 
-#: mod/profiles.php:732
-msgid "Hobbies/Interests"
-msgstr "Zainteresowania"
+#: 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 "Jeśli chcesz, możesz włączyć ścisłe sprawdzanie certyfikatu. Oznacza to, że nie możesz połączyć się (w ogóle) z własnoręcznie podpisanymi stronami SSL."
 
-#: mod/profiles.php:733
-msgid "Love/romance"
-msgstr "Miłość/romans"
+#: mod/admin.php:1406
+msgid "Proxy user"
+msgstr "Użytkownik proxy"
 
-#: mod/profiles.php:734
-msgid "Work/employment"
-msgstr "Praca/zatrudnienie"
+#: mod/admin.php:1407
+msgid "Proxy URL"
+msgstr "URL Proxy"
 
-#: mod/profiles.php:735
-msgid "School/education"
-msgstr "Szkoła/edukacja"
+#: mod/admin.php:1408
+msgid "Network timeout"
+msgstr "Network timeout"
 
-#: mod/profiles.php:736
-msgid "Contact information and Social Networks"
-msgstr "Dane kontaktowe i Sieci społecznościowe"
+#: mod/admin.php:1408
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Wartość jest w sekundach. Ustaw na 0 dla nieograniczonej (niezalecane)."
 
-#: mod/profiles.php:767 src/Model/Profile.php:389
-msgid "Profile Image"
-msgstr "Zdjęcie profilowe"
+#: mod/admin.php:1409
+msgid "Maximum Load Average"
+msgstr "Maksymalne obciążenie średnie"
 
-#: mod/profiles.php:769 src/Model/Profile.php:392
-msgid "visible to everybody"
-msgstr "widoczne dla wszystkich"
+#: mod/admin.php:1409
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Maksymalne obciążenie systemu przed dostawą i odpytywaniem jest odłożone - domyślnie 50."
 
-#: mod/profiles.php:776
-msgid "Edit/Manage Profiles"
-msgstr "Edycja/Zarządzanie profilami"
+#: mod/admin.php:1410
+msgid "Maximum Load Average (Frontend)"
+msgstr "Maksymalne obciążenie średnie (Frontend)"
 
-#: mod/profiles.php:777 src/Model/Profile.php:379 src/Model/Profile.php:401
-msgid "Change profile photo"
-msgstr "Zmień zdjęcie profilowe"
+#: mod/admin.php:1410
+msgid "Maximum system load before the frontend quits service - default 50."
+msgstr "Maksymalne obciążenie systemu, zanim frontend zakończy pracę - domyślnie 50."
 
-#: mod/profiles.php:778 src/Model/Profile.php:380
-msgid "Create New Profile"
-msgstr "Utwórz nowy profil"
+#: mod/admin.php:1411
+msgid "Minimal Memory"
+msgstr "Minimalna pamięć"
 
-#: mod/register.php:99
+#: mod/admin.php:1411
 msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila."
+"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
+"default 0 (deactivated)."
+msgstr "Minimalna wolna pamięć w MB dla pracownika. Potrzebuje dostępu do /proc/ meminfo - domyślnie 0 (wyłączone)."
 
-#: mod/register.php:103
-#, php-format
+#: mod/admin.php:1412
+msgid "Maximum table size for optimization"
+msgstr "Maksymalny rozmiar stołu do optymalizacji"
+
+#: mod/admin.php:1412
 msgid ""
-"Failed to send email message. Here your accout details:<br> login: %s<br> "
-"password: %s<br><br>You can change your password after login."
-msgstr "Nie udało się wysłać wiadomości e-mail. Tutaj szczegóły twojego konta:<br> login: %s<br>hasło: %s<br><br>Możesz zmienić swoje hasło po zalogowaniu."
+"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
+"Enter -1 to disable it."
+msgstr "Maksymalny rozmiar tabeli (w MB) dla automatycznej optymalizacji - domyślnie 100 MB. Wprowadź -1, aby go wyłączyć."
 
-#: mod/register.php:110
-msgid "Registration successful."
-msgstr "Rejestracja udana."
+#: mod/admin.php:1413
+msgid "Minimum level of fragmentation"
+msgstr "Minimalny poziom fragmentacji"
 
-#: mod/register.php:115
-msgid "Your registration can not be processed."
-msgstr "Twoja rejestracja nie może zostać przeprowadzona. "
+#: mod/admin.php:1413
+msgid ""
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
+msgstr "Minimalny poziom fragmentacji, aby rozpocząć automatyczną optymalizację - domyślna wartość to 30%."
 
-#: mod/register.php:162
-msgid "Your registration is pending approval by the site owner."
-msgstr "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny."
+#: mod/admin.php:1415
+msgid "Periodical check of global contacts"
+msgstr "Okresowa kontrola kontaktów globalnych"
 
-#: mod/register.php:220
+#: mod/admin.php:1415
 msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr "Możesz (opcjonalnie) wypełnić ten formularz za pośrednictwem OpenID, podając swój OpenID i klikając 'Register'."
+"If enabled, the global contacts are checked periodically for missing or "
+"outdated data and the vitality of the contacts and servers."
+msgstr "Jeśli jest włączona, kontakty globalne są okresowo sprawdzane pod kątem brakujących lub nieaktualnych danych oraz żywotności kontaktów i serwerów."
 
-#: mod/register.php:221
+#: mod/admin.php:1416
+msgid "Days between requery"
+msgstr "Dni między żądaniem"
+
+#: mod/admin.php:1416
+msgid "Number of days after which a server is requeried for his contacts."
+msgstr "Liczba dni, po upływie których serwer jest żądany dla swoich kontaktów."
+
+#: mod/admin.php:1417
+msgid "Discover contacts from other servers"
+msgstr "Odkryj kontakty z innych serwerów"
+
+#: mod/admin.php:1417
 msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr "Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów."
+"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 "Okresowo wysyłaj zapytanie do innych serwerów o kontakty. Możesz wybierać pomiędzy 'użytkownikami': użytkownikami w systemie zdalnym, 'Kontakty globalne': aktywne kontakty znane w systemie. Zastępowanie jest przeznaczone dla serwerów Redmatrix i starszych serwerów Friendica, w których kontakty globalne nie były dostępne. Funkcja awaryjna zwiększa obciążenie serwera, dlatego zalecanym ustawieniem jest 'Użytkownicy, kontakty globalne'."
 
-#: mod/register.php:222
-msgid "Your OpenID (optional): "
-msgstr "Twój OpenID (opcjonalnie):"
+#: mod/admin.php:1418
+msgid "Timeframe for fetching global contacts"
+msgstr "Czas pobierania globalnych kontaktów"
 
-#: mod/register.php:234
-msgid "Include your profile in member directory?"
-msgstr "Czy dołączyć twój profil do katalogu członków?"
+#: 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 "Po aktywowaniu wykrywania ta wartość określa czas działania globalnych kontaktów pobieranych z innych serwerów."
 
-#: mod/register.php:259
-msgid "Note for the admin"
-msgstr "Uwaga dla administratora"
+#: mod/admin.php:1419
+msgid "Search the local directory"
+msgstr "Wyszukaj w lokalnym katalogu"
 
-#: mod/register.php:259
-msgid "Leave a message for the admin, why you want to join this node"
-msgstr "Pozostaw wiadomość dla administratora, dlaczego chcesz dołączyć do tego węzła"
+#: 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 "Wyszukaj lokalny katalog zamiast katalogu globalnego. Podczas wyszukiwania lokalnie każde wyszukiwanie zostanie wykonane w katalogu globalnym w tle. Poprawia to wyniki wyszukiwania, gdy wyszukiwanie jest powtarzane."
 
-#: mod/register.php:260
-msgid "Membership on this site is by invitation only."
-msgstr "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu."
+#: mod/admin.php:1421
+msgid "Publish server information"
+msgstr "Publikuj informacje o serwerze"
 
-#: mod/register.php:261
-msgid "Your invitation code: "
-msgstr "Twój kod zaproszenia:"
+#: 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 <a"
+" href='http://the-federation.info/'>the-federation.info</a> for details."
+msgstr "Jeśli opcja jest włączona, ogólne dane serwera i użytkowania zostaną opublikowane. Dane zawierają nazwę i wersję serwera, liczbę użytkowników z profilami publicznymi, liczbę postów oraz aktywowane protokoły i konektory. Aby uzyskać szczegółowe informacje, patrz <a href='http://the-federation.info/'>the-federation.info</a>."
 
-#: mod/register.php:270
-msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
-msgstr "Twoje Imię i Nazwisko (np. Jan Kowalski, prawdziwe lub wyglądające na prawdziwe):"
+#: mod/admin.php:1423
+msgid "Check upstream version"
+msgstr "Sprawdź wersję powyżej"
 
-#: mod/register.php:271
+#: mod/admin.php:1423
 msgid ""
-"Your Email Address: (Initial information will be send there, so this has to "
-"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)."
+"Enables checking for new Friendica versions at github. If there is a new "
+"version, you will be informed in the admin panel overview."
+msgstr "Umożliwia sprawdzenie nowych wersji Friendica na github. Jeśli pojawi się nowa wersja, zostaniesz o tym poinformowany w panelu administracyjnym."
 
-#: mod/register.php:273 mod/settings.php:1201
-msgid "New Password:"
-msgstr "Nowe hasło:"
+#: mod/admin.php:1424
+msgid "Suppress Tags"
+msgstr "Ukryj tagi"
 
-#: mod/register.php:273
-msgid "Leave empty for an auto generated password."
-msgstr "Pozostaw puste dla wygenerowanego automatycznie hasła."
+#: mod/admin.php:1424
+msgid "Suppress showing a list of hashtags at the end of the posting."
+msgstr "Pomiń wyświetlenie listy hashtagów na końcu postu."
 
-#: mod/register.php:274 mod/settings.php:1202
-msgid "Confirm:"
-msgstr "Potwierdź:"
+#: mod/admin.php:1425
+msgid "Path to item cache"
+msgstr "Ścieżka do pamięci podręcznej"
+
+#: mod/admin.php:1425
+msgid "The item caches buffers generated bbcode and external images."
+msgstr "Pozycja buforuje bufory generowane bbcode i obrazy zewnętrzne."
 
-#: 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 '<strong>nickname@%s</strong>'."
-msgstr "Wybierz pseudonim profilu. Nazwa musi zaczynać się od znaku tekstowego. Twój adres profilu na tej stronie będzie wówczas '<strong>pseudonimem%s</strong>'."
+#: mod/admin.php:1426
+msgid "Cache duration in seconds"
+msgstr "Czas trwania w sekundach"
 
-#: mod/register.php:276
-msgid "Choose a nickname: "
-msgstr "Wybierz pseudonim:"
+#: 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 "Jak długo powinny być przechowywane pliki pamięci podręcznej? Wartość domyślna to 86400 sekund (jeden dzień). Aby wyłączyć pamięć podręczną elementów, ustaw wartość na -1."
 
-#: mod/register.php:279 src/Content/Nav.php:128 src/Module/Login.php:283
-msgid "Register"
-msgstr "Zarejestruj"
+#: mod/admin.php:1427
+msgid "Maximum numbers of comments per post"
+msgstr "Maksymalna liczba komentarzy na post"
 
-#: mod/register.php:286
-msgid "Import your profile to this friendica instance"
-msgstr "Zaimportuj swój profil do tej instancji friendica"
+#: mod/admin.php:1427
+msgid "How much comments should be shown for each post? Default value is 100."
+msgstr "Ile komentarzy powinno być pokazywanych dla każdego posta? Domyślna wartość to 100."
 
-#: mod/removeme.php:43
-msgid "User deleted their account"
-msgstr "Użytkownik usunął swoje konto"
+#: mod/admin.php:1428
+msgid "Temp path"
+msgstr "Ścieżka do Temp"
 
-#: mod/removeme.php:44
+#: mod/admin.php:1428
 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"
+"If you have a restricted system where the webserver can't access the system "
+"temp path, enter another path here."
+msgstr "Jeśli masz zastrzeżony system, w którym serwer internetowy nie może uzyskać dostępu do ścieżki temp systemu, wprowadź tutaj inną ścieżkę."
 
-#: mod/removeme.php:76 mod/removeme.php:79
-msgid "Remove My Account"
-msgstr "Usuń moje konto"
+#: mod/admin.php:1429
+msgid "Base path to installation"
+msgstr "Podstawowa ścieżka do instalacji"
 
-#: mod/removeme.php:77
+#: mod/admin.php:1429
 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ąć."
+"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 "Jeśli system nie może wykryć poprawnej ścieżki do instalacji, wprowadź tutaj poprawną ścieżkę. To ustawienie powinno być ustawione tylko wtedy, gdy używasz ograniczonego systemu i dowiązań symbolicznych do twojego webroota."
 
-#: mod/removeme.php:78
-msgid "Please enter your password for verification:"
-msgstr "Wprowadź hasło w celu weryfikacji."
+#: mod/admin.php:1430
+msgid "Disable picture proxy"
+msgstr "Wyłącz obraz proxy"
 
-#: mod/settings.php:72
-msgid "Display"
-msgstr "Wyświetlanie"
+#: mod/admin.php:1430
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on"
+" systems with very low bandwith."
+msgstr "Proxy obrazu zwiększa wydajność i prywatność. Nie należy go stosować w systemach o bardzo niskiej przepustowości."
 
-#: mod/settings.php:79 mod/settings.php:842
-msgid "Social Networks"
-msgstr "Portale społecznościowe"
+#: mod/admin.php:1431
+msgid "Only search in tags"
+msgstr "Szukaj tylko w tagach"
 
-#: mod/settings.php:93 src/Content/Nav.php:204
-msgid "Delegations"
-msgstr "Delegowanie"
+#: mod/admin.php:1431
+msgid "On large systems the text search can slow down the system extremely."
+msgstr "W dużych systemach wyszukiwanie tekstu może wyjątkowo spowolnić system."
 
-#: mod/settings.php:100
-msgid "Connected apps"
-msgstr "Powiązane aplikacje"
+#: mod/admin.php:1433
+msgid "New base url"
+msgstr "Nowy bazowy adres url"
 
-#: mod/settings.php:114
-msgid "Remove account"
-msgstr "Usuń konto"
+#: mod/admin.php:1433
+msgid ""
+"Change base url for this server. Sends relocate message to all Friendica and"
+" Diaspora* contacts of all users."
+msgstr "Zmień bazowy adres URL dla tego serwera. Wysyła wiadomość o przeniesieniu do wszystkich kontaktów Friendica i Diaspora* wszystkich użytkowników."
 
-#: mod/settings.php:168
-msgid "Missing some important data!"
-msgstr "Brakuje ważnych danych!"
+#: mod/admin.php:1435
+msgid "RINO Encryption"
+msgstr "Szyfrowanie RINO"
 
-#: 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/admin.php:1435
+msgid "Encryption layer between nodes."
+msgstr "Warstwa szyfrowania między węzłami."
 
-#: mod/settings.php:284
-msgid "Email settings updated."
-msgstr "Zaktualizowano ustawienia email."
+#: mod/admin.php:1435
+msgid "Enabled"
+msgstr "Włącz"
 
-#: mod/settings.php:300
-msgid "Features updated"
-msgstr "Funkcje zaktualizowane"
+#: mod/admin.php:1437
+msgid "Maximum number of parallel workers"
+msgstr "Maksymalna liczba równoległych pracowników"
 
-#: 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/admin.php:1437
+msgid ""
+"On shared hosters set this to 2. On larger systems, values of 10 are great. "
+"Default value is 4."
+msgstr "Na współdzielonych hostach ustaw to na 2. W większych systemach wartości 10 są świetne. Domyślna wartość to 4."
 
-#: 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/admin.php:1438
+msgid "Don't use 'proc_open' with the worker"
+msgstr "Nie używaj 'proc_open' z robotnikiem"
 
-#: mod/settings.php:389
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Puste hasła są niedozwolone. Hasło niezmienione."
+#: 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 "Włącz to, jeśli twój system nie zezwala na użycie 'proc_open'. Może się to zdarzyć w przypadku współdzielonych hosterów. Jeśli ta opcja jest włączona, powinieneś zwiększyć częstotliwość wywołań pracowniczych w twoim pliku crontab."
+
+#: mod/admin.php:1439
+msgid "Enable fastlane"
+msgstr "Włącz Fastlane"
 
-#: mod/settings.php:394 src/Core/Console/NewPassword.php:87
+#: mod/admin.php:1439
 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."
+"When enabed, the fastlane mechanism starts an additional worker if processes"
+" with higher priority are blocked by processes of lower priority."
+msgstr "Po włączeniu system Fastlane uruchamia dodatkowego pracownika, jeśli procesy o wyższym priorytecie są blokowane przez procesy o niższym priorytecie."
 
-#: mod/settings.php:400
-msgid "Wrong password."
-msgstr "Złe hasło."
+#: mod/admin.php:1440
+msgid "Enable frontend worker"
+msgstr "Włącz pracownika frontend"
 
-#: mod/settings.php:407 src/Core/Console/NewPassword.php:94
-msgid "Password changed."
-msgstr "Hasło zostało zmianione."
+#: 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 "Po włączeniu proces roboczy jest wyzwalany, gdy wykonywany jest dostęp do zaplecza \\x28e.g. wiadomości są dostarczane\\x29. W mniejszych witrynach możesz chcieć wywoływać %s/robotnika regularnie przez zewnętrzne zadanie cron. Tę opcję należy włączyć tylko wtedy, gdy nie można używać zadań cron/zaplanowanych na serwerze."
 
-#: 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/admin.php:1442
+msgid "Subscribe to relay"
+msgstr "Subskrybuj przekaźnik"
 
-#: mod/settings.php:496
-msgid " Please use a shorter name."
-msgstr "Proszę użyć krótszej nazwy."
+#: 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 "Umożliwia odbieranie publicznych wiadomości z przekaźnika. Zostaną uwzględnione w tagach wyszukiwania, subskrybowanych i na stronie społeczności globalnej."
 
-#: mod/settings.php:499
-msgid " Name too short."
-msgstr "Za krótka nazwa."
+#: mod/admin.php:1443
+msgid "Relay server"
+msgstr "Serwer przekazujący"
 
-#: mod/settings.php:507
-msgid "Wrong Password"
-msgstr "Złe hasło"
+#: mod/admin.php:1443
+msgid ""
+"Address of the relay server where public posts should be send to. For "
+"example https://relay.diasp.org"
+msgstr "Adres serwera przekazującego, do którego należy wysyłać publiczne posty. Na przykład https://relay.diasp.org"
 
-#: mod/settings.php:512
-msgid "Invalid email."
-msgstr "Niepoprawny e-mail."
+#: mod/admin.php:1444
+msgid "Direct relay transfer"
+msgstr "Bezpośredni transfer przekaźników"
 
-#: mod/settings.php:519
-msgid "Cannot change to that email."
-msgstr "Nie można zmienić tego e-maila."
+#: mod/admin.php:1444
+msgid ""
+"Enables the direct transfer to other servers without using the relay servers"
+msgstr "Umożliwia bezpośredni transfer do innych serwerów bez korzystania z serwerów przekazujących"
 
-#: 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/admin.php:1445
+msgid "Relay scope"
+msgstr "Zakres przekaźnika"
 
-#: 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/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 "Może być 'wszystkim' lub 'tagami'. 'wszystko' oznacza, że ​​każdy post publiczny powinien zostać odebrany. 'tagi' oznaczają, że powinny być odbierane tylko posty z wybranymi tagami."
 
-#: mod/settings.php:615
-msgid "Settings updated."
-msgstr "Zaktualizowano ustawienia."
+#: mod/admin.php:1445
+msgid "all"
+msgstr "wszystko"
 
-#: mod/settings.php:674 mod/settings.php:700 mod/settings.php:736
-msgid "Add application"
-msgstr "Dodaj aplikację"
+#: mod/admin.php:1445
+msgid "tags"
+msgstr "tagi"
 
-#: mod/settings.php:678 mod/settings.php:704
-msgid "Consumer Key"
-msgstr "Klucz klienta"
+#: mod/admin.php:1446
+msgid "Server tags"
+msgstr "Serwer tagów"
 
-#: mod/settings.php:679 mod/settings.php:705
-msgid "Consumer Secret"
-msgstr "Tajny klucz klienta"
+#: mod/admin.php:1446
+msgid "Comma separated list of tags for the 'tags' subscription."
+msgstr "Lista oddzielonych przecinkami znaczników dla subskrypcji 'tagów'."
+
+#: mod/admin.php:1447
+msgid "Allow user tags"
+msgstr "Pozwól na tagi użytkowników"
 
-#: mod/settings.php:680 mod/settings.php:706
-msgid "Redirect"
-msgstr "Przekierowanie"
+#: 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 "Po włączeniu tagi z zapisanych wyszukiwań będą używane do subskrypcji 'tagów' oprócz 'relay_server_tags'."
 
-#: mod/settings.php:681 mod/settings.php:707
-msgid "Icon url"
-msgstr "Adres Url ikony"
+#: mod/admin.php:1475
+msgid "Update has been marked successful"
+msgstr "Aktualizacja została oznaczona jako udana"
 
-#: mod/settings.php:692
-msgid "You can't edit this application."
-msgstr "Nie możesz edytować tej aplikacji."
+#: mod/admin.php:1482
+#, php-format
+msgid "Database structure update %s was successfully applied."
+msgstr "Pomyślnie zastosowano aktualizację %s struktury bazy danych."
 
-#: mod/settings.php:735
-msgid "Connected Apps"
-msgstr "Powiązane aplikacje"
+#: mod/admin.php:1485
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
+msgstr "Wykonanie aktualizacji %s struktury bazy danych nie powiodło się z powodu błędu:%s"
 
-#: mod/settings.php:737 src/Object/Post.php:155 src/Object/Post.php:157
-msgid "Edit"
-msgstr "Edytuj"
+#: mod/admin.php:1498
+#, php-format
+msgid "Executing %s failed with error: %s"
+msgstr "Wykonanie %s nie powiodło się z powodu błędu:%s"
 
-#: mod/settings.php:739
-msgid "Client key starts with"
-msgstr "Klucz klienta zaczyna się od"
+#: mod/admin.php:1500
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Aktualizacja %s została pomyślnie zastosowana."
 
-#: mod/settings.php:740
-msgid "No name"
-msgstr "Bez nazwy"
+#: mod/admin.php:1503
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Aktualizacja %s nie zwróciła statusu. Nieznane, jeśli się udało."
 
-#: mod/settings.php:741
-msgid "Remove authorization"
-msgstr "Odwołaj upoważnienie"
+#: mod/admin.php:1506
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
+msgstr "Nie było dodatkowej funkcji %s aktualizacji, która musiała zostać wywołana."
 
-#: mod/settings.php:752
-msgid "No Addon settings configured"
-msgstr "Brak skonfigurowanych ustawień Dodatków"
+#: mod/admin.php:1526
+msgid "No failed updates."
+msgstr "Brak błędów aktualizacji."
 
-#: mod/settings.php:761
-msgid "Addon Settings"
-msgstr "Ustawienia Dodatków"
+#: mod/admin.php:1527
+msgid "Check database structure"
+msgstr "Sprawdź strukturę bazy danych"
 
-#: mod/settings.php:782
-msgid "Additional Features"
-msgstr "Dodatkowe funkcje"
+#: mod/admin.php:1532
+msgid "Failed Updates"
+msgstr "Błąd aktualizacji"
 
-#: mod/settings.php:805 src/Content/ContactSelector.php:83
-msgid "Diaspora"
-msgstr "Diaspora"
+#: mod/admin.php:1533
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "Nie dotyczy to aktualizacji przed 1139, który nie zwrócił statusu."
 
-#: mod/settings.php:805 mod/settings.php:806
-msgid "enabled"
-msgstr "włączony"
+#: mod/admin.php:1534
+msgid "Mark success (if update was manually applied)"
+msgstr "Oznacz sukces (jeśli aktualizacja została ręcznie zastosowana)"
 
-#: mod/settings.php:805 mod/settings.php:806
-msgid "disabled"
-msgstr "wyłączony"
+#: mod/admin.php:1535
+msgid "Attempt to execute this update step automatically"
+msgstr "Spróbuj automatycznie wykonać ten krok aktualizacji"
 
-#: mod/settings.php:805 mod/settings.php:806
+#: mod/admin.php:1574
 #, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr "Wbudowane wsparcie dla %s łączność jest %s"
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tthe administrator of %2$s has set up an account for you."
+msgstr "\n\t\t\tSzanowny/a Panie/Pani %1$s, \n\t\t\t\tadministrator %2$s założył dla ciebie konto."
 
-#: mod/settings.php:806
-msgid "GNU Social (OStatus)"
-msgstr "GNU Społeczny (OStatus)"
+#: 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 "\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/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/admin.php:1621
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
 
-#: mod/settings.php:847
-msgid "General Social Media Settings"
-msgstr "Ogólne ustawienia mediów społecznościowych"
+#: mod/admin.php:1627
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] " %s użytkownik usunięty"
+msgstr[1] " %s użytkownicy usunięci"
+msgstr[2] " %s usuniętych użytkowników "
+msgstr[3] " %s usuniętych użytkowników "
 
-#: mod/settings.php:848
-msgid "Disable Content Warning"
-msgstr "Wyłącz ostrzeżenie o treści"
+#: mod/admin.php:1674
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Użytkownik '%s' usunięty"
 
-#: 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/admin.php:1682
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Użytkownik '%s' odblokowany"
 
-#: mod/settings.php:849
-msgid "Disable intelligent shortening"
-msgstr "Wyłącz inteligentne skracanie"
+#: mod/admin.php:1682
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Użytkownik '%s' zablokowany"
 
-#: 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/admin.php:1743
+msgid "Private Forum"
+msgstr "Prywatne forum"
 
-#: 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/admin.php:1796 mod/admin.php:1820
+msgid "Register date"
+msgstr "Data rejestracji"
 
-#: 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/admin.php:1796 mod/admin.php:1820
+msgid "Last login"
+msgstr "Ostatnie logowanie"
 
-#: mod/settings.php:851
-msgid "Default group for OStatus contacts"
-msgstr "Domyślna grupa dla kontaktów OStatus"
+#: mod/admin.php:1796 mod/admin.php:1820
+msgid "Last item"
+msgstr "Ostatni element"
 
-#: mod/settings.php:852
-msgid "Your legacy GNU Social account"
-msgstr "Twoje starsze konto społecznościowe GNU"
+#: mod/admin.php:1796
+msgid "Type"
+msgstr "Typu"
 
-#: 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/admin.php:1803
+msgid "Add User"
+msgstr "Dodaj użytkownika"
 
-#: mod/settings.php:855
-msgid "Repair OStatus subscriptions"
-msgstr "Napraw subskrypcje OStatus"
+#: mod/admin.php:1805
+msgid "User registrations waiting for confirm"
+msgstr "Zarejestrowani użytkownicy czekający na potwierdzenie"
 
-#: mod/settings.php:859
-msgid "Email/Mailbox Setup"
-msgstr "Ustawienia  emaila/skrzynki mailowej"
+#: mod/admin.php:1806
+msgid "User waiting for permanent deletion"
+msgstr "Użytkownik czekający na trwałe usunięcie"
 
-#: 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/admin.php:1807
+msgid "Request date"
+msgstr "Data prośby"
 
-#: mod/settings.php:861
-msgid "Last successful email check:"
-msgstr "Ostatni sprawdzony e-mail:"
+#: mod/admin.php:1808
+msgid "No registrations."
+msgstr "Brak rejestracji."
 
-#: mod/settings.php:863
-msgid "IMAP server name:"
-msgstr "Nazwa serwera IMAP:"
+#: mod/admin.php:1809
+msgid "Note from the user"
+msgstr "Uwaga od użytkownika"
 
-#: mod/settings.php:864
-msgid "IMAP port:"
-msgstr "Port IMAP:"
+#: mod/admin.php:1810 mod/notifications.php:179 mod/notifications.php:264
+msgid "Approve"
+msgstr "Zatwierdź"
 
-#: mod/settings.php:865
-msgid "Security:"
-msgstr "Ochrona:"
+#: mod/admin.php:1811
+msgid "Deny"
+msgstr "Odmów"
 
-#: mod/settings.php:865 mod/settings.php:870
-msgid "None"
-msgstr "Brak"
+#: mod/admin.php:1815
+msgid "Site admin"
+msgstr "Administracja stroną"
 
-#: mod/settings.php:866
-msgid "Email login name:"
-msgstr "Nazwa logowania e-mail:"
+#: mod/admin.php:1816
+msgid "Account expired"
+msgstr "Konto wygasło."
 
-#: mod/settings.php:867
-msgid "Email password:"
-msgstr "E-mail hasło:"
+#: mod/admin.php:1819
+msgid "New User"
+msgstr "Nowy użytkownik"
 
-#: mod/settings.php:868
-msgid "Reply-to address:"
-msgstr "Adres zwrotny:"
+#: mod/admin.php:1820
+msgid "Deleted since"
+msgstr "Skasowany od"
 
-#: mod/settings.php:869
-msgid "Send public posts to all email contacts:"
-msgstr "Wyślij publiczny post do wszystkich kontaktów e-mail"
+#: 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/settings.php:870
-msgid "Action after import:"
-msgstr "Akcja po zaimportowaniu:"
+#: 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/settings.php:870 src/Content/Nav.php:191
-msgid "Mark as seen"
-msgstr "Oznacz jako przeczytane"
+#: mod/admin.php:1836
+msgid "Name of the new user."
+msgstr "Nazwa nowego użytkownika."
 
-#: mod/settings.php:870
-msgid "Move to folder"
-msgstr "Przenieś do folderu"
+#: mod/admin.php:1837
+msgid "Nickname"
+msgstr "Pseudonim"
 
-#: mod/settings.php:871
-msgid "Move to folder:"
-msgstr "Przenieś do folderu:"
+#: mod/admin.php:1837
+msgid "Nickname of the new user."
+msgstr "Pseudonim nowego użytkownika."
 
-#: mod/settings.php:914
+#: mod/admin.php:1838
+msgid "Email address of the new user."
+msgstr "Adres email nowego użytkownika."
+
+#: mod/admin.php:1880
 #, php-format
-msgid "%s - (Unsupported)"
-msgstr "%s - (Nieobsługiwane)"
+msgid "Addon %s disabled."
+msgstr "Dodatek %s wyłączony."
 
-#: mod/settings.php:916
+#: mod/admin.php:1884
 #, php-format
-msgid "%s - (Experimental)"
-msgstr "%s- (Eksperymentalne)"
+msgid "Addon %s enabled."
+msgstr "Dodatek %s włączony."
 
-#: mod/settings.php:959
-msgid "Display Settings"
-msgstr "WyÅ\9bwietl ustawienia"
+#: mod/admin.php:1894 mod/admin.php:2143
+msgid "Disable"
+msgstr "WyÅ\82Ä\85cz"
 
-#: mod/settings.php:965 mod/settings.php:989
-msgid "Display Theme:"
-msgstr "Wyświetl motyw:"
+#: mod/admin.php:1897 mod/admin.php:2146
+msgid "Enable"
+msgstr "Zezwól"
 
-#: mod/settings.php:966
-msgid "Mobile Theme:"
-msgstr "Motyw dla urządzeń mobilnych:"
+#: mod/admin.php:1919 mod/admin.php:2188
+msgid "Toggle"
+msgstr "Włącz"
 
-#: mod/settings.php:967
-msgid "Suppress warning of insecure networks"
-msgstr "Ukryj ostrzeżenie przed niebezpiecznymi sieciami"
+#: mod/admin.php:1927 mod/admin.php:2197
+msgid "Author: "
+msgstr "Autor: "
 
-#: mod/settings.php:967
+#: mod/admin.php:1928 mod/admin.php:2198
+msgid "Maintainer: "
+msgstr "Opiekun:"
+
+#: mod/admin.php:1980
+msgid "Reload active addons"
+msgstr "Załaduj ponownie aktywne dodatki"
+
+#: mod/admin.php:1985
+#, php-format
 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"
+"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 "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/settings.php:968
-msgid "Update browser every xx seconds"
-msgstr "Odświeżaj stronę co xx sekund"
+#: mod/admin.php:2105
+msgid "No themes found."
+msgstr "Nie znaleziono motywów."
 
-#: 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/admin.php:2179
+msgid "Screenshot"
+msgstr "Zrzut ekranu"
 
-#: mod/settings.php:969
-msgid "Number of items to display per page:"
-msgstr "Liczba elementów do wyświetlenia na stronie:"
+#: mod/admin.php:2233
+msgid "Reload active themes"
+msgstr "Przeładuj aktywne motywy"
 
-#: mod/settings.php:969 mod/settings.php:970
-msgid "Maximum of 100 items"
-msgstr "Maksymalnie 100 elementów"
+#: 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/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/admin.php:2239
+msgid "[Experimental]"
+msgstr "[Eksperymentalne]"
 
-#: mod/settings.php:971
-msgid "Don't show emoticons"
-msgstr "Nie pokazuj emotikonek"
+#: mod/admin.php:2240
+msgid "[Unsupported]"
+msgstr "[Niewspieralne]"
 
-#: mod/settings.php:972
-msgid "Calendar"
-msgstr "Kalendarz"
+#: mod/admin.php:2264
+msgid "Log settings updated."
+msgstr "Zaktualizowano ustawienia logów."
 
-#: mod/settings.php:973
-msgid "Beginning of week:"
-msgstr "Początek tygodnia:"
+#: mod/admin.php:2296
+msgid "PHP log currently enabled."
+msgstr "Dziennik PHP jest obecnie włączony."
 
-#: mod/settings.php:974
-msgid "Don't show notices"
-msgstr "Nie pokazuj powiadomień"
+#: mod/admin.php:2298
+msgid "PHP log currently disabled."
+msgstr "Dziennik PHP jest obecnie wyłączony."
 
-#: mod/settings.php:975
-msgid "Infinite scroll"
-msgstr "Nieskończone przewijanie"
+#: mod/admin.php:2307
+msgid "Clear"
+msgstr "Wyczyść"
 
-#: 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/admin.php:2311
+msgid "Enable Debugging"
+msgstr "Włącz debugowanie"
 
-#: mod/settings.php:976
+#: mod/admin.php:2312
+msgid "Log file"
+msgstr "Plik logów"
+
+#: mod/admin.php:2312
 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."
+"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/settings.php:977
-msgid "Bandwith Saver Mode"
-msgstr "Tryb oszczędzania przepustowości"
+#: mod/admin.php:2313
+msgid "Log level"
+msgstr "Poziom logów"
 
-#: mod/settings.php:977
+#: mod/admin.php:2315
+msgid "PHP logging"
+msgstr "Logowanie w PHP"
+
+#: mod/admin.php:2316
 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."
+"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 "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/settings.php:978
-msgid "Smart Threading"
-msgstr "Inteligentne gwintowanie"
+#: mod/admin.php:2347
+#, php-format
+msgid ""
+"Error trying to open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see "
+"if file %1$s exist and is readable."
+msgstr "Błąd podczas próby otwarcia <strong>%1$s</strong> pliku dziennika. \\r\\n <br/>Sprawdź, czy plik %1$s istnieje i czy można go odczytać."
 
-#: mod/settings.php:978
+#: mod/admin.php:2351
+#, php-format
 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."
+"Couldn't open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see if file"
+" %1$s is readable."
+msgstr "Nie można otworzyć <strong>%1$s</strong>pliku dziennika. \\r\\n<br/>Sprawdź, czy plik %1$s jest czytelny."
 
-#: mod/settings.php:980
-msgid "General Theme Settings"
-msgstr "Ogólne ustawienia motywu"
+#: mod/admin.php:2443
+#, php-format
+msgid "Lock feature %s"
+msgstr "Funkcja blokady %s"
 
-#: mod/settings.php:981
-msgid "Custom Theme Settings"
-msgstr "Niestandardowe ustawienia motywów"
+#: mod/admin.php:2451
+msgid "Manage Additional Features"
+msgstr "Zarządzanie dodatkowymi funkcjami"
 
-#: mod/settings.php:982
-msgid "Content Settings"
-msgstr "Ustawienia zawartości"
+#: mod/delegate.php:37
+msgid "Parent user not found."
+msgstr "Nie znaleziono użytkownika nadrzędnego."
 
-#: 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/delegate.php:144
+msgid "No parent user"
+msgstr "Brak nadrzędnego użytkownika"
 
-#: 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/delegate.php:159
+msgid "Parent Password:"
+msgstr "Hasło nadrzędne:"
 
-#: mod/settings.php:1044
-msgid "Account Types"
-msgstr "Rodzaje kont"
+#: 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/settings.php:1045
-msgid "Personal Page Subtypes"
-msgstr "Podtypy osobistych stron"
+#: mod/delegate.php:164
+msgid "Parent User"
+msgstr "Użytkownik nadrzędny"
 
-#: mod/settings.php:1046
-msgid "Community Forum Subtypes"
-msgstr "Podtypy społeczności forum"
+#: 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: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/settings.php:1053
-msgid "Personal Page"
-msgstr "Strona osobista"
+#: mod/delegate.php:173
+msgid "Existing Page Delegates"
+msgstr "Obecni delegaci stron"
 
-#: mod/settings.php:1054
-msgid "Account for a personal profile."
-msgstr "Konto dla profilu osobistego."
+#: mod/delegate.php:175
+msgid "Potential Delegates"
+msgstr "Potencjalni delegaci"
 
-#: mod/settings.php:1057
-msgid "Organisation Page"
-msgstr "Strona Organizacji"
+#: mod/delegate.php:177 mod/tagrm.php:98
+msgid "Remove"
+msgstr "Usuń"
 
-#: 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/delegate.php:178
+msgid "Add"
+msgstr "Dodaj"
 
-#: mod/settings.php:1061
-msgid "News Page"
-msgstr "Strona Wiadomości"
+#: mod/delegate.php:179
+msgid "No entries."
+msgstr "Brak wpisów."
 
-#: 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/photos.php:109 mod/photos.php:1713
+msgid "Recent Photos"
+msgstr "Ostatnio dodane zdjęcia"
 
-#: mod/settings.php:1065
-msgid "Community Forum"
-msgstr "Forum społecznościowe"
+#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715
+msgid "Upload New Photos"
+msgstr "Wyślij nowe zdjęcie"
 
-#: mod/settings.php:1066
-msgid "Account for community discussions."
-msgstr "Konto do dyskusji w społeczności."
+#: mod/photos.php:184
+msgid "Contact information unavailable"
+msgstr "Informacje kontaktowe są niedostępne."
 
-#: mod/settings.php:1069
-msgid "Normal Account Page"
-msgstr "Normalna strona konta"
+#: mod/photos.php:204
+msgid "Album not found."
+msgstr "Album nie znaleziony"
 
-#: 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/photos.php:234 mod/photos.php:245 mod/photos.php:1161
+msgid "Delete Album"
+msgstr "Usuń album"
 
-#: mod/settings.php:1073
-msgid "Soapbox Page"
-msgstr "Strona Soapbox"
+#: 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/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/photos.php:310 mod/photos.php:321 mod/photos.php:1446
+msgid "Delete Photo"
+msgstr "Usuń zdjęcie"
 
-#: mod/settings.php:1077
-msgid "Public Forum"
-msgstr "Forum publiczne"
+#: mod/photos.php:319
+msgid "Do you really want to delete this photo?"
+msgstr "Czy na pewno chcesz usunąć to zdjęcie ?"
 
-#: mod/settings.php:1078
-msgid "Automatically approves all contact requests."
-msgstr "Automatycznie zatwierdza wszystkie prośby o kontakt."
+#: mod/photos.php:667
+msgid "a photo"
+msgstr "zdjęcie"
 
-#: mod/settings.php:1081
-msgid "Automatic Friend Page"
-msgstr "Automatyczna strona znajomego"
+#: 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/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/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/settings.php:1085
-msgid "Private Forum [Experimental]"
-msgstr "Prywatne Forum [Eksperymentalne]"
+#: mod/photos.php:772
+msgid "Image file is missing"
+msgstr "Brak pliku obrazu"
 
-#: mod/settings.php:1086
-msgid "Requires manual approval of contact requests."
-msgstr "Wymaga ręcznego zatwierdzania żądań kontaktów."
+#: 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/settings.php:1097
-msgid "OpenID:"
-msgstr "OpenID:"
+#: mod/photos.php:803
+msgid "Image file is empty."
+msgstr "Plik obrazka jest pusty."
 
-#: 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/photos.php:940
+msgid "No photos selected"
+msgstr "Nie zaznaczono zdjęć"
 
-#: 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/photos.php:1036 mod/videos.php:309
+msgid "Access to this item is restricted."
+msgstr "Dostęp do tego obiektu jest ograniczony."
 
-#: mod/settings.php:1105
-#, php-format
-msgid ""
-"Your profile will be published in the global friendica directories (e.g. <a "
-"href=\"%s\">%s</a>). Your profile will be visible in public."
-msgstr "Twój profil zostanie opublikowany w globalnych katalogach friendica (np.<a href=\"%s\">%s</a>). Twój profil będzie widoczny publicznie."
+#: mod/photos.php:1090
+msgid "Upload Photos"
+msgstr "Prześlij zdjęcia"
 
-#: 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/photos.php:1094 mod/photos.php:1156
+msgid "New album name: "
+msgstr "Nazwa nowego albumu:"
 
-#: mod/settings.php:1111
-#, php-format
-msgid ""
-"Your profile will be published in this node's <a href=\"%s\">local "
-"directory</a>. Your profile details may be publicly visible depending on the"
-" system settings."
-msgstr "Twój profil zostanie opublikowany w lokalnym katalogu tego <a href=\"%s\">węzła</a>. Dane Twojego profilu mogą być publicznie widoczne w zależności od ustawień systemu."
+#: mod/photos.php:1095
+msgid "or existing album name: "
+msgstr "lub istniejąca nazwa albumu:"
 
-#: 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/photos.php:1096
+msgid "Do not show a status post for this upload"
+msgstr "Nie pokazuj statusu postów dla tego wysłania"
 
-#: 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/photos.php:1167
+msgid "Edit Album"
+msgstr "Edytuj album"
 
-#: mod/settings.php:1122
-msgid "Hide your profile details from anonymous viewers?"
-msgstr "Ukryć dane Twojego profilu przed anonimowymi widzami?"
+#: mod/photos.php:1172
+msgid "Show Newest First"
+msgstr "Najpierw pokaż najnowsze"
 
-#: 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/photos.php:1174
+msgid "Show Oldest First"
+msgstr "Najpierw pokaż najstarsze"
 
-#: 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/photos.php:1195 mod/photos.php:1698
+msgid "View Photo"
+msgstr "Zobacz zdjęcie"
 
-#: 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/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/settings.php:1130
-msgid "Allow friends to tag your posts?"
-msgstr "Zezwolić na oznaczanie Twoich postów przez znajomych?"
+#: mod/photos.php:1238
+msgid "Photo not available"
+msgstr "Zdjęcie niedostępne"
 
-#: 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/photos.php:1301
+msgid "View photo"
+msgstr "Zobacz zdjęcie"
 
-#: 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/photos.php:1301
+msgid "Edit photo"
+msgstr "Edytuj zdjęcie"
 
-#: 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/photos.php:1302
+msgid "Use as profile photo"
+msgstr "Ustaw jako zdjęcie profilowe"
 
-#: mod/settings.php:1138
-msgid "Permit unknown people to send you private mail?"
-msgstr "Zezwolić nieznanym osobom na wysyłanie prywatnych wiadomości?"
+#: mod/photos.php:1327
+msgid "View Full Size"
+msgstr "Zobacz w pełnym rozmiarze"
 
-#: 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/photos.php:1414
+msgid "Tags: "
+msgstr "Tagi:"
 
-#: mod/settings.php:1142
-msgid "Profile is <strong>not published</strong>."
-msgstr "Profil <strong>nie jest opublikowany</strong>"
+#: mod/photos.php:1417
+msgid "[Remove any tag]"
+msgstr "[Usunąć znacznik]"
 
-#: mod/settings.php:1148
-#, php-format
-msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
-msgstr "Twój adres tożsamości to <strong>'%s'</strong> lub '%s'."
+#: mod/photos.php:1432
+msgid "New album name"
+msgstr "Nazwa nowego albumu"
 
-#: mod/settings.php:1155
-msgid "Automatically expire posts after this many days:"
-msgstr "Posty wygasną automatycznie po następującej liczbie dni:"
+#: mod/photos.php:1433
+msgid "Caption"
+msgstr "Zawartość"
 
-#: 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/photos.php:1434
+msgid "Add a Tag"
+msgstr "Dodaj tag"
 
-#: mod/settings.php:1156
-msgid "Advanced expiration settings"
-msgstr "Zaawansowane ustawienia wygasania"
+#: 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/settings.php:1157
-msgid "Advanced Expiration"
-msgstr "Zaawansowane wygasanie"
+#: mod/photos.php:1435
+msgid "Do not rotate"
+msgstr "Nie obracaj"
 
-#: mod/settings.php:1158
-msgid "Expire posts:"
-msgstr "Wygasające posty:"
+#: mod/photos.php:1436
+msgid "Rotate CW (right)"
+msgstr "Obróć CW (w prawo)"
 
-#: mod/settings.php:1159
-msgid "Expire personal notes:"
-msgstr "Wygasanie osobistych notatek:"
+#: mod/photos.php:1437
+msgid "Rotate CCW (left)"
+msgstr "Obróć CCW (w lewo)"
 
-#: mod/settings.php:1160
-msgid "Expire starred posts:"
-msgstr "Wygasaj posty oznaczone gwiazdką:"
+#: mod/photos.php:1634
+msgid "Map"
+msgstr "Mapa"
 
-#: mod/settings.php:1161
-msgid "Expire photos:"
-msgstr "Wygasanie zdjęć:"
+#: mod/photos.php:1704 mod/videos.php:387
+msgid "View Album"
+msgstr "Zobacz album"
 
-#: mod/settings.php:1162
-msgid "Only expire posts by others:"
-msgstr "Wygaszaj tylko te posty, które zostały napisane przez inne osoby:"
+#: mod/nogroup.php:43 mod/contacts.php:960
+msgid "Edit contact"
+msgstr "Edytuj kontakt"
 
-#: mod/settings.php:1192
-msgid "Account Settings"
-msgstr "Ustawienia konta"
+#: mod/nogroup.php:63
+msgid "Contacts who are not members of a group"
+msgstr "Kontakty spoza członków grupy"
 
-#: mod/settings.php:1200
-msgid "Password Settings"
-msgstr "Ustawienia hasła"
+#: mod/community.php:46
+msgid "Community option not available."
+msgstr "Opcja wspólnotowa jest niedostępna."
 
-#: mod/settings.php:1202
-msgid "Leave password fields blank unless changing"
-msgstr "Pozostaw pola hasła puste, chyba że chcesz je zmienić."
+#: mod/community.php:63
+msgid "Not available."
+msgstr "Niedostępne."
 
-#: mod/settings.php:1203
-msgid "Current Password:"
-msgstr "Aktualne hasło:"
+#: mod/community.php:76
+msgid "Local Community"
+msgstr "Lokalna społeczność"
 
-#: mod/settings.php:1203 mod/settings.php:1204
-msgid "Your current password to confirm the changes"
-msgstr "Twoje aktualne hasło, potwierdź zmiany"
+#: mod/community.php:79
+msgid "Posts from local users on this server"
+msgstr "Wpisy od lokalnych użytkowników na tym serwerze"
 
-#: mod/settings.php:1204
-msgid "Password:"
-msgstr "Hasło:"
+#: mod/community.php:87
+msgid "Global Community"
+msgstr "Globalna społeczność"
 
-#: mod/settings.php:1208
-msgid "Basic Settings"
-msgstr "Ustawienia podstawowe"
+#: mod/community.php:90
+msgid "Posts from users of the whole federated network"
+msgstr "Wpisy od użytkowników całej sieci stowarzyszonej"
 
-#: mod/settings.php:1209 src/Model/Profile.php:740
-msgid "Full Name:"
-msgstr "Imię i Nazwisko:"
+#: mod/community.php:136 mod/search.php:228
+msgid "No results."
+msgstr "Brak wyników."
 
-#: mod/settings.php:1210
-msgid "Email Address:"
-msgstr "Adres email:"
+#: 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/settings.php:1211
-msgid "Your Timezone:"
-msgstr "Twoja strefa czasowa:"
+#: mod/message.php:73 mod/wallmessage.php:57
+msgid "No recipient selected."
+msgstr "Nie wybrano odbiorcy."
 
-#: mod/settings.php:1212
-msgid "Your Language:"
-msgstr "Twój język:"
+#: mod/message.php:77
+msgid "Unable to locate contact information."
+msgstr "Nie można znaleźć informacji kontaktowych."
 
-#: 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/message.php:80 mod/wallmessage.php:63
+msgid "Message could not be sent."
+msgstr "Wiadomość nie może zostać wysłana"
 
-#: mod/settings.php:1213
-msgid "Default Post Location:"
-msgstr "Standardowa lokalizacja wiadomości:"
+#: mod/message.php:83 mod/wallmessage.php:66
+msgid "Message collection failure."
+msgstr "Błąd zbierania komunikatów."
 
-#: mod/settings.php:1214
-msgid "Use Browser Location:"
-msgstr "Użyj położenia przeglądarki:"
+#: mod/message.php:86 mod/wallmessage.php:69
+msgid "Message sent."
+msgstr "Wysłano."
 
-#: mod/settings.php:1217
-msgid "Security and Privacy Settings"
-msgstr "Ustawienia bezpieczeństwa i prywatności"
+#: mod/message.php:136
+msgid "Do you really want to delete this message?"
+msgstr "Czy na pewno chcesz usunąć tę wiadomość?"
 
-#: mod/settings.php:1219
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maksymalna dzienna liczba zaproszeń do grona przyjaciół:"
+#: mod/message.php:156
+msgid "Message deleted."
+msgstr "Wiadomość usunięta."
 
-#: mod/settings.php:1219 mod/settings.php:1248
-msgid "(to prevent spam abuse)"
-msgstr "(aby zapobiec spamowaniu)"
+#: mod/message.php:185
+msgid "Conversation removed."
+msgstr "Rozmowa usunięta."
 
-#: mod/settings.php:1220
-msgid "Default Post Permissions"
-msgstr "Domyślne prawa dostępu wiadomości"
+#: mod/message.php:250 mod/wallmessage.php:132
+msgid "Send Private Message"
+msgstr "Wyślij prywatną wiadomość"
 
-#: mod/settings.php:1221
-msgid "(click to open/close)"
-msgstr "(kliknij by otworzyć/zamknąć)"
+#: mod/message.php:251 mod/message.php:421 mod/wallmessage.php:134
+msgid "To:"
+msgstr "Do:"
 
-#: mod/settings.php:1231
-msgid "Default Private Post"
-msgstr "Domyślny Prywatny Wpis"
+#: mod/message.php:255 mod/message.php:423 mod/wallmessage.php:135
+msgid "Subject:"
+msgstr "Temat:"
 
-#: mod/settings.php:1232
-msgid "Default Public Post"
-msgstr "Domyślny Publiczny Post"
+#: mod/message.php:291
+msgid "No messages."
+msgstr "Brak wiadomości."
 
-#: mod/settings.php:1236
-msgid "Default Permissions for New Posts"
-msgstr "Uprawnienia domyślne dla nowych postów"
+#: mod/message.php:330
+msgid "Message not available."
+msgstr "Wiadomość nie jest dostępna."
 
-#: 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/message.php:397
+msgid "Delete message"
+msgstr "Usuń wiadomość"
 
-#: mod/settings.php:1251
-msgid "Notification Settings"
-msgstr "Ustawienia powiadomień"
+#: 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/settings.php:1252
-msgid "By default post a status message when:"
-msgstr "Domyślnie publikuj komunikat o stanie, gdy:"
+#: mod/message.php:414 mod/message.php:497
+msgid "Delete conversation"
+msgstr "Usuń rozmowę"
 
-#: mod/settings.php:1253
-msgid "accepting a friend request"
-msgstr "przyjęto prośbę o dodanie do znajomych"
+#: mod/message.php:416
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Brak bezpiecznej komunikacji. <strong>Możesz</strong> odpowiedzieć na stronie profilu nadawcy."
 
-#: mod/settings.php:1254
-msgid "joining a forum/community"
-msgstr "dołączono do forum/społeczności"
+#: mod/message.php:420
+msgid "Send Reply"
+msgstr "Odpowiedz"
 
-#: mod/settings.php:1255
-msgid "making an <em>interesting</em> profile change"
-msgstr "dokonano <em>interesującej</em> zmiany profilu"
+#: mod/message.php:471
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Nieznany nadawca - %s"
 
-#: mod/settings.php:1256
-msgid "Send a notification email when:"
-msgstr "Wyślij powiadmonienia na email, kiedy:"
+#: mod/message.php:473
+#, php-format
+msgid "You and %s"
+msgstr "Ty i %s"
 
-#: mod/settings.php:1257
-msgid "You receive an introduction"
-msgstr "Otrzymałeś zaproszenie"
+#: mod/message.php:475
+#, php-format
+msgid "%s and You"
+msgstr "%s i ty"
 
-#: mod/settings.php:1258
-msgid "Your introductions are confirmed"
-msgstr "Twoje zaproszenie jest potwierdzone"
+#: 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/settings.php:1259
-msgid "Someone writes on your profile wall"
-msgstr "Ktoś pisze na twoim profilu"
+#: mod/videos.php:139
+msgid "Do you really want to delete this video?"
+msgstr "Czy na pewno chcesz usunąć ten film wideo?"
 
-#: mod/settings.php:1260
-msgid "Someone writes a followup comment"
-msgstr "Ktoś pisze komentarz nawiązujący."
+#: mod/videos.php:144
+msgid "Delete Video"
+msgstr "Usuń wideo"
 
-#: mod/settings.php:1261
-msgid "You receive a private message"
-msgstr "Otrzymałeś prywatną wiadomość"
+#: 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/settings.php:1262
-msgid "You receive a friend suggestion"
-msgstr "Otrzymałeś propozycję od znajomych"
+#: mod/videos.php:398
+msgid "Upload New Videos"
+msgstr "Wstaw nowe filmy"
 
-#: mod/settings.php:1263
-msgid "You are tagged in a post"
-msgstr "Jesteś oznaczony tagiem w poście"
+#: mod/credits.php:18
+msgid "Credits"
+msgstr "Zaufany"
 
-#: mod/settings.php:1264
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Jesteś zaczepiony/zaczepiona/itp. w poście"
+#: 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/settings.php:1266
-msgid "Activate desktop notifications"
-msgstr "Aktywuj powiadomienia na pulpicie"
+#: 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/settings.php:1266
-msgid "Show desktop popup on new notifications"
-msgstr "Pokaż wyskakujące okienko dla nowych powiadomień"
+#: mod/unfollow.php:47
+msgid "Contact unfollowed"
+msgstr "Skontaktuj się z obserwowanym"
 
-#: mod/settings.php:1268
-msgid "Text-only notification emails"
-msgstr "E-maile z powiadomieniami tekstowymi"
+#: mod/unfollow.php:65 mod/dfrn_request.php:662 mod/follow.php:62
+msgid "Submit Request"
+msgstr "Wyślij zgłoszenie"
 
-#: 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/unfollow.php:73
+msgid "You aren't a friend of this contact."
+msgstr "Nie jesteś przyjacielem tego kontaktu."
 
-#: mod/settings.php:1272
-msgid "Show detailled notifications"
-msgstr "Pokaż szczegółowe powiadomienia"
+#: 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/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/unfollow.php:100 mod/contacts.php:599
+msgid "Disconnect/Unfollow"
+msgstr "Rozłącz/Nie obserwuj"
 
-#: mod/settings.php:1276
-msgid "Advanced Account/Page Type Settings"
-msgstr "Zaawansowane ustawienia konta/rodzaju strony"
+#: 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/settings.php:1277
-msgid "Change the behaviour of this account for special situations"
-msgstr "Zmień zachowanie tego konta w sytuacjach specjalnych"
+#: 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/settings.php:1280
-msgid "Relocate"
-msgstr "Przeniesienie"
+#: 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/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/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/settings.php:1282
-msgid "Resend relocate message to contacts"
-msgstr "Wyślij ponownie przenieść wiadomości do kontaktów"
+#: mod/wall_attach.php:112
+#, php-format
+msgid "File exceeds size limit of %s"
+msgstr "Plik przekracza limit rozmiaru wynoszący %s"
 
-#: view/theme/duepuntozero/config.php:54 src/Model/User.php:502
-msgid "default"
-msgstr "standardowe"
+#: mod/wall_attach.php:136 mod/wall_attach.php:152
+msgid "File upload failed."
+msgstr "Przesyłanie pliku nie powiodło się."
 
-#: view/theme/duepuntozero/config.php:55
-msgid "greenzero"
-msgstr "greenzero"
+#: mod/profile.php:194
+msgid "Tips for New Members"
+msgstr "Wskazówki dla nowych użytkowników"
 
-#: view/theme/duepuntozero/config.php:56
-msgid "purplezero"
-msgstr "purplezero"
+#: mod/localtime.php:33
+msgid "Time Conversion"
+msgstr "Zmiana czasu"
 
-#: view/theme/duepuntozero/config.php:57
-msgid "easterbunny"
-msgstr "Zajączek wielkanocny"
+#: 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."
 
-#: view/theme/duepuntozero/config.php:58
-msgid "darkzero"
-msgstr "darkzero"
+#: mod/localtime.php:39
+#, php-format
+msgid "UTC time: %s"
+msgstr "Czas UTC %s"
 
-#: view/theme/duepuntozero/config.php:59
-msgid "comix"
-msgstr "comix"
+#: mod/localtime.php:42
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Obecna strefa czasowa: %s"
 
-#: view/theme/duepuntozero/config.php:60
-msgid "slackr"
-msgstr ""
+#: mod/localtime.php:46
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Zmień strefę czasową: %s"
 
-#: view/theme/duepuntozero/config.php:74
-msgid "Variations"
-msgstr "Zmiana"
+#: mod/localtime.php:52
+msgid "Please select your timezone:"
+msgstr "Wybierz swoją strefę czasową:"
 
-#: view/theme/frio/php/Image.php:25
-msgid "Repeat the image"
-msgstr "Powtórz obraz"
+#: mod/dfrn_request.php:94
+msgid "This introduction has already been accepted."
+msgstr "To wprowadzenie zostało już zaakceptowane."
 
-#: view/theme/frio/php/Image.php:25
-msgid "Will repeat your image to fill the background."
-msgstr "Powtarza twój obraz, aby wypełnić tło."
+#: 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."
 
-#: view/theme/frio/php/Image.php:27
-msgid "Stretch"
-msgstr "Rozwiń"
+#: 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."
 
-#: view/theme/frio/php/Image.php:27
-msgid "Will stretch to width/height of the image."
-msgstr "Rozciągnie się do szerokości/wysokości obrazu."
+#: 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."
 
-#: view/theme/frio/php/Image.php:29
-msgid "Resize fill and-clip"
-msgstr "Zmień rozmiar wypełnienia i klipu"
+#: 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"
 
-#: view/theme/frio/php/Image.php:29
-msgid "Resize to fill and retain aspect ratio."
-msgstr "Zmień rozmiar, aby wypełnić i zachować proporcje."
+#: mod/dfrn_request.php:162
+msgid "Introduction complete."
+msgstr "Wprowadzanie zakończone."
 
-#: view/theme/frio/php/Image.php:31
-msgid "Resize best fit"
-msgstr "Zmień rozmiar, aby najlepiej dopasować"
+#: mod/dfrn_request.php:199
+msgid "Unrecoverable protocol error."
+msgstr "Nieodwracalny błąd protokołu."
 
-#: view/theme/frio/php/Image.php:31
-msgid "Resize to best fit and retain aspect ratio."
-msgstr "Zmień rozmiar, aby jak najlepiej dopasować i zachować proporcje."
+#: mod/dfrn_request.php:226
+msgid "Profile unavailable."
+msgstr "Profil niedostępny."
 
-#: view/theme/frio/config.php:97
-msgid "Default"
-msgstr "Domyślne"
+#: 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ń."
 
-#: view/theme/frio/config.php:109
-msgid "Note"
-msgstr "Uwaga"
+#: mod/dfrn_request.php:249
+msgid "Spam protection measures have been invoked."
+msgstr "Wprowadzono zabezpieczenia przed spamem."
 
-#: view/theme/frio/config.php:109
-msgid "Check image permissions if all users are allowed to visit the image"
-msgstr "Sprawdź uprawnienia do obrazu, jeśli wszyscy użytkownicy mogą odwiedzać obraz"
+#: mod/dfrn_request.php:250
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Przyjaciele namawiają do spróbowania za 24h."
 
-#: view/theme/frio/config.php:116
-msgid "Select scheme"
-msgstr "Wybierz schemat"
+#: mod/dfrn_request.php:280
+msgid "Invalid locator"
+msgstr "Nieprawidłowy lokalizator"
 
-#: view/theme/frio/config.php:117
-msgid "Navigation bar background color"
-msgstr "Kolor tła paska nawigacyjnego"
+#: mod/dfrn_request.php:316
+msgid "You have already introduced yourself here."
+msgstr "Już się tu przedstawiłeś."
 
-#: view/theme/frio/config.php:118
-msgid "Navigation bar icon color "
-msgstr "Kolor ikony paska nawigacyjnego"
+#: 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"
 
-#: view/theme/frio/config.php:119
-msgid "Link color"
-msgstr "Kolor łączy"
+#: mod/dfrn_request.php:339
+msgid "Invalid profile URL."
+msgstr "Nieprawidłowy URL profilu."
 
-#: view/theme/frio/config.php:120
-msgid "Set the background color"
-msgstr "Ustaw kolor tła"
+#: mod/dfrn_request.php:419 mod/contacts.php:230
+msgid "Failed to update contact record."
+msgstr "Aktualizacja rekordu kontaktu nie powiodła się."
 
-#: view/theme/frio/config.php:121
-msgid "Content background opacity"
-msgstr "Nieprzezroczystość tła treści"
+#: 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."
 
-#: view/theme/frio/config.php:122
-msgid "Set the background image"
-msgstr "Ustaw obraz tła"
+#: mod/dfrn_request.php:493
+msgid "Please login to confirm introduction."
+msgstr "Zaloguj się, aby potwierdzić wprowadzenie."
 
-#: view/theme/frio/config.php:127
-msgid "Login page background image"
-msgstr "Obraz tła strony logowania"
+#: mod/dfrn_request.php:501
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na <strong>tego</strong> użytkownika. "
 
-#: view/theme/frio/config.php:130
-msgid "Login page background color"
-msgstr "Kolor tła strony logowania"
+#: mod/dfrn_request.php:515 mod/dfrn_request.php:532
+msgid "Confirm"
+msgstr "Potwierdź"
 
-#: view/theme/frio/config.php:130
-msgid "Leave background image and color empty for theme defaults"
-msgstr "Pozostaw obraz tła i kolor pusty dla domyślnych ustawień kompozycji"
+#: mod/dfrn_request.php:527
+msgid "Hide this contact"
+msgstr "Ukryj kontakt"
 
-#: view/theme/frio/theme.php:238
-msgid "Guest"
-msgstr "Gość"
+#: mod/dfrn_request.php:530
+#, php-format
+msgid "Welcome home %s."
+msgstr "Welcome home %s."
 
-#: view/theme/frio/theme.php:243
-msgid "Visitor"
-msgstr "Odwiedzający"
+#: 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."
 
-#: view/theme/frio/theme.php:256 src/Content/Nav.php:97
-#: src/Module/Login.php:311
-msgid "Logout"
-msgstr "Wyloguj się"
+#: 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:"
 
-#: view/theme/frio/theme.php:256 src/Content/Nav.php:97
-msgid "End this session"
-msgstr "Zakończ sesję"
+#: mod/dfrn_request.php:645
+#, php-format
+msgid ""
+"If you are not yet a member of the free social web, <a href=\"%s\">follow "
+"this link to find a public Friendica site and join us today</a>."
+msgstr "Jeśli nie jesteś jeszcze członkiem darmowej sieci społecznościowej, <a href=\"%s\">kliknij ten link, aby znaleźć publiczną witrynę Friendica i dołącz do nas już dziś</a>."
 
-#: 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"
+#: mod/dfrn_request.php:650
+msgid "Friend/Connection Request"
+msgstr "Przyjaciel/Prośba o połączenie"
 
-#: view/theme/frio/theme.php:260 src/Content/Nav.php:101
-msgid "Your profile page"
-msgstr "Twoja strona profilowa"
+#: 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"
 
-#: view/theme/frio/theme.php:261 src/Content/Nav.php:102
-msgid "Your photos"
-msgstr "Twoje zdjęcia"
+#: mod/dfrn_request.php:652 mod/follow.php:149
+msgid "Please answer the following:"
+msgstr "Proszę odpowiedzieć na następujące pytania:"
 
-#: 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"
+#: mod/dfrn_request.php:653 mod/follow.php:150
+#, php-format
+msgid "Does %s know you?"
+msgstr "Czy %s Cię zna?"
 
-#: view/theme/frio/theme.php:262 src/Content/Nav.php:103
-msgid "Your videos"
-msgstr "Twoje filmy"
+#: mod/dfrn_request.php:654 mod/follow.php:151
+msgid "Add a personal note:"
+msgstr "Dodaj osobistą notkę:"
 
-#: view/theme/frio/theme.php:263 src/Content/Nav.php:104
-msgid "Your events"
-msgstr "Twoje wydarzenia"
+#: mod/dfrn_request.php:657
+msgid "GNU Social (Pleroma, Mastodon)"
+msgstr "GNU Social (Pleroma, Mastodon)"
 
-#: view/theme/frio/theme.php:266 src/Content/Nav.php:178
-msgid "Conversations from your friends"
-msgstr "Rozmowy Twoich przyjaciół"
+#: mod/dfrn_request.php:658
+msgid "Diaspora (Socialhome, Hubzilla)"
+msgstr "Diaspora (Socialhome, Hubzilla)"
 
-#: 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"
+#: 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."
 
-#: view/theme/frio/theme.php:268 src/Content/Nav.php:195
-msgid "Private mail"
-msgstr "Prywatne maile"
+#: mod/crepair.php:87
+msgid "Contact settings applied."
+msgstr "Ustawienia kontaktu zaktualizowane."
 
-#: view/theme/frio/theme.php:269 src/Content/Nav.php:206
-msgid "Account settings"
-msgstr "Ustawienia konta"
+#: mod/crepair.php:89
+msgid "Contact update failed."
+msgstr "Nie udało się zaktualizować kontaktu."
 
-#: view/theme/frio/theme.php:270 src/Content/Nav.php:212
-msgid "Manage/edit friends and contacts"
-msgstr "Zarządzaj listą przyjaciół i kontaktami"
+#: mod/crepair.php:114
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>OSTRZEŻENIE: Jest to bardzo zaawansowane</strong> i jeśli wprowadzisz niepoprawne informacje, twoja komunikacja z tym kontaktem może przestać działać."
 
-#: view/theme/quattro/config.php:76
-msgid "Alignment"
-msgstr "Wyrównanie"
+#: mod/crepair.php:115
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj <strong>teraz</strong> przycisku 'powrót' na swojej przeglądarce."
 
-#: view/theme/quattro/config.php:76
-msgid "Left"
-msgstr "Lewo"
+#: mod/crepair.php:129 mod/crepair.php:131
+msgid "No mirroring"
+msgstr "Bez dublowania"
 
-#: view/theme/quattro/config.php:76
-msgid "Center"
-msgstr "Środek"
+#: mod/crepair.php:129
+msgid "Mirror as forwarded posting"
+msgstr "Przesłany lustrzany post"
 
-#: view/theme/quattro/config.php:77
-msgid "Color scheme"
-msgstr "Zestaw kolorów"
+#: mod/crepair.php:129 mod/crepair.php:131
+msgid "Mirror as my own posting"
+msgstr "Lustro mojego własnego komentarza"
 
-#: view/theme/quattro/config.php:78
-msgid "Posts font size"
-msgstr "Rozmiar czcionki postów"
+#: mod/crepair.php:144
+msgid "Return to contact editor"
+msgstr "Wróć do edytora kontaktów"
 
-#: view/theme/quattro/config.php:79
-msgid "Textareas font size"
-msgstr "Rozmiar czcionki Textareas"
+#: mod/crepair.php:146
+msgid "Refetch contact data"
+msgstr "Odśwież dane kontaktowe"
 
-#: view/theme/vier/config.php:75
-msgid "Comma separated list of helper forums"
-msgstr "Lista pomocników oddzielona przecinkami"
+#: mod/crepair.php:149
+msgid "Remote Self"
+msgstr "Zdalny Self"
 
-#: view/theme/vier/config.php:115 src/Core/ACL.php:309
-msgid "don't show"
-msgstr "nie pokazuj"
+#: mod/crepair.php:152
+msgid "Mirror postings from this contact"
+msgstr "Publikacje lustrzane od tego kontaktu"
 
-#: view/theme/vier/config.php:115 src/Core/ACL.php:308
-msgid "show"
-msgstr "pokaż"
+#: 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."
 
-#: view/theme/vier/config.php:122
-msgid "Set style"
-msgstr "Ustaw styl"
+#: mod/crepair.php:159
+msgid "Account Nickname"
+msgstr "Nazwa konta"
 
-#: view/theme/vier/config.php:123
-msgid "Community Pages"
-msgstr "Strony społeczności"
+#: mod/crepair.php:160
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Zmienna - zastępuje Imię/Pseudonim"
 
-#: view/theme/vier/config.php:124 view/theme/vier/theme.php:150
-msgid "Community Profiles"
-msgstr "Profile społeczności"
+#: mod/crepair.php:161
+msgid "Account URL"
+msgstr "URL konta"
 
-#: view/theme/vier/config.php:125
-msgid "Help or @NewHere ?"
-msgstr "Pomóż lub @NowyTutaj?"
+#: mod/crepair.php:162
+msgid "Friend Request URL"
+msgstr "URL żądajacy znajomości"
 
-#: view/theme/vier/config.php:126 view/theme/vier/theme.php:389
-msgid "Connect Services"
-msgstr "Połączone serwisy"
+#: mod/crepair.php:163
+msgid "Friend Confirm URL"
+msgstr "URL potwierdzający znajomość"
 
-#: view/theme/vier/config.php:127 view/theme/vier/theme.php:199
-msgid "Find Friends"
-msgstr "Znajdź znajomych"
+#: mod/crepair.php:164
+msgid "Notification Endpoint URL"
+msgstr "Zgłoszenie Punktu Końcowego URL"
 
-#: view/theme/vier/config.php:128 view/theme/vier/theme.php:181
-msgid "Last users"
-msgstr "Ostatni użytkownicy"
+#: mod/crepair.php:165
+msgid "Poll/Feed URL"
+msgstr "Adres Ankiety/RSS"
 
-#: view/theme/vier/theme.php:200
-msgid "Local Directory"
-msgstr "Katalog lokalny"
+#: mod/crepair.php:166
+msgid "New photo from this URL"
+msgstr "Nowe zdjęcie z tego adresu URL"
 
-#: view/theme/vier/theme.php:202 src/Content/Widget.php:65
-msgid "Similar Interests"
-msgstr "Podobne zainteresowania"
+#: mod/home.php:39
+#, php-format
+msgid "Welcome to %s"
+msgstr "Witamy w %s"
 
-#: view/theme/vier/theme.php:204 src/Content/Widget.php:67
-msgid "Invite Friends"
-msgstr "Zaproś znajomych"
+#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s witamy %2$s"
 
-#: view/theme/vier/theme.php:256 src/Content/ForumManager.php:127
-msgid "External link to forum"
-msgstr "Zewnętrzny link do forum"
+#: mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Zaczepić"
 
-#: view/theme/vier/theme.php:292
-msgid "Quick Start"
-msgstr "Szybki start"
+#: mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr ""
 
-#: src/Core/UserImport.php:104
-msgid "Error decoding account file"
-msgstr "Błąd podczas odczytu pliku konta"
+#: mod/poke.php:194
+msgid "Recipient"
+msgstr "Odbiorca"
 
-#: 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?"
+#: mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Wybierz, co chcesz zrobić"
 
-#: src/Core/UserImport.php:118
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "Użytkownik '%s' już istnieje na tym serwerze!"
+#: mod/poke.php:198
+msgid "Make this post private"
+msgstr "Ustaw ten post jako prywatny"
 
-#: src/Core/UserImport.php:151
-msgid "User creation error"
-msgstr "Błąd tworzenia użytkownika"
+#: mod/oexchange.php:30
+msgid "Post successful."
+msgstr "Post dodany pomyślnie"
 
-#: src/Core/UserImport.php:169
-msgid "User profile creation error"
-msgstr "Błąd tworzenia profilu użytkownika"
+#: mod/viewsrc.php:12
+msgid "Access denied."
+msgstr "Brak dostępu"
 
-#: 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 "
+#: mod/notifications.php:37
+msgid "Invalid request identifier."
+msgstr "Nieprawidłowe żądanie identyfikatora."
 
-#: 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."
+#: mod/notifications.php:46 mod/notifications.php:183
+#: mod/notifications.php:230
+msgid "Discard"
+msgstr "Odrzuć"
 
-#: src/Core/ACL.php:295
-msgid "Post to Email"
-msgstr "Prześlij e-mailem"
+#: 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"
 
-#: src/Core/ACL.php:301
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Ukryć szczegóły twojego profilu przed nieznajomymi?"
+#: mod/notifications.php:107
+msgid "Network Notifications"
+msgstr "Powiadomienia sieciowe"
 
-#: src/Core/ACL.php:300
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr "Wtyczki są wyłączone, ponieważ \"%s\" jest włączone."
+#: mod/notifications.php:119
+msgid "Personal Notifications"
+msgstr "Prywatne powiadomienia"
 
-#: src/Core/ACL.php:307
-msgid "Visible to everybody"
-msgstr "Widoczny dla wszystkich"
+#: mod/notifications.php:125
+msgid "Home Notifications"
+msgstr "Powiadomienia domowe"
 
-#: src/Core/ACL.php:319
-msgid "Close"
-msgstr "Zamknij"
+#: mod/notifications.php:155
+msgid "Show Ignored Requests"
+msgstr "Pokaż ignorowane żądania"
 
-#: src/Core/Console/NewPassword.php:78
-msgid "Enter new password: "
-msgstr "Wprowadź nowe hasło:"
+#: mod/notifications.php:155
+msgid "Hide Ignored Requests"
+msgstr "Ukryj zignorowane prośby"
 
-#: 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"
+#: mod/notifications.php:167 mod/notifications.php:237
+msgid "Notification type: "
+msgstr "Typ powiadomienia:"
 
-#: src/Core/NotificationsManager.php:171
-msgid "System"
-msgstr "System"
+#: mod/notifications.php:170
+#, php-format
+msgid "suggested by %s"
+msgstr "zaproponowane przez %s"
 
-#: src/Core/NotificationsManager.php:192 src/Content/Nav.php:124
-#: src/Content/Nav.php:181
-msgid "Home"
-msgstr "Strona domowa"
+#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646
+msgid "Hide this contact from others"
+msgstr "Ukryj ten kontakt przed innymi"
 
-#: src/Core/NotificationsManager.php:199 src/Content/Nav.php:186
-msgid "Introductions"
-msgstr "Wstępy"
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "Post a new friend activity"
+msgstr "Opublikuj aktywność nowego znajomego"
 
-#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s skomentował wpis %s"
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "if applicable"
+msgstr "jeśli dotyczy"
 
-#: src/Core/NotificationsManager.php:267
-#, php-format
-msgid "%s created a new post"
-msgstr "%s dodał nowy wpis"
+#: mod/notifications.php:198
+msgid "Claims to be known to you: "
+msgstr "Twierdzi, że go znasz:"
 
-#: src/Core/NotificationsManager.php:281
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s polubił wpis %s"
+#: mod/notifications.php:199
+msgid "yes"
+msgstr "tak"
 
-#: src/Core/NotificationsManager.php:294
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s nie lubi tych %s postów"
+#: mod/notifications.php:199
+msgid "no"
+msgstr "nie"
 
-#: src/Core/NotificationsManager.php:307
-#, php-format
-msgid "%s is attending %s's event"
-msgstr "%suczestniczy %sw wydarzeniu "
+#: 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?"
 
-#: src/Core/NotificationsManager.php:320
+#: mod/notifications.php:201 mod/notifications.php:206
 #, php-format
-msgid "%s is not attending %s's event"
-msgstr "%snie uczestniczy %s w wydarzeniu "
+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."
 
-#: src/Core/NotificationsManager.php:333
+#: mod/notifications.php:202
 #, php-format
-msgid "%s may attend %s's event"
-msgstr "%smoże uczestniczyć %s w wydarzeniu"
+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."
 
-#: src/Core/NotificationsManager.php:350
+#: mod/notifications.php:207
 #, 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"
+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."
 
-#: src/Core/NotificationsManager.php:851
-msgid "Friend/Connect Request"
-msgstr "Prośba o dodanie do przyjaciół/powiązanych"
+#: mod/notifications.php:218
+msgid "Friend"
+msgstr "Znajomy"
 
-#: src/Core/NotificationsManager.php:851
-msgid "New Follower"
-msgstr "Nowy obserwujący"
+#: mod/notifications.php:219
+msgid "Sharer"
+msgstr "Udostępniający/a"
 
-#: src/Util/Temporal.php:147 src/Model/Profile.php:760
-msgid "Birthday:"
-msgstr "Urodziny:"
+#: mod/notifications.php:219
+msgid "Subscriber"
+msgstr "Subskrybent"
 
-#: src/Util/Temporal.php:151
-msgid "YYYY-MM-DD or MM-DD"
-msgstr "RRRR-MM-DD lub MM-DD"
+#: mod/notifications.php:275
+msgid "No introductions."
+msgstr "Brak dostępu."
 
-#: src/Util/Temporal.php:294
-msgid "never"
-msgstr "nigdy"
+#: mod/notifications.php:316
+msgid "Show unread"
+msgstr "Pokaż nieprzeczytane"
 
-#: src/Util/Temporal.php:300
-msgid "less than a second ago"
-msgstr "mniej niż sekundę temu"
+#: mod/notifications.php:316
+msgid "Show all"
+msgstr "Pokaż wszystko"
 
-#: src/Util/Temporal.php:303
-msgid "year"
-msgstr "rok"
+#: mod/notifications.php:322
+#, php-format
+msgid "No more %s notifications."
+msgstr "Nigdy więcej %s powiadomień."
 
-#: src/Util/Temporal.php:303
-msgid "years"
-msgstr "lata"
+#: mod/p.php:14
+msgid "Not Extended"
+msgstr "Nie przedłużony"
 
-#: src/Util/Temporal.php:304
-msgid "months"
-msgstr "miesiące"
+#: 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"
 
-#: src/Util/Temporal.php:305
-msgid "weeks"
-msgstr "tygodnie"
+#: mod/follow.php:45
+msgid "The contact could not be added."
+msgstr "Nie można dodać kontaktu."
 
-#: src/Util/Temporal.php:306
-msgid "days"
-msgstr "dni"
+#: mod/follow.php:73
+msgid "You already added this contact."
+msgstr "Już dodałeś ten kontakt."
 
-#: src/Util/Temporal.php:307
-msgid "hour"
-msgstr "godzina"
+#: mod/follow.php:83
+msgid "Diaspora support isn't enabled. Contact can't be added."
+msgstr "Obsługa Diaspory nie jest włączona. Kontakt nie może zostać dodany."
 
-#: src/Util/Temporal.php:307
-msgid "hours"
-msgstr "godziny"
+#: mod/follow.php:90
+msgid "OStatus support is disabled. Contact can't be added."
+msgstr "Obsługa OStatus jest wyłączona. Kontakt nie może zostać dodany."
 
-#: src/Util/Temporal.php:308
-msgid "minute"
-msgstr "minuta"
+#: mod/follow.php:97
+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."
 
-#: src/Util/Temporal.php:308
-msgid "minutes"
-msgstr "minuty"
+#: mod/cal.php:313
+msgid "This calendar format is not supported"
+msgstr "Ten format kalendarza nie jest obsługiwany"
 
-#: src/Util/Temporal.php:309
-msgid "second"
-msgstr "sekunda"
+#: mod/cal.php:315
+msgid "No exportable data found"
+msgstr "Nie znaleziono danych do eksportu"
 
-#: src/Util/Temporal.php:309
-msgid "seconds"
-msgstr "sekundy"
+#: mod/cal.php:332
+msgid "calendar"
+msgstr "kalendarz"
 
-#: src/Util/Temporal.php:318
+#: mod/contacts.php:157
 #, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s temu"
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
 
-#: src/Content/Text/BBCode.php:555
-msgid "view full size"
-msgstr "Zobacz w pełnym wymiarze"
+#: 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."
 
-#: 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"
+#: mod/contacts.php:194
+msgid "Could not locate selected profile."
+msgstr "Nie można znaleźć wybranego profilu."
 
-#: src/Content/Text/BBCode.php:1119
-#, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a>%3$s"
+#: mod/contacts.php:228
+msgid "Contact updated."
+msgstr "Kontakt zaktualizowany"
 
-#: src/Content/Text/BBCode.php:1677 src/Content/Text/BBCode.php:1699
-msgid "$1 wrote:"
-msgstr "$1 napisał:"
+#: mod/contacts.php:421
+msgid "Contact has been blocked"
+msgstr "Kontakt został zablokowany"
 
-#: src/Content/Text/BBCode.php:1759 src/Content/Text/BBCode.php:1760
-msgid "Encrypted content"
-msgstr "Szyfrowana treść"
+#: mod/contacts.php:421
+msgid "Contact has been unblocked"
+msgstr "Kontakt został odblokowany"
 
-#: src/Content/Text/BBCode.php:1879
-msgid "Invalid source protocol"
-msgstr "Nieprawidłowy protokół źródłowy"
+#: mod/contacts.php:432
+msgid "Contact has been ignored"
+msgstr "Kontakt jest ignorowany"
 
-#: src/Content/Text/BBCode.php:1890
-msgid "Invalid link protocol"
-msgstr "Niepoprawny link protokołu"
+#: mod/contacts.php:432
+msgid "Contact has been unignored"
+msgstr "Kontakt nie jest ignorowany"
 
-#: src/Content/Nav.php:53
-msgid "Nothing new here"
-msgstr "Brak nowych zdarzeń"
+#: mod/contacts.php:443
+msgid "Contact has been archived"
+msgstr "Kontakt został zarchiwizowany"
 
-#: src/Content/Nav.php:57
-msgid "Clear notifications"
-msgstr "Wyczyść powiadomienia"
+#: mod/contacts.php:443
+msgid "Contact has been unarchived"
+msgstr "Kontakt został przywrócony"
 
-#: src/Content/Nav.php:105
-msgid "Personal notes"
-msgstr "Notatki"
+#: mod/contacts.php:467
+msgid "Drop contact"
+msgstr "Usuń kontakt"
 
-#: src/Content/Nav.php:105
-msgid "Your personal notes"
-msgstr "Twoje prywatne notatki"
+#: 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?"
 
-#: src/Content/Nav.php:114
-msgid "Sign in"
-msgstr "Zaloguj się"
+#: mod/contacts.php:488
+msgid "Contact has been removed."
+msgstr "Kontakt został usunięty."
 
-#: src/Content/Nav.php:124
-msgid "Home Page"
-msgstr "Strona startowa"
+#: mod/contacts.php:519
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Jesteś już znajomym z %s"
 
-#: src/Content/Nav.php:128
-msgid "Create an account"
-msgstr "Załóż konto"
+#: mod/contacts.php:523
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Współdzielisz z %s"
 
-#: src/Content/Nav.php:134
-msgid "Help and documentation"
-msgstr "Pomoc i dokumentacja"
+#: mod/contacts.php:527
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s współdzieli z tobą"
 
-#: src/Content/Nav.php:138
-msgid "Apps"
-msgstr "Aplikacje"
+#: mod/contacts.php:547
+msgid "Private communications are not available for this contact."
+msgstr "Prywatna rozmowa jest niemożliwa dla tego kontaktu"
 
-#: src/Content/Nav.php:138
-msgid "Addon applications, utilities, games"
-msgstr "Wtyczki, aplikacje, narzędzia, gry"
+#: mod/contacts.php:549
+msgid "Never"
+msgstr "Nigdy"
 
-#: src/Content/Nav.php:142
-msgid "Search site content"
-msgstr "Przeszukaj zawartość strony"
+#: mod/contacts.php:552
+msgid "(Update was successful)"
+msgstr "(Aktualizacja przebiegła pomyślnie)"
 
-#: src/Content/Nav.php:165
-msgid "Community"
-msgstr "Społeczność"
+#: mod/contacts.php:552
+msgid "(Update was not successful)"
+msgstr "(Aktualizacja nie powiodła się)"
 
-#: src/Content/Nav.php:165
-msgid "Conversations on this and other servers"
-msgstr "Rozmowy na tym i innych serwerach"
+#: mod/contacts.php:554 mod/contacts.php:992
+msgid "Suggest friends"
+msgstr "Osoby, które możesz znać"
 
-#: src/Content/Nav.php:172
-msgid "Directory"
-msgstr "Katalog"
+#: mod/contacts.php:558
+#, php-format
+msgid "Network type: %s"
+msgstr "Typ sieci: %s"
 
-#: src/Content/Nav.php:172
-msgid "People directory"
-msgstr "Katalog osób"
+#: mod/contacts.php:563
+msgid "Communications lost with this contact!"
+msgstr "Utracono komunikację z tym kontaktem!"
 
-#: src/Content/Nav.php:174
-msgid "Information about this friendica instance"
-msgstr "Informacje o tej instancji friendica"
+#: mod/contacts.php:569
+msgid "Fetch further information for feeds"
+msgstr "Pobierz dalsze informacje dla kanałów"
 
-#: src/Content/Nav.php:179
-msgid "Network Reset"
-msgstr "Resetowanie sieci"
+#: 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."
 
-#: src/Content/Nav.php:179
-msgid "Load Network page with no filters"
-msgstr "Załaduj stronę sieci bez filtrów"
+#: mod/contacts.php:573
+msgid "Fetch information"
+msgstr "Pobierz informacje"
 
-#: src/Content/Nav.php:186
-msgid "Friend Requests"
-msgstr "Prośba o przyjęcie do grona znajomych"
+#: mod/contacts.php:574
+msgid "Fetch keywords"
+msgstr "Pobierz słowa kluczowe"
 
-#: src/Content/Nav.php:190
-msgid "See all notifications"
-msgstr "Zobacz wszystkie powiadomienia"
+#: mod/contacts.php:575
+msgid "Fetch information and keywords"
+msgstr "Pobierz informacje i słowa kluczowe"
 
-#: src/Content/Nav.php:191
-msgid "Mark all system notifications seen"
-msgstr "Oznacz wszystkie powiadomienia systemu jako przeczytane"
+#: mod/contacts.php:608
+msgid "Contact"
+msgstr "Kontakt"
 
-#: src/Content/Nav.php:196
-msgid "Inbox"
-msgstr "Odebrane"
+#: mod/contacts.php:611
+msgid "Profile Visibility"
+msgstr "Widoczność profilu"
 
-#: src/Content/Nav.php:197
-msgid "Outbox"
-msgstr "Wysłane"
+#: 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"
 
-#: src/Content/Nav.php:201
-msgid "Manage"
-msgstr "Zarządzaj"
+#: mod/contacts.php:613
+msgid "Contact Information / Notes"
+msgstr "Informacje kontaktowe/Notatki"
 
-#: src/Content/Nav.php:201
-msgid "Manage other pages"
-msgstr "Zarządzaj innymi stronami"
+#: mod/contacts.php:614
+msgid "Their personal note"
+msgstr "Ich osobista uwaga"
 
-#: src/Content/Nav.php:209 src/Model/Profile.php:372
-msgid "Profiles"
-msgstr "Profile"
+#: mod/contacts.php:616
+msgid "Edit contact notes"
+msgstr "Edytuj notatki kontaktu"
 
-#: src/Content/Nav.php:209
-msgid "Manage/Edit Profiles"
-msgstr "Zarządzaj/Edytuj profile"
+#: mod/contacts.php:620
+msgid "Block/Unblock contact"
+msgstr "Zablokuj/odblokuj kontakt"
 
-#: src/Content/Nav.php:217
-msgid "Site setup and configuration"
-msgstr "Konfiguracja i ustawienia instancji"
+#: mod/contacts.php:621
+msgid "Ignore contact"
+msgstr "Ignoruj kontakt"
 
-#: src/Content/Nav.php:220
-msgid "Navigation"
-msgstr "Nawigacja"
+#: mod/contacts.php:622
+msgid "Repair URL settings"
+msgstr "Napraw ustawienia adresu"
 
-#: src/Content/Nav.php:220
-msgid "Site map"
-msgstr "Mapa strony"
+#: mod/contacts.php:623
+msgid "View conversations"
+msgstr "Wyświetl rozmowy"
 
-#: src/Content/Feature.php:79
-msgid "General Features"
-msgstr "Funkcje ogólne"
+#: mod/contacts.php:628
+msgid "Last update:"
+msgstr "Ostatnia aktualizacja:"
 
-#: src/Content/Feature.php:81
-msgid "Multiple Profiles"
-msgstr "Wiele profili"
+#: mod/contacts.php:630
+msgid "Update public posts"
+msgstr "Zaktualizuj publiczne posty"
 
-#: src/Content/Feature.php:81
-msgid "Ability to create multiple profiles"
-msgstr "Możliwość tworzenia wielu profili"
+#: mod/contacts.php:632 mod/contacts.php:1002
+msgid "Update now"
+msgstr "Aktualizuj teraz"
 
-#: src/Content/Feature.php:82
-msgid "Photo Location"
-msgstr "Lokalizacja zdjęcia"
+#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
+msgid "Unignore"
+msgstr "Odblokuj"
 
-#: 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ą."
+#: mod/contacts.php:642
+msgid "Currently blocked"
+msgstr "Obecnie zablokowany"
 
-#: src/Content/Feature.php:83
-msgid "Export Public Calendar"
-msgstr "Eksportuj kalendarz publiczny"
+#: mod/contacts.php:643
+msgid "Currently ignored"
+msgstr "Obecnie zignorowany"
 
-#: src/Content/Feature.php:83
-msgid "Ability for visitors to download the public calendar"
-msgstr "Możliwość pobierania kalendarza publicznego przez odwiedzających"
+#: mod/contacts.php:644
+msgid "Currently archived"
+msgstr "Obecnie zarchiwizowany"
 
-#: src/Content/Feature.php:88
-msgid "Post Composition Features"
-msgstr "Ustawienia funkcji postów"
+#: mod/contacts.php:645
+msgid "Awaiting connection acknowledge"
+msgstr "Oczekiwanie na potwierdzenie połączenia"
 
-#: src/Content/Feature.php:89
-msgid "Post Preview"
-msgstr "Podgląd posta"
+#: mod/contacts.php:646
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal <strong>mogą</strong> być widoczne"
 
-#: 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"
+#: mod/contacts.php:647
+msgid "Notification for new posts"
+msgstr "Powiadomienie o nowych postach"
 
-#: src/Content/Feature.php:90
-msgid "Auto-mention Forums"
-msgstr "Automatyczne wymienianie forów"
+#: 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"
 
-#: src/Content/Feature.php:90
+#: mod/contacts.php:650
+msgid "Blacklisted keywords"
+msgstr "Słowa kluczowe na czarnej liście"
+
+#: mod/contacts.php:650
 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."
+"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'"
 
-#: src/Content/Feature.php:95
-msgid "Network Sidebar Widgets"
-msgstr "Widgety paska bocznego sieci"
+#: mod/contacts.php:667
+msgid "Actions"
+msgstr "Akcja"
 
-#: src/Content/Feature.php:96
-msgid "Search by Date"
-msgstr "Szukanie wg daty"
+#: mod/contacts.php:670
+msgid "Contact Settings"
+msgstr "Ustawienia kontaktów"
 
-#: src/Content/Feature.php:96
-msgid "Ability to select posts by date ranges"
-msgstr "Wybierz wpisy według zakresów dat"
+#: mod/contacts.php:711
+msgid "Suggestions"
+msgstr "Sugestie"
 
-#: src/Content/Feature.php:97 src/Content/Feature.php:127
-msgid "List Forums"
-msgstr "Lista forów"
+#: mod/contacts.php:714
+msgid "Suggest potential friends"
+msgstr "Sugerowani znajomi"
 
-#: 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"
+#: mod/contacts.php:722
+msgid "Show all contacts"
+msgstr "Pokaż wszystkie kontakty"
 
-#: src/Content/Feature.php:98
-msgid "Group Filter"
-msgstr "Filtr grupowy"
+#: mod/contacts.php:727
+msgid "Unblocked"
+msgstr "Odblokowany"
 
-#: 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"
+#: mod/contacts.php:730
+msgid "Only show unblocked contacts"
+msgstr "Pokaż tylko odblokowane kontakty"
 
-#: src/Content/Feature.php:99
-msgid "Network Filter"
-msgstr "Filtr sieciowy"
+#: mod/contacts.php:735
+msgid "Blocked"
+msgstr "Zablokowany"
 
-#: 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"
+#: mod/contacts.php:738
+msgid "Only show blocked contacts"
+msgstr "Pokaż tylko zablokowane kontakty"
 
-#: src/Content/Feature.php:100
-msgid "Save search terms for re-use"
-msgstr "Zapisz wyszukiwane hasła do ponownego użycia"
+#: mod/contacts.php:743
+msgid "Ignored"
+msgstr "Zignorowany"
 
-#: src/Content/Feature.php:105
-msgid "Network Tabs"
-msgstr "Etykiety sieciowe"
+#: mod/contacts.php:746
+msgid "Only show ignored contacts"
+msgstr "Pokaż tylko ignorowane kontakty"
 
-#: src/Content/Feature.php:106
-msgid "Network Personal Tab"
-msgstr "Etykieta Sieć Osobista"
+#: mod/contacts.php:751
+msgid "Archived"
+msgstr "Zarchiwizowane"
 
-#: 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"
+#: mod/contacts.php:754
+msgid "Only show archived contacts"
+msgstr "Pokaż tylko zarchiwizowane kontakty"
 
-#: src/Content/Feature.php:107
-msgid "Network New Tab"
-msgstr "Etykieta Nowe Posty Sieciowe"
+#: mod/contacts.php:759
+msgid "Hidden"
+msgstr "Ukryty"
 
-#: 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)"
+#: mod/contacts.php:762
+msgid "Only show hidden contacts"
+msgstr "Pokaż tylko ukryte kontakty"
 
-#: src/Content/Feature.php:108
-msgid "Network Shared Links Tab"
-msgstr "Etykieta Udostępnianie Łącz Sieciowych"
+#: mod/contacts.php:818
+msgid "Search your contacts"
+msgstr "Wyszukaj w kontaktach"
 
-#: 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"
+#: mod/contacts.php:819 mod/search.php:236
+#, php-format
+msgid "Results for: %s"
+msgstr "Wyniki dla: %s"
 
-#: src/Content/Feature.php:113
-msgid "Post/Comment Tools"
-msgstr "Narzędzia post/komentarz"
+#: mod/contacts.php:829 mod/contacts.php:1027
+msgid "Archive"
+msgstr "Archiwum"
 
-#: src/Content/Feature.php:114
-msgid "Multiple Deletion"
-msgstr "Wielokrotne Usuwanie"
+#: mod/contacts.php:829 mod/contacts.php:1027
+msgid "Unarchive"
+msgstr "Przywróć z archiwum"
 
-#: src/Content/Feature.php:114
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Wybierz i usuń wiele postów/komentarzy jednocześnie"
+#: mod/contacts.php:832
+msgid "Batch Actions"
+msgstr "Akcje wsadowe"
 
-#: src/Content/Feature.php:115
-msgid "Edit Sent Posts"
-msgstr "Edytuj wysłane posty"
+#: mod/contacts.php:878
+msgid "View all contacts"
+msgstr "Zobacz wszystkie kontakty"
 
-#: 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"
+#: mod/contacts.php:886 mod/common.php:140
+msgid "Common Friends"
+msgstr "Wspólni znajomi"
 
-#: src/Content/Feature.php:116
-msgid "Tagging"
-msgstr "Tagowanie"
+#: mod/contacts.php:889
+msgid "View all common friends"
+msgstr "Zobacz wszystkich popularnych znajomych"
 
-#: src/Content/Feature.php:116
-msgid "Ability to tag existing posts"
-msgstr "Możliwość oznaczania istniejących postów"
+#: mod/contacts.php:898
+msgid "Advanced Contact Settings"
+msgstr "Zaawansowane ustawienia kontaktów"
 
-#: src/Content/Feature.php:117
-msgid "Post Categories"
-msgstr "Kategorie postów"
+#: mod/contacts.php:930
+msgid "Mutual Friendship"
+msgstr "Wzajemna przyjaźń"
 
-#: src/Content/Feature.php:117
-msgid "Add categories to your posts"
-msgstr "Dodaj kategorie do twoich postów"
+#: mod/contacts.php:934
+msgid "is a fan of yours"
+msgstr "jest twoim fanem"
 
-#: src/Content/Feature.php:118 src/Content/Widget.php:200
-msgid "Saved Folders"
-msgstr "Zapisane foldery"
+#: mod/contacts.php:938
+msgid "you are a fan of"
+msgstr "jesteś fanem"
 
-#: src/Content/Feature.php:118
-msgid "Ability to file posts under folders"
-msgstr "Możliwość przesyłania postów do folderów"
+#: mod/contacts.php:1013
+msgid "Toggle Blocked status"
+msgstr "Przełącz na Zablokowany"
 
-#: src/Content/Feature.php:119
-msgid "Dislike Posts"
-msgstr "Nie lubię Postów"
+#: mod/contacts.php:1021
+msgid "Toggle Ignored status"
+msgstr "Przełącz ignorowany status"
 
-#: src/Content/Feature.php:119
-msgid "Ability to dislike posts/comments"
-msgstr "Możliwa niechęć do postów/komentarzy"
+#: mod/contacts.php:1029
+msgid "Toggle Archive status"
+msgstr "Przełącz status archiwum"
 
-#: src/Content/Feature.php:120
-msgid "Star Posts"
-msgstr "Oznacz posty gwiazdką"
+#: mod/contacts.php:1037
+msgid "Delete contact"
+msgstr "Usuń kontakt"
 
-#: src/Content/Feature.php:120
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Oznacz specjalne posty gwiazdką"
+#: mod/bookmarklet.php:51
+msgid "The post was created"
+msgstr "Post został utworzony"
 
-#: src/Content/Feature.php:121
-msgid "Mute Post Notifications"
-msgstr "Ignoruj ​​powiadomienia pocztą"
+#: mod/lostpass.php:27
+msgid "No valid account found."
+msgstr "Nie znaleziono ważnego konta."
 
-#: src/Content/Feature.php:121
-msgid "Ability to mute notifications for a thread"
-msgstr "Ignoruj powiadomienia dla wątku"
+#: mod/lostpass.php:39
+msgid "Password reset request issued. Check your email."
+msgstr "Prośba o zresetowanie hasła została zatwierdzona. Sprawdź swój e-mail."
+
+#: 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 "\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."
 
-#: src/Content/Feature.php:126
-msgid "Advanced Profile Settings"
-msgstr "Zaawansowane ustawienia profilu"
+#: 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 "\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"
 
-#: 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"
+#: mod/lostpass.php:73
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Prośba o reset hasła na %s"
 
-#: src/Content/Feature.php:128
-msgid "Tag Cloud"
-msgstr "Chmura tagów"
+#: mod/lostpass.php:89
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Prośba nie może być zweryfikowana. (Mogłeś już ją poprzednio wysłać.) Reset hasła nie powiódł się."
 
-#: src/Content/Feature.php:128
-msgid "Provide a personal tag cloud on your profile page"
-msgstr "Podaj osobistą chmurę tagów na stronie profilu"
+#: mod/lostpass.php:102
+msgid "Request has expired, please make a new one."
+msgstr "Żądanie wygasło. Zrób nowe."
 
-#: src/Content/Feature.php:129
-msgid "Display Membership Date"
-msgstr "Wyświetl datę członkostwa"
+#: mod/lostpass.php:117
+msgid "Forgot your Password?"
+msgstr "Zapomniałeś hasła?"
 
-#: src/Content/Feature.php:129
-msgid "Display membership date in profile"
-msgstr "Wyświetl datę członkostwa w profilu"
+#: mod/lostpass.php:118
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"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."
 
-#: src/Content/OEmbed.php:253
-msgid "Embedding disabled"
-msgstr "Osadzanie wyłączone"
+#: mod/lostpass.php:120
+msgid "Reset"
+msgstr "Zresetuj"
 
-#: src/Content/OEmbed.php:373
-msgid "Embedded content"
-msgstr "Osadzona zawartość"
+#: mod/lostpass.php:137
+msgid "Your password has been reset as requested."
+msgstr "Twoje hasło zostało zresetowane zgodnie z żądaniem."
 
-#: src/Content/Widget/CalendarExport.php:61
-msgid "Export"
-msgstr "Eksport"
+#: mod/lostpass.php:138
+msgid "Your new password is"
+msgstr "Twoje nowe hasło to"
 
-#: src/Content/Widget/CalendarExport.php:62
-msgid "Export calendar as ical"
-msgstr "Wyeksportuj kalendarz jako ical"
+#: mod/lostpass.php:139
+msgid "Save or copy your new password - and then"
+msgstr "Zapisz lub skopiuj nowe hasło - a następnie"
 
-#: src/Content/Widget/CalendarExport.php:63
-msgid "Export calendar as csv"
-msgstr "Eksportuj kalendarz jako csv"
+#: mod/lostpass.php:140
+msgid "click here to login"
+msgstr "Kliknij tutaj aby się zalogować"
 
-#: src/Content/Widget.php:33
-msgid "Add New Contact"
-msgstr "Dodaj nowy kontakt"
+#: mod/lostpass.php:141
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Twoje hasło może być zmienione w <em>Ustawieniach</em> po udanym zalogowaniu."
 
-#: src/Content/Widget.php:34
-msgid "Enter address or web location"
-msgstr "Wpisz adres lub lokalizację sieciową"
+#: 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 "\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"
 
-#: 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"
+#: 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\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"
 
-#: src/Content/Widget.php:53
+#: mod/lostpass.php:169
 #, 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"
+msgid "Your password has been changed at %s"
+msgstr "Twoje hasło zostało zmienione na %s"
 
-#: src/Content/Widget.php:59
-msgid "Find People"
-msgstr "Znajdź ludzi"
+#: mod/install.php:114
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica Serwer Komunikacyjny - Instalacja"
 
-#: src/Content/Widget.php:60
-msgid "Enter name or interest"
-msgstr "Wpisz nazwę lub zainteresowanie"
+#: mod/install.php:120
+msgid "Could not connect to database."
+msgstr "Nie można nawiązać połączenia z bazą danych"
 
-#: src/Content/Widget.php:62
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Przykład: Jan Kowalski, Wędkarstwo"
+#: mod/install.php:124
+msgid "Could not create table."
+msgstr "Nie mogę stworzyć tabeli."
 
-#: src/Content/Widget.php:66
-msgid "Random Profile"
-msgstr "Domyślny profil"
+#: mod/install.php:130
+msgid "Your Friendica site database has been installed."
+msgstr "Twoja baza danych witryny Friendica została zainstalowana."
 
-#: src/Content/Widget.php:68
-msgid "View Global Directory"
-msgstr "Wyświetl globalny katalog"
+#: 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."
 
-#: src/Content/Widget.php:159
-msgid "Networks"
-msgstr "Sieci"
+#: 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\"."
 
-#: src/Content/Widget.php:162
-msgid "All Networks"
-msgstr "Wszystkie Sieci"
+#: mod/install.php:148
+msgid "Database already in use."
+msgstr "Baza danych jest już w użyciu."
 
-#: src/Content/Widget.php:203 src/Content/Widget.php:243
-msgid "Everything"
-msgstr "Wszystko"
+#: mod/install.php:205
+msgid "System check"
+msgstr "Sprawdzanie systemu"
 
-#: src/Content/Widget.php:240
-msgid "Categories"
-msgstr "Kategorie"
+#: mod/install.php:210
+msgid "Check again"
+msgstr "Sprawdź ponownie"
 
-#: 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] ""
+#: mod/install.php:230
+msgid "Database connection"
+msgstr "Połączenie z bazą danych"
 
-#: src/Content/ContactSelector.php:55
-msgid "Frequently"
-msgstr "Często"
+#: 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."
 
-#: src/Content/ContactSelector.php:56
-msgid "Hourly"
-msgstr "Co godzinę"
+#: 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ń ."
 
-#: src/Content/ContactSelector.php:57
-msgid "Twice daily"
-msgstr "Dwa razy dziennie"
+#: 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ą."
 
-#: src/Content/ContactSelector.php:58
-msgid "Daily"
-msgstr "Codziennie"
+#: mod/install.php:237
+msgid "Database Server Name"
+msgstr "Nazwa serwera bazy danych"
 
-#: src/Content/ContactSelector.php:59
-msgid "Weekly"
-msgstr "Co tydzień"
+#: mod/install.php:238
+msgid "Database Login Name"
+msgstr "Nazwa użytkownika bazy danych"
 
-#: src/Content/ContactSelector.php:60
-msgid "Monthly"
-msgstr "Miesięczne"
+#: mod/install.php:239
+msgid "Database Login Password"
+msgstr "Hasło logowania do bazy danych"
 
-#: src/Content/ContactSelector.php:80
-msgid "OStatus"
-msgstr "OStatus"
+#: 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"
 
-#: src/Content/ContactSelector.php:81
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: mod/install.php:240
+msgid "Database Name"
+msgstr "Nazwa bazy danych"
 
-#: src/Content/ContactSelector.php:84
-msgid "Facebook"
-msgstr "Facebook"
+#: mod/install.php:241 mod/install.php:281
+msgid "Site administrator email address"
+msgstr "Adres e-mail administratora strony"
 
-#: src/Content/ContactSelector.php:85
-msgid "Zot!"
-msgstr "Zot!"
+#: 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."
 
-#: src/Content/ContactSelector.php:86
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: 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"
 
-#: src/Content/ContactSelector.php:87
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: mod/install.php:271
+msgid "Site settings"
+msgstr "Ustawienia strony"
 
-#: src/Content/ContactSelector.php:88
-msgid "MySpace"
-msgstr "MySpace"
+#: mod/install.php:285
+msgid "System Language:"
+msgstr "Język systemu:"
 
-#: src/Content/ContactSelector.php:89
-msgid "Google+"
-msgstr "Google+"
+#: 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."
 
-#: src/Content/ContactSelector.php:90
-msgid "pump.io"
-msgstr "pump.io"
+#: 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"
 
-#: src/Content/ContactSelector.php:91
-msgid "Twitter"
-msgstr "Twitter"
+#: 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 <a "
+"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
+"up-the-worker'>'Setup the worker'</a>"
+msgstr "Jeśli nie masz zainstalowanej na serwerze wersji PHP z wiersza poleceń, nie będziesz mógł uruchomić przetwarzania w tle. Zobacz <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-worker'>'Konfiguracja pracownika'</a>"
 
-#: src/Content/ContactSelector.php:92
-msgid "Diaspora Connector"
-msgstr "Å\81Ä\85cze Diaspora"
+#: mod/install.php:330
+msgid "PHP executable path"
+msgstr "Å\9acieżka wykonywalna PHP"
 
-#: src/Content/ContactSelector.php:93
-msgid "GNU Social Connector"
-msgstr "GNU Połączenie Społecznościowe"
+#: 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ę."
 
-#: src/Content/ContactSelector.php:94
-msgid "pnut"
-msgstr "orzech"
+#: mod/install.php:335
+msgid "Command line PHP"
+msgstr "Linia komend PHP"
 
-#: src/Content/ContactSelector.php:95
-msgid "App.net"
-msgstr "App.net"
+#: 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)"
 
-#: src/Content/ContactSelector.php:125
-msgid "Male"
-msgstr "Mężczyzna"
+#: mod/install.php:345
+msgid "Found PHP version: "
+msgstr "Znaleziono wersje PHP:"
 
-#: src/Content/ContactSelector.php:125
-msgid "Female"
-msgstr "Kobieta"
+#: mod/install.php:347
+msgid "PHP cli binary"
+msgstr "PHP cli binarny"
 
-#: src/Content/ContactSelector.php:125
-msgid "Currently Male"
-msgstr "Obecnie mężczyzna"
+#: 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\"."
 
-#: src/Content/ContactSelector.php:125
-msgid "Currently Female"
-msgstr "Obecnie Kobieta"
+#: mod/install.php:359
+msgid "This is required for message delivery to work."
+msgstr "Jest wymagane, aby dostarczanie wiadomości działało."
 
-#: src/Content/ContactSelector.php:125
-msgid "Mostly Male"
-msgstr "Głównie mężczyzna"
+#: mod/install.php:361
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: src/Content/ContactSelector.php:125
-msgid "Mostly Female"
-msgstr "Głównie kobieta"
+#: 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"
 
-#: src/Content/ContactSelector.php:125
-msgid "Transgender"
-msgstr "Transseksualny"
+#: 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\"."
 
-#: src/Content/ContactSelector.php:125
-msgid "Intersex"
-msgstr "Interseksualne"
+#: mod/install.php:387
+msgid "Generate encryption keys"
+msgstr "Generuj klucz kodowania"
 
-#: src/Content/ContactSelector.php:125
-msgid "Transsexual"
-msgstr "Transseksualny"
+#: mod/install.php:394
+msgid "libCurl PHP module"
+msgstr "Moduł libCurl PHP"
 
-#: src/Content/ContactSelector.php:125
-msgid "Hermaphrodite"
-msgstr "Hermafrodyta"
+#: mod/install.php:395
+msgid "GD graphics PHP module"
+msgstr "Moduł PHP-GD"
 
-#: src/Content/ContactSelector.php:125
-msgid "Neuter"
-msgstr "Rodzaj nijaki"
+#: mod/install.php:396
+msgid "OpenSSL PHP module"
+msgstr "Moduł PHP OpenSSL"
 
-#: src/Content/ContactSelector.php:125
-msgid "Non-specific"
-msgstr "Niespecyficzne"
+#: mod/install.php:397
+msgid "PDO or MySQLi PHP module"
+msgstr "Moduł PDO lub MySQLi PHP"
 
-#: src/Content/ContactSelector.php:125
-msgid "Other"
-msgstr "Inne"
+#: mod/install.php:398
+msgid "mb_string PHP module"
+msgstr "Moduł mb_string PHP"
 
-#: src/Content/ContactSelector.php:147
-msgid "Males"
-msgstr "Mężczyźni"
+#: mod/install.php:399
+msgid "XML PHP module"
+msgstr "Moduł XML PHP"
 
-#: src/Content/ContactSelector.php:147
-msgid "Females"
-msgstr "Kobiety"
+#: mod/install.php:400
+msgid "iconv PHP module"
+msgstr "Moduł PHP iconv"
 
-#: src/Content/ContactSelector.php:147
-msgid "Gay"
-msgstr "Gej"
+#: mod/install.php:401
+msgid "POSIX PHP module"
+msgstr "Moduł POSIX PHP"
 
-#: src/Content/ContactSelector.php:147
-msgid "Lesbian"
-msgstr "Lesbijka"
+#: mod/install.php:405 mod/install.php:407
+msgid "Apache mod_rewrite module"
+msgstr "Moduł Apache mod_rewrite"
 
-#: src/Content/ContactSelector.php:147
-msgid "No Preference"
-msgstr "Brak preferencji"
+#: 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."
 
-#: src/Content/ContactSelector.php:147
-msgid "Bisexual"
-msgstr "Biseksualny"
+#: mod/install.php:413
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany."
 
-#: src/Content/ContactSelector.php:147
-msgid "Autosexual"
-msgstr "Niezidentyfikowany"
+#: 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."
 
-#: src/Content/ContactSelector.php:147
-msgid "Abstinent"
-msgstr "Abstynent"
+#: mod/install.php:421
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany."
 
-#: src/Content/ContactSelector.php:147
-msgid "Virgin"
-msgstr "Dziewica"
+#: 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."
 
-#: src/Content/ContactSelector.php:147
-msgid "Deviant"
-msgstr "Zboczeniec"
+#: mod/install.php:429
+msgid "Error: The MySQL driver for PDO is not installed."
+msgstr "Błąd: Sterownik MySQL dla PDO nie jest zainstalowany."
 
-#: src/Content/ContactSelector.php:147
-msgid "Fetish"
-msgstr "Fetysz"
+#: 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"
 
-#: src/Content/ContactSelector.php:147
-msgid "Oodles"
-msgstr "Nadmiar"
+#: mod/install.php:437
+msgid "Error: iconv PHP module required but not installed."
+msgstr "Błąd: wymagany moduł PHP iconv, ale nie zainstalowany."
 
-#: src/Content/ContactSelector.php:147
-msgid "Nonsexual"
-msgstr "Nieseksualny"
+#: 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."
 
-#: src/Content/ContactSelector.php:169
-msgid "Single"
-msgstr "Singiel"
+#: 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ć."
 
-#: src/Content/ContactSelector.php:169
-msgid "Lonely"
-msgstr "Samotny"
+#: 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."
 
-#: src/Content/ContactSelector.php:169
-msgid "Available"
-msgstr "Dostępny"
+#: 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."
 
-#: src/Content/ContactSelector.php:169
-msgid "Unavailable"
-msgstr "Niedostępny"
+#: 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."
 
-#: src/Content/ContactSelector.php:169
-msgid "Has crush"
-msgstr "Ma sympatii"
+#: mod/install.php:469
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php jest zapisywalny"
 
-#: src/Content/ContactSelector.php:169
-msgid "Infatuated"
-msgstr "Zakochany"
+#: 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."
 
-#: src/Content/ContactSelector.php:169
-msgid "Dating"
-msgstr "Randki"
+#: 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."
 
-#: src/Content/ContactSelector.php:169
-msgid "Unfaithful"
-msgstr "Niewierny"
+#: 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."
 
-#: src/Content/ContactSelector.php:169
-msgid "Sex Addict"
-msgstr "Uzależniony od seksu"
+#: 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."
 
-#: src/Content/ContactSelector.php:169 src/Model/User.php:519
-msgid "Friends"
-msgstr "Przyjaciele"
+#: mod/install.php:485
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 jest zapisywalny"
 
-#: src/Content/ContactSelector.php:169
-msgid "Friends/Benefits"
-msgstr "Przyjaciele/Korzyści"
+#: 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."
 
-#: src/Content/ContactSelector.php:169
-msgid "Casual"
-msgstr "Przypadkowy"
+#: mod/install.php:503
+msgid "Url rewrite is working"
+msgstr "Działający adres URL"
 
-#: src/Content/ContactSelector.php:169
-msgid "Engaged"
-msgstr "Zaręczeni"
+#: mod/install.php:522
+msgid "ImageMagick PHP extension is not installed"
+msgstr "Rozszerzenie PHP ImageMagick nie jest zainstalowane"
 
-#: src/Content/ContactSelector.php:169
-msgid "Married"
-msgstr "Małżeństwo"
+#: mod/install.php:524
+msgid "ImageMagick PHP extension is installed"
+msgstr "Rozszerzenie PHP ImageMagick jest zainstalowane"
 
-#: src/Content/ContactSelector.php:169
-msgid "Imaginarily married"
-msgstr "Fikcyjnie w związku małżeńskim"
+#: mod/install.php:526
+msgid "ImageMagick supports GIF"
+msgstr "ImageMagick obsługuje GIF"
 
-#: src/Content/ContactSelector.php:169
-msgid "Partners"
-msgstr "Partnerzy"
+#: 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."
 
-#: src/Content/ContactSelector.php:169
-msgid "Cohabiting"
-msgstr "Konkubinat"
+#: mod/install.php:556
+msgid "<h1>What next</h1>"
+msgstr "<h1>Co dalej</h1>"
 
-#: src/Content/ContactSelector.php:169
-msgid "Common law"
-msgstr "Prawo zwyczajowe"
+#: 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."
 
-#: src/Content/ContactSelector.php:169
-msgid "Happy"
-msgstr "Szczęśliwy"
+#: mod/install.php:560
+#, php-format
+msgid ""
+"Go to your new Friendica node <a href=\"%s/register\">registration page</a> "
+"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 <a href=\"%s/register\">strony rejestracji</a> 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."
 
-#: src/Content/ContactSelector.php:169
-msgid "Not looking"
-msgstr "Nie patrzę"
+#: mod/babel.php:23
+msgid "Source input"
+msgstr "Źródło wejściowe"
 
-#: src/Content/ContactSelector.php:169
-msgid "Swinger"
-msgstr "Swinger"
+#: mod/babel.php:29
+msgid "BBCode::toPlaintext"
+msgstr "BBCode::na prosty tekst"
 
-#: src/Content/ContactSelector.php:169
-msgid "Betrayed"
-msgstr "Zdradzony"
+#: mod/babel.php:35
+msgid "BBCode::convert (raw HTML)"
+msgstr "BBCode:: konwersjia (raw HTML)"
 
-#: src/Content/ContactSelector.php:169
-msgid "Separated"
-msgstr "W separacji"
+#: mod/babel.php:40
+msgid "BBCode::convert"
+msgstr "BBCode::przekształć"
 
-#: src/Content/ContactSelector.php:169
-msgid "Unstable"
-msgstr "Niestabilny"
+#: mod/babel.php:46
+msgid "BBCode::convert => HTML::toBBCode"
+msgstr "BBCode::przekształć => HTML::toBBCode"
 
-#: src/Content/ContactSelector.php:169
-msgid "Divorced"
-msgstr "Rozwiedzeni"
+#: mod/babel.php:52
+msgid "BBCode::toMarkdown"
+msgstr "BBCode::toMarkdown"
 
-#: src/Content/ContactSelector.php:169
-msgid "Imaginarily divorced"
-msgstr "Fikcyjnie rozwiedziony/a"
+#: mod/babel.php:58
+msgid "BBCode::toMarkdown => Markdown::convert"
+msgstr "BBCode::toMarkdown => Markdown::przekształć"
 
-#: src/Content/ContactSelector.php:169
-msgid "Widowed"
-msgstr "Wdowiec"
+#: mod/babel.php:64
+msgid "BBCode::toMarkdown => Markdown::toBBCode"
+msgstr "BBCode::toMarkdown => Markdown::toBBCode"
 
-#: src/Content/ContactSelector.php:169
-msgid "Uncertain"
-msgstr "Nieokreślony"
+#: mod/babel.php:70
+msgid "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
+msgstr "BBCode::toMarkdown => Markdown::przekształć => HTML::toBBCode"
 
-#: src/Content/ContactSelector.php:169
-msgid "It's complicated"
-msgstr "To skomplikowane"
+#: mod/babel.php:77
+msgid "Source input \\x28Diaspora format\\x29"
+msgstr "Źródło wejściowe \\x28Diaspora format\\x29"
 
-#: src/Content/ContactSelector.php:169
-msgid "Don't care"
-msgstr "Nie przejmuj się"
+#: mod/babel.php:83
+msgid "Markdown::toBBCode"
+msgstr "Markdown::toBBCode"
 
-#: src/Content/ContactSelector.php:169
-msgid "Ask me"
-msgstr "Zapytaj mnie "
+#: mod/babel.php:90
+msgid "Raw HTML input"
+msgstr "Surowe wejście HTML"
 
-#: src/Database/DBStructure.php:32
-msgid "There are no tables on MyISAM."
-msgstr "W MyISAM nie ma tabel."
+#: mod/babel.php:95
+msgid "HTML Input"
+msgstr "Wejście HTML"
 
-#: 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."
+#: mod/babel.php:101
+msgid "HTML::toBBCode"
+msgstr "HTML::toBBCode"
 
-#: 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]"
+#: mod/babel.php:107
+msgid "HTML::toPlaintext"
+msgstr "HTML::toPlaintext"
 
-#: 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"
+#: mod/babel.php:115
+msgid "Source text"
+msgstr "Tekst źródłowy"
 
-#: src/Database/DBStructure.php:194
-msgid "Errors encountered performing database changes: "
-msgstr "Napotkane błędy powodujące zmiany w bazie danych:"
+#: mod/babel.php:116
+msgid "BBCode"
+msgstr "BBCode"
 
-#: src/Database/DBStructure.php:210
-msgid ": Database update"
-msgstr ": Aktualizacja bazy danych"
+#: mod/babel.php:117
+msgid "Markdown"
+msgstr "Markdown"
 
-#: src/Database/DBStructure.php:460
-#, php-format
-msgid "%s: updating %s table."
-msgstr "%s: aktualizowanie %s tabeli."
+#: mod/babel.php:118
+msgid "HTML"
+msgstr "HTML"
 
-#: src/Model/Mail.php:40 src/Model/Mail.php:174
-msgid "[no subject]"
-msgstr "[bez tematu]"
+#: 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:"
 
-#: src/Model/Item.php:1676
+#: mod/wallmessage.php:49 mod/wallmessage.php:112
 #, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr "%1$suczestniczy %2$s's %3$s "
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Dzienny limit wiadomości %s został przekroczony. Wiadomość została odrzucona."
 
-#: 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 "
+#: mod/wallmessage.php:60
+msgid "Unable to check your home location."
+msgstr "Nie można sprawdzić twojej lokalizacji."
+
+#: mod/wallmessage.php:86 mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Brak odbiorcy."
 
-#: src/Model/Item.php:1686
+#: mod/wallmessage.php:133
 #, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr "%1$smogą uczestniczyć %2$s's %3$s "
+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."
 
-#: src/Model/Contact.php:657
-msgid "Drop Contact"
-msgstr "Upuść kontakt"
+#: 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."
 
-#: src/Model/Contact.php:1060
-msgid "Organisation"
-msgstr "Organizacja"
+#: mod/match.php:104
+msgid "is interested in:"
+msgstr "interesuje się:"
 
-#: src/Model/Contact.php:1063
-msgid "News"
-msgstr "Aktualności"
+#: mod/match.php:120
+msgid "Profile Match"
+msgstr "Dopasowanie profilu"
 
-#: src/Model/Contact.php:1066
-msgid "Forum"
-msgstr "Forum"
+#: mod/maintenance.php:24
+msgid "System down for maintenance"
+msgstr "System wyłączony w celu konserwacji"
 
-#: src/Model/Contact.php:1245
-msgid "Connect URL missing."
-msgstr "Brak adresu URL połączenia."
+#: mod/tagrm.php:47
+msgid "Tag removed"
+msgstr "Tag usunięty"
 
-#: 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."
+#: mod/tagrm.php:85
+msgid "Remove Item Tag"
+msgstr "Usuń pozycję Tag"
 
-#: 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"
+#: mod/tagrm.php:87
+msgid "Select a tag to remove: "
+msgstr "Wybierz tag do usunięcia"
 
-#: 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ł."
+#: mod/feedtest.php:20
+msgid "You must be logged in to use this module"
+msgstr "Musisz być zalogowany, aby korzystać z tego modułu"
 
-#: src/Model/Contact.php:1314
-msgid "The profile address specified does not provide adequate information."
-msgstr "Dany adres profilu nie dostarcza odpowiednich informacji."
+#: mod/feedtest.php:48
+msgid "Source URL"
+msgstr "Źródłowy adres URL"
 
-#: src/Model/Contact.php:1319
-msgid "An author or name was not found."
-msgstr "Autor lub nazwa nie zostało znalezione."
+#: mod/search.php:105
+msgid "Only logged in users are permitted to perform a search."
+msgstr "Tylko zalogowani użytkownicy mogą wyszukiwać."
 
-#: 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"
+#: mod/search.php:129
+msgid "Too Many Requests"
+msgstr "Zbyt dużo próśb"
 
-#: 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."
+#: 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ę."
 
-#: 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."
+#: mod/search.php:234
+#, php-format
+msgid "Items tagged with: %s"
+msgstr "Przedmioty oznaczone tagiem: %s"
 
-#: 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."
+#: mod/uexport.php:44
+msgid "Export account"
+msgstr "Eksportuj konto"
 
-#: src/Model/Contact.php:1337
+#: mod/uexport.php:44
 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."
+"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."
 
-#: src/Model/Contact.php:1388
-msgid "Unable to retrieve contact information."
-msgstr "Nie można otrzymać informacji kontaktowych"
+#: mod/uexport.php:45
+msgid "Export all"
+msgstr "Eksportuj wszystko"
 
-#: src/Model/Contact.php:1605
-#, php-format
-msgid "%s's birthday"
-msgstr "Urodziny %s"
+#: 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)"
 
-#: src/Model/Contact.php:1606 src/Protocol/DFRN.php:1483
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Urodziny %s"
+#: mod/newmember.php:11
+msgid "Welcome to Friendica"
+msgstr "Witamy na Friendica"
 
-#: 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:"
+#: mod/newmember.php:12
+msgid "New Member Checklist"
+msgstr "Lista nowych członków"
 
-#: 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:"
+#: 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."
 
-#: src/Model/Event.php:368
-msgid "all-day"
-msgstr "cały dzień"
+#: mod/newmember.php:15
+msgid "Getting Started"
+msgstr "Pierwsze kroki"
 
-#: src/Model/Event.php:391
-msgid "Jun"
-msgstr "cze"
+#: mod/newmember.php:17
+msgid "Friendica Walk-Through"
+msgstr "Friendica Przejdź-Przez"
 
-#: src/Model/Event.php:394
-msgid "Sept"
-msgstr "wrz"
+#: mod/newmember.php:17
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr "Na stronie <em>Szybki start</em> - znajdź krótkie wprowadzenie do swojego profilu i kart sieciowych, stwórz nowe połączenia i znajdź kilka grup do przyłączenia się."
 
-#: src/Model/Event.php:417
-msgid "No events to display"
-msgstr "Brak wydarzeń do wyświetlenia"
+#: mod/newmember.php:21
+msgid "Go to Your Settings"
+msgstr "Idź do swoich ustawień"
 
-#: src/Model/Event.php:543
-msgid "l, F j"
-msgstr "d, M d "
+#: mod/newmember.php:21
+msgid ""
+"On your <em>Settings</em> 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."
 
-#: src/Model/Event.php:566
-msgid "Edit event"
-msgstr "Edytuj wydarzenie"
+#: 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źć."
 
-#: src/Model/Event.php:567
-msgid "Duplicate event"
-msgstr "Zduplikowane zdarzenie"
+#: 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."
 
-#: src/Model/Event.php:568
-msgid "Delete event"
-msgstr "Usuń wydarzenie"
+#: mod/newmember.php:27
+msgid "Edit Your Profile"
+msgstr "Edytuj własny profil"
 
-#: src/Model/Event.php:815
-msgid "D g:i A"
-msgstr ""
+#: mod/newmember.php:27
+msgid ""
+"Edit your <strong>default</strong> 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/Event.php:816
-msgid "g:i A"
-msgstr ""
+#: mod/newmember.php:28
+msgid "Profile Keywords"
+msgstr "Słowa kluczowe profilu"
 
-#: src/Model/Event.php:901 src/Model/Event.php:903
-msgid "Show map"
-msgstr "Pokaż mapę"
+#: 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/Event.php:902
-msgid "Hide map"
-msgstr "Ukryj mapę"
+#: mod/newmember.php:30
+msgid "Connecting"
+msgstr "Łączę się..."
 
-#: src/Model/Group.php:44
+#: mod/newmember.php:36
+msgid "Importing Emails"
+msgstr "Importuję emaile..."
+
+#: mod/newmember.php:36
 msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> 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 <strong>mogą</strong> dotyczyć tej grupy i wszystkich przyszłych członków. Jeśli nie jest to zamierzone, utwórz inną grupę o innej nazwie."
+"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"
 
-#: 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:39
+msgid "Go to Your Contacts Page"
+msgstr "Idź do strony z Twoimi kontaktami"
 
-#: src/Model/Group.php:374
-msgid "Everybody"
-msgstr "Wszyscy"
+#: 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 <em>Add New Contact</em> 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 <em>Dodaj nowy kontakt</em>."
 
-#: src/Model/Group.php:394
-msgid "edit"
-msgstr "edytuj"
+#: mod/newmember.php:40
+msgid "Go to Your Site's Directory"
+msgstr "Idż do twojej strony"
 
-#: src/Model/Group.php:418
-msgid "Edit group"
-msgstr "Edytuj grupy"
+#: mod/newmember.php:40
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> 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 <em>Połącz</em> lub <em>Śledź</em> na stronie profilu. Jeśli chcesz, podaj swój własny adres tożsamości."
 
-#: src/Model/Group.php:419
-msgid "Contacts not in any group"
-msgstr "Kontakt nie jest w żadnej grupie"
+#: mod/newmember.php:41
+msgid "Finding New People"
+msgstr "Znajdowanie nowych osób"
 
-#: src/Model/Group.php:420
-msgid "Create a new group"
-msgstr "Stwórz nową grupę"
+#: 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"
 
-#: src/Model/Group.php:422
-msgid "Edit groups"
-msgstr "Edytuj grupy"
+#: mod/newmember.php:45
+msgid "Group Your Contacts"
+msgstr "Grupuj Swoje kontakty"
 
-#: src/Model/Profile.php:97
-msgid "Requested account is not available."
-msgstr "Żądane konto jest niedostępne."
+#: 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ć."
 
-#: src/Model/Profile.php:168 src/Model/Profile.php:399
-#: src/Model/Profile.php:861
-msgid "Edit profile"
-msgstr "Edytuj profil"
+#: mod/newmember.php:48
+msgid "Why Aren't My Posts Public?"
+msgstr "Dlaczego moje posty nie są publiczne?"
 
-#: src/Model/Profile.php:336
-msgid "Atom feed"
-msgstr "Kanał Atom"
+#: 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."
 
-#: src/Model/Profile.php:372
-msgid "Manage/edit profiles"
-msgstr "Zarządzaj profilami"
+#: mod/newmember.php:52
+msgid "Getting Help"
+msgstr "Otrzymaj pomoc"
 
-#: src/Model/Profile.php:550 src/Model/Profile.php:643
-msgid "g A l F d"
-msgstr "g A I F d"
+#: mod/newmember.php:54
+msgid "Go to the Help Section"
+msgstr "Przejdź do sekcji pomocy"
 
-#: src/Model/Profile.php:551
-msgid "F d"
-msgstr ""
+#: mod/newmember.php:54
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Na naszych stronach <strong>pomocy</strong> można znaleźć szczegółowe informacje na temat innych funkcji programu i zasobów."
 
-#: src/Model/Profile.php:608 src/Model/Profile.php:705
-msgid "[today]"
-msgstr "[dziś]"
+#: 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."
 
-#: src/Model/Profile.php:619
-msgid "Birthday Reminders"
-msgstr "Przypomnienia o urodzinach"
+#: mod/dfrn_confirm.php:242
+msgid "Response from remote site was not understood."
+msgstr "Odpowiedź do zdalnej strony nie została zrozumiana"
 
-#: src/Model/Profile.php:620
-msgid "Birthdays this week:"
-msgstr "Urodziny w tym tygodniu:"
+#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254
+msgid "Unexpected response from remote site: "
+msgstr "Nieoczekiwana odpowiedź od strony zdalnej:"
 
-#: src/Model/Profile.php:692
-msgid "[No description]"
-msgstr "[Brak opisu]"
+#: mod/dfrn_confirm.php:263
+msgid "Confirmation completed successfully."
+msgstr "Potwierdzenie zostało pomyślnie zakończone."
 
-#: src/Model/Profile.php:719
-msgid "Event Reminders"
-msgstr "Przypominacze wydarzeń"
+#: mod/dfrn_confirm.php:275
+msgid "Temporary failure. Please wait and try again."
+msgstr "Tymczasowa awaria. Proszę czekać i spróbuj ponownie."
 
-#: src/Model/Profile.php:720
-msgid "Events this week:"
-msgstr "Wydarzenia w tym tygodniu:"
+#: mod/dfrn_confirm.php:278
+msgid "Introduction failed or was revoked."
+msgstr "Wprowadzenie nie powiodło się lub zostało odwołane."
 
-#: src/Model/Profile.php:743
-msgid "Member since:"
-msgstr "Członek od:"
+#: mod/dfrn_confirm.php:283
+msgid "Remote site reported: "
+msgstr "Zdalna witryna zgłoszona:"
 
-#: src/Model/Profile.php:751
-msgid "j F, Y"
-msgstr "d M, R"
+#: mod/dfrn_confirm.php:396
+msgid "Unable to set contact photo."
+msgstr "Nie można ustawić zdjęcia kontaktu."
 
-#: src/Model/Profile.php:752
-msgid "j F"
-msgstr "d M"
+#: mod/dfrn_confirm.php:498
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Nie znaleziono użytkownika dla '%s'"
 
-#: src/Model/Profile.php:767
-msgid "Age:"
-msgstr "Wiek:"
+#: mod/dfrn_confirm.php:508
+msgid "Our site encryption key is apparently messed up."
+msgstr "Klucz kodujący jest najwyraźniej uszkodzony."
 
-#: src/Model/Profile.php:780
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "od %1$d %2$s"
+#: 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ć."
 
-#: src/Model/Profile.php:804
-msgid "Religion:"
-msgstr "Religia:"
+#: mod/dfrn_confirm.php:535
+msgid "Contact record was not found for you on our site."
+msgstr "Nie znaleziono kontaktu na naszej stronie"
 
-#: src/Model/Profile.php:812
-msgid "Hobbies/Interests:"
-msgstr "Hobby/Zainteresowania:"
+#: 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"
 
-#: src/Model/Profile.php:824
-msgid "Contact information and Social Networks:"
-msgstr "Informacje kontaktowe i sieci społeczne"
+#: 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."
 
-#: src/Model/Profile.php:828
-msgid "Musical interests:"
-msgstr "Zainteresowania muzyczne:"
+#: 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."
 
-#: src/Model/Profile.php:832
-msgid "Books, literature:"
-msgstr "Książki, literatura:"
+#: 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"
 
-#: src/Model/Profile.php:836
-msgid "Television:"
-msgstr "Telewizja:"
+#: mod/dfrn_confirm.php:694
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s dołączył/a do %2$s"
 
-#: src/Model/Profile.php:840
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film/taniec/kultura/rozrywka"
+#: mod/filer.php:34
+msgid "- select -"
+msgstr "- wybierz -"
 
-#: src/Model/Profile.php:844
-msgid "Love/Romance:"
-msgstr "Miłość/Romans:"
+#: mod/register.php:99
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila."
 
-#: src/Model/Profile.php:848
-msgid "Work/employment:"
-msgstr "Praca/zatrudnienie:"
+#: mod/register.php:103
+#, php-format
+msgid ""
+"Failed to send email message. Here your accout details:<br> login: %s<br> "
+"password: %s<br><br>You can change your password after login."
+msgstr "Nie udało się wysłać wiadomości e-mail. Tutaj szczegóły twojego konta:<br> login: %s<br>hasło: %s<br><br>Możesz zmienić swoje hasło po zalogowaniu."
 
-#: src/Model/Profile.php:852
-msgid "School/education:"
-msgstr "Szkoła/edukacja:"
+#: mod/register.php:110
+msgid "Registration successful."
+msgstr "Rejestracja udana."
 
-#: src/Model/Profile.php:857
-msgid "Forums:"
-msgstr "Fora:"
+#: mod/register.php:115
+msgid "Your registration can not be processed."
+msgstr "Twoja rejestracja nie może zostać przeprowadzona. "
 
-#: src/Model/Profile.php:951
-msgid "Only You Can See This"
-msgstr "Tylko ty możesz to zobaczyć"
+#: mod/register.php:162
+msgid "Your registration is pending approval by the site owner."
+msgstr "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny."
 
-#: src/Model/User.php:154
-msgid "Login failed"
-msgstr "Logowanie nieudane"
+#: mod/register.php:220
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "Możesz (opcjonalnie) wypełnić ten formularz za pośrednictwem OpenID, podając swój OpenID i klikając 'Register'."
 
-#: src/Model/User.php:185
-msgid "Not enough information to authenticate"
-msgstr "Za mało informacji do uwierzytelnienia"
+#: 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 "Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów."
 
-#: src/Model/User.php:346
-msgid "An invitation is required."
-msgstr "Wymagane zaproszenie."
+#: mod/register.php:222
+msgid "Your OpenID (optional): "
+msgstr "Twój OpenID (opcjonalnie):"
 
-#: src/Model/User.php:350
-msgid "Invitation could not be verified."
-msgstr "Zaproszenie niezweryfikowane."
+#: mod/register.php:234
+msgid "Include your profile in member directory?"
+msgstr "Czy dołączyć twój profil do katalogu członków?"
 
-#: src/Model/User.php:357
-msgid "Invalid OpenID url"
-msgstr "Nieprawidłowy adres url OpenID"
+#: mod/register.php:259
+msgid "Note for the admin"
+msgstr "Uwaga dla administratora"
 
-#: 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."
+#: mod/register.php:259
+msgid "Leave a message for the admin, why you want to join this node"
+msgstr "Pozostaw wiadomość dla administratora, dlaczego chcesz dołączyć do tego węzła"
 
-#: src/Model/User.php:370 src/Module/Login.php:100
-msgid "The error message was:"
-msgstr "Komunikat o błędzie:"
+#: mod/register.php:260
+msgid "Membership on this site is by invitation only."
+msgstr "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu."
 
-#: src/Model/User.php:376
-msgid "Please enter the required information."
-msgstr "Wprowadź wymagane informacje"
+#: mod/register.php:261
+msgid "Your invitation code: "
+msgstr "Twój kod zaproszenia:"
 
-#: src/Model/User.php:389
-msgid "Please use a shorter name."
-msgstr "Użyj dłuższej nazwy."
+#: mod/register.php:270
+msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
+msgstr "Twoje Imię i Nazwisko (np. Jan Kowalski, prawdziwe lub wyglądające na prawdziwe):"
 
-#: src/Model/User.php:392
-msgid "Name too short."
-msgstr "Nazwa jest za krótka."
+#: mod/register.php:271
+msgid ""
+"Your Email Address: (Initial information will be send there, so this has to "
+"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)."
 
-#: 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."
+#: mod/register.php:273
+msgid "Leave empty for an auto generated password."
+msgstr "Pozostaw puste dla wygenerowanego automatycznie hasła."
 
-#: 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."
+#: 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 '<strong>nickname@%s</strong>'."
+msgstr "Wybierz pseudonim profilu. Nazwa musi zaczynać się od znaku tekstowego. Twój adres profilu na tej stronie będzie wówczas '<strong>pseudonimem%s</strong>'."
 
-#: src/Model/User.php:409
-msgid "Not a valid email address."
-msgstr "Niepoprawny adres e mail.."
+#: mod/register.php:276
+msgid "Choose a nickname: "
+msgstr "Wybierz pseudonim:"
 
-#: src/Model/User.php:413 src/Model/User.php:421
-msgid "Cannot use that email."
-msgstr "Nie możesz użyć tego e-maila. "
+#: mod/register.php:286
+msgid "Import your profile to this friendica instance"
+msgstr "Zaimportuj swój profil do tej instancji friendica"
 
-#: 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 _."
+#: mod/common.php:91
+msgid "No contacts in common."
+msgstr "Brak wspólnych kontaktów."
 
-#: 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."
+#: 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."
 
-#: src/Model/User.php:445
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń."
+#: mod/help.php:48
+msgid "Help:"
+msgstr "Pomoc:"
 
-#: 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."
+#: mod/help.php:63 index.php:325
+msgid "Page not found."
+msgstr "Strona nie znaleziona."
 
-#: 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."
+#: mod/profperm.php:34 mod/profperm.php:65
+msgid "Invalid profile identifier."
+msgstr "Nieprawidłowa nazwa użytkownika."
 
-#: 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."
+#: mod/profperm.php:111
+msgid "Profile Visibility Editor"
+msgstr "Ustawienia widoczności profilu"
 
-#: 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."
+#: mod/profperm.php:124
+msgid "Visible To"
+msgstr "Widoczne dla"
 
-#: 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."
+#: mod/profperm.php:140
+msgid "All Contacts (with secure profile access)"
+msgstr "Wszystkie kontakty (z bezpiecznym dostępem do profilu)"
 
-#: src/Model/User.php:607
-#, php-format
-msgid "Registration at %s"
-msgstr "Rejestracja w %s"
+#: mod/item.php:114
+msgid "Unable to locate original post."
+msgstr "Nie można zlokalizować oryginalnej wiadomości."
 
-#: 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."
+#: mod/item.php:274
+msgid "Empty post discarded."
+msgstr "Pusty wpis został odrzucony."
 
-#: src/Model/User.php:629
+#: mod/item.php:799
 #, 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"
+"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"
 
-#: src/Protocol/OStatus.php:1803
+#: mod/item.php:801
 #, php-format
-msgid "%s stopped following %s."
-msgstr "%sprzestał śledzić %s. "
+msgid "You may visit them online at %s"
+msgstr "Możesz odwiedzić ich online pod adresem %s"
 
-#: src/Protocol/OStatus.php:1804
-msgid "stopped following"
-msgstr "przestał śledzić"
+#: 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."
 
-#: src/Protocol/DFRN.php:1482
+#: mod/item.php:806
 #, 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)"
+msgid "%s posted an update."
+msgstr "%s zaktualizował wpis."
 
-#: src/Module/Login.php:282
-msgid "Create a New Account"
-msgstr "Załóż nowe konto"
+#: mod/editpost.php:25 mod/editpost.php:35
+msgid "Item not found"
+msgstr "Nie znaleziono elementu"
 
-#: src/Module/Login.php:315
-msgid "Password: "
-msgstr "Hasło:"
+#: mod/editpost.php:42
+msgid "Edit post"
+msgstr "Edytuj post"
 
-#: src/Module/Login.php:316
-msgid "Remember me"
-msgstr "Zapamiętaj mnie"
+#: view/theme/quattro/config.php:76
+msgid "Alignment"
+msgstr "Wyrównanie"
 
-#: src/Module/Login.php:319
-msgid "Or login using OpenID: "
-msgstr "Lub zaloguj się korzystając z OpenID:"
+#: view/theme/quattro/config.php:76
+msgid "Left"
+msgstr "Lewo"
 
-#: src/Module/Login.php:325
-msgid "Forgot your password?"
-msgstr "Zapomniałeś swojego hasła?"
+#: view/theme/quattro/config.php:76
+msgid "Center"
+msgstr "Środek"
 
-#: src/Module/Login.php:328
-msgid "Website Terms of Service"
-msgstr "Warunki korzystania z witryny"
+#: view/theme/quattro/config.php:77
+msgid "Color scheme"
+msgstr "Zestaw kolorów"
 
-#: src/Module/Login.php:329
-msgid "terms of service"
-msgstr "warunki użytkowania"
+#: view/theme/quattro/config.php:78
+msgid "Posts font size"
+msgstr "Rozmiar czcionki postów"
 
-#: src/Module/Login.php:331
-msgid "Website Privacy Policy"
-msgstr "Polityka Prywatności Witryny"
+#: view/theme/quattro/config.php:79
+msgid "Textareas font size"
+msgstr "Rozmiar czcionki Textareas"
 
-#: src/Module/Login.php:332
-msgid "privacy policy"
-msgstr "polityka prywatności"
+#: view/theme/frio/php/Image.php:25
+msgid "Repeat the image"
+msgstr "Powtórz obraz"
 
-#: src/Module/Logout.php:28
-msgid "Logged out."
-msgstr "Wyloguj"
+#: view/theme/frio/php/Image.php:25
+msgid "Will repeat your image to fill the background."
+msgstr "Powtarza twój obraz, aby wypełnić tło."
 
-#: src/Module/Tos.php:51
-msgid "Privacy Statement"
-msgstr "Oświadczenie o prywatności"
+#: view/theme/frio/php/Image.php:27
+msgid "Stretch"
+msgstr "Rozwiń"
 
-#: 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."
+#: view/theme/frio/php/Image.php:27
+msgid "Will stretch to width/height of the image."
+msgstr "Rozciągnie się do szerokości/wysokości obrazu."
 
-#: 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."
+#: view/theme/frio/php/Image.php:29
+msgid "Resize fill and-clip"
+msgstr "Zmień rozmiar wypełnienia i klipu"
 
-#: src/Module/Tos.php:54
-#, php-format
-msgid ""
-"At any point in time a logged in user can export their account data from the"
-" <a href=\"%1$s/settings/uexport\">account settings</a>. If the user wants "
-"to delete their account they can do so at <a "
-"href=\"%1$s/removeme\">%1$s/removeme</a>. The deletion of the account will "
-"be permanent."
-msgstr "W dowolnym momencie zalogowany użytkownik może wyeksportować dane swojego konta z <a href=\"%1$s/settings/uexport\">ustawień konta</a>. Jeśli użytkownik chce usunąć swoje konto, może to zrobić w <a href=\"%1$s/removeme\">%1$s/usuń mnie. Usunięcie konta będzie trwałe."
+#: view/theme/frio/php/Image.php:29
+msgid "Resize to fill and retain aspect ratio."
+msgstr "Zmień rozmiar, aby wypełnić i zachować proporcje."
 
-#: src/Object/Post.php:128
-msgid "This entry was edited"
-msgstr "Ten wpis został zedytowany"
+#: view/theme/frio/php/Image.php:31
+msgid "Resize best fit"
+msgstr "Zmień rozmiar, aby najlepiej dopasować"
 
-#: src/Object/Post.php:182
-msgid "save to folder"
-msgstr "zapisz w folderze"
+#: view/theme/frio/php/Image.php:31
+msgid "Resize to best fit and retain aspect ratio."
+msgstr "Zmień rozmiar, aby jak najlepiej dopasować i zachować proporcje."
 
-#: src/Object/Post.php:235
-msgid "I will attend"
-msgstr "Będę uczestniczyć"
+#: view/theme/frio/config.php:97
+msgid "Default"
+msgstr "Domyślne"
 
-#: src/Object/Post.php:235
-msgid "I will not attend"
-msgstr "Nie będę uczestniczyć"
+#: view/theme/frio/config.php:109
+msgid "Note"
+msgstr "Uwaga"
 
-#: src/Object/Post.php:235
-msgid "I might attend"
-msgstr "Mogę wziąć udział"
+#: view/theme/frio/config.php:109
+msgid "Check image permissions if all users are allowed to visit the image"
+msgstr "Sprawdź uprawnienia do obrazu, jeśli wszyscy użytkownicy mogą odwiedzać obraz"
 
-#: src/Object/Post.php:263
-msgid "add star"
-msgstr "dodaj gwiazdkę"
+#: view/theme/frio/config.php:116
+msgid "Select scheme"
+msgstr "Wybierz schemat"
 
-#: src/Object/Post.php:264
-msgid "remove star"
-msgstr "anuluj gwiazdkę"
+#: view/theme/frio/config.php:117
+msgid "Navigation bar background color"
+msgstr "Kolor tła paska nawigacyjnego"
 
-#: src/Object/Post.php:265
-msgid "toggle star status"
-msgstr "włącz status gwiazdy"
+#: view/theme/frio/config.php:118
+msgid "Navigation bar icon color "
+msgstr "Kolor ikony paska nawigacyjnego"
 
-#: src/Object/Post.php:268
-msgid "starred"
-msgstr "gwiazdką"
+#: view/theme/frio/config.php:119
+msgid "Link color"
+msgstr "Kolor łączy"
 
-#: src/Object/Post.php:274
-msgid "ignore thread"
-msgstr "zignoruj ​​wątek"
+#: view/theme/frio/config.php:120
+msgid "Set the background color"
+msgstr "Ustaw kolor tła"
 
-#: src/Object/Post.php:275
-msgid "unignore thread"
-msgstr "odignoruj ​​wątek"
+#: view/theme/frio/config.php:121
+msgid "Content background opacity"
+msgstr "Nieprzezroczystość tła treści"
 
-#: src/Object/Post.php:276
-msgid "toggle ignore status"
-msgstr "przełącz status ignorowania"
+#: view/theme/frio/config.php:122
+msgid "Set the background image"
+msgstr "Ustaw obraz tła"
 
-#: src/Object/Post.php:285
-msgid "add tag"
-msgstr "dodaj tag"
+#: view/theme/frio/config.php:127
+msgid "Login page background image"
+msgstr "Obraz tła strony logowania"
 
-#: src/Object/Post.php:296
-msgid "like"
-msgstr "lubię to"
+#: view/theme/frio/config.php:130
+msgid "Login page background color"
+msgstr "Kolor tła strony logowania"
 
-#: src/Object/Post.php:297
-msgid "dislike"
-msgstr "nie lubię tego"
+#: view/theme/frio/config.php:130
+msgid "Leave background image and color empty for theme defaults"
+msgstr "Pozostaw obraz tła i kolor pusty dla domyślnych ustawień kompozycji"
 
-#: src/Object/Post.php:300
-msgid "Share this"
-msgstr "Udostępnij to"
+#: view/theme/frio/theme.php:238
+msgid "Guest"
+msgstr "Gość"
 
-#: src/Object/Post.php:300
-msgid "share"
-msgstr "udostępnij"
+#: view/theme/frio/theme.php:243
+msgid "Visitor"
+msgstr "Odwiedzający"
 
-#: src/Object/Post.php:365
-msgid "to"
-msgstr "do"
+#: view/theme/vier/config.php:75
+msgid "Comma separated list of helper forums"
+msgstr "Lista pomocników oddzielona przecinkami"
 
-#: src/Object/Post.php:366
-msgid "via"
-msgstr "przez"
+#: view/theme/vier/config.php:122
+msgid "Set style"
+msgstr "Ustaw styl"
 
-#: src/Object/Post.php:367
-msgid "Wall-to-Wall"
-msgstr "Wall-to-Wall"
+#: view/theme/vier/config.php:123
+msgid "Community Pages"
+msgstr "Strony społeczności"
 
-#: src/Object/Post.php:368
-msgid "via Wall-To-Wall:"
-msgstr "via Wall-To-Wall:"
+#: view/theme/vier/config.php:124 view/theme/vier/theme.php:150
+msgid "Community Profiles"
+msgstr "Profile społeczności"
 
-#: 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"
+#: view/theme/vier/config.php:125
+msgid "Help or @NewHere ?"
+msgstr "Pomóż lub @NowyTutaj?"
 
-#: src/Object/Post.php:797
-msgid "Bold"
-msgstr "Pogrubienie"
+#: view/theme/vier/config.php:126 view/theme/vier/theme.php:389
+msgid "Connect Services"
+msgstr "Połączone serwisy"
 
-#: src/Object/Post.php:798
-msgid "Italic"
-msgstr "Kursywa"
+#: view/theme/vier/config.php:127 view/theme/vier/theme.php:199
+msgid "Find Friends"
+msgstr "Znajdź znajomych"
 
-#: src/Object/Post.php:799
-msgid "Underline"
-msgstr "Podkreślenie"
+#: view/theme/vier/config.php:128 view/theme/vier/theme.php:181
+msgid "Last users"
+msgstr "Ostatni użytkownicy"
 
-#: src/Object/Post.php:800
-msgid "Quote"
-msgstr "Cytat"
+#: view/theme/vier/theme.php:200
+msgid "Local Directory"
+msgstr "Katalog lokalny"
 
-#: src/Object/Post.php:801
-msgid "Code"
-msgstr "Kod"
+#: view/theme/vier/theme.php:292
+msgid "Quick Start"
+msgstr "Szybki start"
 
-#: src/Object/Post.php:802
-msgid "Image"
-msgstr "Obraz"
+#: view/theme/duepuntozero/config.php:55
+msgid "greenzero"
+msgstr "greenzero"
 
-#: src/Object/Post.php:803
-msgid "Link"
-msgstr "Link"
+#: view/theme/duepuntozero/config.php:56
+msgid "purplezero"
+msgstr "purplezero"
 
-#: src/Object/Post.php:804
-msgid "Video"
-msgstr "Video"
+#: view/theme/duepuntozero/config.php:57
+msgid "easterbunny"
+msgstr "Zajączek wielkanocny"
 
-#: src/App.php:511
-msgid "Delete this item?"
-msgstr "Usunąć ten element?"
+#: view/theme/duepuntozero/config.php:58
+msgid "darkzero"
+msgstr "darkzero"
 
-#: src/App.php:513
-msgid "show fewer"
-msgstr "Pokaż mniej"
+#: view/theme/duepuntozero/config.php:59
+msgid "comix"
+msgstr "comix"
 
-#: 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:60
+msgid "slackr"
+msgstr ""
+
+#: view/theme/duepuntozero/config.php:74
+msgid "Variations"
+msgstr "Zmiana"
 
 #: index.php:472
 msgid "toggle mobile"
index 726e3e22b0b46fc453306da0487881bbc5039ff4..222effaab168d5ef0e7c6531b820680461cfd652 100644 (file)
@@ -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,647 +292,558 @@ $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["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>OSTRZEŻENIE: Jest to bardzo zaawansowane</strong> i jeśli wprowadzisz niepoprawne informacje, twoja komunikacja z tym kontaktem może przestać działać.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj <strong>teraz</strong> 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 <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Na stronie <em>Szybki start</em> - 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 <em>Settings</em> 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 <strong>default</strong> 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 <em>Add New Contact</em> 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 <em>Dodaj nowy kontakt</em>.";
-$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 <em>Connect</em> or <em>Follow</em> 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 <em>Połącz</em> lub <em>Śledź</em> 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["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 <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Na naszych stronach <strong>pomocy</strong> 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["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["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["[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";
-$a->strings["Move account"] = "Przenieś konto";
-$a->strings["You can import an account from another Friendica server."] = "Możesz zaimportować konto z innego serwera Friendica.";
-$a->strings["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."] = "Musisz wyeksportować konto ze starego serwera i przesłać je tutaj. Odtworzymy twoje stare konto tutaj ze wszystkimi twoimi kontaktami. Postaramy się również poinformować twoich znajomych, że się tutaj przeniosłeś.";
-$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["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["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["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 <strong>this</strong> profile."] = "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na <strong>tego</strong> 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, <a href=\"%s\">follow this link to find a public Friendica site and join us today</a>."] = "Jeśli nie jesteś jeszcze członkiem darmowej sieci społecznościowej, <a href=\"%s\">kliknij ten link, aby znaleźć publiczną witrynę Friendica i dołącz do nas już dziś</a>.";
-$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["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["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["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["%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["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["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["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ę";
-$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 <strong>may</strong> be able to respond from the sender's profile page."] = "Brak bezpiecznej komunikacji. <strong>Możesz</strong> 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["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["list"] = "lista";
+$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 <strong>may</strong> 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 <strong>mogą</strong> 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["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["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."] = [
+$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["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a>%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["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 <strong>may</strong> still be visible"] = "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal <strong>mogą</strong> 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["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["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 <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-worker'>'Setup the worker'</a>"] = "Jeśli nie masz zainstalowanej na serwerze wersji PHP z wiersza poleceń, nie będziesz mógł uruchomić przetwarzania w tle. Zobacz <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-worker'>'Konfiguracja pracownika'</a>";
-$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["<h1>What next</h1>"] = "<h1>Co dalej</h1>";
-$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 <a href=\"%s/register\">registration page</a> 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 <a href=\"%s/register\">strony rejestracji</a> 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["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 <a href=\"%1\$s/settings/uexport\">account settings</a>. If the user wants to delete their account they can do so at <a href=\"%1\$s/removeme\">%1\$s/removeme</a>. The deletion of the account will be permanent."] = "W dowolnym momencie zalogowany użytkownik może wyeksportować dane swojego konta z <a href=\"%1\$s/settings/uexport\">ustawień konta</a>. Jeśli użytkownik chce usunąć swoje konto, może to zrobić w <a href=\"%1\$s/removeme\">%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["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";
@@ -945,479 +851,58 @@ $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["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ę";
-$a->strings["Tools"] = "Narzędzia";
-$a->strings["Contact Blocklist"] = "Lista zablokowanych kontaktów";
-$a->strings["Server Blocklist"] = "Lista zablokowanych serwerów";
-$a->strings["Delete Item"] = "Usuń przedmiot";
-$a->strings["Logs"] = "Logi";
-$a->strings["View Logs"] = "Zobacz rejestry";
-$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";
-$a->strings["Display Terms of Service"] = "Wyświetl Warunki korzystania z usługi";
-$a->strings["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."] = "Włącz stronę Warunki świadczenia usług. Jeśli ta opcja jest włączona, link do warunków zostanie dodany do formularza rejestracyjnego i strony z informacjami ogólnymi.";
-$a->strings["Display Privacy Statement"] = "Wyświetl oświadczenie o prywatności";
-$a->strings["Show some informations regarding the needed information to operate the node according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."] = "Pokaż niektóre informacje dotyczące potrzebnych informacji do obsługi węzła zgodnie np. do <a href=\"%s\" target=\"_blank\">EU-GDPR</a>.";
-$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";
-$a->strings["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."] = "Na tej stronie można zdefiniować czarną listę serwerów ze stowarzyszonej sieci, które nie mogą współdziałać z danym węzłem. Dla wszystkich wprowadzonych domen powinieneś podać powód, dla którego zablokowałeś serwer zdalny.";
-$a->strings["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."] = "Lista zablokowanych serwerów zostanie publicznie udostępniona na stronie /friendica, dzięki czemu użytkownicy i osoby badające problemy z komunikacją mogą łatwo znaleźć przyczynę.";
-$a->strings["Add new entry to block list"] = "Dodaj nowy wpis do listy bloków";
-$a->strings["Server Domain"] = "Domena serwera";
-$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = "Domena nowego serwera do dodania do listy bloków. Nie dołączaj protokołu.";
-$a->strings["Block reason"] = "Powód zablokowania";
-$a->strings["Add Entry"] = "Dodaj wpis";
-$a->strings["Save changes to the blocklist"] = "Zapisz zmiany w Liście zablokowanych";
-$a->strings["Current Entries in the Blocklist"] = "Aktualne wpisy na liście zablokowanych";
-$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 => "",
-       2 => "",
-       3 => "",
+$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";
+$a->strings["Move account"] = "Przenieś konto";
+$a->strings["You can import an account from another Friendica server."] = "Możesz zaimportować konto z innego serwera Friendica.";
+$a->strings["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."] = "Musisz wyeksportować konto ze starego serwera i przesłać je tutaj. Odtworzymy twoje stare konto tutaj ze wszystkimi twoimi kontaktami. Postaramy się również poinformować twoich znajomych, że się tutaj przeniosłeś.";
+$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["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["Remote Contact Blocklist"] = "Lista zablokowanych kontaktów zdalnych";
-$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "Ta strona pozwala zapobiec wysyłaniu do węzła wiadomości od kontaktu zdalnego.";
-$a->strings["Block Remote Contact"] = "Zablokuj kontakt zdalny";
-$a->strings["select all"] = "Zaznacz wszystko";
-$a->strings["select none"] = "wybierz brak";
-$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["%s total blocked contact"] = [
-       0 => "",
-       1 => "",
-       2 => "",
-       3 => "",
-];
-$a->strings["URL of the remote contact to block."] = "Adres URL kontaktu zdalnego do zablokowania.";
-$a->strings["Delete this Item"] = "Usuń ten przedmiot";
-$a->strings["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."] = "Na tej stronie możesz usunąć przedmiot ze swojego węzła. Jeśli element jest publikowaniem na najwyższym poziomie, cały wątek zostanie usunięty.";
-$a->strings["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."] = "Musisz znać identyfikator GUID tego przedmiotu. Możesz go znaleźć np. patrząc na wyświetlany adres URL. Ostatnia część http://example.com/display/123456 to GUID, tutaj 123456.";
-$a->strings["GUID"] = "GUID";
-$a->strings["The GUID of the item you want to delete."] = "Identyfikator elementu GUID, który chcesz usunąć.";
-$a->strings["Item marked for deletion."] = "Przedmiot oznaczony do usunięcia.";
-$a->strings["unknown"] = "nieznany";
-$a->strings["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."] = "Ta strona zawiera kilka numerów do znanej części federacyjnej sieci społecznościowej, do której należy Twój węzeł Friendica. Liczby te nie są kompletne, ale odzwierciedlają tylko część sieci, o której wie twój węzeł.";
-$a->strings["The <em>Auto Discovered Contact Directory</em> feature is not enabled, it will improve the data displayed here."] = "Funkcja <em>Katalog kontaktów automatycznie odkrytych</em> nie jest włączona, poprawi ona wyświetlane tutaj dane.";
-$a->strings["Currently this node is aware of %d nodes with %d registered users from the following platforms:"] = "Obecnie węzeł ten jest świadomy %dwęzłów z %d zarejestrowanymi użytkownikami z następujących platform:";
-$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.";
-$a->strings["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 <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the command <tt>php bin/console.php dbstructure toinnodb</tt> of your Friendica installation for an automatic conversion.<br />"] = "Twoja baza danych nadal działa z tabelami MyISAM. Powinieneś zmienić typ silnika na InnoDB. Ponieważ Friendica będzie używać funkcji związanych z InnoDB tylko w przyszłości, powinieneś to zmienić! Zobacz <a href=\"%s\">tutaj</a> przewodnik, który może być pomocny w konwersji silników stołowych. Możesz także użyć polecenia <tt>php bin/console.php dbstructure toinnodb</tt> instalacji Friendica do automatycznej konwersji.<br />";
-$a->strings["There is a new version of Friendica available for download. Your current version is %1\$s, upstream version is %2\$s"] = "Dostępna jest nowa wersja aplikacji Friendica. Twoja aktualna wersja to %1\$s wyższa wersja to %2\$s";
-$a->strings["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."] = "Aktualizacja bazy danych nie powiodła się. Uruchom polecenie \"php bin/console.php dbstructure update\" z wiersza poleceń i sprawdź błędy, które mogą się pojawić.";
-$a->strings["The worker was never executed. Please check your database structure!"] = "Pracownik nigdy nie został stracony. Sprawdź swoją strukturę bazy danych!";
-$a->strings["The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings."] = "Ostatnie wykonanie robota było w %s UTC. To jest starsze niż jedna godzina. Sprawdź ustawienia crontab.";
-$a->strings["Normal Account"] = "Konto normalne";
-$a->strings["Automatic Follower Account"] = "Automatyczne konto obserwatora";
-$a->strings["Public Forum Account"] = "Publiczne konto na forum";
-$a->strings["Automatic Friend Account"] = "Automatyczny przyjaciel konta";
-$a->strings["Blog Account"] = "Konto Bloga";
-$a->strings["Private Forum Account"] = "Prywatne konto na forum";
-$a->strings["Message queues"] = "Wiadomości";
-$a->strings["Summary"] = "Podsumowanie";
-$a->strings["Registered users"] = "Zarejestrowani użytkownicy";
-$a->strings["Pending registrations"] = "Rejestracje w toku.";
-$a->strings["Version"] = "Wersja";
-$a->strings["Active addons"] = "Aktywne dodatki";
-$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Nie można zanalizować podstawowego adresu URL. Musi mieć co najmniej <scheme>: //<domain>";
-$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["Users, Global Contacts"] = "Użytkownicy, kontakty globalne";
-$a->strings["Users, Global Contacts/fallback"] = "Użytkownicy, kontakty globalne/awaryjne";
-$a->strings["One month"] = "Miesiąc";
-$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["Requires approval"] = "Wymagane zatwierdzenie.";
-$a->strings["Open"] = "Otwarte";
-$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 . ";
-$a->strings["Don't check"] = "Nie sprawdzaj";
-$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["Auto Discovered Contact Directory"] = "Katalog kontaktów automatycznie odkrytych";
-$a->strings["Performance"] = "Ustawienia";
-$a->strings["Worker"] = "Pracownik";
-$a->strings["Message Relay"] = "Przekazywanie wiadomości";
-$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Relokacja - OSTRZEŻENIE: funkcja zaawansowana. Może spowodować, że serwer będzie nieosiągalny.";
-$a->strings["Site name"] = "Nazwa strony";
-$a->strings["Host name"] = "Nazwa hosta";
-$a->strings["Sender Email"] = "E-mail nadawcy";
-$a->strings["The email address your server shall use to send notification emails from."] = "Adres e-mail używany przez Twój serwer do wysyłania e-maili z powiadomieniami.";
-$a->strings["Banner/Logo"] = "Logo";
-$a->strings["Shortcut icon"] = "Ikona skrótu";
-$a->strings["Link to an icon that will be used for browsers."] = "Link do ikony, która będzie używana w przeglądarkach.";
-$a->strings["Touch icon"] = "Dołącz ikonę";
-$a->strings["Link to an icon that will be used for tablets and mobiles."] = "Link do ikony, która będzie używana w tabletach i telefonach komórkowych.";
-$a->strings["Additional Info"] = "Dodatkowe informacje";
-$a->strings["For public servers: you can add additional information here that will be listed at %s/servers."] = "W przypadku serwerów publicznych: możesz tu dodać dodatkowe informacje, które będą wymienione na %s/servers.";
-$a->strings["System language"] = "Język systemu";
-$a->strings["System theme"] = "Motyw systemowy";
-$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Domyślny motyw systemu - może być nadpisany przez profil użytkownika  <a href='#' id='cnftheme'>zmień ustawienia motywów</a>";
-$a->strings["Mobile system theme"] = "Motyw systemu mobilnego";
-$a->strings["Theme for mobile devices"] = "Motyw na urządzenia mobilne";
-$a->strings["SSL link policy"] = "polityka SSL";
-$a->strings["Determines whether generated links should be forced to use SSL"] = "Określa kiedy generowane linki powinny używać wymuszonego SSl.";
-$a->strings["Force SSL"] = "Wymuś SSL";
-$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Wymuszaj wszystkie żądania SSL bez SSL - Uwaga: w niektórych systemach może to prowadzić do niekończących się pętli.";
-$a->strings["Hide help entry from navigation menu"] = "Wyłącz pomoc w menu nawigacyjnym ";
-$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Chowa pozycje menu dla stron pomocy ze strony nawigacyjnej. Możesz nadal ją wywołać poprzez komendę /help.";
-$a->strings["Single user instance"] = "Tryb pojedynczego użytkownika";
-$a->strings["Make this instance multi-user or single-user for the named user"] = "Ustawia tryb dla wielu użytkowników lub pojedynczego użytkownika dla nazwanego użytkownika";
-$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["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.";
-$a->strings["Register text"] = "Zarejestruj tekst";
-$a->strings["Will be displayed prominently on the registration page. You can use BBCode here."] = "Będą wyświetlane w widocznym miejscu na stronie rejestracji. Możesz użyć BBCode tutaj.";
-$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["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";
-$a->strings["Don't show the rich content (e.g. embedded PDF), except from the domains listed below."] = "Nie wyświetlaj zasobów treści (np. osadzonego pliku PDF), z wyjątkiem domen wymienionych poniżej.";
-$a->strings["Allowed OEmbed domains"] = "Dozwolone domeny OEmbed";
-$a->strings["Comma separated list of domains which oembed content is allowed to be displayed. Wildcards are accepted."] = "Rozdzielana przecinkami lista domen, w których wyświetlana jest treść, może być wyświetlana. Symbole wieloznaczne są akceptowane.";
-$a->strings["Block public"] = "Blokuj publicznie";
-$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Zaznacz, aby zablokować publiczny dostęp do wszystkich publicznych stron prywatnych w tej witrynie, chyba że jesteś zalogowany.";
-$a->strings["Force publish"] = "Wymuś publikację";
-$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Zaznacz, aby wymusić umieszczenie wszystkich profili w tej witrynie w katalogu witryny.";
-$a->strings["Global directory URL"] = "Globalny adres URL katalogu";
-$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "Adres URL do katalogu globalnego. Jeśli nie zostanie to ustawione, katalog globalny jest całkowicie niedostępny dla aplikacji.";
-$a->strings["Private posts by default for new users"] = "Prywatne posty domyślnie dla nowych użytkowników";
-$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Ustaw domyślne uprawnienia do publikowania dla wszystkich nowych członków na domyślną grupę prywatności, a nie publiczną.";
-$a->strings["Don't include post content in email notifications"] = "Nie wklejaj zawartości postu do powiadomienia o poczcie";
-$a->strings["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."] = "W celu ochrony prywatności, nie włączaj zawartości postu/komentarza/wiadomości prywatnej/etc. do powiadomień w wiadomościach mailowych wysyłanych z tej strony.";
-$a->strings["Disallow public access to addons listed in the apps menu."] = "Nie zezwalaj na publiczny dostęp do dodatkowych wtyczek wyszczególnionych w menu aplikacji.";
-$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Zaznaczenie tego pola spowoduje ograniczenie dodatków wymienionych w menu aplikacji tylko dla członków.";
-$a->strings["Don't embed private images in posts"] = "Nie umieszczaj prywatnych zdjęć w postach";
-$a->strings["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."] = "Nie zastępuj lokalnie hostowanych zdjęć prywatnych we wpisach za pomocą osadzonej kopii obrazu. Oznacza to, że osoby, które otrzymują posty zawierające prywatne zdjęcia, będą musiały uwierzytelnić i wczytać każdy obraz, co może trochę potrwać.";
-$a->strings["Allow Users to set remote_self"] = "Zezwól użytkownikom na ustawienie remote_self";
-$a->strings["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."] = "Po sprawdzeniu tego każdy użytkownik może zaznaczyć każdy kontakt jako zdalny w oknie dialogowym kontaktu naprawczego. Ustawienie tej flagi na kontakcie powoduje dublowanie każdego wpisu tego kontaktu w strumieniu użytkowników.";
-$a->strings["Block multiple registrations"] = "Zablokuj wielokrotną rejestrację";
-$a->strings["Disallow users to register additional accounts for use as pages."] = "Nie pozwalaj użytkownikom na zakładanie dodatkowych kont do używania jako strony. ";
-$a->strings["OpenID support"] = "Wsparcie OpenID";
-$a->strings["OpenID support for registration and logins."] = "Obsługa OpenID do rejestracji i logowania.";
-$a->strings["Fullname check"] = "Sprawdzanie pełnej nazwy";
-$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Aby ograniczyć spam, wymagaj by użytkownik przy rejestracji w polu Imię i nazwisko użył spacji pomiędzy imieniem i nazwiskiem.";
-$a->strings["Community pages for visitors"] = "Strony społecznościowe dla odwiedzających";
-$a->strings["Which community pages should be available for visitors. Local users always see both pages."] = "Które strony społeczności powinny być dostępne dla odwiedzających. Lokalni użytkownicy zawsze widzą obie strony.";
-$a->strings["Posts per user on community page"] = "Lista postów użytkownika na stronie społeczności";
-$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "Maksymalna liczba postów na użytkownika na stronie społeczności. (Nie dotyczy 'społeczności globalnej')";
-$a->strings["Enable OStatus support"] = "Włącz wsparcie OStatus";
-$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Zapewnij kompatybilność z OStatus (StatusNet, GNU Social itp.). Cała komunikacja w stanie OStatus jest jawna, dlatego ostrzeżenia o prywatności będą czasami wyświetlane.";
-$a->strings["Only import OStatus threads from our contacts"] = "Importuj wątki OStatus tylko z naszych kontaktów";
-$a->strings["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."] = "Normalnie importujemy każdą treść z naszych kontaktów OStatus. W tej opcji przechowujemy tylko wątki uruchomione przez kontakt znany w naszym systemie.";
-$a->strings["OStatus support can only be enabled if threading is enabled."] = "Obsługa OStatus może być włączona tylko wtedy, gdy włączone jest wątkowanie.";
-$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "Obsługa Diaspory nie może być włączona, ponieważ Friendica została zainstalowana w podkatalogu.";
-$a->strings["Enable Diaspora support"] = "Włączyć obsługę Diaspory";
-$a->strings["Provide built-in Diaspora network compatibility."] = "Zapewnij wbudowaną kompatybilność z siecią Diaspora.";
-$a->strings["Only allow Friendica contacts"] = "Dopuść tylko kontakty Friendrica";
-$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Wszyscy znajomi muszą używać protokołów Friendica. Wszystkie inne wbudowane protokoły komunikacyjne są wyłączone.";
-$a->strings["Verify SSL"] = "Weryfikacja SSL";
-$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Jeśli chcesz, możesz włączyć ścisłe sprawdzanie certyfikatu. Oznacza to, że nie możesz połączyć się (w ogóle) z własnoręcznie podpisanymi stronami SSL.";
-$a->strings["Proxy user"] = "Użytkownik proxy";
-$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 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ęć";
-$a->strings["Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."] = "Minimalna wolna pamięć w MB dla pracownika. Potrzebuje dostępu do /proc/ meminfo - domyślnie 0 (wyłączone).";
-$a->strings["Maximum table size for optimization"] = "Maksymalny rozmiar stołu do optymalizacji";
-$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = "Maksymalny rozmiar tabeli (w MB) dla automatycznej optymalizacji - domyślnie 100 MB. Wprowadź -1, aby go wyłączyć.";
-$a->strings["Minimum level of fragmentation"] = "Minimalny poziom fragmentacji";
-$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "Minimalny poziom fragmentacji, aby rozpocząć automatyczną optymalizację - domyślna wartość to 30%.";
-$a->strings["Periodical check of global contacts"] = "Okresowa kontrola kontaktów globalnych";
-$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "Jeśli jest włączona, kontakty globalne są okresowo sprawdzane pod kątem brakujących lub nieaktualnych danych oraz żywotności kontaktów i serwerów.";
-$a->strings["Days between requery"] = "Dni między żądaniem";
-$a->strings["Number of days after which a server is requeried for his contacts."] = "Liczba dni, po upływie których serwer jest żądany dla swoich kontaktów.";
-$a->strings["Discover contacts from other servers"] = "Odkryj kontakty z innych serwerów";
-$a->strings["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'."] = "Okresowo wysyłaj zapytanie do innych serwerów o kontakty. Możesz wybierać pomiędzy 'użytkownikami': użytkownikami w systemie zdalnym, 'Kontakty globalne': aktywne kontakty znane w systemie. Zastępowanie jest przeznaczone dla serwerów Redmatrix i starszych serwerów Friendica, w których kontakty globalne nie były dostępne. Funkcja awaryjna zwiększa obciążenie serwera, dlatego zalecanym ustawieniem jest 'Użytkownicy, kontakty globalne'.";
-$a->strings["Timeframe for fetching global contacts"] = "Czas pobierania globalnych kontaktów";
-$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "Po aktywowaniu wykrywania ta wartość określa czas działania globalnych kontaktów pobieranych z innych serwerów.";
-$a->strings["Search the local directory"] = "Wyszukaj w lokalnym katalogu";
-$a->strings["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."] = "Wyszukaj lokalny katalog zamiast katalogu globalnego. Podczas wyszukiwania lokalnie każde wyszukiwanie zostanie wykonane w katalogu globalnym w tle. Poprawia to wyniki wyszukiwania, gdy wyszukiwanie jest powtarzane.";
-$a->strings["Publish server information"] = "Publikuj informacje o serwerze";
-$a->strings["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 <a href='http://the-federation.info/'>the-federation.info</a> for details."] = "Jeśli opcja jest włączona, ogólne dane serwera i użytkowania zostaną opublikowane. Dane zawierają nazwę i wersję serwera, liczbę użytkowników z profilami publicznymi, liczbę postów oraz aktywowane protokoły i konektory. Aby uzyskać szczegółowe informacje, patrz <a href='http://the-federation.info/'>the-federation.info</a>.";
-$a->strings["Check upstream version"] = "Sprawdź wersję powyżej";
-$a->strings["Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview."] = "Umożliwia sprawdzenie nowych wersji Friendica na github. Jeśli pojawi się nowa wersja, zostaniesz o tym poinformowany w panelu administracyjnym.";
-$a->strings["Suppress Tags"] = "Ukryj tagi";
-$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Pomiń wyświetlenie listy hashtagów na końcu postu.";
-$a->strings["Path to item cache"] = "Ścieżka do pamięci podręcznej";
-$a->strings["The item caches buffers generated bbcode and external images."] = "Pozycja buforuje bufory generowane bbcode i obrazy zewnętrzne.";
-$a->strings["Cache duration in seconds"] = "Czas trwania w sekundach";
-$a->strings["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."] = "Jak długo powinny być przechowywane pliki pamięci podręcznej? Wartość domyślna to 86400 sekund (jeden dzień). Aby wyłączyć pamięć podręczną elementów, ustaw wartość na -1.";
-$a->strings["Maximum numbers of comments per post"] = "Maksymalna liczba komentarzy na post";
-$a->strings["How much comments should be shown for each post? Default value is 100."] = "Ile komentarzy powinno być pokazywanych dla każdego posta? Domyślna wartość to 100.";
-$a->strings["Temp path"] = "Ścieżka do Temp";
-$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "Jeśli masz zastrzeżony system, w którym serwer internetowy nie może uzyskać dostępu do ścieżki temp systemu, wprowadź tutaj inną ścieżkę.";
-$a->strings["Base path to installation"] = "Podstawowa ścieżka do instalacji";
-$a->strings["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."] = "Jeśli system nie może wykryć poprawnej ścieżki do instalacji, wprowadź tutaj poprawną ścieżkę. To ustawienie powinno być ustawione tylko wtedy, gdy używasz ograniczonego systemu i dowiązań symbolicznych do twojego webroota.";
-$a->strings["Disable picture proxy"] = "Wyłącz obraz proxy";
-$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Proxy obrazu zwiększa wydajność i prywatność. Nie należy go stosować w systemach o bardzo niskiej przepustowości.";
-$a->strings["Only search in tags"] = "Szukaj tylko w tagach";
-$a->strings["On large systems the text search can slow down the system extremely."] = "W dużych systemach wyszukiwanie tekstu może wyjątkowo spowolnić system.";
-$a->strings["New base url"] = "Nowy bazowy adres url";
-$a->strings["Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users."] = "Zmień bazowy adres URL dla tego serwera. Wysyła wiadomość o przeniesieniu do wszystkich kontaktów Friendica i Diaspora* wszystkich użytkowników.";
-$a->strings["RINO Encryption"] = "Szyfrowanie RINO";
-$a->strings["Encryption layer between nodes."] = "Warstwa szyfrowania między węzłami.";
-$a->strings["Enabled"] = "Włącz";
-$a->strings["Maximum number of parallel workers"] = "Maksymalna liczba równoległych pracowników";
-$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "Na współdzielonych hostach ustaw to na 2. W większych systemach wartości 10 są świetne. Domyślna wartość to 4.";
-$a->strings["Don't use 'proc_open' with the worker"] = "Nie używaj 'proc_open' z robotnikiem";
-$a->strings["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."] = "Włącz to, jeśli twój system nie zezwala na użycie 'proc_open'. Może się to zdarzyć w przypadku współdzielonych hosterów. Jeśli ta opcja jest włączona, powinieneś zwiększyć częstotliwość wywołań pracowniczych w twoim pliku crontab.";
-$a->strings["Enable fastlane"] = "Włącz Fastlane";
-$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "Po włączeniu system Fastlane uruchamia dodatkowego pracownika, jeśli procesy o wyższym priorytecie są blokowane przez procesy o niższym priorytecie.";
-$a->strings["Enable frontend worker"] = "Włącz pracownika frontend";
-$a->strings["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."] = "Po włączeniu proces roboczy jest wyzwalany, gdy wykonywany jest dostęp do zaplecza \\x28e.g. wiadomości są dostarczane\\x29. W mniejszych witrynach możesz chcieć wywoływać %s/robotnika regularnie przez zewnętrzne zadanie cron. Tę opcję należy włączyć tylko wtedy, gdy nie można używać zadań cron/zaplanowanych na serwerze.";
-$a->strings["Subscribe to relay"] = "Subskrybuj przekaźnik";
-$a->strings["Enables the receiving of public posts from the relay. They will be included in the search, subscribed tags and on the global community page."] = "Umożliwia odbieranie publicznych wiadomości z przekaźnika. Zostaną uwzględnione w tagach wyszukiwania, subskrybowanych i na stronie społeczności globalnej.";
-$a->strings["Relay server"] = "Serwer przekazujący";
-$a->strings["Address of the relay server where public posts should be send to. For example https://relay.diasp.org"] = "Adres serwera przekazującego, do którego należy wysyłać publiczne posty. Na przykład https://relay.diasp.org";
-$a->strings["Direct relay transfer"] = "Bezpośredni transfer przekaźników";
-$a->strings["Enables the direct transfer to other servers without using the relay servers"] = "Umożliwia bezpośredni transfer do innych serwerów bez korzystania z serwerów przekazujących";
-$a->strings["Relay scope"] = "Zakres przekaźnika";
-$a->strings["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."] = "Może być 'wszystkim' lub 'tagami'. 'wszystko' oznacza, że ​​każdy post publiczny powinien zostać odebrany. 'tagi' oznaczają, że powinny być odbierane tylko posty z wybranymi tagami.";
-$a->strings["all"] = "wszystko";
-$a->strings["tags"] = "tagi";
-$a->strings["Server tags"] = "Serwer tagów";
-$a->strings["Comma separated list of tags for the 'tags' subscription."] = "Lista oddzielonych przecinkami znaczników dla subskrypcji 'tagów'.";
-$a->strings["Allow user tags"] = "Pozwól na tagi użytkowników";
-$a->strings["If enabled, the tags from the saved searches will used for the 'tags' subscription in addition to the 'relay_server_tags'."] = "Po włączeniu tagi z zapisanych wyszukiwań będą używane do subskrypcji 'tagów' oprócz 'relay_server_tags'.";
-$a->strings["Update has been marked successful"] = "Aktualizacja została oznaczona jako udana";
-$a->strings["Database structure update %s was successfully applied."] = "Pomyślnie zastosowano aktualizację %s struktury bazy danych.";
-$a->strings["Executing of database structure update %s failed with error: %s"] = "Wykonanie aktualizacji %s struktury bazy danych nie powiodło się z powodu błędu:%s";
-$a->strings["Executing %s failed with error: %s"] = "Wykonanie %s nie powiodło się z powodu błędu:%s";
-$a->strings["Update %s was successfully applied."] = "Aktualizacja %s została pomyślnie zastosowana.";
-$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Aktualizacja %s nie zwróciła statusu. Nieznane, jeśli się udało.";
-$a->strings["There was no additional update function %s that needed to be called."] = "Nie było dodatkowej funkcji %s aktualizacji, która musiała zostać wywołana.";
-$a->strings["No failed updates."] = "Brak błędów aktualizacji.";
-$a->strings["Check database structure"] = "Sprawdź strukturę bazy danych";
-$a->strings["Failed Updates"] = "Błąd aktualizacji";
-$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Nie dotyczy to aktualizacji przed 1139, który nie zwrócił statusu.";
-$a->strings["Mark success (if update was manually applied)"] = "Oznacz sukces (jeśli aktualizacja została ręcznie zastosowana)";
-$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 => "",
-       2 => "",
-       3 => "",
-];
-$a->strings["%s user deleted"] = [
-       0 => " %s użytkownik usunięty",
-       1 => " %s użytkownicy usunięci",
-       2 => " %s usuniętych użytkowników ",
-       3 => " %s usuniętych użytkowników ",
-];
-$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["Register date"] = "Data rejestracji";
-$a->strings["Last login"] = "Ostatnie logowanie";
-$a->strings["Last item"] = "Ostatni element";
-$a->strings["Account"] = "Konto";
-$a->strings["Add User"] = "Dodaj użytkownika";
-$a->strings["User registrations waiting for confirm"] = "zarejestrowany użytkownik czeka 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["Note from the user"] = "Uwaga od użytkownika";
-$a->strings["Deny"] = "Odmów";
-$a->strings["Site admin"] = "Administracja stroną";
-$a->strings["Account expired"] = "Konto wygasło.";
-$a->strings["New User"] = "Nowy użytkownik";
-$a->strings["Deleted since"] = "Skasowany od";
-$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Zaznaczeni użytkownicy zostaną usunięci!\\n\\nWszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?";
-$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Użytkownik {0} zostanie usunięty!\\n\\nWszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?";
-$a->strings["Name of the new user."] = "Nazwa nowego użytkownika.";
-$a->strings["Nickname"] = "Pseudonim";
-$a->strings["Nickname of the new user."] = "Pseudonim nowego użytkownika.";
-$a->strings["Email address of the new user."] = "Adres email nowego użytkownika.";
-$a->strings["Addon %s disabled."] = "Dodatek %s wyłączony.";
-$a->strings["Addon %s enabled."] = "Dodatek %s włączony.";
-$a->strings["Disable"] = "Wyłącz";
-$a->strings["Enable"] = "Zezwól";
-$a->strings["Toggle"] = "Włącz";
-$a->strings["Author: "] = "Autor: ";
-$a->strings["Maintainer: "] = "Opiekun:";
-$a->strings["Reload active addons"] = "Załaduj ponownie aktywne dodatki";
-$a->strings["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"] = "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";
-$a->strings["No themes found."] = "Nie znaleziono motywów.";
-$a->strings["Screenshot"] = "Zrzut ekranu";
-$a->strings["Reload active themes"] = "Przeładuj aktywne motywy";
-$a->strings["No themes found on the system. They should be placed in %1\$s"] = "Nie znaleziono motywów w systemie. Powinny zostać umieszczone %1\$s";
-$a->strings["[Experimental]"] = "[Eksperymentalne]";
-$a->strings["[Unsupported]"] = "[Niewspieralne]";
-$a->strings["Log settings updated."] = "Zaktualizowano ustawienia logów.";
-$a->strings["PHP log currently enabled."] = "Dziennik PHP jest obecnie włączony.";
-$a->strings["PHP log currently disabled."] = "Dziennik PHP jest obecnie wyłączony.";
-$a->strings["Clear"] = "Wyczyść";
-$a->strings["Enable Debugging"] = "Włącz debugowanie";
-$a->strings["Log file"] = "Plik logów";
-$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Musi być zapisywalny przez serwer sieciowy. W stosunku do katalogu najwyższego poziomu Friendica.";
-$a->strings["Log level"] = "Poziom logów";
-$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 <strong>%1\$s</strong> log file.\\r\\n<br/>Check to see if file %1\$s exist and is readable."] = "Błąd podczas próby otwarcia <strong>%1\$s</strong> pliku dziennika. \\r\\n <br/>Sprawdź, czy plik %1\$s istnieje i czy można go odczytać.";
-$a->strings["Couldn't open <strong>%1\$s</strong> log file.\\r\\n<br/>Check to see if file %1\$s is readable."] = "Nie można otworzyć <strong>%1\$s</strong>pliku dziennika. \\r\\n<br/>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["Source input"] = "Źródło wejściowe";
-$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";
-$a->strings["BBCode::toMarkdown"] = "BBCode::toMarkdown";
-$a->strings["BBCode::toMarkdown => Markdown::convert"] = "BBCode::toMarkdown => Markdown::przekształć";
-$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = "BBCode::toMarkdown => Markdown::toBBCode";
-$a->strings["BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"] = "BBCode::toMarkdown => Markdown::przekształć => HTML::toBBCode";
-$a->strings["Source input \\x28Diaspora format\\x29"] = "Źródło wejściowe \\x28Diaspora format\\x29";
-$a->strings["Markdown::toBBCode"] = "Markdown::toBBCode";
-$a->strings["Raw HTML input"] = "Surowe wejście HTML";
-$a->strings["HTML Input"] = "Wejście HTML";
-$a->strings["HTML::toBBCode"] = "HTML::toBBCode";
-$a->strings["HTML::toPlaintext"] = "HTML::toPlaintext";
-$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 <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more about the Friendica project."] = "Odwiedź stronę <a href=\"https://friendi.ca\">Friendi.ca</a> 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 <a href=\"%1\$s/tos\">Terms of Service</a> of this node."] = "Przeczytaj o <a href=\"%1\$s/tos\">Warunkach świadczenia usług</a> 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 <em>Settings</em> page after successful login."] = "Twoje hasło może być zmienione w <em>Ustawieniach</em> 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."] = [
+$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["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["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [
        0 => "",
        1 => "",
        2 => "",
@@ -1425,6 +910,7 @@ $a->strings["Warning: This group contains %s member from a network that doesn't
 ];
 $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.";
@@ -1432,7 +918,6 @@ $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";
@@ -1440,6 +925,19 @@ $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 <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more about the Friendica project."] = "Odwiedź stronę <a href=\"https://friendi.ca\">Friendi.ca</a> 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 <a href=\"%1\$s/tos\">Terms of Service</a> of this node."] = "Przeczytaj o <a href=\"%1\$s/tos\">Warunkach świadczenia usług</a> 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["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.";
@@ -1455,6 +953,7 @@ $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 ";
@@ -1463,13 +962,13 @@ $a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$szmienione %2\$
 $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["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";
@@ -1479,12 +978,11 @@ $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["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> 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["Required"] = "Wymagany";
 $a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "To jest Twój <strong> publiczny </strong> profil. <br/><strong>Może </strong> zostać wyświetlony przez każdego kto używa internetu.";
 $a->strings["Your Full Name:"] = "Imię i Nazwisko:";
 $a->strings["Title/Description:"] = "Tytuł/Opis :";
@@ -1493,7 +991,6 @@ $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]:";
@@ -1501,15 +998,11 @@ $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";
@@ -1519,55 +1012,63 @@ $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["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:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Nie udało się wysłać wiadomości e-mail. Tutaj szczegóły twojego konta:<br> login: %s<br>hasło: %s<br><br>Możesz zmienić swoje hasło po zalogowaniu.";
-$a->strings["Registration successful."] = "Rejestracja udana.";
-$a->strings["Your registration can not be processed."] = "Twoja rejestracja nie może zostać przeprowadzona. ";
-$a->strings["Your registration is pending approval by the site owner."] = "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Możesz (opcjonalnie) wypełnić ten formularz za pośrednictwem OpenID, podając swój OpenID i klikając 'Register'.";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów.";
-$a->strings["Your OpenID (optional): "] = "Twój OpenID (opcjonalnie):";
-$a->strings["Include your profile in member directory?"] = "Czy dołączyć twój profil do katalogu członków?";
-$a->strings["Note for the admin"] = "Uwaga dla administratora";
-$a->strings["Leave a message for the admin, why you want to join this node"] = "Pozostaw wiadomość dla administratora, dlaczego chcesz dołączyć do tego węzła";
-$a->strings["Membership on this site is by invitation only."] = "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu.";
-$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 '<strong>nickname@%s</strong>'."] = "Wybierz pseudonim profilu. Nazwa musi zaczynać się od znaku tekstowego. Twój adres profilu na tej stronie będzie wówczas '<strong>pseudonimem%s</strong>'.";
-$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["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["Delegations"] = "Delegowanie";
+$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["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";
@@ -1577,20 +1078,22 @@ $a->strings["Private forum has no privacy permissions. Using default privacy gro
 $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["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["Off"] = "Wyłącz";
+$a->strings["On"] = "Włącz";
 $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";
@@ -1619,9 +1122,9 @@ $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["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";
@@ -1685,7 +1188,7 @@ $a->strings["Allow friends to post to your profile page?"] = "Zezwalać znajomym
 $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["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.";
@@ -1702,29 +1205,32 @@ $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["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"] = "Twoje aktualne hasło, potwierdź zmiany";
+$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["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["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:"] = "Domyślnie publikuj komunikat o stanie, gdy:";
+$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 <em>interesting</em> profile change"] = "dokonano <em>interesującej</em> zmiany profilu";
@@ -1748,478 +1254,972 @@ $a->strings["Change the behaviour of this account for special situations"] = "Zm
 $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["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ń";
-$a->strings["Will stretch to width/height of the image."] = "Rozciągnie się do szerokości/wysokości obrazu.";
-$a->strings["Resize fill and-clip"] = "Zmień rozmiar wypełnienia i klipu";
-$a->strings["Resize to fill and retain aspect ratio."] = "Zmień rozmiar, aby wypełnić i zachować proporcje.";
-$a->strings["Resize best fit"] = "Zmień rozmiar, aby najlepiej dopasować";
-$a->strings["Resize to best fit and retain aspect ratio."] = "Zmień rozmiar, aby jak najlepiej dopasować i zachować proporcje.";
-$a->strings["Default"] = "Domyślne";
-$a->strings["Note"] = "Uwaga";
-$a->strings["Check image permissions if all users are allowed to visit the image"] = "Sprawdź uprawnienia do obrazu, jeśli wszyscy użytkownicy mogą odwiedzać obraz";
-$a->strings["Select scheme"] = "Wybierz schemat";
-$a->strings["Navigation bar background color"] = "Kolor tła paska nawigacyjnego";
-$a->strings["Navigation bar icon color "] = "Kolor ikony paska nawigacyjnego";
-$a->strings["Link color"] = "Kolor łączy";
-$a->strings["Set the background color"] = "Ustaw kolor tła";
-$a->strings["Content background opacity"] = "Nieprzezroczystość tła treści";
-$a->strings["Set the background image"] = "Ustaw obraz tła";
-$a->strings["Login page background image"] = "Obraz tła strony logowania";
-$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";
-$a->strings["Help or @NewHere ?"] = "Pomóż lub @NowyTutaj?";
-$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["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 removed."] = "Grupa usunięta.";
+$a->strings["Unable to remove group."] = "Nie można usunąć grupy.";
+$a->strings["Delete Group"] = "Usuń grupę";
+$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["Remove Contact"] = "Usuń Kontakt";
+$a->strings["Add Contact"] = "Dodaj Kontakt";
+$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["Overview"] = "Przegląd";
+$a->strings["Federation Statistics"] = "Statystyki Organizacji";
+$a->strings["Configuration"] = "Konfiguracja";
+$a->strings["Site"] = "Strona";
+$a->strings["Users"] = "Użytkownicy";
+$a->strings["Themes"] = "Wygląd";
+$a->strings["Database"] = "Baza danych";
+$a->strings["DB updates"] = "Aktualizacje DB";
+$a->strings["Inspect Queue"] = "Sprawdź kolejkę";
+$a->strings["Tools"] = "Narzędzia";
+$a->strings["Contact Blocklist"] = "Lista zablokowanych kontaktów";
+$a->strings["Server Blocklist"] = "Lista zablokowanych serwerów";
+$a->strings["Delete Item"] = "Usuń przedmiot";
+$a->strings["Logs"] = "Logi";
+$a->strings["View Logs"] = "Zobacz rejestry";
+$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["Addon Features"] = "Funkcje dodatkowe";
+$a->strings["User registrations waiting for confirmation"] = "Rejestracje użytkownika czekają na potwierdzenie.";
+$a->strings["Administration"] = "Administracja";
+$a->strings["Display Terms of Service"] = "Wyświetl Warunki korzystania z usługi";
+$a->strings["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."] = "Włącz stronę Warunki świadczenia usług. Jeśli ta opcja jest włączona, link do warunków zostanie dodany do formularza rejestracyjnego i strony z informacjami ogólnymi.";
+$a->strings["Display Privacy Statement"] = "Wyświetl oświadczenie o prywatności";
+$a->strings["Show some informations regarding the needed information to operate the node according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."] = "Pokaż niektóre informacje dotyczące potrzebnych informacji do obsługi węzła zgodnie np. do <a href=\"%s\" target=\"_blank\">EU-GDPR</a>.";
+$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["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";
+$a->strings["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."] = "Na tej stronie można zdefiniować czarną listę serwerów ze stowarzyszonej sieci, które nie mogą współdziałać z danym węzłem. Dla wszystkich wprowadzonych domen powinieneś podać powód, dla którego zablokowałeś serwer zdalny.";
+$a->strings["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."] = "Lista zablokowanych serwerów zostanie publicznie udostępniona na stronie /friendica, dzięki czemu użytkownicy i osoby badające problemy z komunikacją mogą łatwo znaleźć przyczynę.";
+$a->strings["Add new entry to block list"] = "Dodaj nowy wpis do listy bloków";
+$a->strings["Server Domain"] = "Domena serwera";
+$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = "Domena nowego serwera do dodania do listy bloków. Nie dołączaj protokołu.";
+$a->strings["Block reason"] = "Powód zablokowania";
+$a->strings["Add Entry"] = "Dodaj wpis";
+$a->strings["Save changes to the blocklist"] = "Zapisz zmiany w Liście zablokowanych";
+$a->strings["Current Entries in the Blocklist"] = "Aktualne wpisy na liście zablokowanych";
+$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["%s contact unblocked"] = [
+       0 => "",
+       1 => "",
+       2 => "",
+       3 => "",
 ];
-$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["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a>%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"] = [
+$a->strings["Remote Contact Blocklist"] = "Lista zablokowanych kontaktów zdalnych";
+$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "Ta strona pozwala zapobiec wysyłaniu do węzła wiadomości od kontaktu zdalnego.";
+$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["Profile URL"] = "Adres URL profilu";
+$a->strings["%s total blocked contact"] = [
        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 <strong>may</strong> 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 <strong>mogą</strong> 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 <a href=\"%1\$s/settings/uexport\">account settings</a>. If the user wants to delete their account they can do so at <a href=\"%1\$s/removeme\">%1\$s/removeme</a>. The deletion of the account will be permanent."] = "W dowolnym momencie zalogowany użytkownik może wyeksportować dane swojego konta z <a href=\"%1\$s/settings/uexport\">ustawień konta</a>. Jeśli użytkownik chce usunąć swoje konto, może to zrobić w <a href=\"%1\$s/removeme\">%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["URL of the remote contact to block."] = "Adres URL kontaktu zdalnego do zablokowania.";
+$a->strings["Delete this Item"] = "Usuń ten przedmiot";
+$a->strings["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."] = "Na tej stronie możesz usunąć przedmiot ze swojego węzła. Jeśli element jest publikowaniem na najwyższym poziomie, cały wątek zostanie usunięty.";
+$a->strings["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."] = "Musisz znać identyfikator GUID tego przedmiotu. Możesz go znaleźć np. patrząc na wyświetlany adres URL. Ostatnia część http://example.com/display/123456 to GUID, tutaj 123456.";
+$a->strings["GUID"] = "GUID";
+$a->strings["The GUID of the item you want to delete."] = "Identyfikator elementu GUID, który chcesz usunąć.";
+$a->strings["Item marked for deletion."] = "Przedmiot oznaczony do usunięcia.";
+$a->strings["unknown"] = "nieznany";
+$a->strings["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."] = "Ta strona zawiera kilka numerów do znanej części federacyjnej sieci społecznościowej, do której należy Twój węzeł Friendica. Liczby te nie są kompletne, ale odzwierciedlają tylko część sieci, o której wie twój węzeł.";
+$a->strings["The <em>Auto Discovered Contact Directory</em> feature is not enabled, it will improve the data displayed here."] = "Funkcja <em>Katalog kontaktów automatycznie odkrytych</em> nie jest włączona, poprawi ona wyświetlane tutaj dane.";
+$a->strings["Currently this node is aware of %d nodes with %d registered users from the following platforms:"] = "Obecnie węzeł ten jest świadomy %dwęzłów z %d zarejestrowanymi użytkownikami z następujących platform:";
+$a->strings["ID"] = "ID";
+$a->strings["Recipient Name"] = "Nazwa odbiorcy";
+$a->strings["Recipient Profile"] = "Profil odbiorcy";
+$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.";
+$a->strings["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 <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the command <tt>php bin/console.php dbstructure toinnodb</tt> of your Friendica installation for an automatic conversion.<br />"] = "Twoja baza danych nadal działa z tabelami MyISAM. Powinieneś zmienić typ silnika na InnoDB. Ponieważ Friendica będzie używać funkcji związanych z InnoDB tylko w przyszłości, powinieneś to zmienić! Zobacz <a href=\"%s\">tutaj</a> przewodnik, który może być pomocny w konwersji silników stołowych. Możesz także użyć polecenia <tt>php bin/console.php dbstructure toinnodb</tt> instalacji Friendica do automatycznej konwersji.<br />";
+$a->strings["There is a new version of Friendica available for download. Your current version is %1\$s, upstream version is %2\$s"] = "Dostępna jest nowa wersja aplikacji Friendica. Twoja aktualna wersja to %1\$s wyższa wersja to %2\$s";
+$a->strings["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."] = "Aktualizacja bazy danych nie powiodła się. Uruchom polecenie \"php bin/console.php dbstructure update\" z wiersza poleceń i sprawdź błędy, które mogą się pojawić.";
+$a->strings["The worker was never executed. Please check your database structure!"] = "Pracownik nigdy nie został stracony. Sprawdź swoją strukturę bazy danych!";
+$a->strings["The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings."] = "Ostatnie wykonanie robota było w %s UTC. To jest starsze niż jedna godzina. Sprawdź ustawienia crontab.";
+$a->strings["Normal Account"] = "Konto normalne";
+$a->strings["Automatic Follower Account"] = "Automatyczne konto obserwatora";
+$a->strings["Public Forum Account"] = "Publiczne konto na forum";
+$a->strings["Automatic Friend Account"] = "Automatyczny przyjaciel konta";
+$a->strings["Blog Account"] = "Konto Bloga";
+$a->strings["Private Forum Account"] = "Prywatne konto na forum";
+$a->strings["Message queues"] = "Wiadomości";
+$a->strings["Summary"] = "Podsumowanie";
+$a->strings["Registered users"] = "Zarejestrowani użytkownicy";
+$a->strings["Pending registrations"] = "Rejestracje w toku.";
+$a->strings["Version"] = "Wersja";
+$a->strings["Active addons"] = "Aktywne dodatki";
+$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Nie można zanalizować podstawowego adresu URL. Musi mieć co najmniej <scheme>: //<domain>";
+$a->strings["Site settings updated."] = "Ustawienia strony zaktualizowane";
+$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";
+$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ęte";
+$a->strings["Requires approval"] = "Wymagane zatwierdzenie.";
+$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 . ";
+$a->strings["Don't check"] = "Nie sprawdzaj";
+$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"] = "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";
+$a->strings["Message Relay"] = "Przekazywanie wiadomości";
+$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Relokacja - OSTRZEŻENIE: funkcja zaawansowana. Może spowodować, że serwer będzie nieosiągalny.";
+$a->strings["Site name"] = "Nazwa strony";
+$a->strings["Host name"] = "Nazwa hosta";
+$a->strings["Sender Email"] = "E-mail nadawcy";
+$a->strings["The email address your server shall use to send notification emails from."] = "Adres e-mail używany przez Twój serwer do wysyłania e-maili z powiadomieniami.";
+$a->strings["Banner/Logo"] = "Logo";
+$a->strings["Shortcut icon"] = "Ikona skrótu";
+$a->strings["Link to an icon that will be used for browsers."] = "Link do ikony, która będzie używana w przeglądarkach.";
+$a->strings["Touch icon"] = "Dołącz ikonę";
+$a->strings["Link to an icon that will be used for tablets and mobiles."] = "Link do ikony, która będzie używana w tabletach i telefonach komórkowych.";
+$a->strings["Additional Info"] = "Dodatkowe informacje";
+$a->strings["For public servers: you can add additional information here that will be listed at %s/servers."] = "W przypadku serwerów publicznych: możesz tu dodać dodatkowe informacje, które będą wymienione na %s/servers.";
+$a->strings["System language"] = "Język systemu";
+$a->strings["System theme"] = "Motyw systemowy";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Domyślny motyw systemu - może być nadpisany przez profil użytkownika  <a href='#' id='cnftheme'>zmień ustawienia motywów</a>";
+$a->strings["Mobile system theme"] = "Motyw systemu mobilnego";
+$a->strings["Theme for mobile devices"] = "Motyw na urządzenia mobilne";
+$a->strings["SSL link policy"] = "polityka SSL";
+$a->strings["Determines whether generated links should be forced to use SSL"] = "Określa kiedy generowane linki powinny używać wymuszonego SSl.";
+$a->strings["Force SSL"] = "Wymuś SSL";
+$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Wymuszaj wszystkie żądania SSL bez SSL - Uwaga: w niektórych systemach może to prowadzić do niekończących się pętli.";
+$a->strings["Hide help entry from navigation menu"] = "Wyłącz pomoc w menu nawigacyjnym ";
+$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Chowa pozycje menu dla stron pomocy ze strony nawigacyjnej. Możesz nadal ją wywołać poprzez komendę /help.";
+$a->strings["Single user instance"] = "Tryb pojedynczego użytkownika";
+$a->strings["Make this instance multi-user or single-user for the named user"] = "Ustawia tryb dla wielu użytkowników lub pojedynczego użytkownika dla nazwanego użytkownika";
+$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ść 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.";
+$a->strings["Register text"] = "Zarejestruj tekst";
+$a->strings["Will be displayed prominently on the registration page. You can use BBCode here."] = "Będą wyświetlane w widocznym miejscu na stronie rejestracji. Możesz użyć BBCode tutaj.";
+$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"] = "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";
+$a->strings["Don't show the rich content (e.g. embedded PDF), except from the domains listed below."] = "Nie wyświetlaj zasobów treści (np. osadzonego pliku PDF), z wyjątkiem domen wymienionych poniżej.";
+$a->strings["Allowed OEmbed domains"] = "Dozwolone domeny OEmbed";
+$a->strings["Comma separated list of domains which oembed content is allowed to be displayed. Wildcards are accepted."] = "Rozdzielana przecinkami lista domen, w których wyświetlana jest treść, może być wyświetlana. Symbole wieloznaczne są akceptowane.";
+$a->strings["Block public"] = "Blokuj publicznie";
+$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Zaznacz, aby zablokować publiczny dostęp do wszystkich publicznych stron prywatnych w tej witrynie, chyba że jesteś zalogowany.";
+$a->strings["Force publish"] = "Wymuś publikację";
+$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Zaznacz, aby wymusić umieszczenie wszystkich profili w tej witrynie w katalogu witryny.";
+$a->strings["Global directory URL"] = "Globalny adres URL katalogu";
+$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "Adres URL do katalogu globalnego. Jeśli nie zostanie to ustawione, katalog globalny jest całkowicie niedostępny dla aplikacji.";
+$a->strings["Private posts by default for new users"] = "Prywatne posty domyślnie dla nowych użytkowników";
+$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Ustaw domyślne uprawnienia do publikowania dla wszystkich nowych członków na domyślną grupę prywatności, a nie publiczną.";
+$a->strings["Don't include post content in email notifications"] = "Nie wklejaj zawartości postu do powiadomienia o poczcie";
+$a->strings["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."] = "W celu ochrony prywatności, nie włączaj zawartości postu/komentarza/wiadomości prywatnej/etc. do powiadomień w wiadomościach mailowych wysyłanych z tej strony.";
+$a->strings["Disallow public access to addons listed in the apps menu."] = "Nie zezwalaj na publiczny dostęp do dodatkowych wtyczek wyszczególnionych w menu aplikacji.";
+$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Zaznaczenie tego pola spowoduje ograniczenie dodatków wymienionych w menu aplikacji tylko dla członków.";
+$a->strings["Don't embed private images in posts"] = "Nie umieszczaj prywatnych zdjęć w postach";
+$a->strings["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."] = "Nie zastępuj lokalnie hostowanych zdjęć prywatnych we wpisach za pomocą osadzonej kopii obrazu. Oznacza to, że osoby, które otrzymują posty zawierające prywatne zdjęcia, będą musiały uwierzytelnić i wczytać każdy obraz, co może trochę potrwać.";
+$a->strings["Allow Users to set remote_self"] = "Zezwól użytkownikom na ustawienie remote_self";
+$a->strings["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."] = "Po sprawdzeniu tego każdy użytkownik może zaznaczyć każdy kontakt jako zdalny w oknie dialogowym kontaktu naprawczego. Ustawienie tej flagi na kontakcie powoduje dublowanie każdego wpisu tego kontaktu w strumieniu użytkowników.";
+$a->strings["Block multiple registrations"] = "Zablokuj wielokrotną rejestrację";
+$a->strings["Disallow users to register additional accounts for use as pages."] = "Nie pozwalaj użytkownikom na zakładanie dodatkowych kont do używania jako strony. ";
+$a->strings["OpenID support"] = "Wsparcie OpenID";
+$a->strings["OpenID support for registration and logins."] = "Obsługa OpenID do rejestracji i logowania.";
+$a->strings["Fullname check"] = "Sprawdzanie pełnej nazwy";
+$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Aby ograniczyć spam, wymagaj by użytkownik przy rejestracji w polu Imię i nazwisko użył spacji pomiędzy imieniem i nazwiskiem.";
+$a->strings["Community pages for visitors"] = "Strony społecznościowe dla odwiedzających";
+$a->strings["Which community pages should be available for visitors. Local users always see both pages."] = "Które strony społeczności powinny być dostępne dla odwiedzających. Lokalni użytkownicy zawsze widzą obie strony.";
+$a->strings["Posts per user on community page"] = "Lista postów użytkownika na stronie społeczności";
+$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "Maksymalna liczba postów na użytkownika na stronie społeczności. (Nie dotyczy 'społeczności globalnej')";
+$a->strings["Enable OStatus support"] = "Włącz wsparcie OStatus";
+$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Zapewnij kompatybilność z OStatus (StatusNet, GNU Social itp.). Cała komunikacja w stanie OStatus jest jawna, dlatego ostrzeżenia o prywatności będą czasami wyświetlane.";
+$a->strings["Only import OStatus threads from our contacts"] = "Importuj wątki OStatus tylko z naszych kontaktów";
+$a->strings["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."] = "Normalnie importujemy każdą treść z naszych kontaktów OStatus. W tej opcji przechowujemy tylko wątki uruchomione przez kontakt znany w naszym systemie.";
+$a->strings["OStatus support can only be enabled if threading is enabled."] = "Obsługa OStatus może być włączona tylko wtedy, gdy włączone jest wątkowanie.";
+$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "Obsługa Diaspory nie może być włączona, ponieważ Friendica została zainstalowana w podkatalogu.";
+$a->strings["Enable Diaspora support"] = "Włączyć obsługę Diaspory";
+$a->strings["Provide built-in Diaspora network compatibility."] = "Zapewnij wbudowaną kompatybilność z siecią Diaspora.";
+$a->strings["Only allow Friendica contacts"] = "Dopuść tylko kontakty Friendrica";
+$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Wszyscy znajomi muszą używać protokołów Friendica. Wszystkie inne wbudowane protokoły komunikacyjne są wyłączone.";
+$a->strings["Verify SSL"] = "Weryfikacja SSL";
+$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Jeśli chcesz, możesz włączyć ścisłe sprawdzanie certyfikatu. Oznacza to, że nie możesz połączyć się (w ogóle) z własnoręcznie podpisanymi stronami SSL.";
+$a->strings["Proxy user"] = "Użytkownik proxy";
+$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 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ęć";
+$a->strings["Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."] = "Minimalna wolna pamięć w MB dla pracownika. Potrzebuje dostępu do /proc/ meminfo - domyślnie 0 (wyłączone).";
+$a->strings["Maximum table size for optimization"] = "Maksymalny rozmiar stołu do optymalizacji";
+$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = "Maksymalny rozmiar tabeli (w MB) dla automatycznej optymalizacji - domyślnie 100 MB. Wprowadź -1, aby go wyłączyć.";
+$a->strings["Minimum level of fragmentation"] = "Minimalny poziom fragmentacji";
+$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "Minimalny poziom fragmentacji, aby rozpocząć automatyczną optymalizację - domyślna wartość to 30%.";
+$a->strings["Periodical check of global contacts"] = "Okresowa kontrola kontaktów globalnych";
+$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "Jeśli jest włączona, kontakty globalne są okresowo sprawdzane pod kątem brakujących lub nieaktualnych danych oraz żywotności kontaktów i serwerów.";
+$a->strings["Days between requery"] = "Dni między żądaniem";
+$a->strings["Number of days after which a server is requeried for his contacts."] = "Liczba dni, po upływie których serwer jest żądany dla swoich kontaktów.";
+$a->strings["Discover contacts from other servers"] = "Odkryj kontakty z innych serwerów";
+$a->strings["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'."] = "Okresowo wysyłaj zapytanie do innych serwerów o kontakty. Możesz wybierać pomiędzy 'użytkownikami': użytkownikami w systemie zdalnym, 'Kontakty globalne': aktywne kontakty znane w systemie. Zastępowanie jest przeznaczone dla serwerów Redmatrix i starszych serwerów Friendica, w których kontakty globalne nie były dostępne. Funkcja awaryjna zwiększa obciążenie serwera, dlatego zalecanym ustawieniem jest 'Użytkownicy, kontakty globalne'.";
+$a->strings["Timeframe for fetching global contacts"] = "Czas pobierania globalnych kontaktów";
+$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "Po aktywowaniu wykrywania ta wartość określa czas działania globalnych kontaktów pobieranych z innych serwerów.";
+$a->strings["Search the local directory"] = "Wyszukaj w lokalnym katalogu";
+$a->strings["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."] = "Wyszukaj lokalny katalog zamiast katalogu globalnego. Podczas wyszukiwania lokalnie każde wyszukiwanie zostanie wykonane w katalogu globalnym w tle. Poprawia to wyniki wyszukiwania, gdy wyszukiwanie jest powtarzane.";
+$a->strings["Publish server information"] = "Publikuj informacje o serwerze";
+$a->strings["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 <a href='http://the-federation.info/'>the-federation.info</a> for details."] = "Jeśli opcja jest włączona, ogólne dane serwera i użytkowania zostaną opublikowane. Dane zawierają nazwę i wersję serwera, liczbę użytkowników z profilami publicznymi, liczbę postów oraz aktywowane protokoły i konektory. Aby uzyskać szczegółowe informacje, patrz <a href='http://the-federation.info/'>the-federation.info</a>.";
+$a->strings["Check upstream version"] = "Sprawdź wersję powyżej";
+$a->strings["Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview."] = "Umożliwia sprawdzenie nowych wersji Friendica na github. Jeśli pojawi się nowa wersja, zostaniesz o tym poinformowany w panelu administracyjnym.";
+$a->strings["Suppress Tags"] = "Ukryj tagi";
+$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Pomiń wyświetlenie listy hashtagów na końcu postu.";
+$a->strings["Path to item cache"] = "Ścieżka do pamięci podręcznej";
+$a->strings["The item caches buffers generated bbcode and external images."] = "Pozycja buforuje bufory generowane bbcode i obrazy zewnętrzne.";
+$a->strings["Cache duration in seconds"] = "Czas trwania w sekundach";
+$a->strings["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."] = "Jak długo powinny być przechowywane pliki pamięci podręcznej? Wartość domyślna to 86400 sekund (jeden dzień). Aby wyłączyć pamięć podręczną elementów, ustaw wartość na -1.";
+$a->strings["Maximum numbers of comments per post"] = "Maksymalna liczba komentarzy na post";
+$a->strings["How much comments should be shown for each post? Default value is 100."] = "Ile komentarzy powinno być pokazywanych dla każdego posta? Domyślna wartość to 100.";
+$a->strings["Temp path"] = "Ścieżka do Temp";
+$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "Jeśli masz zastrzeżony system, w którym serwer internetowy nie może uzyskać dostępu do ścieżki temp systemu, wprowadź tutaj inną ścieżkę.";
+$a->strings["Base path to installation"] = "Podstawowa ścieżka do instalacji";
+$a->strings["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."] = "Jeśli system nie może wykryć poprawnej ścieżki do instalacji, wprowadź tutaj poprawną ścieżkę. To ustawienie powinno być ustawione tylko wtedy, gdy używasz ograniczonego systemu i dowiązań symbolicznych do twojego webroota.";
+$a->strings["Disable picture proxy"] = "Wyłącz obraz proxy";
+$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Proxy obrazu zwiększa wydajność i prywatność. Nie należy go stosować w systemach o bardzo niskiej przepustowości.";
+$a->strings["Only search in tags"] = "Szukaj tylko w tagach";
+$a->strings["On large systems the text search can slow down the system extremely."] = "W dużych systemach wyszukiwanie tekstu może wyjątkowo spowolnić system.";
+$a->strings["New base url"] = "Nowy bazowy adres url";
+$a->strings["Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users."] = "Zmień bazowy adres URL dla tego serwera. Wysyła wiadomość o przeniesieniu do wszystkich kontaktów Friendica i Diaspora* wszystkich użytkowników.";
+$a->strings["RINO Encryption"] = "Szyfrowanie RINO";
+$a->strings["Encryption layer between nodes."] = "Warstwa szyfrowania między węzłami.";
+$a->strings["Enabled"] = "Włącz";
+$a->strings["Maximum number of parallel workers"] = "Maksymalna liczba równoległych pracowników";
+$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "Na współdzielonych hostach ustaw to na 2. W większych systemach wartości 10 są świetne. Domyślna wartość to 4.";
+$a->strings["Don't use 'proc_open' with the worker"] = "Nie używaj 'proc_open' z robotnikiem";
+$a->strings["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."] = "Włącz to, jeśli twój system nie zezwala na użycie 'proc_open'. Może się to zdarzyć w przypadku współdzielonych hosterów. Jeśli ta opcja jest włączona, powinieneś zwiększyć częstotliwość wywołań pracowniczych w twoim pliku crontab.";
+$a->strings["Enable fastlane"] = "Włącz Fastlane";
+$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "Po włączeniu system Fastlane uruchamia dodatkowego pracownika, jeśli procesy o wyższym priorytecie są blokowane przez procesy o niższym priorytecie.";
+$a->strings["Enable frontend worker"] = "Włącz pracownika frontend";
+$a->strings["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."] = "Po włączeniu proces roboczy jest wyzwalany, gdy wykonywany jest dostęp do zaplecza \\x28e.g. wiadomości są dostarczane\\x29. W mniejszych witrynach możesz chcieć wywoływać %s/robotnika regularnie przez zewnętrzne zadanie cron. Tę opcję należy włączyć tylko wtedy, gdy nie można używać zadań cron/zaplanowanych na serwerze.";
+$a->strings["Subscribe to relay"] = "Subskrybuj przekaźnik";
+$a->strings["Enables the receiving of public posts from the relay. They will be included in the search, subscribed tags and on the global community page."] = "Umożliwia odbieranie publicznych wiadomości z przekaźnika. Zostaną uwzględnione w tagach wyszukiwania, subskrybowanych i na stronie społeczności globalnej.";
+$a->strings["Relay server"] = "Serwer przekazujący";
+$a->strings["Address of the relay server where public posts should be send to. For example https://relay.diasp.org"] = "Adres serwera przekazującego, do którego należy wysyłać publiczne posty. Na przykład https://relay.diasp.org";
+$a->strings["Direct relay transfer"] = "Bezpośredni transfer przekaźników";
+$a->strings["Enables the direct transfer to other servers without using the relay servers"] = "Umożliwia bezpośredni transfer do innych serwerów bez korzystania z serwerów przekazujących";
+$a->strings["Relay scope"] = "Zakres przekaźnika";
+$a->strings["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."] = "Może być 'wszystkim' lub 'tagami'. 'wszystko' oznacza, że ​​każdy post publiczny powinien zostać odebrany. 'tagi' oznaczają, że powinny być odbierane tylko posty z wybranymi tagami.";
+$a->strings["all"] = "wszystko";
+$a->strings["tags"] = "tagi";
+$a->strings["Server tags"] = "Serwer tagów";
+$a->strings["Comma separated list of tags for the 'tags' subscription."] = "Lista oddzielonych przecinkami znaczników dla subskrypcji 'tagów'.";
+$a->strings["Allow user tags"] = "Pozwól na tagi użytkowników";
+$a->strings["If enabled, the tags from the saved searches will used for the 'tags' subscription in addition to the 'relay_server_tags'."] = "Po włączeniu tagi z zapisanych wyszukiwań będą używane do subskrypcji 'tagów' oprócz 'relay_server_tags'.";
+$a->strings["Update has been marked successful"] = "Aktualizacja została oznaczona jako udana";
+$a->strings["Database structure update %s was successfully applied."] = "Pomyślnie zastosowano aktualizację %s struktury bazy danych.";
+$a->strings["Executing of database structure update %s failed with error: %s"] = "Wykonanie aktualizacji %s struktury bazy danych nie powiodło się z powodu błędu:%s";
+$a->strings["Executing %s failed with error: %s"] = "Wykonanie %s nie powiodło się z powodu błędu:%s";
+$a->strings["Update %s was successfully applied."] = "Aktualizacja %s została pomyślnie zastosowana.";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Aktualizacja %s nie zwróciła statusu. Nieznane, jeśli się udało.";
+$a->strings["There was no additional update function %s that needed to be called."] = "Nie było dodatkowej funkcji %s aktualizacji, która musiała zostać wywołana.";
+$a->strings["No failed updates."] = "Brak błędów aktualizacji.";
+$a->strings["Check database structure"] = "Sprawdź strukturę bazy danych";
+$a->strings["Failed Updates"] = "Błąd aktualizacji";
+$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Nie dotyczy to aktualizacji przed 1139, który nie zwrócił statusu.";
+$a->strings["Mark success (if update was manually applied)"] = "Oznacz sukces (jeśli aktualizacja została ręcznie zastosowana)";
+$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["%s user blocked/unblocked"] = [
+       0 => "",
+       1 => "",
+       2 => "",
+       3 => "",
+];
+$a->strings["%s user deleted"] = [
+       0 => " %s użytkownik usunięty",
+       1 => " %s użytkownicy usunięci",
+       2 => " %s usuniętych użytkowników ",
+       3 => " %s usuniętych użytkowników ",
+];
+$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["Private Forum"] = "Prywatne forum";
+$a->strings["Register date"] = "Data rejestracji";
+$a->strings["Last login"] = "Ostatnie logowanie";
+$a->strings["Last item"] = "Ostatni element";
+$a->strings["Type"] = "Typu";
+$a->strings["Add User"] = "Dodaj użytkownika";
+$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["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.";
+$a->strings["New User"] = "Nowy użytkownik";
+$a->strings["Deleted since"] = "Skasowany od";
+$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Zaznaczeni użytkownicy zostaną usunięci!\\n\\nWszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?";
+$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Użytkownik {0} zostanie usunięty!\\n\\nWszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?";
+$a->strings["Name of the new user."] = "Nazwa nowego użytkownika.";
+$a->strings["Nickname"] = "Pseudonim";
+$a->strings["Nickname of the new user."] = "Pseudonim nowego użytkownika.";
+$a->strings["Email address of the new user."] = "Adres email nowego użytkownika.";
+$a->strings["Addon %s disabled."] = "Dodatek %s wyłączony.";
+$a->strings["Addon %s enabled."] = "Dodatek %s włączony.";
+$a->strings["Disable"] = "Wyłącz";
+$a->strings["Enable"] = "Zezwól";
+$a->strings["Toggle"] = "Włącz";
+$a->strings["Author: "] = "Autor: ";
+$a->strings["Maintainer: "] = "Opiekun:";
+$a->strings["Reload active addons"] = "Załaduj ponownie aktywne dodatki";
+$a->strings["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"] = "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";
+$a->strings["No themes found."] = "Nie znaleziono motywów.";
+$a->strings["Screenshot"] = "Zrzut ekranu";
+$a->strings["Reload active themes"] = "Przeładuj aktywne motywy";
+$a->strings["No themes found on the system. They should be placed in %1\$s"] = "Nie znaleziono motywów w systemie. Powinny zostać umieszczone %1\$s";
+$a->strings["[Experimental]"] = "[Eksperymentalne]";
+$a->strings["[Unsupported]"] = "[Niewspieralne]";
+$a->strings["Log settings updated."] = "Zaktualizowano ustawienia logów.";
+$a->strings["PHP log currently enabled."] = "Dziennik PHP jest obecnie włączony.";
+$a->strings["PHP log currently disabled."] = "Dziennik PHP jest obecnie wyłączony.";
+$a->strings["Clear"] = "Wyczyść";
+$a->strings["Enable Debugging"] = "Włącz debugowanie";
+$a->strings["Log file"] = "Plik logów";
+$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Musi być zapisywalny przez serwer sieciowy. W stosunku do katalogu najwyższego poziomu Friendica.";
+$a->strings["Log level"] = "Poziom logów";
+$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 <strong>%1\$s</strong> log file.\\r\\n<br/>Check to see if file %1\$s exist and is readable."] = "Błąd podczas próby otwarcia <strong>%1\$s</strong> pliku dziennika. \\r\\n <br/>Sprawdź, czy plik %1\$s istnieje i czy można go odczytać.";
+$a->strings["Couldn't open <strong>%1\$s</strong> log file.\\r\\n<br/>Check to see if file %1\$s is readable."] = "Nie można otworzyć <strong>%1\$s</strong>pliku dziennika. \\r\\n<br/>Sprawdź, czy plik %1\$s jest czytelny.";
+$a->strings["Lock feature %s"] = "Funkcja blokady %s";
+$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 <strong>may</strong> be able to respond from the sender's profile page."] = "Brak bezpiecznej komunikacji. <strong>Możesz</strong> 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["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["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 <strong>this</strong> profile."] = "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na <strong>tego</strong> 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, <a href=\"%s\">follow this link to find a public Friendica site and join us today</a>."] = "Jeśli nie jesteś jeszcze członkiem darmowej sieci społecznościowej, <a href=\"%s\">kliknij ten link, aby znaleźć publiczną witrynę Friendica i dołącz do nas już dziś</a>.";
+$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["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>OSTRZEŻENIE: Jest to bardzo zaawansowane</strong> i jeśli wprowadzisz niepoprawne informacje, twoja komunikacja z tym kontaktem może przestać działać.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj <strong>teraz</strong> 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 <strong>may</strong> still be visible"] = "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal <strong>mogą</strong> 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 <em>Settings</em> page after successful login."] = "Twoje hasło może być zmienione w <em>Ustawieniach</em> 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 <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-worker'>'Setup the worker'</a>"] = "Jeśli nie masz zainstalowanej na serwerze wersji PHP z wiersza poleceń, nie będziesz mógł uruchomić przetwarzania w tle. Zobacz <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-worker'>'Konfiguracja pracownika'</a>";
+$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["<h1>What next</h1>"] = "<h1>Co dalej</h1>";
+$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 <a href=\"%s/register\">registration page</a> 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 <a href=\"%s/register\">strony rejestracji</a> 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";
+$a->strings["BBCode::toMarkdown"] = "BBCode::toMarkdown";
+$a->strings["BBCode::toMarkdown => Markdown::convert"] = "BBCode::toMarkdown => Markdown::przekształć";
+$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = "BBCode::toMarkdown => Markdown::toBBCode";
+$a->strings["BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"] = "BBCode::toMarkdown => Markdown::przekształć => HTML::toBBCode";
+$a->strings["Source input \\x28Diaspora format\\x29"] = "Źródło wejściowe \\x28Diaspora format\\x29";
+$a->strings["Markdown::toBBCode"] = "Markdown::toBBCode";
+$a->strings["Raw HTML input"] = "Surowe wejście HTML";
+$a->strings["HTML Input"] = "Wejście HTML";
+$a->strings["HTML::toBBCode"] = "HTML::toBBCode";
+$a->strings["HTML::toPlaintext"] = "HTML::toPlaintext";
+$a->strings["Source text"] = "Tekst źródłowy";
+$a->strings["BBCode"] = "BBCode";
+$a->strings["Markdown"] = "Markdown";
+$a->strings["HTML"] = "HTML";
+$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 <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Na stronie <em>Szybki start</em> - 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 <em>Settings</em> 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 <strong>default</strong> 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 <em>Add New Contact</em> 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 <em>Dodaj nowy kontakt</em>.";
+$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 <em>Connect</em> or <em>Follow</em> 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 <em>Połącz</em> lub <em>Śledź</em> 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 <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Na naszych stronach <strong>pomocy</strong> 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:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Nie udało się wysłać wiadomości e-mail. Tutaj szczegóły twojego konta:<br> login: %s<br>hasło: %s<br><br>Możesz zmienić swoje hasło po zalogowaniu.";
+$a->strings["Registration successful."] = "Rejestracja udana.";
+$a->strings["Your registration can not be processed."] = "Twoja rejestracja nie może zostać przeprowadzona. ";
+$a->strings["Your registration is pending approval by the site owner."] = "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Możesz (opcjonalnie) wypełnić ten formularz za pośrednictwem OpenID, podając swój OpenID i klikając 'Register'.";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów.";
+$a->strings["Your OpenID (optional): "] = "Twój OpenID (opcjonalnie):";
+$a->strings["Include your profile in member directory?"] = "Czy dołączyć twój profil do katalogu członków?";
+$a->strings["Note for the admin"] = "Uwaga dla administratora";
+$a->strings["Leave a message for the admin, why you want to join this node"] = "Pozostaw wiadomość dla administratora, dlaczego chcesz dołączyć do tego węzła";
+$a->strings["Membership on this site is by invitation only."] = "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu.";
+$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["Leave empty for an auto generated password."] = "Pozostaw puste dla wygenerowanego automatycznie hasła.";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@%s</strong>'."] = "Wybierz pseudonim profilu. Nazwa musi zaczynać się od znaku tekstowego. Twój adres profilu na tej stronie będzie wówczas '<strong>pseudonimem%s</strong>'.";
+$a->strings["Choose a nickname: "] = "Wybierz pseudonim:";
+$a->strings["Import your profile to this friendica instance"] = "Zaimportuj swój profil do tej instancji friendica";
+$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ń";
+$a->strings["Will stretch to width/height of the image."] = "Rozciągnie się do szerokości/wysokości obrazu.";
+$a->strings["Resize fill and-clip"] = "Zmień rozmiar wypełnienia i klipu";
+$a->strings["Resize to fill and retain aspect ratio."] = "Zmień rozmiar, aby wypełnić i zachować proporcje.";
+$a->strings["Resize best fit"] = "Zmień rozmiar, aby najlepiej dopasować";
+$a->strings["Resize to best fit and retain aspect ratio."] = "Zmień rozmiar, aby jak najlepiej dopasować i zachować proporcje.";
+$a->strings["Default"] = "Domyślne";
+$a->strings["Note"] = "Uwaga";
+$a->strings["Check image permissions if all users are allowed to visit the image"] = "Sprawdź uprawnienia do obrazu, jeśli wszyscy użytkownicy mogą odwiedzać obraz";
+$a->strings["Select scheme"] = "Wybierz schemat";
+$a->strings["Navigation bar background color"] = "Kolor tła paska nawigacyjnego";
+$a->strings["Navigation bar icon color "] = "Kolor ikony paska nawigacyjnego";
+$a->strings["Link color"] = "Kolor łączy";
+$a->strings["Set the background color"] = "Ustaw kolor tła";
+$a->strings["Content background opacity"] = "Nieprzezroczystość tła treści";
+$a->strings["Set the background image"] = "Ustaw obraz tła";
+$a->strings["Login page background image"] = "Obraz tła strony logowania";
+$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["Comma separated list of helper forums"] = "Lista pomocników oddzielona przecinkami";
+$a->strings["Set style"] = "Ustaw styl";
+$a->strings["Community Pages"] = "Strony społeczności";
+$a->strings["Community Profiles"] = "Profile społeczności";
+$a->strings["Help or @NewHere ?"] = "Pomóż lub @NowyTutaj?";
+$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["Quick Start"] = "Szybki start";
+$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";
index b66cced8767f0c778ec01a47ccd385892d5cc615..8275d4595ded2734fe038bab7db3d7d8c3e52464 100644 (file)
@@ -1,6 +1,8 @@
        <div class="field checkbox" id="div_id_{{$field.0}}">
-               <label for="id_{{$field.0}}">{{$field.1}}</label>
+               <label id="id_{{$field.0}}_label" for="id_{{$field.0}}">{{$field.1}}</label>
                <input type="hidden" name="{{$field.0}}" value="0">
                <input type="checkbox" name="{{$field.0}}" id="id_{{$field.0}}" aria-describedby="{{$field.0}}_tip" value="1" {{if $field.2}}checked="checked"{{/if}} {{if $field.4}}{{$field.4}}{{/if}}>
+               {{if $field.3}}
                <span class="field_help" role="tooltip" id="{{$field.0}}_tip">{{$field.3}}</span>
+               {{/if}}
        </div>
index 45865501662a7d1e1ba7e6a5347659eaaca0339c..876e607cdfef9958c6f48acfe2442be10bda180e 100644 (file)
@@ -13,6 +13,8 @@
                        {{foreach $field.4 as $opt=>$val}}<option value="{{$val|escape:'html'}}">{{$val}}</option>{{/foreach}}
                </select>
                
-               <span class='field_help' role='tooltip' id='{{$field.0}}_tip'>{{$field.3}}</span>
+               {{if $field.3}}
+               <span class="field_help" role="tooltip" id="{{$field.0}}_tip">{{$field.3}}</span>
+               {{/if}}
        </div>
 
index 0b09284023781f4525b3ef562ad360678e046816..6649b0ff94e1c334b5138c88ae801d4e00d0cc20 100644 (file)
@@ -3,5 +3,7 @@
        <div class='field custom'>
                <label for='{{$field.0}}'>{{$field.1}}</label>
                {{$field.2}}
-               <span class='field_help'>{{$field.3}}</span>
+               {{if $field.3}}
+               <span class="field_help" role="tooltip" id="{{$field.0}}_tip">{{$field.3}}</span>
+               {{/if}}
        </div>
index 495493f2fdf83cb864ebf60b874db3717d35c185..850656bb8c8f0da0cc8a814f2bdcfc2839737efe 100644 (file)
@@ -2,5 +2,7 @@
        <div class='field input' id='wrapper_{{$field.0}}'>
                <label for='id_{{$field.0}}'>{{$field.1}}</label>
                <input{{if $field.6 eq 'email'}} type='email'{{elseif $field.6 eq 'url'}} type='url'{{else}} type="text"{{/if}} name='{{$field.0}}' id='id_{{$field.0}}' value="{{$field.2|escape:'html'}}"{{if $field.4 eq 'required'}} required{{/if}}{{if $field.5 eq "autofocus"}} autofocus{{elseif $field.5}} {{$field.5}}{{/if}} aria-describedby='{{$field.0}}_tip'>
+               {{if $field.3}}
                <span class='field_help' role='tooltip' id='{{$field.0}}_tip'>{{$field.3}}</span>
+               {{/if}}
        </div>
index 73bdf604170085b9c404cec81d11d65d9ae4cf1d..9c5f04e796d6ddeefc403e4622dc289f66b6a597 100644 (file)
@@ -3,5 +3,7 @@
        <div class='field checkbox'>
                <label for='id_{{$field.0}}'>{{$field.1}}</label>
                <input type="checkbox" name='{{$field.0}}' id='id_{{$field.0}}' value="{{$field.3|escape:'html'}}" {{if $field.2}}checked="true"{{/if}} aria-describedby='{{$field.0}}_tip'>
+               {{if $field.4}}
                <span class='field_help' role='tooltip' id='{{$field.0}}_tip'>{{$field.4}}</span>
+               {{/if}}
        </div>
index 062ac6ac6eb19b4bd9941daf5ef6a4d8184d2174..9a18bbc13c3cb02a9659090be948e5364ea1ae55 100644 (file)
@@ -2,5 +2,7 @@
        <div class='field input openid' id='wrapper_{{$field.0}}'>
                <label for='id_{{$field.0}}'>{{$field.1}}</label>
                <input name='{{$field.0}}' id='id_{{$field.0}}' type="text" value="{{$field.2|escape:'html'}}" aria-describedby='{{$field.0}}_tip'>
-               <span class='field_help' role='tooltip' id='{{$field.0}}_tip'>{{$field.3}}</span>
+               {{if $field.3}}
+               <span class="field_help" role="tooltip" id="{{$field.0}}_tip">{{$field.3}}</span>
+               {{/if}}
        </div>
index 333ce67c3839ff6cbea8dcfd6cbc185502bfbcda..4b4d4f2b2e3a5905390007ad63fdfed33ec0d571 100644 (file)
@@ -2,5 +2,7 @@
        <div class='field password' id='wrapper_{{$field.0}}'>
                <label for='id_{{$field.0}}'>{{$field.1}}</label>
                <input type='password' name='{{$field.0}}' id='id_{{$field.0}}' value="{{$field.2|escape:'html'}}"{{if $field.4 eq 'required'}} required{{/if}}{{if $field.5 eq 'autofocus'}} autofocus{{/if}} aria-describedby='{{$field.0}}_tip'>
+               {{if $field.3}}
                <span class='field_help' role='tooltip' id='{{$field.0}}_tip'>{{$field.3}}</span>
+               {{/if}}
        </div>
index 6b880ed9975097f469cc488cedcd1ef7268eb5cc..1e1d8e0b10c129131380e846a7eca61ef2421bba 100644 (file)
@@ -1,5 +1,7 @@
        <div class='field radio'>
                <label for='id_{{$field.0}}_{{$field.2}}'>{{$field.1}}</label>
                <input type="radio" name='{{$field.0}}' id='id_{{$field.0}}_{{$field.2}}' value="{{$field.2|escape:'html'}}" {{if $field.4}}checked{{/if}} aria-describedby={{$field.0}}_{{$field.2}}_tip'>
+               {{if $field.3}}
                <span class='field_help' role='tooltip' id='{{$field.0}}_{{$field.2}}_tip'>{{$field.3}}</span>
+               {{/if}}
        </div>
index 67553bb95a2bca3460d02767c7dd4bf4aefc0342..bc346ddb0b86d3671d2da984c007392acc3da162 100644 (file)
@@ -3,5 +3,7 @@
        <div class='field richtext'>
                <label for='id_{{$field.0}}'>{{$field.1}}</label>
                <textarea name='{{$field.0}}' id='id_{{$field.0}}' class="fieldRichtext" aria-describedby='{{$field.0}}_tip'>{{$field.2}}</textarea>
-               <span class='field_help' role='tooltip' id='{{$field.0}}_tip'>{{$field.3}}</span>
+               {{if $field.3}}
+               <span class="field_help" role="tooltip" id="{{$field.0}}_tip">{{$field.3}}</span>
+               {{/if}}
        </div>
index 2d037439df6b644dc92a7e10af58109beff6566c..87a2ab9ff8eb6fedbd2ab8a99c01e69963689c71 100644 (file)
@@ -5,5 +5,7 @@
                <select name='{{$field.0}}' id='id_{{$field.0}}' aria-describedby='{{$field.0}}_tip'>
                        {{foreach $field.4 as $opt=>$val}}<option value="{{$opt|escape:'html'}}" {{if $opt==$field.2}}selected="selected"{{/if}}>{{$val}}</option>{{/foreach}}
                </select>
-               <span class='field_help' role='tooltip' id='{{$field.0}}_tip'>{{$field.3}}</span>
+               {{if $field.3}}
+               <span class="field_help" role="tooltip" id="{{$field.0}}_tip">{{$field.3}}</span>
+               {{/if}}
        </div>
index 4c826a042749e593ec685a9af94bfa035c7daf16..147c028eff36f82c3256746e5f06e19f777cbd56 100644 (file)
@@ -5,5 +5,7 @@
                <select name='{{$field.0}}' id='id_{{$field.0}}' aria-describedby='{{$field.0}}_tip'>
                        {{$field.4}}
                </select>
-               <span class='field_help' role='tooltip' id='{{$field.0}}_tip'>{{$field.3}}</span>
+               {{if $field.3}}
+               <span class="field_help" role="tooltip" id="{{$field.0}}_tip">{{$field.3}}</span>
+               {{/if}}
        </div>
index c37537d6ec57a21bffe900ff4e92be1ea16da799..60594a26667a0bdd36b9e447ef4db86ef518bea8 100644 (file)
@@ -3,5 +3,7 @@
        <div class='field textarea'>
                <label for='id_{{$field.0}}'>{{$field.1}}</label>
                <textarea name='{{$field.0}}' id='id_{{$field.0}}' aria-describedby='{{$field.0}}_tip'>{{$field.2}}</textarea>
-               <span class='field_help' role='tooltip' id='{{$field.0}}_tip'>{{$field.3}}</span>
+               {{if $field.3}}
+               <span class="field_help" role="tooltip" id="{{$field.0}}_tip">{{$field.3}}</span>
+               {{/if}}
        </div>
index 51f6057ae3b25c2de05acfc98f4a6930230ed128..5f56c187ef957df5a4a253cbe233645612a34379 100644 (file)
@@ -5,6 +5,8 @@
                <select name='{{$field.0}}' id='id_{{$field.0}}' {{if $field.5}}onchange="previewTheme(this);"{{/if}} aria-describedby='{{$field.0}}_tip'>
                        {{foreach $field.4 as $opt=>$val}}<option value="{{$opt|escape:'html'}}" {{if $opt==$field.2}}selected="selected"{{/if}}>{{$val}}</option>{{/foreach}}
                </select>
-               <span class='field_help' role='tooltip' id='{{$field.0}}_tip'>{{$field.3}}</span>
+               {{if $field.3}}
+               <span class="field_help" role="tooltip" id="{{$field.0}}_tip">{{$field.3}}</span>
+               {{/if}}
                {{if $field.5}}<div id="theme-preview"></div>{{/if}}
        </div>
index 155d0488b32563a606ce805b2a3166d8a73efd3e..7e7c3cc4eea64f683cf1692058f02d0a5a093cdf 100644 (file)
@@ -10,5 +10,7 @@
                                {{if $field.4}}{{$field.4.1}}{{else}}ON{{/if}}
                        </a>
                </div>
-               <span class='field_help' role='tooltip' id='{{$field.0}}_tip'>{{$field.3}}</span>
+               {{if $field.3}}
+               <span class="field_help" role="tooltip" id="{{$field.0}}_tip">{{$field.3}}</span>
+               {{/if}}
        </div>
index d72307fb5a90348b5a0f81cd16d8b051a658095a..1325a6177131a005a99c95acf4ebe7fd75e679fb 100644 (file)
@@ -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;
index 10a197482b9b2689bdaa047f93f8f894649025c4..f960729111f77d862577f1203d31532003c3a68c 100644 (file)
        {{/if}}
        </td><td>{{if $check.required}}(required){{/if}}</td></tr>
        {{if $check.help}}
-       <tr><td class="help" colspan="3"><blockquote>{{$check.help}}</blockquote></td></tr>
+       <tr><td class="help" colspan="3">
+               <blockquote>{{$check.help}}</blockquote>
+               {{if $check.error_msg}}
+               <div class="error_header"><b>{{$check.error_msg.head}}</br><a href="{{$check.error_msg.url}}">{{$check.error_msg.url}}</a></b></div>
+               <blockquote>{{$check.error_msg.msg}}</blockquote>
+               {{/if}}
+       </td></tr>
        {{/if}}
 {{/foreach}}
 </table>
index e1e8c5f3a6cc581c9b38afef16848583c1871577..029ebb0343591c35b34ca9465966be0d4d7e5a1f 100644 (file)
@@ -4,11 +4,14 @@
 <div id="login-group" role="group" aria-labelledby="login-head">
        <input type="hidden" name="auth-params" value="login" />
 
-       <div id="login-head" class="sr-only">{{$login}}</div>
+       <h3 id="login-head" class="sr-only">{{$login}}</h3>
 
        <div id="login_standard">
        {{include file="field_input.tpl" field=$lname}}
        {{include file="field_password.tpl" field=$lpassword}}
+       <div id="login-lost-password-link">
+               <a href="lostpass" title="{{$lostpass|escape:'html'}}" id="lost-password-link" >{{$lostlink}}</a>
+       </div>
        </div>
        
        {{if $openid}}
                </div>
        {{/if}}
 
-       {{include file="field_checkbox.tpl" field=$lremember}}
-
-       <div id="login-extra-links">
-               {{if $register}}<a href="register" title="{{$register.title|escape:'html'}}" id="register-link">{{$register.desc}}</a>{{/if}}
-               <a href="lostpass" title="{{$lostpass|escape:'html'}}" id="lost-password-link" >{{$lostlink}}</a>
-       </div>
-       
        <div id="login-submit-wrapper" >
                <input type="submit" name="submit" id="login-submit-button" value="{{$login|escape:'html'}}" />
        </div>
+
+       {{include file="field_checkbox.tpl" field=$lremember}}
        
        {{foreach $hiddens as $k=>$v}}
                <input type="hidden" name="{{$k}}" value="{{$v|escape:'html'}}" />
 </div>
 </form>
 
+{{if $register}}
+<div id="login-extra-links">
+       <h3 id="login-head" class="sr-only">{{$register.title|escape:'html'}}</h3>
+       <a href="register" title="{{$register.title|escape:'html'}}" id="register-link">{{$register.desc}}</a>
+</div>
+{{/if}}
 
 <script type="text/javascript"> $(document).ready(function() { $("#id_{{$lname.0}}").focus();} );</script>
index 037028ff44d8ad8880733848727dd5517991b9fe..c729d12820dc8be46d679502cdd5de284722341f 100644 (file)
@@ -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**
 
index 9081d9df47cb6c7c98244ad9673bf970a1307c00..55a653696abc832f2fd11b5fe69b6d73b171ea9f 100644 (file)
@@ -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 = "<strong>" . L10n::t("Note"). ": </strong>".L10n::t("Check image permissions if all users are allowed to visit the image");
+       $background_image_help = '<strong>' . L10n::t('Note') . ': </strong>' . 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);
 
index 3b3e32f75c3dd458ca5931d220830faba4161268..e1ac4f4da50a0e9bba131ac8202ba812a8a04a2c 100644 (file)
@@ -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-schema-love-music.png
deleted file mode 100644 (file)
index 8b73e58..0000000
Binary files a/view/theme/frio/img/screenshots/screenshot-schema-love-music.png and /dev/null differ
diff --git a/view/theme/frio/img/screenshots/screenshot-schema-red.png b/view/theme/frio/img/screenshots/screenshot-schema-red.png
deleted file mode 100644 (file)
index c6d49f2..0000000
Binary files a/view/theme/frio/img/screenshots/screenshot-schema-red.png and /dev/null differ
diff --git a/view/theme/frio/img/screenshots/screenshot-scheme-love-music.png b/view/theme/frio/img/screenshots/screenshot-scheme-love-music.png
new file mode 100644 (file)
index 0000000..8b73e58
Binary files /dev/null and b/view/theme/frio/img/screenshots/screenshot-scheme-love-music.png differ
diff --git a/view/theme/frio/img/screenshots/screenshot-scheme-red.png b/view/theme/frio/img/screenshots/screenshot-scheme-red.png
new file mode 100644 (file)
index 0000000..c6d49f2
Binary files /dev/null and b/view/theme/frio/img/screenshots/screenshot-scheme-red.png differ
index 2dc0345c7b2bcbbec35f3c43aa81c6254e2c1e1d..72026cf02447e37848f4e5d56c7fcf25a16e5d06 100644 (file)
@@ -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;
index 62b98b79ca8226e45a3ad33199346ef1be14614a..428d887883f3b6dc0b9e7809824e30634c739fcb 100644 (file)
@@ -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 {
index 1f816c5b2fdad7344bbf5826c7e45e07b7abfca5..3f8ed1ed0b0e87a857aff5e56c84781768d8bbff 100644 (file)
@@ -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 (file)
index 83aad53..0000000
+++ /dev/null
@@ -1,74 +0,0 @@
-<?php
-
-
-/**
- * @brief: Get info header of the shema
- *
- * This function parses the header of the shemename.php file for inormations like
- * Author, Description and Overwrites. Most of the code comes from the Addon::getInfo()
- * function. We use this to get the variables which get overwritten through the shema.
- * All color variables which get overwritten through the theme have to be
- * listed (comma seperated) in the shema header under Overwrites:
- * This seemst not to be the best solution. We need to investigate further.
- *
- * @param string $schema Name of the shema
- * @return array With theme information
- *    'author' => 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 (file)
index 0000000..538839b
--- /dev/null
@@ -0,0 +1,73 @@
+<?php
+
+/**
+ * @brief: Get info header of the scheme
+ *
+ * This function parses the header of the schemename.php file for informations like
+ * Author, Description and Overwrites. Most of the code comes from the Addon::getInfo()
+ * function. We use this to get the variables which get overwritten through the scheme.
+ * All color variables which get overwritten through the theme have to be
+ * listed (comma separated) in the scheme header under Overwrites:
+ * This seems not to be the best solution. We need to investigate further.
+ *
+ * @param string $scheme Name of the scheme
+ * @return array With theme information
+ *    'author' => 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;
+}
index edfec573b013f52ffe5aa9300642f3de1114c40d..64c4544cd877b1c7df4337fe394c94e54f95247e 100644 (file)
@@ -16,7 +16,7 @@
        <?php $frio = "view/theme/frio"; ?>
        <?php if(x($page,'htmlhead')) echo $page['htmlhead']; ?>
 </head>
-<body id=\"top\">";
+<body id="top">
 <?php if($_SERVER['REQUEST_URI'] == "/"){header('Location: /login');} ?>
 <a href="#content" class="sr-only sr-only-focusable">Skip to main content</a>
 <?php
diff --git a/view/theme/frio/schema/love-music.css b/view/theme/frio/schema/love-music.css
deleted file mode 100644 (file)
index 19ce590..0000000
+++ /dev/null
@@ -1,72 +0,0 @@
-/*
-    Licence    : AGPL
-
-    Created on : 28.03.2016, 03:13:19
-    Author     : rabuzarus
-*/
-
-body {
-    color: #000;
-}
-
-/*
- * Navbar
- */
-#topbar-first,
-nav.navbar {
-    box-shadow: 0 -1px 5px 2px #000;
-}
-#topbar-first .nav>li>a:hover,
-nav.navbar .nav>li>a:hover {
-    background-color: #000;
-    color: #15e3ff;
-}
-#topbar-first .nav>li>a.selected {
-    background: #e355e0;
-    color: #000;
-    padding: 9px;
-    border-radius: 8px;
-}
-#topbar-first #nav-notifications-menu li.notif-entry:hover,
-#topbar-second .nav>li>ul>li>a:hover,
-#topbar-second .nav>li>ul>li>a.active,
-#topbar-second .nav>li>a:hover,
-#topbar-second .nav .open>a,
-#topbar-second .nav>li.active,
-.nav-pills .dropdown-menu li:hover,
-.nav-tabs .dropdown-menu li:hover,
-.account .dropdown-menu li:hover,
-.contact-photo-wrapper .dropdown-menu li:hover,
-.nav-pills .dropdown-menu li.selected,
-.nav-tabs .dropdown-menu li.selected,
-.account .dropdown-menu li.selected,
-.contact-photo-wrapper .dropdown-menu li.selected,
-aside .widget li:hover,
-aside .widget li.selected,
-.nav-container .widget li:hover {
-    border-left:3px solid #15e3ff !important;
-}
-
-.panel,
-aside .widget,
-.nav-container .widget,
-#profile-page, .photos-content-wrapper,
-.settings-content-wrapper {
-    border-style: solid solid solid solid;
-    border-width: 1px;
-    border-color: #DDDDDD;
-    box-shadow: none;
-    border-radius: 15px;
-    color: #000;
-}
-
-aside .widget li a, aside .widget li a:hover,
-.panel .panel-body .wall-item-content,
-.toplevel_item .wall-item-container .btn-link {
-    color: #000;
-}
-
-.wall-item-content a:hover,
-nav.navbar .navbar-brand{
-    color: #15e3ff !important;
-}
diff --git a/view/theme/frio/schema/love-music.php b/view/theme/frio/schema/love-music.php
deleted file mode 100644 (file)
index 528093e..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-<?php
-       /* Licence: AGP
-        * Author: rabuzarus
-        * Overwrites: nav_bg, nav_icon_color, link_color, bgcolor, contentbg_transp, background_image, bg_image_option, link_hover_color
-        */
-
-       $nav_bg = "#000";
-       $nav_icon_color = "#e355e0";
-       $link_color = "#e355e0";
-       $bgcolor = "#fff";
-       $contentbg_transp = 100;
-       $background_image = "img/bg_circle.png";
-       $bg_image_option = "repeat";
-       $link_hover_color ="#15e3ff";
-
diff --git a/view/theme/frio/schema/red.php b/view/theme/frio/schema/red.php
deleted file mode 100644 (file)
index 540bc39..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-<?php
-/*
- * Name: Red
- * Author: Rabuzarus
- * 
- * List here all variables which will get overwritten through this schema
- * Overwrites: nav_bg, nav_icon_color, link_color, bgcolor, contentbg_transp
- */
-
-       $nav_bg = "#870000";
-       $nav_icon_color = "#f5f5f5";
-       $link_color = "#b50404";
-       $bgcolor = "#ededed";
-       $contentbg_transp = 95;
-
diff --git a/view/theme/frio/scheme/blue.php b/view/theme/frio/scheme/blue.php
new file mode 100644 (file)
index 0000000..bd98ad6
--- /dev/null
@@ -0,0 +1,16 @@
+<?php
+/*
+ * Name: Blue
+ * Author: Rabuzarus
+ *
+ * List here all variables which will get overwritten through this scheme
+ * Overwrites: nav_bg, nav_icon_color, link_color, background_color, login_bg_color, contentbg_transp
+ */
+
+       $nav_bg = "#708fa0";
+       $nav_icon_color = "#fff";
+       $link_color = "#6fdbe8";
+       $background_color = "#ededed";
+       $login_bg_color = "#ededed";
+       $contentbg_transp = 100;
+
diff --git a/view/theme/frio/scheme/love-music.css b/view/theme/frio/scheme/love-music.css
new file mode 100644 (file)
index 0000000..19ce590
--- /dev/null
@@ -0,0 +1,72 @@
+/*
+    Licence    : AGPL
+
+    Created on : 28.03.2016, 03:13:19
+    Author     : rabuzarus
+*/
+
+body {
+    color: #000;
+}
+
+/*
+ * Navbar
+ */
+#topbar-first,
+nav.navbar {
+    box-shadow: 0 -1px 5px 2px #000;
+}
+#topbar-first .nav>li>a:hover,
+nav.navbar .nav>li>a:hover {
+    background-color: #000;
+    color: #15e3ff;
+}
+#topbar-first .nav>li>a.selected {
+    background: #e355e0;
+    color: #000;
+    padding: 9px;
+    border-radius: 8px;
+}
+#topbar-first #nav-notifications-menu li.notif-entry:hover,
+#topbar-second .nav>li>ul>li>a:hover,
+#topbar-second .nav>li>ul>li>a.active,
+#topbar-second .nav>li>a:hover,
+#topbar-second .nav .open>a,
+#topbar-second .nav>li.active,
+.nav-pills .dropdown-menu li:hover,
+.nav-tabs .dropdown-menu li:hover,
+.account .dropdown-menu li:hover,
+.contact-photo-wrapper .dropdown-menu li:hover,
+.nav-pills .dropdown-menu li.selected,
+.nav-tabs .dropdown-menu li.selected,
+.account .dropdown-menu li.selected,
+.contact-photo-wrapper .dropdown-menu li.selected,
+aside .widget li:hover,
+aside .widget li.selected,
+.nav-container .widget li:hover {
+    border-left:3px solid #15e3ff !important;
+}
+
+.panel,
+aside .widget,
+.nav-container .widget,
+#profile-page, .photos-content-wrapper,
+.settings-content-wrapper {
+    border-style: solid solid solid solid;
+    border-width: 1px;
+    border-color: #DDDDDD;
+    box-shadow: none;
+    border-radius: 15px;
+    color: #000;
+}
+
+aside .widget li a, aside .widget li a:hover,
+.panel .panel-body .wall-item-content,
+.toplevel_item .wall-item-container .btn-link {
+    color: #000;
+}
+
+.wall-item-content a:hover,
+nav.navbar .navbar-brand{
+    color: #15e3ff !important;
+}
diff --git a/view/theme/frio/scheme/love-music.php b/view/theme/frio/scheme/love-music.php
new file mode 100644 (file)
index 0000000..1922824
--- /dev/null
@@ -0,0 +1,15 @@
+<?php
+       /* Licence: AGP
+        * Author: rabuzarus
+        * Overwrites: nav_bg, nav_icon_color, link_color, background_color, contentbg_transp, background_image, bg_image_option, link_hover_color
+        */
+
+       $nav_bg = "#000";
+       $nav_icon_color = "#e355e0";
+       $link_color = "#e355e0";
+       $background_color = "#fff";
+       $contentbg_transp = 100;
+       $background_image = "img/bg_circle.png";
+       $bg_image_option = "repeat";
+       $link_hover_color ="#15e3ff";
+
diff --git a/view/theme/frio/scheme/red.php b/view/theme/frio/scheme/red.php
new file mode 100644 (file)
index 0000000..f02e42f
--- /dev/null
@@ -0,0 +1,15 @@
+<?php
+/*
+ * Name: Red
+ * Author: Rabuzarus
+ * 
+ * List here all variables which will get overwritten through this scheme
+ * Overwrites: nav_bg, nav_icon_color, link_color, background_color, contentbg_transp
+ */
+
+       $nav_bg = "#870000";
+       $nav_icon_color = "#f5f5f5";
+       $link_color = "#b50404";
+       $background_color = "#ededed";
+       $contentbg_transp = 95;
+
index 044f2ab61c9d716312abce4c3c331bc3a9a240a0..621f5d0ccec8ef6f749ff7257dce52179b8bb042 100644 (file)
@@ -8,7 +8,7 @@ use Friendica\Model\Profile;
 
 require_once 'view/theme/frio/php/PHPColors/Color.php';
 
-$schemecss = "";
+$schemecss = '';
 $schemecssfile = false;
 $scheme_modified = 0;
 
@@ -19,15 +19,15 @@ if ($a->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)) {
index 787a82ebdcd14f7d3bbf7c3cb7973070b76148cf..1fde3634abebe8433a1f36f3fa08720026052dd7 100644 (file)
@@ -4,6 +4,8 @@
                        <input type="checkbox" name="{{$field.0}}" id="id_{{$field.0}}" value="1" {{if $field.2}}checked="checked"{{/if}} aria-checked="{{if $field.2}}true{{else}}false{{/if}}" aria-describedby="{{$field.0}}_tip" {{if $field.4}}{{$field.4}}{{/if}}>
                        <label for="id_{{$field.0}}">
                                {{$field.1}}
+                               {{if $field.3}}
                                <span class="help-block" id="{{$field.0}}_tip" role="tooltip">{{$field.3}}</span>
+                               {{/if}}
                        </label>
-       </div>
\ No newline at end of file
+       </div>
index 886d647e9cf1cdae1e0fa0f2c7eac2beaed4677a..704db346d265e66fba1f6a2f9ab1fd548da90d8d 100644 (file)
@@ -6,6 +6,8 @@
                {{if $field.4}}<span class="required">{{$field.4}}</span>{{/if}}
                <span class="input-group-addon"><i></i></span>
        </div>
-       <span id="{{$field.0}}_tip" class="help-block" role="tooltip">{{$field.3}}</span>
+       {{if $field.3}}
+       <span class="help-block" id="{{$field.0}}_tip" role="tooltip">{{$field.3}}</span>
+       {{/if}}
        <div id="end_{{$field.0}}" class="field_end"></div>
 </div>
index 20f529278d2228ab62d5bf80a3fe5a54dc8e8c56..158073a64e88bcc5a217fb5eb3e77f683fc7bcd4 100644 (file)
@@ -2,5 +2,7 @@
 <div class="form-group field custom">
        <label for="{{$field.0}}">{{$field.1}}</label>
        {{$field.2}}
-       <span class="help-block" id="{{$field.0}}_tip">{{$field.3}}</span>
+       {{if $field.3}}
+       <span class="help-block" id="{{$field.0}}_tip" role="tooltip">{{$field.3}}</span>
+       {{/if}}
 </div>
index 721a6535fbb6f501fbcc2d9d73bab8ad6aa5109a..c5f8ac86d2e5a00833c88ff8d0de40f22c80850a 100644 (file)
@@ -6,6 +6,8 @@
                {{if $field.4}}<span class="required">{{$field.4}}</span>{{/if}}
                <span class="input-group-addon image-select"><i class="fa fa-picture-o"></i></span>
        </div>
-       <span id="{{$field.0}}_tip" class="help-block" role="tooltip">{{$field.3}}</span>
+       {{if $field.3}}
+       <span class="help-block" id="{{$field.0}}_tip" role="tooltip">{{$field.3}}</span>
+       {{/if}}
        <div id="end_{{$field.0}}" class="field_end"></div>
 </div>
index bbd7535e54fef0cb3badbe5eb01748a67af20457..62a7d72e83387ac70466414fdb34f860707ecb23 100644 (file)
@@ -2,6 +2,8 @@
 <div id="id_{{$field.0}}_wrapper" class="form-group field input">
        <label for="id_{{$field.0}}" id="label_{{$field.0}}">{{$field.1}}{{if $field.4}}<span class="required"> {{$field.4}}</span>{{/if}}</label>
        <input class="form-control" name="{{$field.0}}" id="id_{{$field.0}}"{{if $field.6 eq "email"}} type="email"{{elseif $field.6 eq "url"}} type="url"{{else}} type="text"{{/if}} value="{{$field.2|escape:'html'}}"{{if $field.4 eq "required"}} required{{/if}}{{if $field.5 eq "autofocus"}} autofocus{{elseif $field.5}} {{$field.5}}{{/if}} aria-describedby="{{$field.0}}_tip">
-       <span id="{{$field.0}}_tip" class="help-block" role="tooltip">{{$field.3}}</span>
+       {{if $field.3}}
+       <span class="help-block" id="{{$field.0}}_tip" role="tooltip">{{$field.3}}</span>
+       {{/if}}
        <div class="clear"></div>
 </div>
index 8863d14c4d794cc5621c14499a878a0ab984039d..f898c87faf0001b5a81035afafd2db179492559c 100644 (file)
@@ -2,6 +2,8 @@
        <div class="form-group field checkbox">
                <input type="checkbox" name="{{$field.0}}" id="id_{{$field.0}}" value="{{$field.3|escape:'html'}}" {{if $field.2}}checked="checked"{{/if}} aria-checked="{{if $field.2}}true{{else}}false{{/if}}" aria-describedby="{{$field.0}}_tip">
                <label for="id_{{$field.0}}">{{$field.1}}</label>
-               <span class="help-block" role="tooltip" id="{{$field.0}}_tip">{{$field.4}}</span>
+               {{if $field.4}}
+               <span class="help-block" id="{{$field.0}}_tip" role="tooltip">{{$field.4}}</span>
+               {{/if}}
        </div>
        <div class="clear"></div>
index 8081f9cf110f2a374b2b3d73c1ca478925429dec..66f8c9e80927c1dedc91b4c510594011b24ab306 100644 (file)
@@ -2,6 +2,8 @@
 <div id="id_{{$field.0}}_wrapper" class="form-group field input openid">
        <label for="id_{{$field.0}}" id="label_{{$field.0}}">{{$field.1}}</label>
        <input class="form-control" name="{{$field.0}}" id="id_{{$field.0}}" type="text" value="{{$field.2|escape:'html'}}" aria-describedby="{{$field.0}}_tip">
-       <span id="{{$field.0}}_tip" class="help-block" role="tooltip">{{$field.3}}</span>
+       {{if $field.3}}
+       <span class="help-block" id="{{$field.0}}_tip" role="tooltip">{{$field.3}}</span>
+       {{/if}}
        <div class="clear"></div>
 </div>
index 31defaf33c31470deb4a9cf83d1ab3cc0a4d6350..7bef420a18aea32fbdb187d8eef47cf4d43f3f0b 100644 (file)
@@ -2,6 +2,8 @@
 <div id="id_{{$field.0}}_wrapper" class="form-group field input password">
        <label for="id_{{$field.0}}" id="label_{{$field.0}}">{{$field.1}}{{if $field.4}}<span class="required"> {{$field.4}}</span>{{/if}}</label>
        <input class="form-control" name="{{$field.0}}" id="id_{{$field.0}}" type="password" value="{{$field.2|escape:'html'}}" {{if $field.4 eq "required"}} required{{/if}}{{if $field.5 eq "autofocus"}} autofocus{{elseif $field.5}} {{$field.5}}{{/if}} aria-describedby="{{$field.0}}_tip">
-       <span id="{{$field.0}}_tip" class="help-block" role="tooltip">{{$field.3}}</span>
+       {{if $field.3}}
+       <span class="help-block" id="{{$field.0}}_tip" role="tooltip">{{$field.3}}</span>
+       {{/if}}
        <div class="clear"></div>
 </div>
index 42c145e3a89ee3b701ff38fe3dccb2c8c97ac6a7..725e1c96aff8926a77f43c7c02f27d34761964ef 100644 (file)
@@ -4,7 +4,9 @@
                        <input type="radio" name="{{$field.0}}" id="id_{{$field.0}}_{{$field.2}}" value="{{$field.2}}" {{if $field.4}}checked{{/if}} aria-checked="{{if $field.4}}true{{else}}false{{/if}}" aria-describedby="{{$field.0}}_{{$field.2}}_tip">
                        <label for="id_{{$field.0}}_{{$field.2}}">
                                {{$field.1}}
+                               {{if $field.3}}
                                <span class="help-block" id="{{$field.0}}_{{$field.2}}_tip" role="tooltip">{{$field.3}}</span>
+                               {{/if}}
                        </label>
                </div>
-       </div>
\ No newline at end of file
+       </div>
index 9c03151214da869a42ff5e96b2ac637470777b93..594b91002efa5e246f783772ec538c106f9c6ed6 100644 (file)
@@ -4,5 +4,7 @@
                <select name="{{$field.0}}" id="id_{{$field.0}}" class="form-control" aria-describedby="{{$field.0}}_tip">
                        {{foreach $field.4 as $opt=>$val}}<option value="{{$opt|escape:'html'}}" {{if $opt==$field.2}}selected="selected"{{/if}}>{{$val}}</option>{{/foreach}}
                </select>
-               <span class="help-block" id="{{$field.0}}_tip">{{$field.3}}</span>
-</div>
\ No newline at end of file
+               {{if $field.3}}
+               <span class="help-block" id="{{$field.0}}_tip" role="tooltip">{{$field.3}}</span>
+               {{/if}}
+</div>
index d4f4768603b3992f04795185902db0d5f3cfbb82..52b63079c1a2db07f09285fbc16181d25847be19 100644 (file)
@@ -4,5 +4,7 @@
        <select class="form-control" name="{{$field.0}}" id="id_{{$field.0}}" aria-describedby="{{$field.0}}_tip">
                {{$field.4}}
        </select>
-       <span class="help-block" id="{{$field.0}}_tip">{{$field.3}}</span>
-</div>
\ No newline at end of file
+       {{if $field.3}}
+       <span class="help-block" id="{{$field.0}}_tip" role="tooltip">{{$field.3}}</span>
+       {{/if}}
+</div>
index 8ef56babb78c3b061367e11e9a9564f87b60b7b2..1aea484de786fe3a9cb530789692689270e0044e 100644 (file)
@@ -2,6 +2,8 @@
        <div class="form-group field textarea">
                <label for="id_{{$field.0}}">{{$field.1}}</label>
                <textarea class="form-control text-autosize" name="{{$field.0}}" id="id_{{$field.0}}" {{if $field.4}}{{$field.4}}{{/if}} aria-describedby="{{$field.0}}_tip">{{$field.2}}</textarea>
-               <span id="{{$field.0}}_tip" class="help-block" role="tooltip">{{$field.3}}</span>
+               {{if $field.3}}
+               <span class="help-block" id="{{$field.0}}_tip" role="tooltip">{{$field.3}}</span>
+               {{/if}}
                <div class="clear"></div>
        </div>
index 3b2cb780c89193a0d21b9fdfaa63736d685f516b..fc1f7243af55cb5576d3a88c64c2567630bb877c 100644 (file)
@@ -5,6 +5,8 @@
        <select class="form-control" name="{{$field.0}}" id="id_{{$field.0}}" {{if $field.5=="preview"}}onchange="previewTheme(this);"{{/if}} aria-describedby="{{$field.0}}_tip" >
                {{foreach $field.4 as $opt=>$val}}<option value="{{$opt}}" {{if $opt==$field.2}}selected="selected"{{/if}}>{{$val}}</option>{{/foreach}}
        </select>
+       {{if $field.3}}
        <span class="help-block" id="{{$field.0}}_tip" role="tooltip">{{$field.3}}</span>
+       {{/if}}
        {{if $field.5=="preview"}}<div id="theme-preview"></div>{{/if}}
-</div>
\ No newline at end of file
+</div>
index 85096c70e3b44835fe5ae79aa8aea23b0c7e86cd..47649fe676b6cc28695da3b2f08e0f1a45a7c11f 100644 (file)
@@ -14,6 +14,8 @@
                                <span class="toggle-handle btn btn-default btn-xs"></span>
                        </div>
                </div>
+               {{if $field.3}}
                <span class="help-block" id="{{$field.0}}_tip" role="tooltip">{{$field.3}}</span>
+               {{/if}}
        </div>
        <div class="clear"></div>
index aaa42d24b4e00214e5d7b45501d4a3ae8992af1a..ae586a3e6a020bbded3e3612aafaa6b7f87b7438 100644 (file)
@@ -8,6 +8,10 @@
                <div id="login_standard">
                        {{include file="field_input.tpl" field=$lname}}
                        {{include file="field_password.tpl" field=$lpassword}}
+                       <div id="login-lost-password-link">
+                               <a href="lostpass" title="{{$lostpass|escape:'html'}}" id="lost-password-link" >{{$lostlink}}</a>
+                       </div>
+                       <div id="login-end"></div>
                </div>
 
                {{if $openid}}
                {{include file="field_checkbox.tpl" field=$lremember}}
 
                <div id="login-submit-wrapper">
-                       <a href="lostpass" title="{{$lostpass|escape:'html'}}" id="lost-password-link">{{$lostlink}}</a>
-
                        <div class="pull-right" >
-                               {{if $register}}<a href="register" title="{{$register.title|escape:'html'}}" id="register-link" class="btn btn-default">{{$register.desc}}</a>{{/if}}
                                <button type="submit" name="submit" id="login-submit-button" class="btn btn-primary" value="{{$login|escape:'html'}}">{{$login|escape:'html'}}</button>
                        </div>
                </div>
                        <input type="hidden" name="{{$k}}" value="{{$v|escape:'html'}}" />
                {{/foreach}}
 
+               <div id="login-end"></div>
        </div>
 </form>
 
+{{if $register}}
+<div id="login-extra-links">
+       <h3 id="login-head" class="sr-only">{{$register.title|escape:'html'}}</h3>
+       <a href="register" title="{{$register.title|escape:'html'}}" id="register-link" class="btn btn-default">{{$register.desc}}</a>
+</div>
+{{/if}}
+
 <script type="text/javascript"> $(document).ready(function() { $("#id_{{$lname.0}}").focus();} );</script>
index adc2150cf9f64e204d0ebe245a2252e59a844032..50a8934d1ba1cacd519a92a4e5d36a74c2f32880 100644 (file)
@@ -4,13 +4,13 @@
 <script src="{{$baseurl}}/view/theme/frio/frameworks/jRange/jquery.range.js"></script>
 <script type="text/javascript" src="{{$baseurl}}/view/js/ajaxupload.js" ></script>
 
-{{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}}
 
 <div id="frio_bg_image_options" style="display: none;">
+       <label>{{$bg_image_options_title}}:</label>
 {{foreach $bg_image_options as $options}}
        {{include file="field_radio.tpl" field=$options}}
 {{/foreach}}
index 9d245d2cb2b10170047dc1e226fb4638f70e840a..4f5756caf99aba834962e0d14d5dc6b23a237edd 100644 (file)
@@ -18,7 +18,7 @@ use Friendica\Core\System;
 use Friendica\Database\DBM;
 use Friendica\Model\Profile;
 
-$frio = "view/theme/frio";
+$frio = 'view/theme/frio';
 
 global $frio;
 
@@ -34,21 +34,21 @@ function frio_init(App $a)
 
        $style = PConfig::get(local_user(), 'frio', 'style');
 
-       $frio = "view/theme/frio";
+       $frio = 'view/theme/frio';
 
        global $frio;
 
        // if the device is a mobile device set js is_mobile
        // variable so the js scripts can use this information
        if ($a->is_mobile || $a->is_tablet) {
-               $a->page["htmlhead"] .= <<< EOT
+               $a->page['htmlhead'] .= <<< EOT
                        <script type="text/javascript">
                                var is_mobile = 1;
                        </script>
 EOT;
        }
 
-       if ($style == "") {
+       if ($style == '') {
                $style = Config::get('frio', 'style');
        }
 }
@@ -62,7 +62,7 @@ function frio_install()
        Addon::registerHook('acl_lookup_end', 'view/theme/frio/theme.php', 'frio_acl_lookup');
        Addon::registerHook('display_item', 'view/theme/frio/theme.php', 'frio_display_item');
 
-       logger("installed theme frio");
+       logger('installed theme frio');
 }
 
 function frio_uninstall()
@@ -74,7 +74,7 @@ function frio_uninstall()
        Addon::unregisterHook('acl_lookup_end', 'view/theme/frio/theme.php', 'frio_acl_lookup');
        Addon::unregisterHook('display_item', 'view/theme/frio/theme.php', 'frio_display_item');
 
-       logger("uninstalled theme frio");
+       logger('uninstalled theme frio');
 }
 
 /**
@@ -92,26 +92,26 @@ function frio_uninstall()
 function frio_item_photo_links(App $a, &$body_info)
 {
        $occurence = 0;
-       $p = Plaintext::getBoundariesPosition($body_info['html'], "<a", ">");
+       $p = Plaintext::getBoundariesPosition($body_info['html'], '<a', '>');
        while ($p !== false && ($occurence++ < 500)) {
                $link = substr($body_info['html'], $p['start'], $p['end'] - $p['start']);
                $matches = [];
 
-               preg_match("/\/photos\/[\w]+\/image\/([\w]+)/", $link, $matches);
+               preg_match('/\/photos\/[\w]+\/image\/([\w]+)/', $link, $matches);
                if ($matches) {
                        // Replace the link for the photo's page with a direct link to the photo itself
                        $newlink = str_replace($matches[0], "/photo/{$matches[1]}", $link);
 
                        // Add a "quiet" parameter to any redir links to prevent the "XX welcomes YY" info boxes
-                       $newlink = preg_replace("/href=\"([^\"]+)\/redir\/([^\"]+)&url=([^\"]+)\"/", 'href="$1/redir/$2&quiet=1&url=$3"', $newlink);
+                       $newlink = preg_replace('/href="([^"]+)\/redir\/([^"]+)&url=([^"]+)"/', 'href="$1/redir/$2&quiet=1&url=$3"', $newlink);
 
                        // Having any arguments to the link for Colorbox causes it to fetch base64 code instead of the image
-                       $newlink = preg_replace("/\/[?&]zrl=([^&\"]+)/", '', $newlink);
+                       $newlink = preg_replace('/\/[?&]zrl=([^&"]+)/', '', $newlink);
 
                        $body_info['html'] = str_replace($link, $newlink, $body_info['html']);
                }
 
-               $p = Plaintext::getBoundariesPosition($body_info['html'], "<a", ">", $occurence);
+               $p = Plaintext::getBoundariesPosition($body_info['html'], '<a', '>', $occurence);
        }
 }
 
@@ -127,10 +127,10 @@ function frio_item_photo_links(App $a, &$body_info)
  */
 function frio_item_photo_menu(App $a, &$arr)
 {
-       foreach ($arr["menu"] as $k => $v) {
+       foreach ($arr['menu'] as $k => $v) {
                if (strpos($v, 'poke/?f=&c=') === 0 || strpos($v, 'message/new/') === 0) {
-                       $v = "javascript:addToModal('" . $v . "'); return false;";
-                       $arr["menu"][$k] = $v;
+                       $v = 'javascript:addToModal(\'' . $v . '\'); return false;';
+                       $arr['menu'][$k] = $v;
                }
        }
 }
@@ -149,9 +149,9 @@ function frio_item_photo_menu(App $a, &$arr)
  */
 function frio_contact_photo_menu(App $a, &$args)
 {
-       $cid = $args["contact"]["id"];
-       $pokelink = $args["menu"]["poke"][1];
-       $pmlink = $args["menu"]["pm"][1];
+       $cid = $args['contact']['id'];
+       $pokelink = $args['menu']['poke'][1];
+       $pmlink = $args['menu']['pm'][1];
 
        // Set the the indicator for opening the status, profile and photo pages
        // in a new tab to false if the contact a dfrn (friendica) contact
@@ -160,12 +160,12 @@ function frio_contact_photo_menu(App $a, &$args)
        // friendica servers as remote user or visitor
        //
        // The value for opening in a new tab is e.g. when
-       // $args["menu"]["status"][2] is true. If the value of the [2] key is true
+       // $args['menu']['status'][2] is true. If the value of the [2] key is true
        // and if it's a friendica contact we set it to false
-       foreach ($args["menu"] as $k => $v) {
-               if ($k === "status" || $k === "profile" || $k === "photos") {
-                       $v[2] = (($args["contact"]["network"] === "dfrn") ? false : true);
-                       $args["menu"][$k][2] = $v[2];
+       foreach ($args['menu'] as $k => $v) {
+               if ($k === 'status' || $k === 'profile' || $k === 'photos') {
+                       $v[2] = (($args['contact']['network'] === 'dfrn') ? false : true);
+                       $args['menu'][$k][2] = $v[2];
                }
        }
 
@@ -173,11 +173,11 @@ function frio_contact_photo_menu(App $a, &$args)
        // Later we can make conditions in the corresponing templates (e.g.
        // contact_template.tpl)
        if (strpos($pokelink, 'poke/?f=&c=' . $cid) !== false) {
-               $args["menu"]["poke"][3] = "modal";
+               $args['menu']['poke'][3] = 'modal';
        }
 
        if (strpos($pmlink, 'message/new/' . $cid) !== false) {
-               $args["menu"]["pm"][3] = "modal";
+               $args['menu']['pm'][3] = 'modal';
        }
 }
 
@@ -231,43 +231,43 @@ function frio_remote_nav($a, &$nav)
                // user info
                $r = q("SELECT `micro` FROM `contact` WHERE `uid` = %d AND `self`", intval($a->user['uid']));
 
-               $r[0]['photo'] = (DBM::is_result($r) ? $a->remove_baseurl($r[0]['micro']) : "images/person-48.jpg");
+               $r[0]['photo'] = (DBM::is_result($r) ? $a->remove_baseurl($r[0]['micro']) : 'images/person-48.jpg');
                $r[0]['name'] = $a->user['username'];
        } elseif (!local_user() && remote_user()) {
                $r = q("SELECT `name`, `nick`, `micro` AS `photo` FROM `contact` WHERE `id` = %d", intval(remote_user()));
-               $nav['remote'] = L10n::t("Guest");
+               $nav['remote'] = L10n::t('Guest');
        } elseif (Profile::getMyURL()) {
                $r = q("SELECT `name`, `nick`, `photo` FROM `gcontact`
                                WHERE `addr` = '%s' AND `network` = 'dfrn'",
                        dbesc($webbie));
-               $nav['remote'] = L10n::t("Visitor");
+               $nav['remote'] = L10n::t('Visitor');
        } else {
                $r = false;
        }
 
        if (DBM::is_result($r)) {
                $nav['userinfo'] = [
-                       'icon' => (DBM::is_result($r) ? $r[0]['photo'] : "images/person-48.jpg"),
+                       'icon' => (DBM::is_result($r) ? $r[0]['photo'] : 'images/person-48.jpg'),
                        'name' => $r[0]['name'],
                ];
        }
 
        if (!local_user() && !empty($server_url)) {
-               $nav['logout'] = [$server_url . '/logout', L10n::t('Logout'), "", L10n::t('End this session')];
+               $nav['logout'] = [$server_url . '/logout', L10n::t('Logout'), '', L10n::t('End this session')];
 
                // user menu
-               $nav['usermenu'][] = [$server_url . '/profile/' . $a->user['nickname'], L10n::t('Status'), "", L10n::t('Your posts and conversations')];
-               $nav['usermenu'][] = [$server_url . '/profile/' . $a->user['nickname'] . '?tab=profile', L10n::t('Profile'), "", L10n::t('Your profile page')];
-               $nav['usermenu'][] = [$server_url . '/photos/' . $a->user['nickname'], L10n::t('Photos'), "", L10n::t('Your photos')];
-               $nav['usermenu'][] = [$server_url . '/videos/' . $a->user['nickname'], L10n::t('Videos'), "", L10n::t('Your videos')];
-               $nav['usermenu'][] = [$server_url . '/events/', L10n::t('Events'), "", L10n::t('Your events')];
+               $nav['usermenu'][] = [$server_url . '/profile/' . $a->user['nickname'], L10n::t('Status'), '', L10n::t('Your posts and conversations')];
+               $nav['usermenu'][] = [$server_url . '/profile/' . $a->user['nickname'] . '?tab=profile', L10n::t('Profile'), '', L10n::t('Your profile page')];
+               $nav['usermenu'][] = [$server_url . '/photos/' . $a->user['nickname'], L10n::t('Photos'), '', L10n::t('Your photos')];
+               $nav['usermenu'][] = [$server_url . '/videos/' . $a->user['nickname'], L10n::t('Videos'), '', L10n::t('Your videos')];
+               $nav['usermenu'][] = [$server_url . '/events/', L10n::t('Events'), '', L10n::t('Your events')];
 
                // navbar links
-               $nav['network'] = [$server_url . '/network', L10n::t('Network'), "", L10n::t('Conversations from your friends')];
-               $nav['events'] = [$server_url . '/events', L10n::t('Events'), "", L10n::t('Events and Calendar')];
-               $nav['messages'] = [$server_url . '/message', L10n::t('Messages'), "", L10n::t('Private mail')];
-               $nav['settings'] = [$server_url . '/settings', L10n::t('Settings'), "", L10n::t('Account settings')];
-               $nav['contacts'] = [$server_url . '/contacts', L10n::t('Contacts'), "", L10n::t('Manage/edit friends and contacts')];
+               $nav['network'] = [$server_url . '/network', L10n::t('Network'), '', L10n::t('Conversations from your friends')];
+               $nav['events'] = [$server_url . '/events', L10n::t('Events'), '', L10n::t('Events and Calendar')];
+               $nav['messages'] = [$server_url . '/message', L10n::t('Messages'), '', L10n::t('Private mail')];
+               $nav['settings'] = [$server_url . '/settings', L10n::t('Settings'), '', L10n::t('Account settings')];
+               $nav['contacts'] = [$server_url . '/contacts', L10n::t('Contacts'), '', L10n::t('Manage/edit friends and contacts')];
                $nav['sitename'] = $a->config['sitename'];
        }
 }
@@ -289,18 +289,18 @@ function frio_acl_lookup(App $a, &$results)
 {
        require_once 'mod/contacts.php';
 
-       $nets = x($_GET, "nets") ? notags(trim($_GET["nets"])) : "";
+       $nets = x($_GET, 'nets') ? notags(trim($_GET['nets'])) : '';
 
        // we introduce a new search type, r should do the same query like it's
        // done in /mod/contacts for connections
-       if ($results["type"] !== "r") {
+       if ($results['type'] !== 'r') {
                return;
        }
 
        $sql_extra = '';
-       if ($results["search"]) {
-               $search_txt = dbesc(protect_sprintf(preg_quote($results["search"])));
-               $sql_extra .= " AND (`attag` LIKE '%%" . dbesc($search_txt) . "%%' OR `name` LIKE '%%" . dbesc($search_txt) . "%%' OR `nick` LIKE '%%" . dbesc($search_txt) . "%%' OR `addr` LIKE '%%" . dbesc($search_txt) . "%%') ";
+       if ($results['search']) {
+               $search_txt = dbesc(protect_sprintf(preg_quote($results['search'])));
+               $sql_extra .= " AND (`attag` LIKE '%%" . dbesc($search_txt) . "%%' OR `name` LIKE '%%" . dbesc($search_txt) . "%%' OR `nick` LIKE '%%" . dbesc($search_txt) . "%%') ";
        }
 
        if ($nets) {
@@ -311,7 +311,7 @@ function frio_acl_lookup(App $a, &$results)
        $r = q("SELECT COUNT(*) AS `total` FROM `contact`
                WHERE `uid` = %d AND NOT `self` AND NOT `pending` $sql_extra ", intval($_SESSION['uid']));
        if (DBM::is_result($r)) {
-               $total = $r[0]["total"];
+               $total = $r[0]['total'];
        }
 
        $sql_extra3 = Widget::unavailableNetworks();
@@ -328,8 +328,8 @@ function frio_acl_lookup(App $a, &$results)
                }
        }
 
-       $results["items"] = $contacts;
-       $results["tot"] = $total;
+       $results['items'] = $contacts;
+       $results['tot'] = $total;
 }
 
 /**
index 66721a1b8891d2fad68de601feb90782b7581827..b528ca4bd0749a1abe0950add8253ecaef518476 100644 (file)
@@ -91,6 +91,13 @@ nav ul {
     width: 100% !important; height: 110px !important;
   }
 
+  #login-extra-links, #login-form {
+    /* width: 341px; */
+    width: 100%;
+  }
+  #id_remember_label {
+    width: unset;
+  }
 }
 
 @media screen and (max-width: 480px) {
index ba10b16021959413ad77b3b2dcadd8e53198788f..288ede31d95a6768fdcdcb8067a0be7db352a90c 100644 (file)
@@ -2422,10 +2422,60 @@ aside #div_id_remember label {
  float:  inherit;
 }
 
+#login-group {
+  overflow: hidden;
+}
+
+#login-head {
+  position: unset;
+  width: unset;
+  height: unset;
+  margin-bottom: 10px;
+}
+
+div #wrapper_username {
+  padding: 0px;
+}
+
+div #wrapper_password {
+  padding: 0px;
+  margin-bottom: 0px;
+}
+
+#div_id_remember {
+  float: left;
+  width: unset;
+}
+
+#remember_tip {
+  display: none;
+}
+
+#login-submit-wrapper {
+  float: right;
+}
+
+#login-form {
+  margin-top: 20px;
+}
+
+#login-extra-links, #login-form {
+  /* width: 341px; */
+  width: 341px;
+  clear: both;
+  border-top: 3px solid white;
+  padding-top: 20px;
+}
+
 aside div #login-submit-button {
   margin-left:0px;
 }
 
+#login-lost-password-link {
+  margin-bottom: 10px;
+  float: right;
+}
+
 aside #register-link, aside #lost-password-link {
   display: block;
 }