]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #5214 from abanink/5118
authorHypolite Petovan <mrpetovan@gmail.com>
Thu, 14 Jun 2018 14:32:02 +0000 (10:32 -0400)
committerGitHub <noreply@github.com>
Thu, 14 Jun 2018 14:32:02 +0000 (10:32 -0400)
Added PHP part of JavaScript hooks to Addons.md doc

41 files changed:
bin/daemon.php
include/api.php
include/conversation.php
include/dba.php
include/enotify.php
include/text.php
mod/acl.php
mod/contacts.php
mod/display.php
mod/notes.php
mod/poke.php
mod/profile.php
mod/register.php
mod/search.php
mod/share.php
mod/subthread.php
mod/tagger.php
src/App.php
src/Content/Widget/TagCloud.php
src/Database/DBStructure.php
src/Model/Contact.php
src/Model/Item.php
src/Object/Post.php
src/Protocol/PortableContact.php
tests/ApiTest.php
tests/datasets/api.yml
view/lang/cs/messages.po
view/lang/cs/strings.php
view/lang/de/messages.po
view/lang/de/strings.php
view/lang/en-us/messages.po
view/lang/en-us/strings.php
view/lang/fi-fi/messages.po
view/lang/fi-fi/strings.php
view/lang/it/messages.po
view/lang/it/strings.php
view/lang/nl/messages.po
view/lang/nl/strings.php
view/lang/pl/messages.po
view/lang/pl/strings.php
view/theme/frio/js/theme.js

index a92446c65b134c356aaa4a9fd817a02a97490e8d..acb26d8199bb68e94d2d5b4442caee6c170d7cdc 100755 (executable)
@@ -97,20 +97,25 @@ logger('Starting worker daemon.', LOGGER_DEBUG);
 echo "Starting worker daemon.\n";
 
 // Switch over to daemon mode.
-if ($pid = pcntl_fork())
+if ($pid = pcntl_fork()) {
        return;     // Parent
+}
 
 fclose(STDIN);  // Close all of the standard
 fclose(STDOUT); // file descriptors as we
 fclose(STDERR); // are running as a daemon.
 
+dba::disconnect();
+
 register_shutdown_function('shutdown');
 
-if (posix_setsid() < 0)
+if (posix_setsid() < 0) {
        return;
+}
 
-if ($pid = pcntl_fork())
+if ($pid = pcntl_fork()) {
        return;     // Parent
+}
 
 // We lose the database connection upon forking
 dba::connect($db_host, $db_user, $db_pass, $db_data);
@@ -139,6 +144,10 @@ while (true) {
        Worker::spawnWorker($do_cron);
 
        if ($do_cron) {
+               // We force a reconnect of the database connection.
+               // This is done to ensure that the connection don't get lost over time.
+               dba::reconnect();
+
                $last_cron = time();
        }
 
index 91a8d42c46cddc9aff089b8d955a45d0a8cf0794..00c2173c38b1b8f4c4297047928e1b8396447f42 100644 (file)
@@ -686,14 +686,8 @@ function api_get_user(App $a, $contact_id = null)
                        $uinfo[0]['network'] = NETWORK_DFRN;
                }
 
-               $usr = q(
-                       "SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
-                       intval(api_user())
-               );
-               $profile = q(
-                       "SELECT * FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
-                       intval(api_user())
-               );
+               $usr = dba::selectFirst('user', ['default-location'], ['uid' => api_user()]);
+               $profile = dba::selectFirst('profile', ['about'], ['uid' => api_user(), 'is-default' => true]);
 
                /// @TODO old-lost code? (twice)
                // Counting is deactivated by now, due to performance issues
@@ -760,14 +754,14 @@ function api_get_user(App $a, $contact_id = null)
 
        $pcontact_id  = Contact::getIdForURL($uinfo[0]['url'], 0, true);
 
-       if (!empty($profile[0]['about'])) {
-               $description = $profile[0]['about'];
+       if (!empty($profile['about'])) {
+               $description = $profile['about'];
        } else {
                $description = $uinfo[0]["about"];
        }
 
-       if (!empty($usr[0]['default-location'])) {
-               $location = $usr[0]['default-location'];
+       if (!empty($usr['default-location'])) {
+               $location = $usr['default-location'];
        } elseif (!empty($uinfo[0]["location"])) {
                $location = $uinfo[0]["location"];
        } else {
@@ -1602,7 +1596,6 @@ function api_search($type)
        }
 
        $data = [];
-       $sql_extra = '';
 
        if (!x($_REQUEST, 'q')) {
                throw new BadRequestException("q parameter is required.");
@@ -1622,24 +1615,20 @@ function api_search($type)
 
        $start = $page * $count;
 
+       $condition = ["`verb` = ? AND `item`.`id` > ?
+               AND (`item`.`uid` = 0 OR (`item`.`uid` = ? AND NOT `item`.`global`))
+               AND `item`.`body` LIKE CONCAT('%',?,'%')",
+               ACTIVITY_POST, $since_id, api_user(), $_REQUEST['q']];
+
        if ($max_id > 0) {
-               $sql_extra .= ' AND `item`.`id` <= ' . intval($max_id);
+               $condition[0] .= " AND `item`.`id` <= ?";
+               $condition[] = $max_id;
        }
 
-       $r = dba::p(
-               "SELECT ".item_fieldlists()."
-               FROM `item` ".item_joins(api_user())."
-               WHERE ".item_condition()." AND (`item`.`uid` = 0 OR (`item`.`uid` = ? AND NOT `item`.`global`))
-               AND `item`.`body` LIKE CONCAT('%',?,'%')
-               $sql_extra
-               AND `item`.`id`>?
-               ORDER BY `item`.`id` DESC LIMIT ".intval($start)." ,".intval($count)." ",
-               api_user(),
-               $_REQUEST['q'],
-               $since_id
-       );
+       $params = ['order' => ['id' => true], 'limit' => [$start, $count]];
+       $statuses = Item::select(api_user(), [], $condition, $params);
 
-       $data['status'] = api_format_items(dba::inArray($r), $user_info);
+       $data['status'] = api_format_items(dba::inArray($statuses), $user_info);
 
        return api_format_data("statuses", $type, $data);
 }
@@ -1689,37 +1678,30 @@ function api_statuses_home_timeline($type)
 
        $start = $page * $count;
 
-       $sql_extra = '';
+       $condition = ["`uid` = ? AND `verb` = ? AND `item`.`id` > ?", api_user(), ACTIVITY_POST, $since_id];
+
        if ($max_id > 0) {
-               $sql_extra .= ' AND `item`.`id` <= ' . intval($max_id);
+               $condition[0] .= " AND `item`.`id` <= ?";
+               $condition[] = $max_id;
        }
        if ($exclude_replies > 0) {
-               $sql_extra .= ' AND `item`.`parent` = `item`.`id`';
+               $condition[0] .= ' AND `item`.`parent` = `item`.`id`';
        }
        if ($conversation_id > 0) {
-               $sql_extra .= ' AND `item`.`parent` = ' . intval($conversation_id);
+               $condition[0] .= " AND `item`.`parent` = ?";
+               $condition[] = $conversation_id;
        }
 
-       $r = q("SELECT `item`.* FROM `item`
-               STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
-                       AND (NOT `contact`.`blocked` OR `contact`.`pending`)
-               WHERE `item`.`uid` = %d AND `verb` = '%s'
-               AND `item`.`visible` AND NOT `item`.`moderated` AND NOT `item`.`deleted`
-               $sql_extra
-               AND `item`.`id` > %d
-               ORDER BY `item`.`id` DESC LIMIT %d ,%d",
-               intval(api_user()),
-               dbesc(ACTIVITY_POST),
-               intval($since_id),
-               intval($start),
-               intval($count)
-       );
+       $params = ['order' => ['id' => true], 'limit' => [$start, $count]];
+       $statuses = Item::select(api_user(), [], $condition, $params);
 
-       $ret = api_format_items($r, $user_info, false, $type);
+       $items = dba::inArray($statuses);
+
+       $ret = api_format_items($items, $user_info, false, $type);
 
        // Set all posts from the query above to seen
        $idarray = [];
-       foreach ($r as $item) {
+       foreach ($items as $item) {
                $idarray[] = intval($item["id"]);
        }
 
@@ -1779,61 +1761,35 @@ function api_statuses_public_timeline($type)
        $sql_extra = '';
 
        if ($exclude_replies && !$conversation_id) {
+               $condition = ["`verb` = ? AND `iid` > ? AND NOT `private` AND `wall` AND NOT `user`.`hidewall`",
+                       ACTIVITY_POST, $since_id];
+
                if ($max_id > 0) {
-                       $sql_extra = 'AND `thread`.`iid` <= ' . intval($max_id);
-               }
-
-               $r = dba::p(
-                       "SELECT " . item_fieldlists() . "
-                       FROM `thread`
-                       STRAIGHT_JOIN `item` ON `item`.`id` = `thread`.`iid`
-                       " . item_joins(api_user()) . "
-                       STRAIGHT_JOIN `user` ON `user`.`uid` = `thread`.`uid`
-                               AND NOT `user`.`hidewall`
-                       AND `verb` = ?
-                       AND NOT `thread`.`private`
-                       AND `thread`.`wall`
-                       AND `thread`.`visible`
-                       AND NOT `thread`.`deleted`
-                       AND NOT `thread`.`moderated`
-                       AND `thread`.`iid` > ?
-                       $sql_extra
-                       ORDER BY `thread`.`iid` DESC
-                       LIMIT " . intval($start) . ", " . intval($count),
-                       ACTIVITY_POST,
-                       $since_id
-               );
+                       $condition[0] .= " AND `thread`.`iid` <= ?";
+                       $condition[] = $max_id;
+               }
+
+               $params = ['order' => ['iid' => true], 'limit' => [$start, $count]];
+               $statuses = Item::selectThread(api_user(), [], $condition, $params);
 
-               $r = dba::inArray($r);
+               $r = dba::inArray($statuses);
        } else {
+               $condition = ["`verb` = ? AND `id` > ? AND NOT `private` AND `wall` AND NOT `user`.`hidewall` AND `item`.`origin`",
+                       ACTIVITY_POST, $since_id];
+
                if ($max_id > 0) {
-                       $sql_extra = 'AND `item`.`id` <= ' . intval($max_id);
+                       $condition[0] .= " AND `item`.`id` <= ?";
+                       $condition[] = $max_id;
                }
                if ($conversation_id > 0) {
-                       $sql_extra .= ' AND `item`.`parent` = ' . intval($conversation_id);
-               }
-
-               $r = dba::p(
-                       "SELECT " . item_fieldlists() . "
-                       FROM `item`
-                       " . item_joins(api_user()) . "
-                       STRAIGHT_JOIN `user` ON `user`.`uid` = `item`.`uid`
-                               AND NOT `user`.`hidewall`
-                       AND `verb` = ?
-                       AND NOT `item`.`private`
-                       AND `item`.`wall`
-                       AND `item`.`visible`
-                       AND NOT `item`.`deleted`
-                       AND NOT `item`.`moderated`
-                       AND `item`.`id` > ?
-                       $sql_extra
-                       ORDER BY `item`.`id` DESC
-                       LIMIT " . intval($start) . ", " . intval($count),
-                       ACTIVITY_POST,
-                       $since_id
-               );
+                       $condition[0] .= " AND `item`.`parent` = ?";
+                       $condition[] = $conversation_id;
+               }
+
+               $params = ['order' => ['id' => true], 'limit' => [$start, $count]];
+               $statuses = Item::select(api_user(), [], $condition, $params);
 
-               $r = dba::inArray($r);
+               $r = dba::inArray($statuses);
        }
 
        $ret = api_format_items($r, $user_info, false, $type);
@@ -1881,33 +1837,18 @@ function api_statuses_networkpublic_timeline($type)
        }
        $start = ($page - 1) * $count;
 
-       $sql_extra = '';
+       $condition = ["`uid` = 0 AND `verb` = ? AND `thread`.`iid` > ? AND NOT `private`",
+               ACTIVITY_POST, $since_id];
+
        if ($max_id > 0) {
-               $sql_extra = 'AND `thread`.`iid` <= ' . intval($max_id);
-       }
-
-       $r = dba::p(
-               "SELECT " . item_fieldlists() . "
-               FROM `thread`
-               STRAIGHT_JOIN `item` ON `item`.`id` = `thread`.`iid`
-               " . item_joins(api_user()) . "
-               WHERE `thread`.`uid` = 0
-               AND `verb` = ?
-               AND NOT `thread`.`private`
-               AND `thread`.`visible`
-               AND NOT `thread`.`deleted`
-               AND NOT `thread`.`moderated`
-               AND `thread`.`iid` > ?
-               $sql_extra
-               ORDER BY `thread`.`iid` DESC
-               LIMIT " . intval($start) . ", " . intval($count),
-               ACTIVITY_POST,
-               $since_id
-       );
+               $condition[0] .= " AND `thread`.`iid` <= ?";
+               $condition[] = $max_id;
+       }
 
-       $r = dba::inArray($r);
+       $params = ['order' => ['iid' => true], 'limit' => [$start, $count]];
+       $statuses = Item::selectThread(api_user(), [], $condition, $params);
 
-       $ret = api_format_items($r, $user_info, false, $type);
+       $ret = api_format_items(dba::inArray($statuses), $user_info, false, $type);
 
        $data = ['status' => $ret];
        switch ($type) {
@@ -1955,13 +1896,6 @@ function api_statuses_show($type)
 
        $conversation = (x($_REQUEST, 'conversation') ? 1 : 0);
 
-       $sql_extra = '';
-       if ($conversation) {
-               $sql_extra .= " AND `item`.`parent` = %d ORDER BY `id` ASC ";
-       } else {
-               $sql_extra .= " AND `item`.`id` = %d";
-       }
-
        // try to fetch the item for the local user - or the public item, if there is no local one
        $uri_item = dba::selectFirst('item', ['uri'], ['id' => $id]);
        if (!DBM::is_result($uri_item)) {
@@ -1975,24 +1909,22 @@ function api_statuses_show($type)
 
        $id = $item['id'];
 
-       $r = q(
-               "SELECT `item`.* FROM `item`
-               STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
-                       AND (NOT `contact`.`blocked` OR `contact`.`pending`)
-               WHERE `item`.`visible` AND NOT `item`.`moderated` AND NOT `item`.`deleted`
-               AND `item`.`uid` IN (0, %d) AND `item`.`verb` = '%s'
-               $sql_extra",
-               intval(api_user()),
-               dbesc(ACTIVITY_POST),
-               intval($id)
-       );
+       if ($conversation) {
+               $condition = ['parent' => $id, 'verb' => ACTIVITY_POST];
+               $params = ['order' => ['id' => true]];
+       } else {
+               $condition = ['id' => $id, 'verb' => ACTIVITY_POST];
+               $params = [];
+       }
+
+       $statuses = Item::select(api_user(), [], $condition, $params);
 
        /// @TODO How about copying this to above methods which don't check $r ?
-       if (!DBM::is_result($r)) {
+       if (!DBM::is_result($statuses)) {
                throw new BadRequestException("There is no status with this id.");
        }
 
-       $ret = api_format_items($r, $user_info, false, $type);
+       $ret = api_format_items(dba::inArray($statuses), $user_info, false, $type);
 
        if ($conversation) {
                $data = ['status' => $ret];
@@ -2057,33 +1989,22 @@ function api_conversation_show($type)
 
        $id = $parent['id'];
 
-       $sql_extra = '';
+       $condition = ["`parent` = ? AND `uid` IN (0, ?) AND `verb` = ? AND `item`.`id` > ?",
+               $id, api_user(), ACTIVITY_POST, $since_id];
 
        if ($max_id > 0) {
-               $sql_extra = ' AND `item`.`id` <= ' . intval($max_id);
-       }
-
-       $r = q("SELECT `item`.* FROM `item`
-               STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
-                       AND (NOT `contact`.`blocked` OR `contact`.`pending`)
-               WHERE `item`.`parent` = %d AND `item`.`visible`
-               AND NOT `item`.`moderated` AND NOT `item`.`deleted`
-               AND `item`.`uid` IN (0, %d) AND `item`.`verb` = '%s'
-               AND `item`.`id`>%d $sql_extra
-               ORDER BY `item`.`id` DESC LIMIT %d ,%d",
-               intval($id),
-               intval(api_user()),
-               dbesc(ACTIVITY_POST),
-               intval($since_id),
-               intval($start),
-               intval($count)
-       );
+               $condition[0] .= " AND `item`.`id` <= ?";
+               $condition[] = $max_id;
+       }
 
-       if (!DBM::is_result($r)) {
-               throw new BadRequestException("There is no status with this id.");
+       $params = ['order' => ['id' => true], 'limit' => [$start, $count]];
+       $statuses = Item::select(api_user(), [], $condition, $params);
+
+       if (!DBM::is_result($statuses)) {
+               throw new BadRequestException("There is no status with id $id.");
        }
 
-       $ret = api_format_items($r, $user_info, false, $type);
+       $ret = api_format_items(dba::inArray($statuses), $user_info, false, $type);
 
        $data = ['status' => $ret];
        return api_format_data("statuses", $type, $data);
@@ -2126,24 +2047,17 @@ function api_statuses_repeat($type)
 
        logger('API: api_statuses_repeat: '.$id);
 
-       $r = q("SELECT `item`.* FROM `item`
-               STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
-                       AND (NOT `contact`.`blocked` OR `contact`.`pending`)
-               WHERE `item`.`visible` AND NOT `item`.`moderated` AND NOT `item`.`deleted`
-               AND NOT `item`.`private`
-               AND `item`.`id`=%d",
-               intval($id)
-       );
+       $fields = ['body', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink'];
+       $item = Item::selectFirst(api_user(), $fields, ['id' => $id, 'private' => false]);
 
-       /// @TODO other style than above functions!
-       if (DBM::is_result($r) && $r[0]['body'] != "") {
-               if (strpos($r[0]['body'], "[/share]") !== false) {
-                       $pos = strpos($r[0]['body'], "[share");
-                       $post = substr($r[0]['body'], $pos);
+       if (DBM::is_result($item) && $item['body'] != "") {
+               if (strpos($item['body'], "[/share]") !== false) {
+                       $pos = strpos($item['body'], "[share");
+                       $post = substr($item['body'], $pos);
                } else {
-                       $post = share_header($r[0]['author-name'], $r[0]['author-link'], $r[0]['author-avatar'], $r[0]['guid'], $r[0]['created'], $r[0]['plink']);
+                       $post = share_header($item['author-name'], $item['author-link'], $item['author-avatar'], $item['guid'], $item['created'], $item['plink']);
 
-                       $post .= $r[0]['body'];
+                       $post .= $item['body'];
                        $post .= "[/share]";
                }
                $_REQUEST['body'] = $post;
@@ -2244,32 +2158,19 @@ function api_statuses_mentions($type)
 
        $start = ($page - 1) * $count;
 
-       $sql_extra = '';
+       $condition = ["`uid` = ? AND `verb` = ? AND `item`.`id` > ? AND `author-id` != ?
+               AND `item`.`parent` IN (SELECT `iid` FROM `thread` WHERE `uid` = ? AND `mention` AND NOT `ignored`)",
+               api_user(), ACTIVITY_POST, $since_id, $user_info['pid'], api_user()];
 
        if ($max_id > 0) {
-               $sql_extra = ' AND `item`.`id` <= ' . intval($max_id);
+               $condition[0] .= " AND `item`.`id` <= ?";
+               $condition[] = $max_id;
        }
 
-       $r = q("SELECT `item`.* FROM `item` FORCE INDEX (`uid_id`)
-               STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
-                       AND (NOT `contact`.`blocked` OR `contact`.`pending`)
-               WHERE `item`.`uid` = %d AND `item`.`verb` = '%s'
-               AND `item`.`author-id` != %d
-               AND `item`.`visible` AND NOT `item`.`moderated` AND NOT `item`.`deleted`
-               AND `item`.`parent` IN (SELECT `iid` FROM `thread` WHERE `uid` = %d AND `mention` AND NOT `ignored`)
-               $sql_extra
-               AND `item`.`id` > %d
-               ORDER BY `item`.`id` DESC LIMIT %d ,%d",
-               intval(api_user()),
-               dbesc(ACTIVITY_POST),
-               intval($user_info['pid']),
-               intval(api_user()),
-               intval($since_id),
-               intval($start),
-               intval($count)
-       );
+       $params = ['order' => ['id' => true], 'limit' => [$start, $count]];
+       $statuses = Item::select(api_user(), [], $condition, $params);
 
-       $ret = api_format_items($r, $user_info, false, $type);
+       $ret = api_format_items(dba::inArray($statuses), $user_info, false, $type);
 
        $data = ['status' => $ret];
        switch ($type) {
@@ -2325,41 +2226,31 @@ function api_statuses_user_timeline($type)
        }
        $start = ($page - 1) * $count;
 
-       $sql_extra = '';
+       $condition = ["`uid` = ? AND `verb` = ? AND `item`.`id` > ? AND `item`.`contact-id` = ?",
+               api_user(), ACTIVITY_POST, $since_id, $user_info['cid']];
+
        if ($user_info['self'] == 1) {
-               $sql_extra .= " AND `item`.`wall` = 1 ";
+               $condition[0] .= ' AND `item`.`wall` ';
        }
 
        if ($exclude_replies > 0) {
-               $sql_extra .= ' AND `item`.`parent` = `item`.`id`';
+               $condition[0] .= ' AND `item`.`parent` = `item`.`id`';
        }
 
        if ($conversation_id > 0) {
-               $sql_extra .= ' AND `item`.`parent` = ' . intval($conversation_id);
+               $condition[0] .= " AND `item`.`parent` = ?";
+               $condition[] = $conversation_id;
        }
 
        if ($max_id > 0) {
-               $sql_extra .= ' AND `item`.`id` <= ' . intval($max_id);
+               $condition[0] .= " AND `item`.`id` <= ?";
+               $condition[] = $max_id;
        }
 
-       $r = q("SELECT `item`.* FROM `item` FORCE INDEX (`uid_contactid_id`)
-               STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
-                       AND (NOT `contact`.`blocked` OR `contact`.`pending`)
-               WHERE `item`.`uid` = %d AND `verb` = '%s'
-               AND `item`.`contact-id` = %d
-               AND `item`.`visible` AND NOT `item`.`moderated` AND NOT `item`.`deleted`
-               $sql_extra
-               AND `item`.`id` > %d
-               ORDER BY `item`.`id` DESC LIMIT %d ,%d",
-               intval(api_user()),
-               dbesc(ACTIVITY_POST),
-               intval($user_info['cid']),
-               intval($since_id),
-               intval($start),
-               intval($count)
-       );
+       $params = ['order' => ['id' => true], 'limit' => [$start, $count]];
+       $statuses = Item::select(api_user(), [], $condition, $params);
 
-       $ret = api_format_items($r, $user_info, true, $type);
+       $ret = api_format_items(dba::inArray($statuses), $user_info, true, $type);
 
        $data = ['status' => $ret];
        switch ($type) {
@@ -2409,24 +2300,24 @@ function api_favorites_create_destroy($type)
                $itemid = intval($_REQUEST['id']);
        }
 
-       $item = q("SELECT * FROM `item` WHERE `id`=%d AND `uid`=%d LIMIT 1", $itemid, api_user());
+       $item = Item::selectFirst(api_user(), [], ['id' => $itemid, 'uid' => api_user()]);
 
-       if (!DBM::is_result($item) || count($item) == 0) {
+       if (!DBM::is_result($item)) {
                throw new BadRequestException("Invalid item.");
        }
 
        switch ($action) {
                case "create":
-                       $item[0]['starred'] = 1;
+                       $item['starred'] = 1;
                        break;
                case "destroy":
-                       $item[0]['starred'] = 0;
+                       $item['starred'] = 0;
                        break;
                default:
                        throw new BadRequestException("Invalid action ".$action);
        }
 
-       $r = Item::update(['starred' => $item[0]['starred']], ['id' => $itemid]);
+       $r = Item::update(['starred' => $item['starred']], ['id' => $itemid]);
 
        if ($r === false) {
                throw new InternalServerErrorException("DB error");
@@ -2434,7 +2325,7 @@ function api_favorites_create_destroy($type)
 
 
        $user_info = api_get_user($a);
-       $rets = api_format_items($item, $user_info, false, $type);
+       $rets = api_format_items([$item], $user_info, false, $type);
        $ret = $rets[0];
 
        $data = ['status' => $ret];
@@ -2478,8 +2369,6 @@ function api_favorites($type)
        if ($user_info['self'] == 0) {
                $ret = [];
        } else {
-               $sql_extra = "";
-
                // params
                $since_id = (x($_REQUEST, 'since_id') ? $_REQUEST['since_id'] : 0);
                $max_id = (x($_REQUEST, 'max_id') ? $_REQUEST['max_id'] : 0);
@@ -2491,26 +2380,19 @@ function api_favorites($type)
 
                $start = $page*$count;
 
+               $condition = ["`uid` = ? AND `verb` = ? AND `id` > ? AND `starred`",
+                       api_user(), ACTIVITY_POST, $since_id];
+
+               $params = ['order' => ['id' => true], 'limit' => [$start, $count]];
+
                if ($max_id > 0) {
-                       $sql_extra .= ' AND `item`.`id` <= ' . intval($max_id);
-               }
-
-               $r = q("SELECT `item`.* FROM `item`
-                       STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
-                               AND (NOT `contact`.`blocked` OR `contact`.`pending`)
-                       WHERE `item`.`uid` = %d
-                       AND `item`.`visible` AND NOT `item`.`moderated` AND NOT `item`.`deleted`
-                       AND `item`.`starred`
-                       $sql_extra
-                       AND `item`.`id`>%d
-                       ORDER BY `item`.`id` DESC LIMIT %d ,%d",
-                       intval(api_user()),
-                       intval($since_id),
-                       intval($start),
-                       intval($count)
-               );
+                       $condition[0] .= " AND `item`.`id` <= ?";
+                       $condition[] = $max_id;
+               }
+
+               $statuses = Item::select(api_user(), [], $condition, $params);
 
-               $ret = api_format_items($r, $user_info, false, $type);
+               $ret = api_format_items(dba::inArray($statuses), $user_info, false, $type);
        }
 
        $data = ['status' => $ret];
@@ -3300,32 +3182,23 @@ function api_lists_statuses($type)
 
        $start = $page * $count;
 
-       $sql_extra = '';
+       $condition = ["`uid` = ? AND `verb` = ? AND `id` > ? AND `group_member`.`gid` = ?",
+               api_user(), ACTIVITY_POST, $since_id, $_REQUEST['list_id']];
+
        if ($max_id > 0) {
-               $sql_extra .= ' AND `item`.`id` <= ' . intval($max_id);
+               $condition[0] .= " AND `item`.`id` <= ?";
+               $condition[] = $max_id;
        }
        if ($exclude_replies > 0) {
-               $sql_extra .= ' AND `item`.`parent` = `item`.`id`';
+               $condition[0] .= ' AND `item`.`parent` = `item`.`id`';
        }
        if ($conversation_id > 0) {
-               $sql_extra .= ' AND `item`.`parent` = ' . intval($conversation_id);
+               $condition[0] .= " AND `item`.`parent` = ?";
+               $condition[] = $conversation_id;
        }
 
-       $statuses = dba::p("SELECT `item`.* FROM `item`
-               STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
-                       AND (NOT `contact`.`blocked` OR `contact`.`pending`)
-               STRAIGHT_JOIN `group_member` ON `group_member`.`contact-id` = `item`.`contact-id`
-               WHERE `item`.`uid` = ? AND `verb` = ?
-               AND `item`.`visible` AND NOT `item`.`moderated` AND NOT `item`.`deleted`
-               $sql_extra
-               AND `item`.`id`>?
-               AND `group_member`.`gid` = ?
-               ORDER BY `item`.`id` DESC LIMIT ".intval($start)." ,".intval($count),
-               api_user(),
-               ACTIVITY_POST,
-               $since_id,
-               $_REQUEST['list_id']
-       );
+       $params = ['order' => ['id' => true], 'limit' => [$start, $count]];
+       $statuses = Item::select(api_user(), [], $condition, $params);
 
        $items = api_format_items(dba::inArray($statuses), $user_info, false, $type);
 
@@ -4847,19 +4720,13 @@ function prepare_photo_data($type, $scale, $photo_id)
        $data['photo']['friendica_activities'] = api_format_items_activities($item[0], $type);
 
        // retrieve comments on photo
-       $r = q("SELECT `item`.* FROM `item`
-               STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
-                       AND (NOT `contact`.`blocked` OR `contact`.`pending`)
-               WHERE `item`.`parent` = %d AND `item`.`visible`
-               AND NOT `item`.`moderated` AND NOT `item`.`deleted`
-               AND `item`.`uid` = %d AND (`item`.`verb`='%s' OR `type`='photo')",
-               intval($item[0]['parent']),
-               intval(api_user()),
-               dbesc(ACTIVITY_POST)
-       );
+       $condition = ["`parent` = ? AND `uid` = ? AND (`verb` = ? OR `type`='photo')",
+               $item[0]['parent'], api_user(), ACTIVITY_POST];
+
+       $statuses = Item::select(api_user(), [], $condition);
 
        // prepare output of comments
-       $commentData = api_format_items($r, $user_info, false, $type);
+       $commentData = api_format_items(dba::inArray($statuses), $user_info, false, $type);
        $comments = [];
        if ($type == "xml") {
                $k = 0;
@@ -5849,14 +5716,10 @@ function api_friendica_notification_seen($type)
        $nm->setSeen($note);
        if ($note['otype']=='item') {
                // would be really better with an ItemsManager and $im->getByID() :-P
-               $r = q(
-                       "SELECT * FROM `item` WHERE `id`=%d AND `uid`=%d",
-                       intval($note['iid']),
-                       intval(local_user())
-               );
-               if ($r!==false) {
+               $item = Item::selectFirst(api_user(), [], ['id' => $note['iid'], 'uid' => api_user()]);
+               if (DBM::is_result($$item)) {
                        // we found the item, return it to the user
-                       $ret = api_format_items($r, $user_info, false, $type);
+                       $ret = api_format_items([$item], $user_info, false, $type);
                        $data = ['status' => $ret];
                        return api_format_data("status", $type, $data);
                }
index 6ce2004987fcb6dd609110035765f5ca8a614aa8..527f38e2aace103b6679e2c799827842a242571d 100644 (file)
@@ -15,6 +15,7 @@ use Friendica\Core\System;
 use Friendica\Database\DBM;
 use Friendica\Model\Contact;
 use Friendica\Model\Profile;
+use Friendica\Model\Item;
 use Friendica\Object\Post;
 use Friendica\Object\Thread;
 use Friendica\Util\DateTimeFormat;
@@ -467,8 +468,8 @@ function item_joins($uid = 0) {
                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`) OR `contact`.`uid` = 0)
-               INNER JOIN `contact` AS `author` ON `author`.`id`=`item`.`author-id` AND NOT `author`.`blocked`
-               INNER JOIN `contact` AS `owner` ON `owner`.`id`=`item`.`owner-id` AND NOT `owner`.`blocked`
+               STRAIGHT_JOIN `contact` AS `author` ON `author`.`id`=`item`.`author-id` AND NOT `author`.`blocked`
+               STRAIGHT_JOIN `contact` AS `owner` ON `owner`.`id`=`item`.`owner-id` AND NOT `owner`.`blocked`
                LEFT JOIN `user-item` ON `user-item`.`iid` = `item`.`id` AND `user-item`.`uid` = %d
                LEFT JOIN `event` ON `event-id` = `event`.`id`",
                CONTACT_IS_SHARING, CONTACT_IS_FRIEND, intval($uid)
@@ -734,7 +735,7 @@ function conversation(App $a, $items, $mode, $update, $preview = false, $order =
                                        'guid' => (($preview) ? 'Q0' : $item['guid']),
                                        'network' => $item['item_network'],
                                        'network_name' => ContactSelector::networkToName($item['item_network'], $profile_link),
-                                       'linktitle' => L10n::t('View %s\'s profile @ %s', $profile_name, ((strlen($item['author-link'])) ? $item['author-link'] : $item['url'])),
+                                       'linktitle' => L10n::t('View %s\'s profile @ %s', $profile_name, $item['author-link']),
                                        'profile_url' => $profile_link,
                                        'item_photo_menu' => item_photo_menu($item),
                                        'name' => $profile_name_e,
@@ -865,21 +866,21 @@ function conversation(App $a, $items, $mode, $update, $preview = false, $order =
 function conversation_add_children($parents, $block_authors, $order, $uid) {
        $max_comments = Config::get('system', 'max_comments', 100);
 
+       $params = ['order' => ['uid', 'commented' => true]];
+
        if ($max_comments > 0) {
-               $limit = ' LIMIT '.intval($max_comments + 1);
-       } else {
-               $limit = '';
+               $params['limit'] = $max_comments;
        }
 
        $items = [];
 
-       $block_sql = $block_authors ? "AND NOT `author`.`hidden` AND NOT `author`.`blocked`" : "";
-
        foreach ($parents AS $parent) {
-               $thread_items = dba::p(item_query(local_user())."AND `item`.`parent-uri` = ?
-                       AND `item`.`uid` IN (0, ?) $block_sql
-                       ORDER BY `item`.`uid` ASC, `item`.`commented` DESC" . $limit,
-                       $parent['uri'], local_user());
+               $condition = ["`item`.`parent-uri` = ? AND `item`.`uid` IN (0, ?) ",
+                       $parent['uri'], local_user()];
+               if ($block_authors) {
+                       $condition[0] .= "AND NOT `author`.`hidden`";
+               }
+               $thread_items = Item::select(local_user(), [], $condition, $params);
 
                $comments = dba::inArray($thread_items);
 
index 5245538cedea08d0c96560849d0e9381d5d8cb83..c0617af8e83524b74b7298ded87bbe68faac0c4d 100644 (file)
@@ -23,7 +23,12 @@ class dba {
        private static $errorno = 0;
        private static $affected_rows = 0;
        private static $in_transaction = false;
+       private static $in_retrial = false;
        private static $relation = [];
+       private static $db_serveraddr = '';
+       private static $db_user = '';
+       private static $db_pass = '';
+       private static $db_name = '';
 
        public static function connect($serveraddr, $user, $pass, $db) {
                if (!is_null(self::$db) && self::connected()) {
@@ -34,6 +39,12 @@ class dba {
 
                $stamp1 = microtime(true);
 
+               // We are storing these values for being able to perform a reconnect
+               self::$db_serveraddr = $serveraddr;
+               self::$db_user = $user;
+               self::$db_pass = $pass;
+               self::$db_name = $db;
+
                $serveraddr = trim($serveraddr);
 
                $serverdata = explode(':', $serveraddr);
@@ -92,6 +103,36 @@ class dba {
                return self::$connected;
        }
 
+       /**
+        * Disconnects the current database connection
+        */
+       public static function disconnect()
+       {
+               if (is_null(self::$db)) {
+                       return;
+               }
+
+               switch (self::$driver) {
+                       case 'pdo':
+                               self::$db = null;
+                               break;
+                       case 'mysqli':
+                               self::$db->close();
+                               self::$db = null;
+                               break;
+               }
+       }
+
+       /**
+        * Perform a reconnect of an existing database connection
+        */
+       public static function reconnect() {
+               self::disconnect();
+
+               $ret = self::connect(self::$db_serveraddr, self::$db_user, self::$db_pass, self::$db_name);
+               return $ret;
+       }
+
        /**
         * Return the database object.
         * @return PDO|mysqli
@@ -431,23 +472,23 @@ class dba {
                                        break;
                                }
 
-                               $params = '';
+                               $param_types = '';
                                $values = [];
                                foreach ($args AS $param => $value) {
                                        if (is_int($args[$param])) {
-                                               $params .= 'i';
+                                               $param_types .= 'i';
                                        } elseif (is_float($args[$param])) {
-                                               $params .= 'd';
+                                               $param_types .= 'd';
                                        } elseif (is_string($args[$param])) {
-                                               $params .= 's';
+                                               $param_types .= 's';
                                        } else {
-                                               $params .= 'b';
+                                               $param_types .= 'b';
                                        }
                                        $values[] = &$args[$param];
                                }
 
                                if (count($values) > 0) {
-                                       array_unshift($values, $params);
+                                       array_unshift($values, $param_types);
                                        call_user_func_array([$stmt, 'bind_param'], $values);
                                }
 
@@ -470,7 +511,27 @@ class dba {
                        $errorno = self::$errorno;
 
                        logger('DB Error '.self::$errorno.': '.self::$error."\n".
-                               System::callstack(8)."\n".self::replaceParameters($sql, $params));
+                               System::callstack(8)."\n".self::replaceParameters($sql, $args));
+
+                       // On a lost connection we try to reconnect - but only once.
+                       if ($errorno == 2006) {
+                               if (self::$in_retrial || !self::reconnect()) {
+                                       // It doesn't make sense to continue when the database connection was lost
+                                       if (self::$in_retrial) {
+                                               logger('Giving up retrial because of database error '.$errorno.': '.$error);
+                                       } else {
+                                               logger("Couldn't reconnect after database error ".$errorno.': '.$error);
+                                       }
+                                       exit(1);
+                               } else {
+                                       // We try it again
+                                       logger('Reconnected after database error '.$errorno.': '.$error);
+                                       self::$in_retrial = true;
+                                       $ret = self::p($sql, $args);
+                                       self::$in_retrial = false;
+                                       return $ret;
+                               }
+                       }
 
                        self::$error = $error;
                        self::$errorno = $errorno;
@@ -537,6 +598,13 @@ class dba {
                        logger('DB Error '.self::$errorno.': '.self::$error."\n".
                                System::callstack(8)."\n".self::replaceParameters($sql, $params));
 
+                       // On a lost connection we simply quit.
+                       // A reconnect like in self::p could be dangerous with modifications
+                       if ($errorno == 2006) {
+                               logger('Giving up because of database error '.$errorno.': '.$error);
+                               exit(1);
+                       }
+
                        self::$error = $error;
                        self::$errorno = $errorno;
                }
@@ -1148,29 +1216,9 @@ class dba {
 
                $condition_string = self::buildCondition($condition);
 
-               $order_string = '';
-               if (isset($params['order'])) {
-                       $order_string = " ORDER BY ";
-                       foreach ($params['order'] AS $fields => $order) {
-                               if (!is_int($fields)) {
-                                       $order_string .= "`" . $fields . "` " . ($order ? "DESC" : "ASC") . ", ";
-                               } else {
-                                       $order_string .= "`" . $order . "`, ";
-                               }
-                       }
-                       $order_string = substr($order_string, 0, -2);
-               }
-
-               $limit_string = '';
-               if (isset($params['limit']) && is_int($params['limit'])) {
-                       $limit_string = " LIMIT " . $params['limit'];
-               }
-
-               if (isset($params['limit']) && is_array($params['limit'])) {
-                       $limit_string = " LIMIT " . intval($params['limit'][0]) . ", " . intval($params['limit'][1]);
-               }
+               $param_string = self::buildParameter($params);
 
-               $sql = "SELECT " . $select_fields . " FROM `" . $table . "`" . $condition_string . $order_string . $limit_string;
+               $sql = "SELECT " . $select_fields . " FROM `" . $table . "`" . $condition_string . $param_string;
 
                $result = self::p($sql, $condition);
 
@@ -1227,14 +1275,14 @@ class dba {
         * @param array $condition
         * @return string
         */
-       private static function buildCondition(array &$condition = [])
+       public static function buildCondition(array &$condition = [])
        {
                $condition_string = '';
                if (count($condition) > 0) {
                        reset($condition);
                        $first_key = key($condition);
                        if (is_int($first_key)) {
-                               $condition_string = " WHERE ".array_shift($condition);
+                               $condition_string = " WHERE (" . array_shift($condition) . ")";
                        } else {
                                $new_values = [];
                                $condition_string = "";
@@ -1251,7 +1299,7 @@ class dba {
                                                $condition_string .= "`" . $field . "` = ?";
                                        }
                                }
-                               $condition_string = " WHERE " . $condition_string;
+                               $condition_string = " WHERE (" . $condition_string . ")";
                                $condition = $new_values;
                        }
                }
@@ -1259,6 +1307,39 @@ class dba {
                return $condition_string;
        }
 
+       /**
+        * @brief Returns the SQL parameter string built from the provided parameter array
+        *
+        * @param array $params
+        * @return string
+        */
+       public static function buildParameter(array $params = [])
+       {
+               $order_string = '';
+               if (isset($params['order'])) {
+                       $order_string = " ORDER BY ";
+                       foreach ($params['order'] AS $fields => $order) {
+                               if (!is_int($fields)) {
+                                       $order_string .= "`" . $fields . "` " . ($order ? "DESC" : "ASC") . ", ";
+                               } else {
+                                       $order_string .= "`" . $order . "`, ";
+                               }
+                       }
+                       $order_string = substr($order_string, 0, -2);
+               }
+
+               $limit_string = '';
+               if (isset($params['limit']) && is_int($params['limit'])) {
+                       $limit_string = " LIMIT " . $params['limit'];
+               }
+
+               if (isset($params['limit']) && is_array($params['limit'])) {
+                       $limit_string = " LIMIT " . intval($params['limit'][0]) . ", " . intval($params['limit'][1]);
+               }
+
+               return $order_string.$limit_string;
+       }
+
        /**
         * @brief Fills an array with data from a query
         *
index 257c10720781874e22c4d1b94055f33b74194758..7eb2c80ebc5964d5a89f70b8966c233f55874ba3 100644 (file)
@@ -11,6 +11,7 @@ use Friendica\Core\System;
 use Friendica\Database\DBM;
 use Friendica\Util\DateTimeFormat;
 use Friendica\Util\Emailer;
+use Friendica\Model\Item;
 
 /**
  * @brief Creates a notification entry and possibly sends a mail
@@ -129,7 +130,7 @@ function notification($params)
                $item = null;
 
                if ($params['otype'] === 'item' && $parent_id) {
-                       $item = dba::selectFirst('item', [], ['id' => $parent_id]);
+                       $item = Item::selectFirst($params['uid'], [], ['id' => $parent_id]);
                }
 
                $item_post_type = item_post_type($item);
@@ -739,7 +740,7 @@ function check_item_notification($itemid, $uid, $defaulttype = "") {
 
        // Only act if it is a "real" post
        // We need the additional check for the "local_profile" because of mixed situations on connector networks
-       $item = q("SELECT `id`, `mention`, `tag`,`parent`, `title`, `body`, `author-name`, `author-link`, `author-avatar`, `guid`,
+       $item = q("SELECT `id`, `mention`, `tag`,`parent`, `title`, `body`, `author-id`, `guid`,
                        `parent-uri`, `uri`, `contact-id`
                        FROM `item` WHERE `id` = %d AND `verb` IN ('%s', '') AND `type` != 'activity' AND
                                NOT (`author-link` IN ($profile_list))  LIMIT 1",
@@ -747,6 +748,8 @@ function check_item_notification($itemid, $uid, $defaulttype = "") {
        if (!$item)
                return false;
 
+       $author = dba::selectFirst('contact', ['name', 'thumb', 'url'], ['id' => $item[0]['author-id']]);
+
        // Generate the notification array
        $params = [];
        $params["uid"] = $uid;
@@ -758,9 +761,9 @@ function check_item_notification($itemid, $uid, $defaulttype = "") {
        $params["parent"] = $item[0]["parent"];
        $params["link"] = System::baseUrl().'/display/'.urlencode($item[0]["guid"]);
        $params["otype"] = 'item';
-       $params["source_name"] = $item[0]["author-name"];
-       $params["source_link"] = $item[0]["author-link"];
-       $params["source_photo"] = $item[0]["author-avatar"];
+       $params["source_name"] = $author["name"];
+       $params["source_link"] = $author["url"];
+       $params["source_photo"] = $author["thumb"];
 
        if ($item[0]["parent-uri"] === $item[0]["uri"]) {
                // Send a notification for every new post?
index f145c03e5306d7f129cfd710d9e2f58e4b9aa2ee..acc6bec4fbf2d75b4810a840f2ab869789bafe28 100644 (file)
@@ -1280,8 +1280,6 @@ function prepare_body(array &$item, $attach = false, $is_preview = false)
        $s = $hook_data['html'];
        unset($hook_data);
 
-       $s = apply_content_filter($s, $filter_reasons);
-
        if (! $attach) {
                // Replace the blockquotes with quotes that are used in mails.
                $mailquote = '<blockquote type="cite" class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">';
@@ -1385,6 +1383,8 @@ function prepare_body(array &$item, $attach = false, $is_preview = false)
                $s = preg_replace('|(<img[^>]+src="[^"]+/photo/[0-9a-f]+)-[0-9]|', "$1-" . $ps, $s);
        }
 
+       $s = apply_content_filter($s, $filter_reasons);
+
        $hook_data = ['item' => $item, 'html' => $s];
        Addon::callHooks('prepare_body_final', $hook_data);
 
index 817a026553b42ad78788be0c600cb07fbf9d7cb5..7f171568967ef204746bb842aa90328a18ead336 100644 (file)
@@ -8,6 +8,7 @@ use Friendica\Core\ACL;
 use Friendica\Core\Addon;
 use Friendica\Database\DBM;
 use Friendica\Model\Contact;
+use Friendica\Model\Item;
 
 require_once 'include/dba.php';
 require_once 'mod/proxy.php';
@@ -250,39 +251,39 @@ function acl_content(App $a)
                 * but first get known contacts url to filter them out
                 */
                $known_contacts = array_map(function ($i) {
-                       return dbesc($i['link']);
+                       return $i['link'];
                }, $contacts);
 
                $unknown_contacts = [];
-               $r = q("SELECT `author-link`
-                               FROM `item` WHERE `parent` = %d
-                                       AND (`author-name` LIKE '%%%s%%' OR `author-link` LIKE '%%%s%%')
-                                       AND `author-link` NOT IN ('%s')
-                               GROUP BY `author-link`, `author-avatar`, `author-name`
-                               ORDER BY `author-name` ASC
-                               ",
-                       intval($conv_id),
-                       dbesc($search),
-                       dbesc($search),
-                       implode("', '", $known_contacts)
-               );
-               if (DBM::is_result($r)) {
-                       foreach ($r as $row) {
-                               $contact = Contact::getDetailsByURL($row['author-link']);
-
-                               if (count($contact) > 0) {
-                                       $unknown_contacts[] = [
-                                               'type'    => 'c',
-                                               'photo'   => proxy_url($contact['micro'], false, PROXY_SIZE_MICRO),
-                                               'name'    => htmlentities($contact['name']),
-                                               'id'      => intval($contact['cid']),
-                                               'network' => $contact['network'],
-                                               'link'    => $contact['url'],
-                                               'nick'    => htmlentities(defaults($contact, 'nick', $contact['addr'])),
-                                               'addr'    => htmlentities(defaults($contact, 'addr', $contact['url'])),
-                                               'forum'   => $contact['forum']
-                                       ];
-                               }
+
+               $condition = ["`parent` = ?", $conv_id];
+               $params = ['order' => ['author-name' => true]];
+               $authors = Item::select(local_user(), ['author-link'], $condition, $params);
+               $item_authors = [];
+               while ($author = dba::fetch($authors)) {
+                       $item_authors[$author['author-link']] = $author['author-link'];
+               }
+               dba::close($authors);
+
+               foreach ($item_authors as $author) {
+                       if (in_array($author, $known_contacts)) {
+                               continue;
+                       }
+
+                       $contact = Contact::getDetailsByURL($author);
+
+                       if (count($contact) > 0) {
+                               $unknown_contacts[] = [
+                                       'type'    => 'c',
+                                       'photo'   => proxy_url($contact['micro'], false, PROXY_SIZE_MICRO),
+                                       'name'    => htmlentities($contact['name']),
+                                       'id'      => intval($contact['cid']),
+                                       'network' => $contact['network'],
+                                       'link'    => $contact['url'],
+                                       'nick'    => htmlentities(defaults($contact, 'nick', $contact['addr'])),
+                                       'addr'    => htmlentities(defaults($contact, 'addr', $contact['url'])),
+                                       'forum'   => $contact['forum']
+                               ];
                        }
                }
 
index 9ad7d09b57e40db3f41fa0022fc76a618fdd36ab..59b96d87a98c82ffbf311cc6df53661ff91ae98c 100644 (file)
@@ -969,6 +969,7 @@ function _contact_detail_for_template($rr)
                'itemurl' => (($rr['addr'] != "") ? $rr['addr'] : $rr['url']),
                'url' => $url,
                'network' => ContactSelector::networkToName($rr['network'], $rr['url']),
+               'nick' => htmlentities($rr['nick']),
        ];
 }
 
index 6380e6f6cad0ac87ca418e51396578beb2aa92bc..816af820a1a8e4b65be46875df668e6061e454b9 100644 (file)
@@ -14,6 +14,7 @@ use Friendica\Core\System;
 use Friendica\Database\DBM;
 use Friendica\Model\Contact;
 use Friendica\Model\Group;
+use Friendica\Model\Item;
 use Friendica\Model\Profile;
 use Friendica\Protocol\DFRN;
 
@@ -345,11 +346,10 @@ function display_content(App $a, $update = false, $update_uid = 0) {
                return '';
        }
 
-       $r = dba::p(item_query(local_user())."AND `item`.`parent-uri` = (SELECT `parent-uri` FROM `item` WHERE `id` = ?)
-               AND `item`.`uid` IN (0, ?) $sql_extra
-               ORDER BY `item`.`uid` ASC, `parent` DESC, `gravity` ASC, `id` ASC",
-               $item_id, local_user()
-       );
+       $condition = ["`item`.`parent-uri` = (SELECT `parent-uri` FROM `item` WHERE `id` = ?)
+               AND `item`.`uid` IN (0, ?) " . $sql_extra, $item_id, local_user()];
+       $params = ['order' => ['uid', 'parent' => true, 'gravity', 'id']];
+       $r = Item::select(local_user(), [], $condition, $params);
 
        if (!DBM::is_result($r)) {
                notice(L10n::t('Item not found.') . EOL);
index 96a28260893ea67651825bcd251b829224921c9b..fb42408c60387a8cbc11f994d61a7ba5884cd399 100644 (file)
@@ -7,6 +7,7 @@ use Friendica\Content\Nav;
 use Friendica\Core\L10n;
 use Friendica\Database\DBM;
 use Friendica\Model\Profile;
+use Friendica\Model\Item;
 
 function notes_init(App $a)
 {
@@ -26,36 +27,21 @@ function notes_init(App $a)
 
 function notes_content(App $a, $update = false)
 {
-       if (! local_user()) {
+       if (!local_user()) {
                notice(L10n::t('Permission denied.') . EOL);
                return;
        }
 
        require_once 'include/security.php';
        require_once 'include/conversation.php';
-       $groups = [];
-
-
-       $o = '';
-
-       $remote_contact = false;
-
-       $contact_id = $_SESSION['cid'];
-       $contact = $a->contact;
-
-       $is_owner = true;
 
-       $o ="";
-       $o .= Profile::getTabs($a, true);
+       $o = Profile::getTabs($a, true);
 
        if (!$update) {
                $o .= '<h3>' . L10n::t('Personal Notes') . '</h3>';
 
-               $commpage = false;
-               $commvisitor = false;
-
                $x = [
-                       'is_owner' => $is_owner,
+                       'is_owner' => true,
                        'allow_location' => (($a->user['allow_location']) ? true : false),
                        'default_location' => $a->user['default-location'],
                        'nickname' => $a->user['nickname'],
@@ -71,63 +57,31 @@ function notes_content(App $a, $update = false)
                $o .= status_editor($a, $x, $a->contact['id']);
        }
 
-       // Construct permissions
+       $condition = ["`uid` = ? AND `type` = 'note' AND `id` = `parent` AND NOT `wall`
+               AND `allow_cid` = ? AND `contact-id` = ?",
+               local_user(), '<' . $a->contact['id'] . '>', $a->contact['id']];
 
-       // default permissions - anonymous user
+       $notes = dba::count('item', $condition);
 
-       $sql_extra = " AND `item`.`allow_cid` = '<" . $a->contact['id'] . ">' ";
+       $a->set_pager_total($notes);
+       $a->set_pager_itemspage(40);
 
-       $r = q("SELECT COUNT(*) AS `total`
-               FROM `item` %s
-               WHERE %s AND `item`.`uid` = %d AND `item`.`type` = 'note'
-               AND `contact`.`self` AND `item`.`id` = `item`.`parent` AND NOT `item`.`wall`
-               $sql_extra ",
-               item_joins(local_user()),
-               item_condition(),
-               intval(local_user())
-       );
+       $params = ['order' => ['created' => true],
+               'limit' => [$a->pager['start'], $a->pager['itemspage']]];
+       $r = Item::select(local_user(), ['item_id'], $condition, $params);
 
        if (DBM::is_result($r)) {
-               $a->set_pager_total($r[0]['total']);
-               $a->set_pager_itemspage(40);
-       }
-
-       $r = q("SELECT `item`.`id` AS `item_id` FROM `item` %s
-               WHERE %s AND `item`.`uid` = %d AND `item`.`type` = 'note'
-               AND `item`.`id` = `item`.`parent` AND NOT `item`.`wall`
-               $sql_extra
-               ORDER BY `item`.`created` DESC LIMIT %d ,%d ",
-               item_joins(local_user()),
-               item_condition(),
-               intval(local_user()),
-               intval($a->pager['start']),
-               intval($a->pager['itemspage'])
+               $parents_arr = [];
 
-       );
-
-       $parents_arr = [];
-       $parents_str = '';
-
-       if (DBM::is_result($r)) {
-               foreach ($r as $rr) {
+               while ($rr = dba::fetch($r)) {
                        $parents_arr[] = $rr['item_id'];
                }
-               $parents_str = implode(', ', $parents_arr);
-
-               $r = q("SELECT %s FROM `item` %s
-                       WHERE %s AND `item`.`uid` = %d AND `item`.`parent` IN (%s)
-                       $sql_extra
-                       ORDER BY `parent` DESC, `gravity` ASC, `item`.`id` ASC ",
-                       item_fieldlists(),
-                       item_joins(local_user()),
-                       item_condition(),
-                       intval(local_user()),
-                       dbesc($parents_str)
-               );
-
-               if (DBM::is_result($r)) {
-                       $items = conv_sort($r, "`commented`");
+               dba::close($r);
 
+               $condition = ['uid' => local_user(), 'parent' => $parents_arr];
+               $result = Item::select(local_user(), [], $condition);
+               if (DBM::is_result($result)) {
+                       $items = conv_sort(dba::inArray($result), 'commented');
                        $o .= conversation($a, $items, 'notes', $update);
                }
        }
index 3148896bc27a8fa624bd4732bdfdf692d9b8f324..73e8e1740d78b2014277b8869c7246526a8f5a0c 100644 (file)
@@ -26,31 +26,31 @@ require_once 'include/items.php';
 
 function poke_init(App $a) {
 
-       if (! local_user()) {
+       if (!local_user()) {
                return;
        }
 
        $uid = local_user();
        $verb = notags(trim($_GET['verb']));
 
-       if (! $verb) {
+       if (!$verb) {
                return;
        }
 
        $verbs = get_poke_verbs();
 
-       if (! array_key_exists($verb,$verbs)) {
+       if (!array_key_exists($verb, $verbs)) {
                return;
        }
 
        $activity = ACTIVITY_POKE . '#' . urlencode($verbs[$verb][0]);
 
        $contact_id = intval($_GET['cid']);
-       if (! $contact_id) {
+       if (!$contact_id) {
                return;
        }
 
-       $parent = ((x($_GET,'parent')) ? intval($_GET['parent']) : 0);
+       $parent = (x($_GET,'parent') ? intval($_GET['parent']) : 0);
 
 
        logger('poke: verb ' . $verb . ' contact ' . $contact_id, LOGGER_DEBUG);
@@ -61,49 +61,45 @@ function poke_init(App $a) {
                intval($uid)
        );
 
-       if (! DBM::is_result($r)) {
+       if (!DBM::is_result($r)) {
                logger('poke: no contact ' . $contact_id);
                return;
        }
 
        $target = $r[0];
 
-       if($parent) {
-               $r = q("SELECT `uri`, `private`, `allow_cid`, `allow_gid`, `deny_cid`, `deny_gid`
-                       FROM `item` WHERE `id` = %d AND `parent` = %d AND `uid` = %d LIMIT 1",
-                       intval($parent),
-                       intval($parent),
-                       intval($uid)
-               );
-               if (DBM::is_result($r)) {
-                       $parent_uri = $r[0]['uri'];
-                       $private    = $r[0]['private'];
-                       $allow_cid  = $r[0]['allow_cid'];
-                       $allow_gid  = $r[0]['allow_gid'];
-                       $deny_cid   = $r[0]['deny_cid'];
-                       $deny_gid   = $r[0]['deny_gid'];
+       if ($parent) {
+               $fields = ['uri', 'private', 'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid'];
+               $condition = ['id' => $parent, 'parent' => $parent, 'uid' => $uid];
+               $item = Item::selectFirst(local_user(), $fields, $condition);
+
+               if (DBM::is_result($item)) {
+                       $parent_uri = $item['uri'];
+                       $private    = $item['private'];
+                       $allow_cid  = $item['allow_cid'];
+                       $allow_gid  = $item['allow_gid'];
+                       $deny_cid   = $item['deny_cid'];
+                       $deny_gid   = $item['deny_gid'];
                }
-       }
-       else {
-
-               $private = ((x($_GET,'private')) ? intval($_GET['private']) : 0);
+       } else {
+               $private = (x($_GET,'private') ? intval($_GET['private']) : 0);
 
-               $allow_cid     = (($private) ? '<' . $target['id']. '>' : $a->user['allow_cid']);
-               $allow_gid     = (($private) ? '' : $a->user['allow_gid']);
-               $deny_cid      = (($private) ? '' : $a->user['deny_cid']);
-               $deny_gid      = (($private) ? '' : $a->user['deny_gid']);
+               $allow_cid     = ($private ? '<' . $target['id']. '>' : $a->user['allow_cid']);
+               $allow_gid     = ($private ? '' : $a->user['allow_gid']);
+               $deny_cid      = ($private ? '' : $a->user['deny_cid']);
+               $deny_gid      = ($private ? '' : $a->user['deny_gid']);
        }
 
        $poster = $a->contact;
 
-       $uri = item_new_uri($a->get_hostname(),$uid);
+       $uri = item_new_uri($a->get_hostname(), $uid);
 
        $arr = [];
 
        $arr['guid']          = get_guid(32);
        $arr['uid']           = $uid;
        $arr['uri']           = $uri;
-       $arr['parent-uri']    = (($parent_uri) ? $parent_uri : $uri);
+       $arr['parent-uri']    = ($parent_uri ? $parent_uri : $uri);
        $arr['type']          = 'activity';
        $arr['wall']          = 1;
        $arr['contact-id']    = $poster['id'];
@@ -133,7 +129,7 @@ function poke_init(App $a) {
        $arr['object'] .= '</link></object>' . "\n";
 
        $item_id = Item::insert($arr);
-       if($item_id) {
+       if ($item_id) {
                Worker::add(PRIORITY_HIGH, "Notifier", "tag", $item_id);
        }
 
@@ -146,7 +142,7 @@ function poke_init(App $a) {
 
 function poke_content(App $a) {
 
-       if (! local_user()) {
+       if (!local_user()) {
                notice(L10n::t('Permission denied.') . EOL);
                return;
        }
@@ -154,14 +150,14 @@ function poke_content(App $a) {
        $name = '';
        $id = '';
 
-       if(intval($_GET['c'])) {
+       if (intval($_GET['c'])) {
                $r = q("SELECT `id`,`name` FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
                        intval($_GET['c']),
                        intval(local_user())
                );
                if (DBM::is_result($r)) {
-                       $name = $r[0]['name'];
-                       $id = $r[0]['id'];
+                       $name = $item['name'];
+                       $id = $item['id'];
                }
        }
 
@@ -175,16 +171,17 @@ function poke_content(App $a) {
        ]);
 
 
-       $parent = ((x($_GET,'parent')) ? intval($_GET['parent']) : '0');
+       $parent = (x($_GET,'parent') ? intval($_GET['parent']) : '0');
 
 
        $verbs = get_poke_verbs();
 
        $shortlist = [];
-       foreach($verbs as $k => $v)
-               if($v[1] !== 'NOTRANSLATION')
-                       $shortlist[] = [$k,$v[1]];
-
+       foreach ($verbs as $k => $v) {
+               if ($v[1] !== 'NOTRANSLATION') {
+                       $shortlist[] = [$k, $v[1]];
+               }
+       }
 
        $tpl = get_markup_template('poke_content.tpl');
 
@@ -202,5 +199,4 @@ function poke_content(App $a) {
        ]);
 
        return $o;
-
 }
index 2fb947a8365df885435447d14822f2c69e2dde79..91d04b2de9f8eeb4a2d013c20f0bf21b3edc6d76 100644 (file)
@@ -337,16 +337,9 @@ function profile_content(App $a, $update = 0)
                        $parents_arr[] = $rr['item_id'];
                }
 
-               $parents_str = implode(', ', $parents_arr);
-
-               $items = q(item_query($a->profile['profile_uid']) . " AND `item`.`uid` = %d
-                       AND `item`.`parent` IN (%s)
-                       $sql_extra ",
-                       intval($a->profile['profile_uid']),
-                       dbesc($parents_str)
-               );
-
-               $items = conv_sort($items, 'created');
+               $condition = ['uid' => $a->profile['profile_uid'], 'parent' => $parents_arr];
+               $result = Item::select($a->profile['profile_uid'], [], $condition);
+               $items = conv_sort(dba::inArray($result), 'created');
        } else {
                $items = [];
        }
index 81919df105d605252151534443a7055f9fe33c01..ee614f64d84d703735d1d8442c9221fe63ba48af 100644 (file)
@@ -134,7 +134,7 @@ function register_post(App $a)
                }
 
                // send email to admins
-               $admin_mail_list = "'" . implode("','", array_map(dbesc, explode(",", str_replace(" ", "", $a->config['admin_email'])))) . "'";
+               $admin_mail_list = "'" . implode("','", array_map("dbesc", explode(",", str_replace(" ", "", $a->config['admin_email'])))) . "'";
                $adminlist = q("SELECT uid, language, email FROM user WHERE email IN (%s)",
                        $admin_mail_list
                );
index a600965e46293e57d69e838b38496227196dc4f4..c42bcacfa007a3d675b0afea56ed8ef0b674f3ca 100644 (file)
@@ -10,6 +10,7 @@ use Friendica\Core\Config;
 use Friendica\Core\L10n;
 use Friendica\Core\System;
 use Friendica\Database\DBM;
+use Friendica\Model\Item;
 
 require_once 'include/security.php';
 require_once 'include/conversation.php';
@@ -197,34 +198,34 @@ function search_content(App $a) {
        if ($tag) {
                logger("Start tag search for '".$search."'", LOGGER_DEBUG);
 
-               $r = q("SELECT %s
-                       FROM `term`
-                               STRAIGHT_JOIN `item` ON `item`.`id`=`term`.`oid` %s
-                       WHERE %s AND (`term`.`uid` = 0 OR (`term`.`uid` = %d AND NOT `term`.`global`))
-                               AND `term`.`otype` = %d AND `term`.`type` = %d AND `term`.`term` = '%s' AND `item`.`verb` = '%s'
-                               AND NOT `author`.`blocked` AND NOT `author`.`hidden`
-                       ORDER BY term.created DESC LIMIT %d , %d ",
-                               item_fieldlists(), item_joins(local_user()), item_condition(),
-                               intval(local_user()),
-                               intval(TERM_OBJ_POST), intval(TERM_HASHTAG), dbesc(protect_sprintf($search)), dbesc(ACTIVITY_POST),
-                               intval($a->pager['start']), intval($a->pager['itemspage']));
+               $condition = ["(`uid` = 0 OR (`uid` = ? AND NOT `global`))
+                       AND `otype` = ? AND `type` = ? AND `term` = ?",
+                       local_user(), TERM_OBJ_POST, TERM_HASHTAG, $search];
+               $params = ['order' => ['created' => true],
+                       'limit' => [$a->pager['start'], $a->pager['itemspage']]];
+               $terms = dba::select('term', ['oid'], $condition, $params);
+
+               $itemids = [];
+               while ($term = dba::fetch($terms)) {
+                       $itemids[] = $term['oid'];
+               }
+               dba::close($terms);
+
+               $items = Item::select(local_user(), [], ['id' => array_reverse($itemids)]);
+               $r = dba::inArray($items);
        } else {
                logger("Start fulltext search for '".$search."'", LOGGER_DEBUG);
 
-               $sql_extra = sprintf(" AND `item`.`body` REGEXP '%s' ", dbesc(protect_sprintf(preg_quote($search))));
-
-               $r = q("SELECT %s
-                       FROM `item` %s
-                       WHERE %s AND (`item`.`uid` = 0 OR (`item`.`uid` = %s AND NOT `item`.`global`))
-                               AND NOT `author`.`blocked` AND NOT `author`.`hidden`
-                               $sql_extra
-                       GROUP BY `item`.`uri`, `item`.`id` ORDER BY `item`.`id` DESC LIMIT %d , %d",
-                               item_fieldlists(), item_joins(local_user()), item_condition(),
-                               intval(local_user()),
-                               intval($a->pager['start']), intval($a->pager['itemspage']));
+               $condition = ["(`uid` = 0 OR (`uid` = ? AND NOT `global`))
+                       AND `body` LIKE CONCAT('%',?,'%')",
+                       local_user(), $search];
+               $params = ['order' => ['id' => true],
+                       'limit' => [$a->pager['start'], $a->pager['itemspage']]];
+               $items = Item::select(local_user(), [], $condition, $params);
+               $r = dba::inArray($items);
        }
 
-       if (! DBM::is_result($r)) {
+       if (!DBM::is_result($r)) {
                info(L10n::t('No results.') . EOL);
                return $o;
        }
index 555273443c6fc668b4bca76a7ddecf0b6ff26998..7eb588112b90ecf2fe00fabcfaf02364abf71f17 100644 (file)
@@ -2,6 +2,7 @@
 
 use Friendica\App;
 use Friendica\Database\DBM;
+use Friendica\Model\Item;
 
 function share_init(App $a) {
        $post_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
@@ -10,27 +11,25 @@ function share_init(App $a) {
                killme();
        }
 
-       $r = q("SELECT item.*, contact.network FROM `item`
-               INNER JOIN `contact` ON `item`.`contact-id` = `contact`.`id`
-               WHERE `item`.`id` = %d LIMIT 1",
-               intval($post_id)
-       );
+       $fields = ['private', 'body', 'author-name', 'author-link', 'author-avatar',
+               'guid', 'created', 'plink', 'title'];
+       $item = Item::selectFirst(local_user(), $fields, ['id' => $post_id]);
 
-       if (!DBM::is_result($r) || ($r[0]['private'] == 1)) {
+       if (!DBM::is_result($item) || $item['private']) {
                killme();
        }
 
-       if (strpos($r[0]['body'], "[/share]") !== false) {
-               $pos = strpos($r[0]['body'], "[share");
-               $o = substr($r[0]['body'], $pos);
+       if (strpos($item['body'], "[/share]") !== false) {
+               $pos = strpos($item['body'], "[share");
+               $o = substr($item['body'], $pos);
        } else {
-               $o = share_header($r[0]['author-name'], $r[0]['author-link'], $r[0]['author-avatar'], $r[0]['guid'], $r[0]['created'], $r[0]['plink']);
+               $o = share_header($item['author-name'], $item['author-link'], $item['author-avatar'], $item['guid'], $item['created'], $item['plink']);
 
-               if ($r[0]['title']) {
-                       $o .= '[b]'.$r[0]['title'].'[/b]'."\n";
+               if ($item['title']) {
+                       $o .= '[b]'.$item['title'].'[/b]'."\n";
                }
 
-               $o .= $r[0]['body'];
+               $o .= $item['body'];
                $o .= "[/share]";
        }
 
index df44df6efa893331ba525d29de6ee2573a80ea95..db8b9ba4feb3c0169e084b18e75f0c67b896cb48 100644 (file)
@@ -14,7 +14,7 @@ require_once 'include/items.php';
 
 function subthread_content(App $a) {
 
-       if(! local_user() && ! remote_user()) {
+       if (!local_user() && !remote_user()) {
                return;
        }
 
@@ -22,36 +22,32 @@ function subthread_content(App $a) {
 
        $item_id = (($a->argc > 1) ? notags(trim($a->argv[1])) : 0);
 
-       $r = q("SELECT * FROM `item` WHERE `parent` = '%s' OR `parent-uri` = '%s' and parent = id LIMIT 1",
-               dbesc($item_id),
-               dbesc($item_id)
-       );
+       $condition = ["`parent` = ? OR `parent-uri` = ? AND `parent` = `id`", $item_id, $item_id];
+       $item = Item::selectFirst(local_user(), [], $condition);
 
-       if(! $item_id || (! DBM::is_result($r))) {
+       if (empty($item_id) || !DBM::is_result($item)) {
                logger('subthread: no item ' . $item_id);
                return;
        }
 
-       $item = $r[0];
-
        $owner_uid = $item['uid'];
 
-       if(! can_write_wall($owner_uid)) {
+       if (!can_write_wall($owner_uid)) {
                return;
        }
 
        $remote_owner = null;
 
-       if(! $item['wall']) {
+       if (!$item['wall']) {
                // The top level post may have been written by somebody on another system
                $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
                        intval($item['contact-id']),
                        intval($item['uid'])
                );
-               if (! DBM::is_result($r)) {
+               if (!DBM::is_result($r)) {
                        return;
                }
-               if (! $r[0]['self']) {
+               if (!$r[0]['self']) {
                        $remote_owner = $r[0];
                }
        }
@@ -68,19 +64,19 @@ function subthread_content(App $a) {
                $owner = $r[0];
        }
 
-       if (! $owner) {
+       if (!$owner) {
                logger('like: no owner');
                return;
        }
 
-       if (! $remote_owner) {
+       if (!$remote_owner) {
                $remote_owner = $owner;
        }
 
        $contact = null;
        // This represents the person posting
 
-       if ((local_user()) && (local_user() == $owner_uid)) {
+       if (local_user() && (local_user() == $owner_uid)) {
                $contact = $owner;
        } else {
                $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
@@ -92,7 +88,7 @@ function subthread_content(App $a) {
                        $contact = $r[0];
                }
        }
-       if (! $contact) {
+       if (!$contact) {
                return;
        }
 
@@ -116,7 +112,7 @@ function subthread_content(App $a) {
 EOT;
        $bodyverb = L10n::t('%1$s is following %2$s\'s %3$s');
 
-       if (! isset($bodyverb)) {
+       if (!isset($bodyverb)) {
                return;
        }
 
@@ -168,5 +164,3 @@ EOT;
        killme();
 
 }
-
-
index 211e2ffa1fe6c94bb63eac0c84ebc7447ade683a..fa8dc35301f017898a15808171d8bc3c17c5b416 100644 (file)
@@ -15,7 +15,7 @@ require_once 'include/items.php';
 
 function tagger_content(App $a) {
 
-       if(! local_user() && ! remote_user()) {
+       if (!local_user() && !remote_user()) {
                return;
        }
 
@@ -23,25 +23,22 @@ function tagger_content(App $a) {
        // no commas allowed
        $term = str_replace([',',' '],['','_'],$term);
 
-       if(! $term)
+       if (!$term) {
                return;
+       }
 
        $item_id = (($a->argc > 1) ? notags(trim($a->argv[1])) : 0);
 
        logger('tagger: tag ' . $term . ' item ' . $item_id);
 
 
-       $r = q("SELECT * FROM `item` WHERE `id` = '%s' LIMIT 1",
-               dbesc($item_id)
-       );
+       $item = Item::selectFirst(local_user(), [], ['id' => $item_id]);
 
-       if(! $item_id || (! DBM::is_result($r))) {
+       if (!$item_id || !DBM::is_result($item)) {
                logger('tagger: no item ' . $item_id);
                return;
        }
 
-       $item = $r[0];
-
        $owner_uid = $item['uid'];
        $owner_nick = '';
        $blocktags = 0;
@@ -54,15 +51,16 @@ function tagger_content(App $a) {
                $blocktags = $r[0]['blocktags'];
        }
 
-       if(local_user() != $owner_uid)
+       if (local_user() != $owner_uid) {
                return;
+       }
 
        $r = q("select * from contact where self = 1 and uid = %d limit 1",
                intval(local_user())
        );
-       if (DBM::is_result($r))
+       if (DBM::is_result($r)) {
                        $contact = $r[0];
-       else {
+       else {
                logger('tagger: no contact_id');
                return;
        }
@@ -109,7 +107,7 @@ EOT;
 
        $bodyverb = L10n::t('%1$s tagged %2$s\'s %3$s with %4$s');
 
-       if (! isset($bodyverb)) {
+       if (!isset($bodyverb)) {
                return;
        }
 
@@ -165,7 +163,7 @@ EOT;
                dbesc($term)
        );
 
-       if ((!$blocktags) && $t[0]['tcount'] == 0 ) {
+       if (!$blocktags && $t[0]['tcount'] == 0) {
                q("INSERT INTO term (oid, otype, type, term, url, uid) VALUE (%d, %d, %d, '%s', '%s', %d)",
                   intval($item['id']),
                   $term_objtype,
index dd3d2397cb941766089a3d8ca0d665a7a9441457..f5626761e59d5ac8327e4d7fb6ada1395f1137a4 100644 (file)
@@ -976,6 +976,10 @@ class App
                if ($cat === 'config') {
                        $this->config[$k] = $value;
                } else {
+                       if (!isset($this->config[$cat])) {
+                               $this->config[$cat] = [];
+                       }
+
                        $this->config[$cat][$k] = $value;
                }
        }
@@ -1034,6 +1038,14 @@ class App
                // Only arrays are serialized in database, so we have to unserialize sparingly
                $value = is_string($v) && preg_match("|^a:[0-9]+:{.*}$|s", $v) ? unserialize($v) : $v;
 
+               if (!isset($this->config[$uid])) {
+                       $this->config[$uid] = [];
+               }
+
+               if (!isset($this->config[$uid][$cat])) {
+                       $this->config[$uid][$cat] = [];
+               }
+
                $this->config[$uid][$cat][$k] = $value;
        }
 
index 7d96587c258fadd8d8ee1ff40583884648fb3ebd..53c4daae4512ea522d49a484031415ba94365e3f 100644 (file)
@@ -74,7 +74,6 @@ class TagCloud
         */
        private static function tagadelic($uid, $count = 0, $owner_id = 0, $flags = '', $type = TERM_HASHTAG)
        {
-               $item_condition = item_condition();
                $sql_options = item_permissions_sql($uid);
                $limit = $count ? sprintf('LIMIT %d', intval($count)) : '';
 
@@ -91,13 +90,12 @@ class TagCloud
                // Fetch tags
                $r = dba::p("SELECT `term`, COUNT(`term`) AS `total` FROM `term`
                        LEFT JOIN `item` ON `term`.`oid` = `item`.`id`
-                       LEFT JOIN `user-item` ON `user-item`.`iid` = `item`.`id` AND `user-item`.`uid` = ?
                        WHERE `term`.`uid` = ? AND `term`.`type` = ?
                        AND `term`.`otype` = ?
-                       AND $item_condition $sql_options
+                       AND `item`.`visible` AND NOT `item`.`deleted` AND NOT `item`.`moderated`
+                       $sql_options
                        GROUP BY `term` ORDER BY `total` DESC $limit",
                        $uid,
-                       $uid,
                        $type,
                        TERM_OBJ_POST
                );
index 900e00b521384227ade6db134a478a11c902a324..d4419553c493b8b60a9d07416249d62fd2bb0672 100644 (file)
@@ -322,8 +322,8 @@ class DBStructure
                                                        $parameters['comment'] = "";
                                                }
 
-                                               $current_field_definition = implode(",", $field_definition);
-                                               $new_field_definition = implode(",", $parameters);
+                                               $current_field_definition = dba::clean_query(implode(",", $field_definition));
+                                               $new_field_definition = dba::clean_query(implode(",", $parameters));
                                                if ($current_field_definition != $new_field_definition) {
                                                        $sql2 = self::modifyTableField($fieldname, $parameters);
                                                        if ($sql3 == "") {
@@ -1074,7 +1074,7 @@ class DBStructure
                                "fields" => [
                                                "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
                                                "gid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["group" => "id"], "comment" => "groups.id of the associated group"],
-                                               "contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => "contact.id  of the member assigned to the associated group"],
+                                               "contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["contact" => "id"], "comment" => "contact.id of the member assigned to the associated group"],
                                                ],
                                "indexes" => [
                                                "PRIMARY" => ["id"],
index bf5b276dd2e39c621c38ed20ab875a70226a5955..e504849f7c11fbf5dbcfd337cd1af685ad13922b 100644 (file)
@@ -1055,22 +1055,22 @@ class Contact extends BaseObject
                }
 
                if (in_array($r[0]["network"], [NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, ""])) {
-                       $sql = "(`item`.`uid` = 0 OR (`item`.`uid` = %d AND NOT `item`.`global`))";
+                       $sql = "(`item`.`uid` = 0 OR (`item`.`uid` = ? AND NOT `item`.`global`))";
                } else {
-                       $sql = "`item`.`uid` = %d";
+                       $sql = "`item`.`uid` = ?";
                }
 
                $author_id = intval($r[0]["author-id"]);
 
                $contact = ($r[0]["contact-type"] == ACCOUNT_TYPE_COMMUNITY ? 'owner-id' : 'author-id');
 
-               $r = q(item_query(local_user()) . " AND `item`.`" . $contact . "` = %d AND " . $sql .
-                       " AND `item`.`verb` = '%s' ORDER BY `item`.`created` DESC LIMIT %d, %d",
-                       intval($author_id), intval(local_user()), dbesc(ACTIVITY_POST),
-                       intval($a->pager['start']), intval($a->pager['itemspage'])
-               );
+               $condition = ["`$contact` = ? AND `verb` = ? AND " . $sql,
+                       $author_id, ACTIVITY_POST, local_user()];
+               $params = ['order' => ['created' => true],
+                       'limit' => [$a->pager['start'], $a->pager['itemspage']]];
+               $r = Item::select(local_user(), [], $condition, $params);
 
-               $o = conversation($a, $r, 'contact-posts', false);
+               $o = conversation($a, dba::inArray($r), 'contact-posts', false);
 
                $o .= alt_pager($a, count($r));
 
index c15d10f1971a907ca3849ae785e8b8f513dcbccc..e79f3704d3a989205d4eca1d73236c4e2d391c6b 100644 (file)
@@ -33,6 +33,270 @@ require_once 'include/text.php';
 
 class Item extends BaseObject
 {
+       /**
+        * Retrieve a single record from the item table and returns it in an associative array
+        *
+        * @brief Retrieve a single record from a table
+        * @param integer $uid User ID
+        * @param array  $fields
+        * @param array  $condition
+        * @param array  $params
+        * @return bool|array
+        * @see dba::select
+        */
+       public static function selectFirst($uid, array $fields = [], array $condition = [], $params = [])
+       {
+               $params['limit'] = 1;
+               $result = self::select($uid, $fields, $condition, $params);
+
+               if (is_bool($result)) {
+                       return $result;
+               } else {
+                       $row = dba::fetch($result);
+                       dba::close($result);
+                       return $row;
+               }
+       }
+
+       /**
+        * @brief Select rows from the item table
+        *
+        * @param integer $uid User ID
+        * @param array  $fields    Array of selected fields, empty for all
+        * @param array  $condition Array of fields for condition
+        * @param array  $params    Array of several parameters
+        *
+        * @return boolean|object
+        */
+       public static function select($uid, array $selected = [], array $condition = [], $params = [])
+       {
+               $fields = self::fieldlist();
+
+               $select_fields = self::constructSelectFields($fields, $selected);
+
+               $condition_string = dba::buildCondition($condition);
+
+               $condition_string = self::addTablesToFields($condition_string, $fields);
+
+               $condition_string = $condition_string . ' AND ' . self::condition(false);
+
+               $param_string = self::addTablesToFields(dba::buildParameter($params), $fields);
+
+               $table = "`item` " . self::constructJoins($uid, $select_fields . $condition_string . $param_string, false);
+
+               $sql = "SELECT " . $select_fields . " FROM " . $table . $condition_string . $param_string;
+
+               return dba::p($sql, $condition);
+       }
+
+       /**
+        * Retrieve a single record from the starting post in the item table and returns it in an associative array
+        *
+        * @brief Retrieve a single record from a table
+        * @param integer $uid User ID
+        * @param array  $fields
+        * @param array  $condition
+        * @param array  $params
+        * @return bool|array
+        * @see dba::select
+        */
+       public static function selectFirstThread($uid, array $fields = [], array $condition = [], $params = [])
+       {
+               $params['limit'] = 1;
+               $result = self::selectThread($uid, $fields, $condition, $params);
+
+               if (is_bool($result)) {
+                       return $result;
+               } else {
+                       $row = dba::fetch($result);
+                       dba::close($result);
+                       return $row;
+               }
+       }
+
+       /**
+        * @brief Select rows from the starting post in the item table
+        *
+        * @param integer $uid User ID
+        * @param array  $fields    Array of selected fields, empty for all
+        * @param array  $condition Array of fields for condition
+        * @param array  $params    Array of several parameters
+        *
+        * @return boolean|object
+        */
+       public static function selectThread($uid, array $selected = [], array $condition = [], $params = [])
+       {
+               $fields = self::fieldlist();
+
+               $threadfields = ['thread' => ['iid', 'uid', 'contact-id', 'owner-id', 'author-id',
+                       'created', 'edited', 'commented', 'received', 'changed', 'wall', 'private',
+                       'pubmail', 'moderated', 'visible', 'starred', 'ignored', 'bookmark',
+                       'unseen', 'deleted', 'origin', 'forum_mode', 'mention', 'network']];
+
+               $select_fields = self::constructSelectFields($fields, $selected);
+
+               $condition_string = dba::buildCondition($condition);
+
+               $condition_string = self::addTablesToFields($condition_string, $threadfields);
+               $condition_string = self::addTablesToFields($condition_string, $fields);
+
+               $condition_string = $condition_string . ' AND ' . self::condition(true);
+
+               $param_string = dba::buildParameter($params);
+               $param_string = self::addTablesToFields($param_string, $threadfields);
+               $param_string = self::addTablesToFields($param_string, $fields);
+
+               $table = "`thread` " . self::constructJoins($uid, $select_fields . $condition_string . $param_string, true);
+
+               $sql = "SELECT " . $select_fields . " FROM " . $table . $condition_string . $param_string;
+
+               return dba::p($sql, $condition);
+       }
+
+       /**
+        * @brief Returns a list of fields that are associated with the item table
+        *
+        * @return array field list
+        */
+       private static function fieldlist()
+       {
+               $item_fields = ['author-id', 'owner-id', 'contact-id', 'uid', 'id', 'parent',
+                       'uri', 'thr-parent', 'parent-uri', 'content-warning',
+                       'commented', 'created', 'edited', 'received', 'verb', 'object-type', 'postopts', 'plink',
+                       'guid', 'wall', 'private', 'starred', 'origin', 'title', 'body', 'file', 'event-id',
+                       'location', 'coord', 'app', 'attach', 'rendered-hash', 'rendered-html', 'object',
+                       'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
+                       'id' => 'item_id', 'network' => 'item_network'];
+
+               $author_fields = ['url' => 'author-link', 'name' => 'author-name', 'thumb' => 'author-avatar'];
+               $owner_fields = ['url' => 'owner-link', 'name' => 'owner-name', 'thumb' => 'owner-avatar'];
+               $contact_fields = ['url' => 'contact-link', 'name' => 'contact-name', 'thumb' => 'contact-avatar',
+                       'network', 'url', 'name', 'writable', 'self', 'id' => 'cid', 'alias'];
+
+               $event_fields = ['created' => 'event-created', 'edited' => 'event-edited',
+                       'start' => 'event-start','finish' => 'event-finish',
+                       'summary' => 'event-summary','desc' => 'event-desc',
+                       'location' => 'event-location', 'type' => 'event-type',
+                       'nofinish' => 'event-nofinish','adjust' => 'event-adjust',
+                       'ignore' => 'event-ignore', 'id' => 'event-id'];
+
+               return ['item' => $item_fields, 'author' => $author_fields, 'owner' => $owner_fields,
+                       'contact' => $contact_fields, 'event' => $event_fields];
+       }
+
+       /**
+        * @brief Returns SQL condition for the "select" functions
+        *
+        * @param boolean $thread_mode Called for the items (false) or for the threads (true)
+        *
+        * @return string SQL condition
+        */
+       private static function condition($thread_mode)
+       {
+               if ($thread_mode) {
+                       $master_table = "`thread`";
+               } else {
+                       $master_table = "`item`";
+               }
+               return "$master_table.`visible` AND NOT $master_table.`deleted` AND NOT $master_table.`moderated` AND (`user-item`.`hidden` IS NULL OR NOT `user-item`.`hidden`) ";
+       }
+
+       /**
+        * @brief Returns all needed "JOIN" commands for the "select" functions
+        *
+        * @param integer $uid User ID
+        * @param string $sql_commands The parts of the built SQL commands in the "select" functions
+        * @param boolean $thread_mode Called for the items (false) or for the threads (true)
+        *
+        * @return string The SQL joins for the "select" functions
+        */
+       private static function constructJoins($uid, $sql_commands, $thread_mode)
+       {
+               if ($thread_mode) {
+                       $master_table = "`thread`";
+                       $master_table_key = "`thread`.`iid`";
+                       $joins = "STRAIGHT_JOIN `item` ON `item`.`id` = `thread`.`iid` ";
+               } else {
+                       $master_table = "`item`";
+                       $master_table_key = "`item`.`id`";
+                       $joins = '';
+               }
+
+               $joins .= sprintf("STRAIGHT_JOIN `contact` ON `contact`.`id` = $master_table.`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`) OR `contact`.`uid` = 0)
+                       STRAIGHT_JOIN `contact` AS `author` ON `author`.`id` = $master_table.`author-id` AND NOT `author`.`blocked`
+                       STRAIGHT_JOIN `contact` AS `owner` ON `owner`.`id` = $master_table.`owner-id` AND NOT `owner`.`blocked`
+                       LEFT JOIN `user-item` ON `user-item`.`iid` = $master_table_key AND `user-item`.`uid` = %d",
+                       CONTACT_IS_SHARING, CONTACT_IS_FRIEND, intval($uid));
+
+               if (strpos($sql_commands, "`group_member`.") !== false) {
+                       $joins .= " STRAIGHT_JOIN `group_member` ON `group_member`.`contact-id` = $master_table.`contact-id`";
+               }
+
+               if (strpos($sql_commands, "`user`.") !== false) {
+                       $joins .= " STRAIGHT_JOIN `user` ON `user`.`uid` = $master_table.`uid`";
+               }
+
+               if (strpos($sql_commands, "`event`.") !== false) {
+                       $joins .= " LEFT JOIN `event` ON `event-id` = `event`.`id`";
+               }
+
+               return $joins;
+       }
+
+       /**
+        * @brief Add the field list for the "select" functions
+        *
+        * @param array $fields The field definition array
+        * @param array $selected The array with the selected fields from the "select" functions
+        *
+        * @return string The field list
+        */
+       private static function constructSelectFields($fields, $selected)
+       {
+               $selection = [];
+               foreach ($fields as $table => $table_fields) {
+                       foreach ($table_fields as $field => $select) {
+                               if (empty($selected) || in_array($select, $selected)) {
+                                       if (is_int($field)) {
+                                               $selection[] = "`" . $table . "`.`".$select."`";
+                                       } else {
+                                               $selection[] = "`" . $table . "`.`" . $field . "` AS `".$select ."`";
+                                       }
+                               }
+                       }
+               }
+               return implode(", ", $selection);
+       }
+
+       /**
+        * @brief add table definition to fields in an SQL query
+        *
+        * @param string $query SQL query
+        * @param array $fields The field definition array
+        *
+        * @return string the changed SQL query
+        */
+       private static function addTablesToFields($query, $fields)
+       {
+               foreach ($fields as $table => $table_fields) {
+                       foreach ($table_fields as $alias => $field) {
+                               if (is_int($alias)) {
+                                       $replace_field = $field;
+                               } else {
+                                       $replace_field = $alias;
+                               }
+
+                               $search = "/([^\.])`" . $field . "`/i";
+                               $replace = "$1`" . $table . "`.`" . $replace_field . "`";
+                               $query = preg_replace($search, $replace, $query);
+                       }
+               }
+               return $query;
+       }
+
        /**
         * @brief Update existing item entries
         *
index 4c2783874c78d0c9047b568b6078fb31415e5025..a66e48a380b26995c5917d795e69c51d01933592 100644 (file)
@@ -192,7 +192,7 @@ class Post extends BaseObject
                        'delete'   => $delete,
                ];
 
-               if (!local_user()) {
+               if (!local_user() || ($item['uid'] == 0)) {
                        $drop = false;
                }
 
index 4eaf5bbb6c74c76e4eda74763a6478f42f16831f..2dcc0474062978c013ad0f567e3ff8b90aa72f0d 100644 (file)
@@ -1009,7 +1009,7 @@ class PortableContact
 
                // Maybe the page is unencrypted only?
                $xmlobj = @simplexml_load_string($serverret["body"], 'SimpleXMLElement', 0, "http://docs.oasis-open.org/ns/xri/xrd-1.0");
-               if (!$serverret["success"] || ($serverret["body"] == "") || (@sizeof($xmlobj) == 0) || !is_object($xmlobj)) {
+               if (!$serverret["success"] || ($serverret["body"] == "") || (empty($xmlobj) == 0) || !is_object($xmlobj)) {
                        $server_url = str_replace("https://", "http://", $server_url);
 
                        // We set the timeout to 20 seconds since this operation should be done in no time if the server was vital
@@ -1025,7 +1025,7 @@ class PortableContact
                        $xmlobj = @simplexml_load_string($serverret["body"], 'SimpleXMLElement', 0, "http://docs.oasis-open.org/ns/xri/xrd-1.0");
                }
 
-               if (!$serverret["success"] || ($serverret["body"] == "") || (sizeof($xmlobj) == 0) || !is_object($xmlobj)) {
+               if (!$serverret["success"] || ($serverret["body"] == "") || (empty($xmlobj) == 0) || !is_object($xmlobj)) {
                        // Workaround for bad configured servers (known nginx problem)
                        if (!in_array($serverret["debug"]["http_code"], ["403", "404"])) {
                                $failure = true;
index f0e27b4af1d25f9d18b993360a70a3282934c9d1..c21f651d5fa051dc83e01660e380f1a4157a12ea 100644 (file)
@@ -1871,7 +1871,7 @@ class ApiTest extends DatabaseTest
                $this->app->argv[1] = '1.1';
                $this->app->argv[3] = 'create';
                $this->app->argc = 10;
-               $_REQUEST['id'] = 1;
+               $_REQUEST['id'] = 3;
                $result = api_favorites_create_destroy('json');
                $this->assertStatus($result['status']);
        }
@@ -1885,7 +1885,7 @@ class ApiTest extends DatabaseTest
                $this->app->argv[1] = '1.1';
                $this->app->argv[3] = 'create';
                $this->app->argc = 10;
-               $_REQUEST['id'] = 1;
+               $_REQUEST['id'] = 3;
                $result = api_favorites_create_destroy('rss');
                $this->assertXml($result, 'status');
        }
@@ -1899,7 +1899,7 @@ class ApiTest extends DatabaseTest
                $this->app->argv[1] = '1.1';
                $this->app->argv[3] = 'destroy';
                $this->app->argc = 10;
-               $_REQUEST['id'] = 1;
+               $_REQUEST['id'] = 3;
                $result = api_favorites_create_destroy('json');
                $this->assertStatus($result['status']);
        }
index 9cacab714b66f7787c987105e3df1bfa9413c7cd..9ba5ec387ec2ea94c6f5125b9669a43666dd7c41 100644 (file)
@@ -48,7 +48,7 @@ contact:
         network: dfrn
     -
         id: 44
-        uid: 42
+        uid: 0
         name: Friend contact
         nick: friendcontact
         self: false
@@ -74,6 +74,7 @@ item:
         author-link: http://localhost/profile/selfcontact
         wall: true
         starred: true
+        origin: true
         allow_cid: ''
         allow_gid: ''
         deny_cid: ''
@@ -92,6 +93,7 @@ item:
         author-link: http://localhost/profile/selfcontact
         wall: true
         starred: false
+        origin: true
     -
         id: 3
         visible: true
@@ -106,20 +108,22 @@ item:
         author-link: http://localhost/profile/othercontact
         wall: true
         starred: false
+        origin: true
     -
         id: 4
         visible: true
-        contact-id: 43
-        author-id: 43
+        contact-id: 44
+        author-id: 44
         owner-id: 42
         uid: 42
         verb: http://activitystrea.ms/schema/1.0/post
         unseen: false
-        body: Other user reply
+        body: Friend user reply
         parent: 1
         author-link: http://localhost/profile/othercontact
         wall: true
         starred: false
+        origin: true
     -
         id: 5
         visible: true
@@ -134,6 +138,7 @@ item:
         author-link: http://localhost/profile/othercontact
         wall: true
         starred: false
+        origin: true
         allow_cid: ''
         allow_gid: ''
         deny_cid: ''
@@ -152,24 +157,31 @@ item:
         author-link: http://localhost/profile/othercontact
         wall: true
         starred: false
+        origin: true
 
 thread:
     -
         iid: 1
         visible: true
         contact-id: 42
+        author-id: 42
+        owner-id: 42
         uid: 42
         wall: true
     -
         iid: 3
         visible: true
         contact-id: 43
+        author-id: 43
+        owner-id: 43
         uid: 0
         wall: true
     -
         iid: 6
         visible: true
         contact-id: 44
+        author-id: 44
+        owner-id: 44
         uid: 0
         wall: true
 
index b5f46180a4fbe3409cd51154cef85fb0b58e452f..1e3e5de82b25c59b01cb8baaa476d1179aeb7922 100644 (file)
 # This file is distributed under the same license as the Friendica package.
 # 
 # Translators:
+# Aditoo, 2018
 # Josef Moravek <josef.moravek@bydleni.cz>, 2014
+# Aditoo, 2018
 # michal_s <msupler@gmail.com>, 2011-2015
 # michal_s <msupler@gmail.com>, 2015
 msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-12-19 07:46+0100\n"
-"PO-Revision-Date: 2016-12-19 10:01+0000\n"
-"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
+"POT-Creation-Date: 2018-06-02 08:49+0200\n"
+"PO-Revision-Date: 2018-06-12 12:30+0000\n"
+"Last-Translator: Aditoo\n"
 "Language-Team: Czech (http://www.transifex.com/Friendica/friendica/language/cs/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: cs\n"
-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
 
-#: include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Přidat nový kontakt"
-
-#: include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Zadejte adresu nebo umístění webu"
+#: include/enotify.php:31
+msgid "Friendica Notification"
+msgstr "Oznámení Friendica"
 
-#: include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Příklad: jan@příklad.cz, http://příklad.cz/jana"
+#: include/enotify.php:34
+msgid "Thank You,"
+msgstr "Děkujeme, "
 
-#: include/contact_widgets.php:10 include/identity.php:218
-#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87
-#: mod/suggest.php:101
-msgid "Connect"
-msgstr "Spojit"
+#: include/enotify.php:37
+#, php-format
+msgid "%s Administrator"
+msgstr "%s administrátor"
 
-#: include/contact_widgets.php:24
+#: include/enotify.php:39
 #, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "Pozvánka %d k dispozici"
-msgstr[1] "Pozvánky %d k dispozici"
-msgstr[2] "Pozvánky %d k dispozici"
+msgid "%1$s, %2$s Administrator"
+msgstr "%1$s, %2$s administrátor"
 
-#: include/contact_widgets.php:30
-msgid "Find People"
-msgstr "Nalézt lidi"
+#: include/enotify.php:95
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Oznámení] Obdržena nová zpráva na %s"
 
-#: include/contact_widgets.php:31
-msgid "Enter name or interest"
-msgstr "Zadejte jméno nebo zájmy"
+#: include/enotify.php:97
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s Vám poslal/a novou soukromou zprávu na %2$s."
 
-#: include/contact_widgets.php:32 include/Contact.php:354
-#: include/conversation.php:981 mod/allfriends.php:66 mod/dirfind.php:204
-#: mod/match.php:72 mod/suggest.php:83 mod/contacts.php:602 mod/follow.php:103
-msgid "Connect/Follow"
-msgstr "Připojit / Následovat"
+#: include/enotify.php:98
+msgid "a private message"
+msgstr "soukromou zprávu"
 
-#: include/contact_widgets.php:33
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Příklady: Robert Morgenstein, rybaření"
+#: include/enotify.php:98
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s Vám poslal %2$s."
 
-#: include/contact_widgets.php:34 mod/directory.php:204 mod/contacts.php:798
-msgid "Find"
-msgstr "Najít"
+#: include/enotify.php:100
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Prosím navštivte %s pro zobrazení Vašich soukromých zpráv a možnost na ně odpovědět."
 
-#: include/contact_widgets.php:35 mod/suggest.php:114
-#: view/theme/vier/theme.php:203
-msgid "Friend Suggestions"
-msgstr "Návrhy přátel"
+#: include/enotify.php:138
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s okomentoval/a [url=%2$s]%3$s[/url]"
 
-#: include/contact_widgets.php:36 view/theme/vier/theme.php:202
-msgid "Similar Interests"
-msgstr "Podobné zájmy"
+#: include/enotify.php:146
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s okomentoval/a [url=%2$s]%4$s od %3$s[/url]"
 
-#: include/contact_widgets.php:37
-msgid "Random Profile"
-msgstr "Náhodný Profil"
+#: include/enotify.php:156
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s okomentoval/a [url=%2$s]Váš/Vaši %3$s[/url]"
 
-#: include/contact_widgets.php:38 view/theme/vier/theme.php:204
-msgid "Invite Friends"
-msgstr "Pozvat přátele"
+#: include/enotify.php:168
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Oznámení] Komentář ke konverzaci #%1$d od %2$s"
 
-#: include/contact_widgets.php:108
-msgid "Networks"
-msgstr "Sítě"
+#: include/enotify.php:170
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s okomentoval/a Vámi sledovanou položku/konverzaci."
 
-#: include/contact_widgets.php:111
-msgid "All Networks"
-msgstr "Všechny sítě"
+#: 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 "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět."
 
-#: include/contact_widgets.php:141 include/features.php:110
-msgid "Saved Folders"
-msgstr "Uložené složky"
+#: include/enotify.php:180
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Oznámení] %s přidal/a příspěvek na Vaši profilovou zeď"
 
-#: include/contact_widgets.php:144 include/contact_widgets.php:176
-msgid "Everything"
-msgstr "Všechno"
+#: include/enotify.php:182
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s přidal/a příspěvek na Vaši profilovou zeď na %2$s"
 
-#: include/contact_widgets.php:173
-msgid "Categories"
-msgstr "Kategorie"
+#: include/enotify.php:183
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s přidal/a příspěvek na [url=%2$s]Vaši zeď[/url]"
 
-#: include/contact_widgets.php:237
+#: include/enotify.php:195
 #, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d sdílený kontakt"
-msgstr[1] "%d sdílených kontaktů"
-msgstr[2] "%d sdílených kontaktů"
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Oznámení] %s Vás označil/a"
 
-#: include/contact_widgets.php:242 include/ForumManager.php:119
-#: include/items.php:2245 mod/content.php:624 object/Item.php:432
-#: view/theme/vier/theme.php:260 boot.php:972
-msgid "show more"
-msgstr "zobrazit více"
+#: include/enotify.php:197
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s Vás označil/a na %2$s"
 
-#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025
-#: view/theme/vier/theme.php:255
-msgid "Forums"
-msgstr "Fóra"
+#: include/enotify.php:198
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]Vás označil/a[/url]."
 
-#: include/ForumManager.php:116 view/theme/vier/theme.php:257
-msgid "External link to forum"
-msgstr ""
+#: include/enotify.php:210
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica:Oznámení] %s sdílel/a nový příspěvek"
 
-#: include/profile_selectors.php:6
-msgid "Male"
-msgstr "Muž"
+#: include/enotify.php:212
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s sdílel/a nový příspěvek na %2$s"
 
-#: include/profile_selectors.php:6
-msgid "Female"
-msgstr "Žena"
+#: include/enotify.php:213
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]sdílel/a příspěvek[/url]."
 
-#: include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "V současné době muž"
+#: include/enotify.php:225
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Oznámení] %1$s Vás šťouchnul/a"
 
-#: include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "V současné době žena"
+#: include/enotify.php:227
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s Vás šťouchnul/a na %2$s"
 
-#: include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Většinou muž"
+#: include/enotify.php:228
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "Uživatel %1$s [url=%2$s]Vás šťouchnul/a[/url]."
 
-#: include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Většinou žena"
+#: include/enotify.php:244
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Oznámení] %s označil/a Váš příspěvek"
 
-#: include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgender"
+#: include/enotify.php:246
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s označil/a Váš příspěvek na%2$s"
 
-#: include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Intersex"
+#: include/enotify.php:247
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s označil/a [url=%2$s]Váš příspěvek[/url]"
 
-#: include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transexuál"
+#: include/enotify.php:259
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Oznámení] Obdrženo představení"
 
-#: include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermafrodit"
+#: include/enotify.php:261
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Obdržel/a jste představení od \"%1$s\" na %2$s"
 
-#: include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Neutrál"
+#: include/enotify.php:262
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Obdržel/a jste [url=%1$s]představení[/url] od %2$s."
 
-#: include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Nespecifikováno"
+#: include/enotify.php:267 include/enotify.php:313
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Můžete navštívit jejich profil na %s"
 
-#: include/profile_selectors.php:6
-msgid "Other"
-msgstr "Jiné"
+#: include/enotify.php:269
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Prosím navštivte %s pro schválení či zamítnutí představení."
 
-#: include/profile_selectors.php:6 include/conversation.php:1487
-msgid "Undecided"
-msgid_plural "Undecided"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+#: include/enotify.php:277
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr "[Friendica:Oznámení] Nový člověk s vámi sdílí"
 
-#: include/profile_selectors.php:23
-msgid "Males"
-msgstr "Muži"
+#: include/enotify.php:279 include/enotify.php:280
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
+msgstr "Uživatel %1$s s vámi sdílí na %2$s"
 
-#: include/profile_selectors.php:23
-msgid "Females"
-msgstr "Ženy"
+#: include/enotify.php:287
+msgid "[Friendica:Notify] You have a new follower"
+msgstr "[Friendica:Oznámení] Máte nového následovníka"
 
-#: include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Gay"
+#: include/enotify.php:289 include/enotify.php:290
+#, php-format
+msgid "You have a new follower at %2$s : %1$s"
+msgstr "Máte nového následovníka na %2$s : %1$s"
 
-#: include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbička"
+#: include/enotify.php:302
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Oznámení] Obdržen návrh pro přátelství"
 
-#: include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Bez preferencí"
+#: include/enotify.php:304
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Obdržel jste návrh pro přátelství od '%1$s' na %2$s"
 
-#: include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bisexuál"
+#: include/enotify.php:305
+#, php-format
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Obdržel jste [url=%1$s]návrh pro přátelství[/url] s %2$s from %3$s."
 
-#: include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autosexuál"
+#: include/enotify.php:311
+msgid "Name:"
+msgstr "Jméno:"
 
-#: include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Abstinent"
+#: include/enotify.php:312
+msgid "Photo:"
+msgstr "Foto:"
 
-#: include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "panic/panna"
+#: include/enotify.php:315
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Prosím navštivte %s pro schválení či zamítnutí doporučení."
 
-#: include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Deviant"
+#: include/enotify.php:323 include/enotify.php:338
+msgid "[Friendica:Notify] Connection accepted"
+msgstr "[Friendica:Oznámení] Spojení akceptováno"
 
-#: include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetišista"
+#: include/enotify.php:325 include/enotify.php:340
+#, php-format
+msgid "'%1$s' has accepted your connection request at %2$s"
+msgstr "\"%1$s\" akceptoval váš požadavek na spojení na %2$s"
 
-#: include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Hodně"
+#: include/enotify.php:326 include/enotify.php:341
+#, php-format
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr "%2$s akceptoval váš [url=%1$s]požadavek na spojení[/url]."
 
-#: include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Nesexuální"
+#: include/enotify.php:331
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and "
+"email without restriction."
+msgstr "Jste nyní vzájemní přátelé a můžete si vyměňovat aktualizace stavu, fotky a e-maily bez omezení."
 
-#: include/profile_selectors.php:42
-msgid "Single"
-msgstr "Svobodný"
+#: include/enotify.php:333
+#, php-format
+msgid "Please visit %s if you wish to make any changes to this relationship."
+msgstr "Pokud chcete provést změny s tímto vztahem, prosím navštivte %s."
 
-#: include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Osamnělý"
+#: 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\" se rozhodl/a Vás přijmout jako fanouška, což omezuje některé formy komunikace - například soukoromé zprávy a některé interakce s profily. Pokud je toto stránka celebrity či komunity, byla tato nastavení aplikována automaticky."
 
-#: include/profile_selectors.php:42
-msgid "Available"
-msgstr "Dostupný"
+#: 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\" se může rozhodnout tento vztah v budoucnosti rozšířit do obousměrného či jiného liberálnějšího vztahu."
 
-#: include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Nedostupný"
+#: include/enotify.php:350
+#, php-format
+msgid "Please visit %s  if you wish to make any changes to this relationship."
+msgstr "Prosím navštivte %s  pokud chcete změnit tento vztah."
 
-#: include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "Zamilovaný"
+#: include/enotify.php:360 mod/removeme.php:45
+msgid "[Friendica System Notify]"
+msgstr "[Oznámení systému Friendica]"
 
-#: include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "Zabouchnutý"
+#: include/enotify.php:360
+msgid "registration request"
+msgstr "žádost o registraci"
 
-#: include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Seznamující se"
+#: include/enotify.php:362
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr "Obdržel jste žádost o registraci od '%1$s' na %2$s"
 
-#: include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Nevěrný"
+#: include/enotify.php:363
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr "Obdržel jste [url=%1$s]žádost o registraci[/url] od '%2$s'."
 
-#: include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Závislý na sexu"
+#: 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 "Celé jméno:\t\t%1$s\\nAdresa stránky:\t\t%2$s\\nPřihlašovací jméno:\t%3$s (%4$s)"
 
-#: include/profile_selectors.php:42 include/user.php:280 include/user.php:284
-msgid "Friends"
-msgstr "Přátelé"
+#: include/enotify.php:374
+#, php-format
+msgid "Please visit %s to approve or reject the request."
+msgstr "Prosím navštivte %s k odsouhlasení nebo k zamítnutí požadavku."
 
-#: include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Přátelé / výhody"
+#: include/api.php:1202
+#, php-format
+msgid "Daily posting limit of %d post reached. The post was rejected."
+msgid_plural "Daily posting limit of %d posts reached. The post was rejected."
+msgstr[0] "Byl dosažen denní limit %d příspěvku. Příspěvek byl odmítnut."
+msgstr[1] "Byl dosažen denní limit %d příspěvků. Příspěvek byl odmítnut."
+msgstr[2] "Byl dosažen denní limit %d příspěvků. Příspěvek byl odmítnut."
+msgstr[3] "Byl dosažen denní limit %d příspěvků. Příspěvek byl odmítnut."
 
-#: include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Ležérní"
+#: include/api.php:1226
+#, php-format
+msgid "Weekly posting limit of %d post reached. The post was rejected."
+msgid_plural ""
+"Weekly posting limit of %d posts reached. The post was rejected."
+msgstr[0] "Byl dosažen týdenní limit %d příspěvku. Příspěvek byl odmítnut."
+msgstr[1] "Byl dosažen týdenní limit %d příspěvků. Příspěvek byl odmítnut."
+msgstr[2] "Byl dosažen týdenní limit %d příspěvků. Příspěvek byl odmítnut."
+msgstr[3] "Byl dosažen týdenní limit %d příspěvků. Příspěvek byl odmítnut."
+
+#: include/api.php:1250
+#, php-format
+msgid "Monthly posting limit of %d post reached. The post was rejected."
+msgstr "Byl dosažen měsíční limit %d příspěvků. Příspěvek byl odmítnut."
+
+#: include/api.php:4521 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:710 mod/photos.php:1137
+#: mod/photos.php:1154 mod/photos.php:1678 src/Model/User.php:555
+#: src/Model/User.php:563 src/Model/User.php:571
+msgid "Profile Photos"
+msgstr "Profilové fotky"
 
-#: include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Zadaný"
+#: include/conversation.php:144 include/conversation.php:279
+#: include/text.php:1749 src/Model/Item.php:2002
+msgid "event"
+msgstr "událost"
 
-#: include/profile_selectors.php:42
-msgid "Married"
-msgstr "Ženatý/vdaná"
+#: include/conversation.php:147 include/conversation.php:157
+#: include/conversation.php:282 include/conversation.php:291
+#: mod/subthread.php:101 mod/tagger.php:72 src/Model/Item.php:2000
+#: src/Protocol/Diaspora.php:1957
+msgid "status"
+msgstr "stav"
 
-#: include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "Pomyslně ženatý/vdaná"
+#: include/conversation.php:152 include/conversation.php:287
+#: include/text.php:1751 mod/subthread.php:101 mod/tagger.php:72
+#: src/Model/Item.php:2000
+msgid "photo"
+msgstr "fotka"
 
-#: include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partneři"
+#: include/conversation.php:164 src/Model/Item.php:1873
+#: src/Protocol/Diaspora.php:1953
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s se líbí %3$s %2$s"
 
-#: include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "Žijící ve společné domácnosti"
+#: include/conversation.php:166 src/Model/Item.php:1878
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s se nelíbí %3$s %2$s"
 
-#: include/profile_selectors.php:42
-msgid "Common law"
-msgstr "Zvykové právo"
+#: include/conversation.php:168
+#, php-format
+msgid "%1$s attends %2$s's %3$s"
+msgstr "%1$s se účastní %3$s %2$s"
 
-#: include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Šťastný"
+#: include/conversation.php:170
+#, php-format
+msgid "%1$s doesn't attend %2$s's %3$s"
+msgstr "%1$s se neúčastní %3$s %2$s"
 
-#: include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Nehledající"
+#: include/conversation.php:172
+#, php-format
+msgid "%1$s attends maybe %2$s's %3$s"
+msgstr "%1$s se možná účastní %3$s %2$s"
 
-#: include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: include/conversation.php:206
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s je nyní přítel s %2$s"
 
-#: include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Zrazen"
+#: include/conversation.php:247
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s šťouchnul %2$s"
 
-#: include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Odloučený"
+#: include/conversation.php:301 mod/tagger.php:110
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s označil %3$s %2$s s %4$s"
 
-#: include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Nestálý"
+#: include/conversation.php:328
+msgid "post/item"
+msgstr "příspěvek/položka"
 
-#: include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Rozvedený(á)"
+#: include/conversation.php:329
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "uživatel %1$s označil %3$s %2$s jako oblíbené"
 
-#: include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "Pomyslně rozvedený"
+#: include/conversation.php:609 mod/photos.php:1495 mod/profiles.php:355
+msgid "Likes"
+msgstr "Libí se mi"
 
-#: include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Ovdovělý(á)"
+#: include/conversation.php:609 mod/photos.php:1495 mod/profiles.php:359
+msgid "Dislikes"
+msgstr "Nelibí se mi"
 
-#: include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Nejistý"
+#: include/conversation.php:610 include/conversation.php:1638
+#: mod/photos.php:1496
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] "Účastní se"
+msgstr[1] "Účastní se"
+msgstr[2] "Účastní se"
+msgstr[3] "Účastní se"
 
-#: include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "Je to složité"
+#: include/conversation.php:610 mod/photos.php:1496
+msgid "Not attending"
+msgstr "Neúčastní se"
 
-#: include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Nezajímá"
+#: include/conversation.php:610 mod/photos.php:1496
+msgid "Might attend"
+msgstr "Mohl/a by se zúčastnit"
 
-#: include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Zeptej se mě"
+#: include/conversation.php:722 mod/photos.php:1563 src/Object/Post.php:192
+msgid "Select"
+msgstr "Vybrat"
+
+#: include/conversation.php:723 mod/contacts.php:830 mod/contacts.php:1035
+#: mod/admin.php:1832 mod/photos.php:1564 mod/settings.php:730
+msgid "Delete"
+msgstr "Odstranit"
 
-#: include/dba_pdo.php:72 include/dba.php:56
+#: include/conversation.php:761 src/Object/Post.php:371
+#: src/Object/Post.php:372
 #, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Nelze nalézt záznam v DNS pro databázový server '%s'"
+msgid "View %s's profile @ %s"
+msgstr "Zobrazit profil uživatele %s na %s"
 
-#: include/auth.php:45
-msgid "Logged out."
-msgstr "Odhlášen."
+#: include/conversation.php:773 src/Object/Post.php:359
+msgid "Categories:"
+msgstr "Kategorie:"
 
-#: include/auth.php:116 include/auth.php:178 mod/openid.php:100
-msgid "Login failed."
-msgstr "Přihlášení se nezdařilo."
+#: include/conversation.php:774 src/Object/Post.php:360
+msgid "Filed under:"
+msgstr "Vyplněn pod:"
 
-#: include/auth.php:132 include/user.php:75
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. "
+#: include/conversation.php:781 src/Object/Post.php:385
+#, php-format
+msgid "%s from %s"
+msgstr "%s od %s"
 
-#: include/auth.php:132 include/user.php:75
-msgid "The error message was:"
-msgstr "Chybová zpráva byla:"
+#: include/conversation.php:796
+msgid "View in context"
+msgstr "Zobrazit v kontextu"
 
-#: include/group.php:25
-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 "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění <strong>může</ strong> ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěli, vytvořte, prosím,  další skupinu s jiným názvem."
+#: include/conversation.php:798 include/conversation.php:1313
+#: mod/wallmessage.php:145 mod/editpost.php:125 mod/message.php:245
+#: mod/message.php:414 mod/photos.php:1467 src/Object/Post.php:410
+msgid "Please wait"
+msgstr "Čekejte prosím"
 
-#: include/group.php:209
-msgid "Default privacy group for new contacts"
-msgstr "Defaultní soukromá skrupina pro nové kontakty."
+#: include/conversation.php:869
+msgid "remove"
+msgstr "odstranit"
 
-#: include/group.php:242
-msgid "Everybody"
-msgstr "Všichni"
+#: include/conversation.php:873
+msgid "Delete Selected Items"
+msgstr "Smazat vybrané položky"
 
-#: include/group.php:265
-msgid "edit"
-msgstr "editovat"
+#: include/conversation.php:1018 view/theme/frio/theme.php:352
+msgid "Follow Thread"
+msgstr "Následovat vlákno"
 
-#: include/group.php:286 mod/newmember.php:61
-msgid "Groups"
-msgstr "Skupiny"
+#: include/conversation.php:1019 src/Model/Contact.php:662
+msgid "View Status"
+msgstr "Zobrazit stav"
 
-#: include/group.php:288
-msgid "Edit groups"
-msgstr ""
+#: include/conversation.php:1020 include/conversation.php:1036
+#: mod/allfriends.php:73 mod/suggest.php:82 mod/match.php:89
+#: mod/directory.php:159 mod/dirfind.php:217 src/Model/Contact.php:602
+#: src/Model/Contact.php:615 src/Model/Contact.php:663
+msgid "View Profile"
+msgstr "Zobrazit profil"
 
-#: include/group.php:290
-msgid "Edit group"
-msgstr "Editovat skupinu"
+#: include/conversation.php:1021 src/Model/Contact.php:664
+msgid "View Photos"
+msgstr "Zobrazit fotky"
 
-#: include/group.php:291
-msgid "Create a new group"
-msgstr "Vytvořit novou skupinu"
+#: include/conversation.php:1022 src/Model/Contact.php:665
+msgid "Network Posts"
+msgstr "Zobrazit Příspěvky sítě"
 
-#: include/group.php:292 mod/group.php:94 mod/group.php:178
-msgid "Group Name: "
-msgstr "Název skupiny: "
+#: include/conversation.php:1023 src/Model/Contact.php:666
+msgid "View Contact"
+msgstr "Zobrazit kontakt"
 
-#: include/group.php:294
-msgid "Contacts not in any group"
-msgstr "Kontakty, které nejsou v žádné skupině"
+#: include/conversation.php:1024 src/Model/Contact.php:668
+msgid "Send PM"
+msgstr "Poslat soukromou zprávu"
 
-#: include/group.php:296 mod/network.php:201
-msgid "add"
-msgstr "přidat"
+#: include/conversation.php:1028 src/Model/Contact.php:669
+msgid "Poke"
+msgstr "Šťouchnout"
 
-#: include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Neznámé | Nezařazeno"
+#: include/conversation.php:1033 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:616
+msgid "Connect/Follow"
+msgstr "Připojit / Následovat"
 
-#: include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Okamžitě blokovat "
+#: include/conversation.php:1152
+#, php-format
+msgid "%s likes this."
+msgstr "%s se to líbí."
 
-#: include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "pochybný, spammer, self-makerter"
+#: include/conversation.php:1155
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s se to nelíbí."
 
-#: include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Znám ho ale, ale bez rozhodnutí"
+#: include/conversation.php:1158
+#, php-format
+msgid "%s attends."
+msgstr "%s se účastní."
 
-#: include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "OK, pravděpodobně neškodný"
+#: include/conversation.php:1161
+#, php-format
+msgid "%s doesn't attend."
+msgstr "%s se neúčastní."
 
-#: include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Renomovaný, má mou důvěru"
+#: include/conversation.php:1164
+#, php-format
+msgid "%s attends maybe."
+msgstr "%s se možná účastní."
 
-#: include/contact_selectors.php:56 mod/admin.php:890
-msgid "Frequently"
-msgstr "Často"
+#: include/conversation.php:1175
+msgid "and"
+msgstr "a"
 
-#: include/contact_selectors.php:57 mod/admin.php:891
-msgid "Hourly"
-msgstr "každou hodinu"
+#: include/conversation.php:1181
+#, php-format
+msgid "and %d other people"
+msgstr "a dalších %d lidí"
 
-#: include/contact_selectors.php:58 mod/admin.php:892
-msgid "Twice daily"
-msgstr "Dvakrát denně"
+#: include/conversation.php:1190
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d lidem</span> se to líbí"
 
-#: include/contact_selectors.php:59 mod/admin.php:893
-msgid "Daily"
-msgstr "denně"
+#: include/conversation.php:1191
+#, php-format
+msgid "%s like this."
+msgstr "%s se tohle líbí."
 
-#: include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Týdenně"
+#: include/conversation.php:1194
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d lidem</span> se to nelíbí"
 
-#: include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Měsíčně"
+#: include/conversation.php:1195
+#, php-format
+msgid "%s don't like this."
+msgstr "%s se tohle nelíbí."
 
-#: include/contact_selectors.php:76 mod/dfrn_request.php:868
-msgid "Friendica"
-msgstr "Friendica"
+#: include/conversation.php:1198
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend"
+msgstr "<span  %1$s>%2$d lidí</span> se účastní"
 
-#: include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: include/conversation.php:1199
+#, php-format
+msgid "%s attend."
+msgstr "%s se účastní."
 
-#: include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: include/conversation.php:1202
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't attend"
+msgstr "<span  %1$s>%2$d lidí</span> se neúčastní"
 
-#: include/contact_selectors.php:79 include/contact_selectors.php:86
-#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440
-msgid "Email"
-msgstr "E-mail"
+#: include/conversation.php:1203
+#, php-format
+msgid "%s don't attend."
+msgstr "%s se neúčastní"
 
-#: include/contact_selectors.php:80 mod/settings.php:842
-#: mod/dfrn_request.php:870
-msgid "Diaspora"
-msgstr "Diaspora"
+#: include/conversation.php:1206
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend maybe"
+msgstr "<span  %1$s>%2$d lidí</span> se možná účastní"
 
-#: include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: include/conversation.php:1207
+#, php-format
+msgid "%s attend maybe."
+msgstr "%s se možná účastní"
 
-#: include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zot!"
+#: include/conversation.php:1237 include/conversation.php:1253
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Viditelné pro <strong>všechny</strong>"
 
-#: include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: include/conversation.php:1238 include/conversation.php:1254
+#: mod/wallmessage.php:120 mod/wallmessage.php:127 mod/message.php:181
+#: mod/message.php:188 mod/message.php:324 mod/message.php:331
+msgid "Please enter a link URL:"
+msgstr "Zadejte prosím URL odkaz:"
 
-#: include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: include/conversation.php:1239 include/conversation.php:1255
+msgid "Please enter a video link/URL:"
+msgstr "Prosím zadejte URL adresu videa:"
 
-#: include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: include/conversation.php:1240 include/conversation.php:1256
+msgid "Please enter an audio link/URL:"
+msgstr "Prosím zadejte URL adresu zvukového záznamu:"
 
-#: include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: include/conversation.php:1241 include/conversation.php:1257
+msgid "Tag term:"
+msgstr "Štítek:"
 
-#: include/contact_selectors.php:88
-msgid "pump.io"
-msgstr "pump.io"
+#: include/conversation.php:1242 include/conversation.php:1258
+#: mod/filer.php:34
+msgid "Save to Folder:"
+msgstr "Uložit do složky:"
 
-#: include/contact_selectors.php:89
-msgid "Twitter"
-msgstr "Twitter"
+#: include/conversation.php:1243 include/conversation.php:1259
+msgid "Where are you right now?"
+msgstr "Kde právě jste?"
 
-#: include/contact_selectors.php:90
-msgid "Diaspora Connector"
-msgstr "Diaspora konektor"
+#: include/conversation.php:1244
+msgid "Delete item(s)?"
+msgstr "Smazat položku(y)?"
 
-#: include/contact_selectors.php:91
-msgid "GNU Social"
-msgstr ""
+#: include/conversation.php:1291
+msgid "New Post"
+msgstr "Nový příspěvek"
 
-#: include/contact_selectors.php:92
-msgid "App.net"
-msgstr "App.net"
+#: include/conversation.php:1294
+msgid "Share"
+msgstr "Sdílet"
 
-#: include/contact_selectors.php:103
-msgid "Hubzilla/Redmatrix"
-msgstr ""
+#: include/conversation.php:1295 mod/wallmessage.php:143 mod/editpost.php:111
+#: mod/message.php:243 mod/message.php:411
+msgid "Upload photo"
+msgstr "Nahrát fotografii"
 
-#: include/acl_selectors.php:327
-msgid "Post to Email"
-msgstr "Poslat příspěvek na e-mail"
+#: include/conversation.php:1296 mod/editpost.php:112
+msgid "upload photo"
+msgstr "nahrát fotky"
 
-#: include/acl_selectors.php:332
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr "Kontektory deaktivovány, od \"%s\" je aktivován."
+#: include/conversation.php:1297 mod/editpost.php:113
+msgid "Attach file"
+msgstr "Přiložit soubor"
 
-#: include/acl_selectors.php:333 mod/settings.php:1181
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Skrýt Vaše profilové detaily před neznámými uživateli?"
+#: include/conversation.php:1298 mod/editpost.php:114
+msgid "attach file"
+msgstr "přidat soubor"
 
-#: include/acl_selectors.php:338
-msgid "Visible to everybody"
-msgstr "Viditelné pro všechny"
-
-#: include/acl_selectors.php:339 view/theme/vier/config.php:103
-msgid "show"
-msgstr "zobrazit"
-
-#: include/acl_selectors.php:340 view/theme/vier/config.php:103
-msgid "don't show"
-msgstr "nikdy nezobrazit"
-
-#: include/acl_selectors.php:346 mod/editpost.php:133
-msgid "CC: email addresses"
-msgstr "skrytá kopie: e-mailové adresy"
+#: include/conversation.php:1299 mod/wallmessage.php:144 mod/editpost.php:115
+#: mod/message.php:244 mod/message.php:412
+msgid "Insert web link"
+msgstr "Vložit webový odkaz"
 
-#: include/acl_selectors.php:347 mod/editpost.php:140
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Příklad: bob@example.com, mary@example.com"
+#: include/conversation.php:1300 mod/editpost.php:116
+msgid "web link"
+msgstr "webový odkaz"
 
-#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156
-#: mod/photos.php:1535
-msgid "Permissions"
-msgstr "Oprávnění:"
+#: include/conversation.php:1301 mod/editpost.php:117
+msgid "Insert video link"
+msgstr "Zadejte odkaz na video"
 
-#: include/acl_selectors.php:350
-msgid "Close"
-msgstr "Zavřít"
+#: include/conversation.php:1302 mod/editpost.php:118
+msgid "video link"
+msgstr "odkaz na video"
 
-#: include/like.php:163 include/conversation.php:130
-#: include/conversation.php:266 include/text.php:1804 mod/subthread.php:87
-#: mod/tagger.php:62
-msgid "photo"
-msgstr "fotografie"
+#: include/conversation.php:1303 mod/editpost.php:119
+msgid "Insert audio link"
+msgstr "Zadejte odkaz na zvukový záznam"
 
-#: include/like.php:163 include/diaspora.php:1406 include/conversation.php:125
-#: include/conversation.php:134 include/conversation.php:261
-#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62
-msgid "status"
-msgstr "Stav"
+#: include/conversation.php:1304 mod/editpost.php:120
+msgid "audio link"
+msgstr "odkaz na audio"
 
-#: include/like.php:165 include/conversation.php:122
-#: include/conversation.php:258 include/text.php:1802
-msgid "event"
-msgstr "událost"
+#: include/conversation.php:1305 mod/editpost.php:121
+msgid "Set your location"
+msgstr "Nastavte vaši polohu"
 
-#: include/like.php:182 include/diaspora.php:1402 include/conversation.php:141
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s má rád %2$s' na %3$s"
+#: include/conversation.php:1306 mod/editpost.php:122
+msgid "set location"
+msgstr "nastavit místo"
 
-#: include/like.php:184 include/conversation.php:144
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s nemá rád %2$s na %3$s"
+#: include/conversation.php:1307 mod/editpost.php:123
+msgid "Clear browser location"
+msgstr "Odstranit adresu v prohlížeči"
 
-#: include/like.php:186
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr ""
+#: include/conversation.php:1308 mod/editpost.php:124
+msgid "clear location"
+msgstr "vymazat místo"
 
-#: include/like.php:188
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr ""
+#: include/conversation.php:1310 mod/editpost.php:138
+msgid "Set title"
+msgstr "Nastavit titulek"
 
-#: include/like.php:190
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr ""
+#: include/conversation.php:1312 mod/editpost.php:140
+msgid "Categories (comma-separated list)"
+msgstr "Kategorie (čárkou oddělený seznam)"
 
-#: include/message.php:15 include/message.php:173
-msgid "[no subject]"
-msgstr "[bez předmětu]"
+#: include/conversation.php:1314 mod/editpost.php:126
+msgid "Permission settings"
+msgstr "Nastavení oprávnění"
 
-#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056
-#: include/Photo.php:1064 include/Photo.php:1089 mod/wall_upload.php:218
-#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:478
-msgid "Wall Photos"
-msgstr "Fotografie na zdi"
+#: include/conversation.php:1315 mod/editpost.php:155
+msgid "permissions"
+msgstr "oprávnění"
 
-#: include/plugin.php:526 include/plugin.php:528
-msgid "Click here to upgrade."
-msgstr "Klikněte zde pro aktualizaci."
+#: include/conversation.php:1323 mod/editpost.php:135
+msgid "Public post"
+msgstr "Veřejný příspěvek"
 
-#: include/plugin.php:534
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Tato akce překročí limit nastavené Vaším předplatným."
+#: include/conversation.php:1327 mod/editpost.php:146 mod/events.php:529
+#: mod/photos.php:1486 mod/photos.php:1525 mod/photos.php:1598
+#: src/Object/Post.php:813
+msgid "Preview"
+msgstr "Náhled"
 
-#: include/plugin.php:539
-msgid "This action is not available under your subscription plan."
-msgstr "Tato akce není v rámci Vašeho předplatného dostupná."
+#: include/conversation.php:1331 include/items.php:388 mod/fbrowser.php:103
+#: mod/fbrowser.php:134 mod/suggest.php:41 mod/tagrm.php:19 mod/tagrm.php:99
+#: mod/editpost.php:149 mod/contacts.php:475 mod/unfollow.php:117
+#: mod/follow.php:161 mod/message.php:141 mod/dfrn_request.php:658
+#: mod/photos.php:248 mod/photos.php:317 mod/settings.php:670
+#: mod/settings.php:696 mod/videos.php:147
+msgid "Cancel"
+msgstr "Zrušit"
 
-#: include/uimport.php:94
-msgid "Error decoding account file"
-msgstr "Chyba dekódování uživatelského účtu"
+#: include/conversation.php:1336
+msgid "Post to Groups"
+msgstr "Zveřejnit na Groups"
 
-#: include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?"
+#: include/conversation.php:1337
+msgid "Post to Contacts"
+msgstr "Zveřejnit na Groups"
 
-#: include/uimport.php:116 include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr "Chyba! Nelze ověřit přezdívku"
+#: include/conversation.php:1338
+msgid "Private post"
+msgstr "Soukromý příspěvek"
 
-#: include/uimport.php:120 include/uimport.php:131
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "Uživatel '%s' již na tomto serveru existuje!"
+#: include/conversation.php:1343 mod/editpost.php:153
+#: src/Model/Profile.php:338
+msgid "Message"
+msgstr "Zpráva"
 
-#: include/uimport.php:153
-msgid "User creation error"
-msgstr "Chyba vytváření uživatele"
+#: include/conversation.php:1344 mod/editpost.php:154
+msgid "Browser"
+msgstr "Prohlížeč"
 
-#: include/uimport.php:173
-msgid "User profile creation error"
-msgstr "Chyba vytváření uživatelského účtu"
+#: include/conversation.php:1609
+msgid "View all"
+msgstr "Zobrazit vše"
 
-#: include/uimport.php:222
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d kontakt nenaimporován"
-msgstr[1] "%d kontaktů nenaimporováno"
-msgstr[2] "%d kontakty nenaimporovány"
+#: include/conversation.php:1632
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "Lajk"
+msgstr[1] "Lajky"
+msgstr[2] "Lajků"
+msgstr[3] "Lajky"
 
-#: include/uimport.php:292
-msgid "Done. You can now login with your username and password"
-msgstr "Hotovo. Nyní  se můžete přihlásit se svými uživatelským účtem a heslem"
+#: include/conversation.php:1635
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "Dislajk"
+msgstr[1] "Dislajky"
+msgstr[2] "Dislajků"
+msgstr[3] "Dislajky"
 
-#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705
-msgid "Miscellaneous"
-msgstr "Různé"
+#: include/conversation.php:1641
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] "Neúčastní se"
+msgstr[1] "Neúčastní se"
+msgstr[2] "Neúčastní se"
+msgstr[3] "Neúčastní se"
 
-#: include/datetime.php:183 include/identity.php:629
-msgid "Birthday:"
-msgstr "Narozeniny:"
+#: include/conversation.php:1644 src/Content/ContactSelector.php:125
+msgid "Undecided"
+msgid_plural "Undecided"
+msgstr[0] "Nerozhotnut"
+msgstr[1] "Nerozhodnutí"
+msgstr[2] "Nerozhodnutých"
+msgstr[3] "Nerozhodnuti"
+
+#: include/items.php:343 mod/notice.php:22 mod/viewsrc.php:21
+#: mod/admin.php:277 mod/admin.php:1888 mod/admin.php:2136 mod/display.php:72
+#: mod/display.php:255 mod/display.php:356
+msgid "Item not found."
+msgstr "Položka nenalezena."
 
-#: include/datetime.php:185 mod/profiles.php:728
-msgid "Age: "
-msgstr "Věk: "
+#: include/items.php:383
+msgid "Do you really want to delete this item?"
+msgstr "Opravdu chcete smazat tuto položku?"
 
-#: include/datetime.php:187
-msgid "YYYY-MM-DD or MM-DD"
-msgstr ""
+#: include/items.php:385 mod/api.php:110 mod/suggest.php:38
+#: mod/contacts.php:472 mod/follow.php:150 mod/message.php:138
+#: mod/dfrn_request.php:648 mod/profiles.php:543 mod/profiles.php:546
+#: mod/profiles.php:568 mod/register.php:238 mod/settings.php:1094
+#: mod/settings.php:1100 mod/settings.php:1107 mod/settings.php:1111
+#: mod/settings.php:1115 mod/settings.php:1119 mod/settings.php:1123
+#: mod/settings.php:1127 mod/settings.php:1147 mod/settings.php:1148
+#: mod/settings.php:1149 mod/settings.php:1150 mod/settings.php:1151
+msgid "Yes"
+msgstr "Ano"
 
-#: include/datetime.php:341
-msgid "never"
-msgstr "nikdy"
+#: include/items.php:402 mod/allfriends.php:21 mod/api.php:35 mod/api.php:40
+#: mod/attach.php:38 mod/common.php:26 mod/nogroup.php:28
+#: mod/repair_ostatus.php:13 mod/suggest.php:60 mod/uimport.php:28
+#: 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/cal.php:304
+#: mod/contacts.php:386 mod/delegate.php:25 mod/delegate.php:43
+#: mod/delegate.php:54 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/crepair.php:98
+#: mod/message.php:59 mod/message.php:104 mod/dfrn_confirm.php:68
+#: mod/events.php:194 mod/group.php:26 mod/item.php:160 mod/network.php:32
+#: mod/notes.php:30 mod/notifications.php:73 mod/photos.php:174
+#: mod/photos.php:1039 mod/profiles.php:182 mod/profiles.php:513
+#: mod/register.php:54 mod/settings.php:43 mod/settings.php:142
+#: mod/settings.php:659 index.php:436
+msgid "Permission denied."
+msgstr "Přístup odmítnut."
 
-#: include/datetime.php:347
-msgid "less than a second ago"
-msgstr "méně než před sekundou"
+#: include/items.php:472 src/Content/Feature.php:96
+msgid "Archives"
+msgstr "Archív"
 
-#: include/datetime.php:350
-msgid "year"
-msgstr "rok"
+#: include/items.php:478 view/theme/vier/theme.php:258
+#: src/Content/ForumManager.php:130 src/Content/Widget.php:317
+#: src/Object/Post.php:438 src/App.php:527
+msgid "show more"
+msgstr "zobrazit více"
 
-#: include/datetime.php:350
-msgid "years"
-msgstr "let"
+#: include/security.php:81
+msgid "Welcome "
+msgstr "Vítejte "
 
-#: include/datetime.php:351 include/event.php:480 mod/cal.php:284
-#: mod/events.php:389
-msgid "month"
-msgstr "měsíc"
+#: include/security.php:82
+msgid "Please upload a profile photo."
+msgstr "Prosím nahrejte profilovou fotografii"
 
-#: include/datetime.php:351
-msgid "months"
-msgstr "měsíců"
+#: include/security.php:84
+msgid "Welcome back "
+msgstr "Vítejte zpět "
 
-#: include/datetime.php:352 include/event.php:481 mod/cal.php:285
-#: mod/events.php:390
-msgid "week"
-msgstr "týdnem"
+#: include/security.php:449
+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 "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním."
 
-#: include/datetime.php:352
-msgid "weeks"
-msgstr "týdny"
+#: include/text.php:302
+msgid "newer"
+msgstr "novější"
 
-#: include/datetime.php:353 include/event.php:482 mod/cal.php:286
-#: mod/events.php:391
-msgid "day"
-msgstr "den"
+#: include/text.php:303
+msgid "older"
+msgstr "starší"
 
-#: include/datetime.php:353
-msgid "days"
-msgstr "dnů"
+#: include/text.php:308
+msgid "first"
+msgstr "první"
 
-#: include/datetime.php:354
-msgid "hour"
-msgstr "hodina"
+#: include/text.php:309
+msgid "prev"
+msgstr "předchozí"
 
-#: include/datetime.php:354
-msgid "hours"
-msgstr "hodin"
+#: include/text.php:343
+msgid "next"
+msgstr "další"
 
-#: include/datetime.php:355
-msgid "minute"
-msgstr "minuta"
+#: include/text.php:344
+msgid "last"
+msgstr "poslední"
 
-#: include/datetime.php:355
-msgid "minutes"
-msgstr "minut"
+#: include/text.php:398
+msgid "Loading more entries..."
+msgstr "Načítání více záznamů..."
 
-#: include/datetime.php:356
-msgid "second"
-msgstr "sekunda"
+#: include/text.php:399
+msgid "The end"
+msgstr "Konec"
 
-#: include/datetime.php:356
-msgid "seconds"
-msgstr "sekund"
+#: include/text.php:884
+msgid "No contacts"
+msgstr "Žádné kontakty"
 
-#: include/datetime.php:365
+#: include/text.php:908
 #, php-format
-msgid "%1$d %2$s ago"
-msgstr "před %1$d %2$s"
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d kontakt"
+msgstr[1] "%d kontaktů"
+msgstr[2] "%d kontaktů"
+msgstr[3] "%d kontaktů"
 
-#: include/datetime.php:572
-#, php-format
-msgid "%s's birthday"
-msgstr "%s má narozeniny"
+#: include/text.php:921
+msgid "View Contacts"
+msgstr "Zobrazit kontakty"
 
-#: include/datetime.php:573 include/dfrn.php:1109
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Veselé narozeniny %s"
+#: include/text.php:1010 mod/filer.php:35 mod/editpost.php:110
+#: mod/notes.php:67
+msgid "Save"
+msgstr "Uložit"
 
-#: include/enotify.php:24
-msgid "Friendica Notification"
-msgstr "Friendica Notifikace"
+#: include/text.php:1010
+msgid "Follow"
+msgstr "Sledovat"
 
-#: include/enotify.php:27
-msgid "Thank You,"
-msgstr "Děkujeme, "
+#: include/text.php:1016 mod/search.php:155 src/Content/Nav.php:142
+msgid "Search"
+msgstr "Vyhledávání"
 
-#: include/enotify.php:30
-#, php-format
-msgid "%s Administrator"
-msgstr "%s Administrátor"
+#: include/text.php:1019 src/Content/Nav.php:58
+msgid "@name, !forum, #tags, content"
+msgstr "@jméno, !fórum, #štítky, obsah"
 
-#: include/enotify.php:32
-#, php-format
-msgid "%1$s, %2$s Administrator"
-msgstr ""
+#: include/text.php:1025 src/Content/Nav.php:145
+msgid "Full Text"
+msgstr "Celý text"
 
-#: include/enotify.php:43 include/delivery.php:457
-msgid "noreply"
-msgstr "neodpovídat"
+#: include/text.php:1026 src/Content/Widget/TagCloud.php:54
+#: src/Content/Nav.php:146
+msgid "Tags"
+msgstr "Štítky:"
 
-#: include/enotify.php:70
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: 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:213 src/Model/Profile.php:955 src/Model/Profile.php:958
+msgid "Contacts"
+msgstr "Kontakty"
 
-#: include/enotify.php:83
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Upozornění] Obdržena nová zpráva na %s"
+#: include/text.php:1030 view/theme/vier/theme.php:253
+#: src/Content/ForumManager.php:125 src/Content/Nav.php:151
+msgid "Forums"
+msgstr "Fóra"
 
-#: include/enotify.php:85
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s Vám poslal novou soukromou zprávu na %2$s."
+#: include/text.php:1074
+msgid "poke"
+msgstr "šťouchnout"
 
-#: include/enotify.php:86
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s Vám poslal %2$s."
+#: include/text.php:1074
+msgid "poked"
+msgstr "šťouchnut"
 
-#: include/enotify.php:86
-msgid "a private message"
-msgstr "soukromá zpráva"
+#: include/text.php:1075
+msgid "ping"
+msgstr "cinknout"
 
-#: include/enotify.php:88
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Prosím navštivte %s pro zobrazení Vašich soukromých zpráv a možnost na ně odpovědět."
+#: include/text.php:1075
+msgid "pinged"
+msgstr "cinkut"
 
-#: include/enotify.php:134
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s okomentoval na [url=%2$s]%3$s[/url]"
+#: include/text.php:1076
+msgid "prod"
+msgstr "pobídnout"
 
-#: include/enotify.php:141
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s okomentoval na [url=%2$s]%3$s's %4$s[/url]"
+#: include/text.php:1076
+msgid "prodded"
+msgstr "pobídnut"
 
-#: include/enotify.php:149
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s okomentoval na [url=%2$s]Váš %3$s[/url]"
-
-#: include/enotify.php:159
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica:Upozornění] Komentář ke konverzaci #%1$d od %2$s"
+#: include/text.php:1077
+msgid "slap"
+msgstr "dát facku"
 
-#: include/enotify.php:161
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "Uživatel %s okomentoval vámi sledovanou položku/konverzaci."
+#: include/text.php:1077
+msgid "slapped"
+msgstr "uhozen"
 
-#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192
-#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět."
+#: include/text.php:1078
+msgid "finger"
+msgstr "osahávat"
 
-#: include/enotify.php:171
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď"
+#: include/text.php:1078
+msgid "fingered"
+msgstr "osaháván"
 
-#: include/enotify.php:173
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s přidal příspěvek na Vaši profilovou zeď na %2$s"
+#: include/text.php:1079
+msgid "rebuff"
+msgstr "odmítnout"
 
-#: include/enotify.php:174
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s napřidáno na [url=%2$s]na Vaši zeď[/url]"
+#: include/text.php:1079
+msgid "rebuffed"
+msgstr "odmítnut"
 
-#: include/enotify.php:185
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Upozornění] %s Vás označil"
+#: include/text.php:1093 mod/settings.php:935 src/Model/Event.php:379
+msgid "Monday"
+msgstr "Pondělí"
 
-#: include/enotify.php:187
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s Vás označil na %2$s"
+#: include/text.php:1093 src/Model/Event.php:380
+msgid "Tuesday"
+msgstr "Úterý"
 
-#: include/enotify.php:188
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]Vás označil[/url]."
+#: include/text.php:1093 src/Model/Event.php:381
+msgid "Wednesday"
+msgstr "Středa"
 
-#: include/enotify.php:199
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica:Notify] %s nasdílel nový příspěvek"
+#: include/text.php:1093 src/Model/Event.php:382
+msgid "Thursday"
+msgstr "Čtvrtek"
 
-#: include/enotify.php:201
-#, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr "%1$s nasdílel nový příspěvek na %2$s"
+#: include/text.php:1093 src/Model/Event.php:383
+msgid "Friday"
+msgstr "Pátek"
 
-#: include/enotify.php:202
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr "%1$s [url=%2$s]nasdílel příspěvek[/url]."
+#: include/text.php:1093 src/Model/Event.php:384
+msgid "Saturday"
+msgstr "Sobota"
 
-#: include/enotify.php:213
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Upozornění] %1$s Vás šťouchnul"
+#: include/text.php:1093 mod/settings.php:935 src/Model/Event.php:378
+msgid "Sunday"
+msgstr "Neděle"
 
-#: include/enotify.php:215
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s Vás šťouchnul na %2$s"
+#: include/text.php:1097 src/Model/Event.php:399
+msgid "January"
+msgstr "Ledna"
 
-#: include/enotify.php:216
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "Uživatel %1$s [url=%2$s]Vás šťouchnul[/url]."
+#: include/text.php:1097 src/Model/Event.php:400
+msgid "February"
+msgstr "Února"
 
-#: include/enotify.php:231
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Upozornění] %s označil Váš příspěvek"
+#: include/text.php:1097 src/Model/Event.php:401
+msgid "March"
+msgstr "Března"
 
-#: include/enotify.php:233
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s označil Váš příspěvek na %2$s"
+#: include/text.php:1097 src/Model/Event.php:402
+msgid "April"
+msgstr "Dubna"
 
-#: include/enotify.php:234
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s označil [url=%2$s]Váš příspěvek[/url]"
+#: include/text.php:1097 include/text.php:1114 src/Model/Event.php:390
+#: src/Model/Event.php:403
+msgid "May"
+msgstr "Května"
 
-#: include/enotify.php:245
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Upozornění] Obdrženo přestavení"
+#: include/text.php:1097 src/Model/Event.php:404
+msgid "June"
+msgstr "Června"
 
-#: include/enotify.php:247
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Obdržel jste žádost o spojení od '%1$s' na %2$s"
+#: include/text.php:1097 src/Model/Event.php:405
+msgid "July"
+msgstr "Července"
 
-#: include/enotify.php:248
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Obdržel jste [url=%1$s]žádost o spojení[/url] od %2$s."
+#: include/text.php:1097 src/Model/Event.php:406
+msgid "August"
+msgstr "Srpna"
 
-#: include/enotify.php:252 include/enotify.php:295
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Můžete navštívit jejich profil na %s"
+#: include/text.php:1097 src/Model/Event.php:407
+msgid "September"
+msgstr "Září"
 
-#: include/enotify.php:254
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Prosím navštivte %s pro schválení či zamítnutí představení."
+#: include/text.php:1097 src/Model/Event.php:408
+msgid "October"
+msgstr "Října"
 
-#: include/enotify.php:262
-msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr "[Friendica:Upozornění] Nový člověk s vámi sdílí"
+#: include/text.php:1097 src/Model/Event.php:409
+msgid "November"
+msgstr "Listopadu"
 
-#: include/enotify.php:264 include/enotify.php:265
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr "uživatel %1$s sdílí s vámi ma %2$s"
+#: include/text.php:1097 src/Model/Event.php:410
+msgid "December"
+msgstr "Prosinec"
 
-#: include/enotify.php:271
-msgid "[Friendica:Notify] You have a new follower"
-msgstr "[Friendica:Upozornění] Máte nového následovníka"
+#: include/text.php:1111 src/Model/Event.php:371
+msgid "Mon"
+msgstr "Pon"
 
-#: include/enotify.php:273 include/enotify.php:274
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
-msgstr "Máte nového následovníka na %2$s : %1$s"
+#: include/text.php:1111 src/Model/Event.php:372
+msgid "Tue"
+msgstr "Úte"
 
-#: include/enotify.php:285
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica:Upozornění] Obdržen návrh na přátelství"
+#: include/text.php:1111 src/Model/Event.php:373
+msgid "Wed"
+msgstr "Stř"
 
-#: include/enotify.php:287
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Obdržel jste návrh přátelství od '%1$s' na %2$s"
+#: include/text.php:1111 src/Model/Event.php:374
+msgid "Thu"
+msgstr "Čtv"
 
-#: include/enotify.php:288
-#, php-format
-msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "Obdržel jste [url=%1$s]návrh přátelství[/url] s %2$s from %3$s."
+#: include/text.php:1111 src/Model/Event.php:375
+msgid "Fri"
+msgstr "Pát"
 
-#: include/enotify.php:293
-msgid "Name:"
-msgstr "Jméno:"
+#: include/text.php:1111 src/Model/Event.php:376
+msgid "Sat"
+msgstr "Sob"
 
-#: include/enotify.php:294
-msgid "Photo:"
-msgstr "Foto:"
+#: include/text.php:1111 src/Model/Event.php:370
+msgid "Sun"
+msgstr "Ned"
 
-#: include/enotify.php:297
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Prosím navštivte %s pro schválení či zamítnutí doporučení."
+#: include/text.php:1114 src/Model/Event.php:386
+msgid "Jan"
+msgstr "Led"
 
-#: include/enotify.php:305 include/enotify.php:319
-msgid "[Friendica:Notify] Connection accepted"
-msgstr "[Friendica:Upozornění] Spojení akceptováno"
+#: include/text.php:1114 src/Model/Event.php:387
+msgid "Feb"
+msgstr "Úno"
 
-#: include/enotify.php:307 include/enotify.php:321
-#, php-format
-msgid "'%1$s' has accepted your connection request at %2$s"
-msgstr "'%1$s' akceptoval váš požadavek na spojení na %2$s"
+#: include/text.php:1114 src/Model/Event.php:388
+msgid "Mar"
+msgstr "Bře"
 
-#: include/enotify.php:308 include/enotify.php:322
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
-msgstr "%2$s akceptoval váš [url=%1$s]požadavek na spojení[/url]."
+#: include/text.php:1114 src/Model/Event.php:389
+msgid "Apr"
+msgstr "Dub"
 
-#: include/enotify.php:312
-msgid ""
-"You are now mutual friends and may exchange status updates, photos, and "
-"email without restriction."
-msgstr ""
+#: include/text.php:1114 src/Model/Event.php:392
+msgid "Jul"
+msgstr "Čvc"
 
-#: include/enotify.php:314
-#, php-format
-msgid "Please visit %s if you wish to make any changes to this relationship."
-msgstr ""
+#: include/text.php:1114 src/Model/Event.php:393
+msgid "Aug"
+msgstr "Srp"
 
-#: include/enotify.php:326
-#, 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' vás přijal jako \"fanouška\", což omezuje některé formy komunikace - jako jsou soukromé zprávy a některé interakce na profilech. Pokud se jedná o celebritu, případně o komunitní stránky, pak bylo toto nastavení provedeno automaticky.."
+#: include/text.php:1114
+msgid "Sep"
+msgstr "Zář"
 
-#: include/enotify.php:328
-#, php-format
-msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future."
-msgstr ""
+#: include/text.php:1114 src/Model/Event.php:395
+msgid "Oct"
+msgstr "Říj"
 
-#: include/enotify.php:330
-#, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
-msgstr "Prosím navštivte %s  pokud chcete změnit tento vztah."
+#: include/text.php:1114 src/Model/Event.php:396
+msgid "Nov"
+msgstr "Lis"
 
-#: include/enotify.php:340
-msgid "[Friendica System:Notify] registration request"
-msgstr "[Systém Friendica :Upozornění] registrační požadavek"
+#: include/text.php:1114 src/Model/Event.php:397
+msgid "Dec"
+msgstr "Pro"
 
-#: include/enotify.php:342
+#: include/text.php:1254
 #, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
-msgstr "Obdržel jste požadavek na registraci od '%1$s' na %2$s"
+msgid "Content warning: %s"
+msgstr "Varování o obsahu: %s"
 
-#: include/enotify.php:343
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
-msgstr "Obdržel jste [url=%1$s]požadavek na registraci[/url] od '%2$s'."
+#: include/text.php:1324 mod/videos.php:380
+msgid "View Video"
+msgstr "Zobrazit video"
 
-#: include/enotify.php:347
-#, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-msgstr "Plné jméno:\t%1$s\\nUmístění webu:\t%2$s\\nPřihlašovací účet:\t%3$s (%4$s)"
+#: include/text.php:1341
+msgid "bytes"
+msgstr "bytů"
 
-#: include/enotify.php:350
-#, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr "Prosím navštivte %s k odsouhlasení nebo k zamítnutí požadavku."
+#: include/text.php:1374 include/text.php:1385 include/text.php:1418
+msgid "Click to open/close"
+msgstr "Klikněte pro otevření/zavření"
 
-#: include/event.php:16 include/bb2diaspora.php:152 mod/localtime.php:12
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ g:i A"
+#: include/text.php:1533
+msgid "View on separate page"
+msgstr "Zobrazit na separátní stránce"
 
-#: include/event.php:33 include/event.php:51 include/event.php:487
-#: include/bb2diaspora.php:158
-msgid "Starts:"
-msgstr "Začíná:"
+#: include/text.php:1534
+msgid "view on separate page"
+msgstr "Zobrazit na separátní stránce"
 
-#: include/event.php:36 include/event.php:57 include/event.php:488
-#: include/bb2diaspora.php:166
-msgid "Finishes:"
-msgstr "Končí:"
+#: include/text.php:1539 include/text.php:1546 src/Model/Event.php:594
+msgid "link to source"
+msgstr "odkaz na zdroj"
 
-#: include/event.php:39 include/event.php:63 include/event.php:489
-#: include/bb2diaspora.php:174 include/identity.php:328
-#: mod/notifications.php:232 mod/directory.php:137 mod/events.php:494
-#: mod/contacts.php:628
-msgid "Location:"
-msgstr "Místo:"
+#: include/text.php:1753
+msgid "activity"
+msgstr "aktivita"
 
-#: include/event.php:441
-msgid "Sun"
-msgstr ""
+#: include/text.php:1755 src/Object/Post.php:437 src/Object/Post.php:449
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] "komentář"
+msgstr[3] "komentář"
 
-#: include/event.php:442
-msgid "Mon"
-msgstr ""
+#: include/text.php:1758
+msgid "post"
+msgstr "příspěvek"
 
-#: include/event.php:443
-msgid "Tue"
-msgstr ""
+#: include/text.php:1916
+msgid "Item filed"
+msgstr "Položka vyplněna"
 
-#: include/event.php:444
-msgid "Wed"
-msgstr ""
+#: mod/allfriends.php:51
+msgid "No friends to display."
+msgstr "Žádní přátelé k zobrazení"
 
-#: include/event.php:445
-msgid "Thu"
-msgstr ""
+#: 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 "Spojit"
 
-#: include/event.php:446
-msgid "Fri"
-msgstr ""
+#: mod/api.php:85 mod/api.php:107
+msgid "Authorize application connection"
+msgstr "Povolit připojení aplikacím"
 
-#: include/event.php:447
-msgid "Sat"
-msgstr ""
+#: mod/api.php:86
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Vraťte se do vaší aplikace a zadejte tento bezpečnostní kód:"
 
-#: include/event.php:448 include/text.php:1130 mod/settings.php:972
-msgid "Sunday"
-msgstr "Neděle"
+#: mod/api.php:95
+msgid "Please login to continue."
+msgstr "Pro pokračování se prosím přihlaste."
 
-#: include/event.php:449 include/text.php:1130 mod/settings.php:972
-msgid "Monday"
-msgstr "Pondělí"
+#: 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 "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?"
 
-#: include/event.php:450 include/text.php:1130
-msgid "Tuesday"
-msgstr "Úterý"
+#: mod/api.php:111 mod/follow.php:150 mod/dfrn_request.php:648
+#: mod/profiles.php:543 mod/profiles.php:547 mod/profiles.php:568
+#: mod/register.php:239 mod/settings.php:1094 mod/settings.php:1100
+#: mod/settings.php:1107 mod/settings.php:1111 mod/settings.php:1115
+#: mod/settings.php:1119 mod/settings.php:1123 mod/settings.php:1127
+#: mod/settings.php:1147 mod/settings.php:1148 mod/settings.php:1149
+#: mod/settings.php:1150 mod/settings.php:1151
+msgid "No"
+msgstr "Ne"
 
-#: include/event.php:451 include/text.php:1130
-msgid "Wednesday"
-msgstr "Středa"
+#: mod/apps.php:14 index.php:265
+msgid "You must be logged in to use addons. "
+msgstr "Musíte být přihlášeni pro použití rozšíření."
 
-#: include/event.php:452 include/text.php:1130
-msgid "Thursday"
-msgstr "Čtvrtek"
+#: mod/apps.php:19
+msgid "Applications"
+msgstr "Aplikace"
+
+#: mod/apps.php:22
+msgid "No installed applications."
+msgstr "Žádné nainstalované aplikace."
+
+#: mod/attach.php:15
+msgid "Item not available."
+msgstr "Položka není k dispozici."
+
+#: mod/attach.php:25
+msgid "Item was not found."
+msgstr "Položka nebyla nalezena."
+
+#: mod/common.php:91
+msgid "No contacts in common."
+msgstr "Žádné společné kontakty."
+
+#: mod/common.php:140 mod/contacts.php:886
+msgid "Common Friends"
+msgstr "Společní přátelé"
+
+#: mod/credits.php:18
+msgid "Credits"
+msgstr "Poděkování"
+
+#: 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 je komunitní projekt, který by nebyl možný bez pomoci mnoha lidí. Zde je seznam těch, kteří přispěli ke kódu nebo k překladu Friendica. Děkujeme všem!"
+
+#: mod/fbrowser.php:34 view/theme/frio/theme.php:261 src/Content/Nav.php:102
+#: src/Model/Profile.php:902
+msgid "Photos"
+msgstr "Fotografie"
+
+#: mod/fbrowser.php:43 mod/fbrowser.php:68 mod/photos.php:194
+#: mod/photos.php:1050 mod/photos.php:1137 mod/photos.php:1154
+#: mod/photos.php:1653 mod/photos.php:1667 src/Model/Photo.php:244
+#: src/Model/Photo.php:253
+msgid "Contact Photos"
+msgstr "Fotogalerie kontaktu"
+
+#: mod/fbrowser.php:105 mod/fbrowser.php:136 mod/profile_photo.php:250
+msgid "Upload"
+msgstr "Nahrát"
+
+#: mod/fbrowser.php:131
+msgid "Files"
+msgstr "Soubory"
+
+#: mod/fetch.php:16 mod/fetch.php:52 mod/fetch.php:65 mod/p.php:21
+#: mod/p.php:48 mod/p.php:57 mod/help.php:60 index.php:312
+msgid "Not Found"
+msgstr "Nenalezen"
+
+#: mod/hcard.php:18
+msgid "No profile"
+msgstr "Žádný profil"
+
+#: mod/home.php:39
+#, php-format
+msgid "Welcome to %s"
+msgstr "Vítá Vás %s"
+
+#: mod/lockview.php:38 mod/lockview.php:46
+msgid "Remote privacy information not available."
+msgstr "Vzdálené soukromé informace nejsou k dispozici."
+
+#: mod/lockview.php:55
+msgid "Visible to:"
+msgstr "Viditelné pro:"
+
+#: mod/maintenance.php:24
+msgid "System down for maintenance"
+msgstr "Systém vypnut z důvodů údržby"
+
+#: mod/newmember.php:11
+msgid "Welcome to Friendica"
+msgstr "Vítejte na Friendica"
+
+#: mod/newmember.php:12
+msgid "New Member Checklist"
+msgstr "Seznam doporučení pro nového člena"
+
+#: 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 "Rádi bychom vám nabídli několik tipů a odkazů pro začátek. Klikněte na jakoukoliv položku pro zobrazení relevantní stránky. Odkaz na tuto stránku bude viditelný z Vaší domovské stránky po dobu dvou týdnů od Vaší první registrace."
+
+#: mod/newmember.php:15
+msgid "Getting Started"
+msgstr "Začínáme"
+
+#: mod/newmember.php:17
+msgid "Friendica Walk-Through"
+msgstr "Prohlídka Friendica "
+
+#: 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 Vaší stránce <em>Rychlý Start</em> najděte stručné představení k Vašemu profilu a síťovým záložkám, spojte ses novými kontakty a jděte skupiny, ke kterým se můžete připojit."
+
+#: mod/newmember.php:19 mod/admin.php:1940 mod/admin.php:2210
+#: mod/settings.php:124 view/theme/frio/theme.php:269 src/Content/Nav.php:207
+msgid "Settings"
+msgstr "Nastavení"
+
+#: mod/newmember.php:21
+msgid "Go to Your Settings"
+msgstr "Navštivte své nastavení"
+
+#: 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 Vaší stránce <em>Nastavení</em> si změňte Vaše první heslo.\nVěnujte také svou pozornost k adrese Identity. Vypadá jako emailová adresa a bude Vám užitečná pro navazování přátelství na svobodném sociálním webu."
+
+#: 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 "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši přátelé a potenciální přátelé věděli, jak vás přesně najít."
+
+#: 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 "Profil"
+
+#: mod/newmember.php:26 mod/profile_photo.php:249 mod/profiles.php:598
+msgid "Upload Profile Photo"
+msgstr "Nahrát profilovou fotografii"
+
+#: 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 "Nahrajte si svou profilovou fotku, pokud jste tak již neučinili. Studie ukázaly, že lidé se skutečnými fotografiemi mají desetkrát častěji přátele než lidé, kteří nemají."
+
+#: mod/newmember.php:27
+msgid "Edit Your Profile"
+msgstr "Editujte Váš profil"
+
+#: 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 "Upravte si <strong>výchozí</strong> profil podle vašich představ. Prověřte nastavení pro skrytí Vašeho seznamu přátel a skrytí profilu před neznámými návštěvníky."
+
+#: mod/newmember.php:28
+msgid "Profile Keywords"
+msgstr "Profilová klíčová slova"
+
+#: 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 "Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují Vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a navrhnout přátelství."
+
+#: mod/newmember.php:30
+msgid "Connecting"
+msgstr "Probíhá pokus o připojení"
+
+#: mod/newmember.php:36
+msgid "Importing Emails"
+msgstr "Importování emaiů"
+
+#: 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 "Pokud chcete importovat své přátele nebo mailové skupiny a komunikovat s nimi, zadejte na Vaší stránce Nastavení kontektoru své přístupové údaje do svého emailového účtu"
+
+#: mod/newmember.php:39
+msgid "Go to Your Contacts Page"
+msgstr "Navštivte Vaši stránku s kontakty"
+
+#: 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 "Vaše stránka Kontakty je Vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu <em>Přidat nový kontakt</em>."
+
+#: mod/newmember.php:40
+msgid "Go to Your Site's Directory"
+msgstr "Navštivte lokální adresář Friendica"
+
+#: 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 "Stránka Adresář Vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Prostřednictvím odkazů <em>Připojení</em> nebo <em>Následovat</em> si prohlédněte jejich profilovou stránku. Uveďte svou vlastní adresu identity, je-li požadována."
+
+#: mod/newmember.php:41
+msgid "Finding New People"
+msgstr "Nalezení nových lidí"
+
+#: 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 bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin."
+
+#: mod/newmember.php:43 src/Model/Group.php:414
+msgid "Groups"
+msgstr "Skupiny"
+
+#: mod/newmember.php:45
+msgid "Group Your Contacts"
+msgstr "Seskupte si své kontakty"
+
+#: mod/newmember.php:45
+msgid ""
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with"
+" each group privately on your Network page."
+msgstr "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu Vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť."
+
+#: mod/newmember.php:48
+msgid "Why Aren't My Posts Public?"
+msgstr "Proč nejsou mé příspěvky veřejné?"
+
+#: 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 respektuje Vaše soukromí. Defaultně  jsou Vaše příspěvky viditelné pouze lidem, které označíte jako Vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu"
+
+#: mod/newmember.php:52
+msgid "Getting Help"
+msgstr "Získání nápovědy"
+
+#: mod/newmember.php:54
+msgid "Go to the Help Section"
+msgstr "Navštivte sekci nápovědy"
+
+#: mod/newmember.php:54
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Na stránkách <strong>Nápověda</strong> naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací."
+
+#: 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 "Navštivte profil uživatele %s [%s]"
+
+#: mod/nogroup.php:43 mod/contacts.php:960
+msgid "Edit contact"
+msgstr "Editovat kontakt"
+
+#: mod/nogroup.php:63
+msgid "Contacts who are not members of a group"
+msgstr "Kontakty, které nejsou členy skupiny"
+
+#: mod/p.php:14
+msgid "Not Extended"
+msgstr "Nerozšířeně"
+
+#: mod/repair_ostatus.php:18
+msgid "Resubscribing to OStatus contacts"
+msgstr "Znovu Vás registruji ke kontaktům OStatus"
+
+#: mod/repair_ostatus.php:34
+msgid "Error"
+msgstr "Chyba"
+
+#: mod/repair_ostatus.php:48 mod/ostatus_subscribe.php:64
+msgid "Done"
+msgstr "Hotovo"
+
+#: mod/repair_ostatus.php:54 mod/ostatus_subscribe.php:88
+msgid "Keep this window open until done."
+msgstr "Toto okno nechte otevřené až do konce."
+
+#: mod/suggest.php:36
+msgid "Do you really want to delete this suggestion?"
+msgstr "Opravdu chcete smazat tento návrh?"
+
+#: mod/suggest.php:73
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin."
+
+#: mod/suggest.php:84 mod/suggest.php:104
+msgid "Ignore/Hide"
+msgstr "Ignorovat / skrýt"
+
+#: mod/suggest.php:114 view/theme/vier/theme.php:204 src/Content/Widget.php:64
+msgid "Friend Suggestions"
+msgstr "Návrhy přátel"
+
+#: mod/uimport.php:55 mod/register.php:192
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to  zítra znovu."
+
+#: mod/uimport.php:70 mod/register.php:288
+msgid "Import"
+msgstr "Import"
+
+#: mod/uimport.php:72
+msgid "Move account"
+msgstr "Přesunout účet"
+
+#: mod/uimport.php:73
+msgid "You can import an account from another Friendica server."
+msgstr "Můžete importovat účet z jiného Friendica serveru."
+
+#: 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 "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali."
+
+#: 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 "Tato vlastnost je experimentální. Nemůžeme importovat kontakty za sítě OStatus (GNU social/StatusNet) nebo z Diaspory."
+
+#: mod/uimport.php:76
+msgid "Account file"
+msgstr "Soubor s účtem"
+
+#: mod/uimport.php:76
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+msgstr "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\""
+
+#: mod/match.php:48
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do Vašeho výchozího profilu."
+
+#: mod/match.php:104
+msgid "is interested in:"
+msgstr "se zajímá o:"
+
+#: mod/match.php:120
+msgid "Profile Match"
+msgstr "Shoda profilu"
+
+#: mod/match.php:125 mod/dirfind.php:253
+msgid "No matches"
+msgstr "Žádné shody"
+
+#: mod/manage.php:180
+msgid "Manage Identities and/or Pages"
+msgstr "Správa identit a/nebo stránek"
+
+#: 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 "Přepínání mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí Vaše detaily účtu, nebo kterým jste přidělili oprávnění nastavovat přístupová práva."
+
+#: mod/manage.php:182
+msgid "Select an identity to manage: "
+msgstr "Vyberte identitu pro správu: "
+
+#: mod/manage.php:184 mod/localtime.php:56 mod/poke.php:199
+#: mod/fsuggest.php:114 mod/contacts.php:610 mod/invite.php:154
+#: mod/crepair.php:148 mod/install.php:198 mod/install.php:237
+#: mod/message.php:246 mod/message.php:413 mod/events.php:531
+#: mod/photos.php:1068 mod/photos.php:1148 mod/photos.php:1439
+#: mod/photos.php:1485 mod/photos.php:1524 mod/photos.php:1597
+#: mod/profiles.php:579 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:804
+msgid "Submit"
+msgstr "Odeslat"
+
+#: 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 "Neplatný požadavek."
+
+#: mod/wall_attach.php:101
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP"
+
+#: mod/wall_attach.php:101
+msgid "Or - did you try to upload an empty file?"
+msgstr "Nebo - nenahrával/a jste prázdný soubor?"
+
+#: mod/wall_attach.php:112
+#, php-format
+msgid "File exceeds size limit of %s"
+msgstr "Velikost souboru přesáhla limit %s"
+
+#: mod/wall_attach.php:136 mod/wall_attach.php:152
+msgid "File upload failed."
+msgstr "Nahrání souboru se nezdařilo."
+
+#: mod/filer.php:34
+msgid "- select -"
+msgstr "- vyberte -"
+
+#: mod/localtime.php:19 src/Model/Event.php:36 src/Model/Event.php:814
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ g:i A"
+
+#: mod/localtime.php:33
+msgid "Time Conversion"
+msgstr "Časová konverze"
+
+#: mod/localtime.php:35
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přáteli v neznámých časových zónách"
+
+#: mod/localtime.php:39
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC čas: %s"
+
+#: mod/localtime.php:42
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Aktuální časové pásmo: %s"
+
+#: mod/localtime.php:46
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Převedený lokální čas : %s"
+
+#: mod/localtime.php:52
+msgid "Please select your timezone:"
+msgstr "Prosím, vyberte své časové pásmo:"
+
+#: mod/notify.php:77
+msgid "No more system notifications."
+msgstr "Žádné další systémová upozornění."
+
+#: mod/notify.php:81 mod/notifications.php:113
+msgid "System Notifications"
+msgstr "Systémová upozornění"
+
+#: mod/ping.php:292
+msgid "{0} wants to be your friend"
+msgstr "{0} chce být Vaším přítelem"
+
+#: mod/ping.php:307
+msgid "{0} sent you a message"
+msgstr "{0} vám poslal zprávu"
+
+#: mod/ping.php:322
+msgid "{0} requested registration"
+msgstr "{0} požaduje registraci"
+
+#: mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Šťouchanec"
+
+#: mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "někoho šťouchnout nebo mu provést  jinou věc"
+
+#: mod/poke.php:194
+msgid "Recipient"
+msgstr "Příjemce"
+
+#: mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Vyberte, co si přejete příjemci udělat"
+
+#: mod/poke.php:198
+msgid "Make this post private"
+msgstr "Změnit tento příspěvek na soukromý"
+
+#: mod/probe.php:13 mod/viewcontacts.php:45 mod/webfinger.php:16
+#: mod/directory.php:42 mod/community.php:27 mod/dfrn_request.php:602
+#: mod/display.php:203 mod/photos.php:920 mod/search.php:98 mod/search.php:104
+#: mod/videos.php:199
+msgid "Public access denied."
+msgstr "Veřejný přístup odepřen."
+
+#: mod/probe.php:14 mod/webfinger.php:17
+msgid "Only logged in users are permitted to perform a probing."
+msgstr "Pouze přihlášení uživatelé mohou zkoušet adresy."
+
+#: mod/profperm.php:28 mod/group.php:83 index.php:435
+msgid "Permission denied"
+msgstr "Nedostatečné oprávnění"
+
+#: mod/profperm.php:34 mod/profperm.php:65
+msgid "Invalid profile identifier."
+msgstr "Neplatný identifikátor profilu."
+
+#: mod/profperm.php:111
+msgid "Profile Visibility Editor"
+msgstr "Editor viditelnosti profilu "
+
+#: mod/profperm.php:115 mod/group.php:265
+msgid "Click on a contact to add or remove."
+msgstr "Klikněte na kontakt pro přidání nebo odebrání"
+
+#: mod/profperm.php:124
+msgid "Visible To"
+msgstr "Viditelný pro"
+
+#: mod/profperm.php:140
+msgid "All Contacts (with secure profile access)"
+msgstr "Všechny kontakty (se zabezpečeným přístupovým profilem )"
+
+#: mod/regmod.php:68
+msgid "Account approved."
+msgstr "Účet schválen."
+
+#: mod/regmod.php:93
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registrace zrušena pro %s"
+
+#: mod/regmod.php:102
+msgid "Please login."
+msgstr "Přihlaste se, prosím."
+
+#: mod/tagrm.php:47
+msgid "Tag removed"
+msgstr "Štítek odstraněn"
+
+#: mod/tagrm.php:85
+msgid "Remove Item Tag"
+msgstr "Odebrat štítek položky"
+
+#: mod/tagrm.php:87
+msgid "Select a tag to remove: "
+msgstr "Vyberte štítek k odebrání: "
+
+#: mod/tagrm.php:98 mod/delegate.php:177
+msgid "Remove"
+msgstr "Odstranit"
+
+#: mod/uexport.php:44
+msgid "Export account"
+msgstr "Exportovat účet"
+
+#: 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 "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření  zálohy svého účtu a/nebo k přesunu na jiný server."
+
+#: mod/uexport.php:45
+msgid "Export all"
+msgstr "Exportovat vše"
+
+#: 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 "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)"
+
+#: mod/uexport.php:52 mod/settings.php:108
+msgid "Export personal data"
+msgstr "Export osobních údajů"
+
+#: mod/viewcontacts.php:87
+msgid "No contacts."
+msgstr "Žádné kontakty."
+
+#: mod/viewsrc.php:12 mod/community.php:34
+msgid "Access denied."
+msgstr "Přístup odmítnut"
+
+#: mod/wall_upload.php:186 mod/profile_photo.php:153 mod/photos.php:751
+#: mod/photos.php:754 mod/photos.php:783
+#, php-format
+msgid "Image exceeds size limit of %s"
+msgstr "Velikost obrázku překročila limit %s"
+
+#: mod/wall_upload.php:200 mod/profile_photo.php:162 mod/photos.php:806
+msgid "Unable to process image."
+msgstr "Obrázek není možné zprocesovat"
+
+#: 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 "Fotografie na zdi"
+
+#: mod/wall_upload.php:239 mod/profile_photo.php:307 mod/photos.php:835
+msgid "Image upload failed."
+msgstr "Nahrání obrázku selhalo."
+
+#: mod/wallmessage.php:49 mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena."
+
+#: mod/wallmessage.php:57 mod/message.php:73
+msgid "No recipient selected."
+msgstr "Nevybrán příjemce."
+
+#: mod/wallmessage.php:60
+msgid "Unable to check your home location."
+msgstr "Nebylo možné zjistit Vaši domácí lokaci."
+
+#: mod/wallmessage.php:63 mod/message.php:80
+msgid "Message could not be sent."
+msgstr "Zprávu se nepodařilo odeslat."
+
+#: mod/wallmessage.php:66 mod/message.php:83
+msgid "Message collection failure."
+msgstr "Sběr zpráv selhal."
+
+#: mod/wallmessage.php:69 mod/message.php:86
+msgid "Message sent."
+msgstr "Zpráva odeslána."
+
+#: mod/wallmessage.php:86 mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Žádný příjemce."
 
-#: include/event.php:453 include/text.php:1130
-msgid "Friday"
-msgstr "Pátek"
+#: mod/wallmessage.php:132 mod/message.php:231
+msgid "Send Private Message"
+msgstr "Odeslat soukromou zprávu"
 
-#: include/event.php:454 include/text.php:1130
-msgid "Saturday"
-msgstr "Sobota"
+#: 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 "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů."
 
-#: include/event.php:455
-msgid "Jan"
-msgstr ""
+#: mod/wallmessage.php:134 mod/message.php:232 mod/message.php:402
+msgid "To:"
+msgstr "Adresát:"
 
-#: include/event.php:456
-msgid "Feb"
-msgstr ""
+#: mod/wallmessage.php:135 mod/message.php:236 mod/message.php:404
+msgid "Subject:"
+msgstr "Předmět:"
 
-#: include/event.php:457
-msgid "Mar"
-msgstr ""
+#: mod/wallmessage.php:141 mod/invite.php:149 mod/message.php:240
+#: mod/message.php:407
+msgid "Your message:"
+msgstr "Vaše zpráva:"
 
-#: include/event.php:458
-msgid "Apr"
-msgstr ""
+#: mod/bookmarklet.php:23 src/Content/Nav.php:114 src/Module/Login.php:313
+msgid "Login"
+msgstr "Přihlásit se"
 
-#: include/event.php:459 include/event.php:471 include/text.php:1134
-msgid "May"
-msgstr "Května"
+#: mod/bookmarklet.php:51
+msgid "The post was created"
+msgstr "Příspěvek byl vytvořen"
 
-#: include/event.php:460
-msgid "Jun"
-msgstr ""
+#: mod/editpost.php:25 mod/editpost.php:35
+msgid "Item not found"
+msgstr "Položka nenalezena"
 
-#: include/event.php:461
-msgid "Jul"
-msgstr ""
+#: mod/editpost.php:42
+msgid "Edit post"
+msgstr "Upravit příspěvek"
 
-#: include/event.php:462
-msgid "Aug"
-msgstr ""
+#: mod/editpost.php:134 src/Core/ACL.php:315
+msgid "CC: email addresses"
+msgstr "skrytá kopie: e-mailové adresy"
 
-#: include/event.php:463
-msgid "Sept"
-msgstr ""
+#: mod/editpost.php:141 src/Core/ACL.php:316
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Příklad: bob@example.com, mary@example.com"
 
-#: include/event.php:464
-msgid "Oct"
-msgstr ""
+#: mod/fsuggest.php:30 mod/fsuggest.php:96 mod/crepair.php:110
+#: mod/dfrn_confirm.php:129
+msgid "Contact not found."
+msgstr "Kontakt nenalezen."
 
-#: include/event.php:465
-msgid "Nov"
-msgstr ""
+#: mod/fsuggest.php:72
+msgid "Friend suggestion sent."
+msgstr "Návrhy přátelství odeslány "
 
-#: include/event.php:466
-msgid "Dec"
-msgstr ""
+#: mod/fsuggest.php:101
+msgid "Suggest Friends"
+msgstr "Navrhněte přátelé"
 
-#: include/event.php:467 include/text.php:1134
-msgid "January"
-msgstr "Ledna"
+#: mod/fsuggest.php:103
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Navrhněte přátelé pro uživatele %s"
 
-#: include/event.php:468 include/text.php:1134
-msgid "February"
-msgstr "Února"
+#: mod/cal.php:142 mod/display.php:316 mod/profile.php:174
+msgid "Access to this profile has been restricted."
+msgstr "Přístup na tento profil byl omezen."
 
-#: include/event.php:469 include/text.php:1134
-msgid "March"
-msgstr "Března"
+#: 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 "Události"
 
-#: include/event.php:470 include/text.php:1134
-msgid "April"
-msgstr "Dubna"
+#: mod/cal.php:275 mod/events.php:392
+msgid "View"
+msgstr "Zobrazit"
 
-#: include/event.php:472 include/text.php:1134
-msgid "June"
-msgstr "Června"
+#: mod/cal.php:276 mod/events.php:394
+msgid "Previous"
+msgstr "Předchozí"
 
-#: include/event.php:473 include/text.php:1134
-msgid "July"
-msgstr "Července"
+#: mod/cal.php:277 mod/install.php:156 mod/events.php:395
+msgid "Next"
+msgstr "Dále"
 
-#: include/event.php:474 include/text.php:1134
-msgid "August"
-msgstr "Srpna"
+#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412
+msgid "today"
+msgstr "dnes"
 
-#: include/event.php:475 include/text.php:1134
-msgid "September"
-msgstr "Září"
+#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304
+#: src/Model/Event.php:413
+msgid "month"
+msgstr "měsíc"
 
-#: include/event.php:476 include/text.php:1134
-msgid "October"
-msgstr "Října"
+#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305
+#: src/Model/Event.php:414
+msgid "week"
+msgstr "týdnem"
 
-#: include/event.php:477 include/text.php:1134
-msgid "November"
-msgstr "Listopadu"
+#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306
+#: src/Model/Event.php:415
+msgid "day"
+msgstr "den"
 
-#: include/event.php:478 include/text.php:1134
-msgid "December"
-msgstr "Prosinec"
+#: mod/cal.php:284 mod/events.php:404
+msgid "list"
+msgstr "seznam"
 
-#: include/event.php:479 mod/cal.php:283 mod/events.php:388
-msgid "today"
-msgstr ""
+#: mod/cal.php:297 src/Core/Console/NewPassword.php:73 src/Model/User.php:214
+msgid "User not found"
+msgstr "Uživatel nenalezen."
 
-#: include/event.php:483
-msgid "all-day"
-msgstr ""
+#: mod/cal.php:313
+msgid "This calendar format is not supported"
+msgstr "Tento formát kalendáře není podporován."
 
-#: include/event.php:485
-msgid "No events to display"
-msgstr ""
+#: mod/cal.php:315
+msgid "No exportable data found"
+msgstr "Nenalezena žádná data pro export"
 
-#: include/event.php:574
-msgid "l, F j"
-msgstr "l, F j"
+#: mod/cal.php:332
+msgid "calendar"
+msgstr "kalendář"
 
-#: include/event.php:593
-msgid "Edit event"
-msgstr "Editovat událost"
+#: mod/contacts.php:71 mod/notifications.php:259 src/Model/Profile.php:516
+msgid "Network:"
+msgstr "Síť:"
 
-#: include/event.php:615 include/text.php:1532 include/text.php:1539
-msgid "link to source"
-msgstr "odkaz na zdroj"
+#: mod/contacts.php:157
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] "%d kontakt upraven"
+msgstr[1] "%d kontakty upraveny"
+msgstr[2] "%d kontaktů upraveno"
+msgstr[3] "%d kontaktů upraveno"
 
-#: include/event.php:850
-msgid "Export"
-msgstr ""
+#: mod/contacts.php:184 mod/contacts.php:400
+msgid "Could not access contact record."
+msgstr "Nelze získat přístup k záznamu kontaktu."
+
+#: mod/contacts.php:194
+msgid "Could not locate selected profile."
+msgstr "Nelze nalézt vybraný profil."
+
+#: mod/contacts.php:228
+msgid "Contact updated."
+msgstr "Kontakt aktualizován."
+
+#: mod/contacts.php:230 mod/dfrn_request.php:415
+msgid "Failed to update contact record."
+msgstr "Nepodařilo se aktualizovat kontakt."
+
+#: mod/contacts.php:421
+msgid "Contact has been blocked"
+msgstr "Kontakt byl zablokován"
+
+#: mod/contacts.php:421
+msgid "Contact has been unblocked"
+msgstr "Kontakt byl odblokován"
+
+#: mod/contacts.php:432
+msgid "Contact has been ignored"
+msgstr "Kontakt bude ignorován"
+
+#: mod/contacts.php:432
+msgid "Contact has been unignored"
+msgstr "Kontakt přestal být ignorován"
+
+#: mod/contacts.php:443
+msgid "Contact has been archived"
+msgstr "Kontakt byl archivován"
+
+#: mod/contacts.php:443
+msgid "Contact has been unarchived"
+msgstr "Kontakt byl vrácen z archívu."
+
+#: mod/contacts.php:467
+msgid "Drop contact"
+msgstr "Zrušit kontakt"
+
+#: mod/contacts.php:470 mod/contacts.php:823
+msgid "Do you really want to delete this contact?"
+msgstr "Opravdu chcete smazat tento kontakt?"
+
+#: mod/contacts.php:488
+msgid "Contact has been removed."
+msgstr "Kontakt byl odstraněn."
+
+#: mod/contacts.php:519
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Jste vzájemní přátelé s uživatelem %s"
+
+#: mod/contacts.php:523
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Sdílíte s uživatelem %s"
+
+#: mod/contacts.php:527
+#, php-format
+msgid "%s is sharing with you"
+msgstr "uživatel %s sdílí s vámi"
+
+#: mod/contacts.php:547
+msgid "Private communications are not available for this contact."
+msgstr "Soukromá komunikace není dostupná pro tento kontakt."
+
+#: mod/contacts.php:549
+msgid "Never"
+msgstr "Nikdy"
+
+#: mod/contacts.php:552
+msgid "(Update was successful)"
+msgstr "(Aktualizace byla úspěšná)"
+
+#: mod/contacts.php:552
+msgid "(Update was not successful)"
+msgstr "(Aktualizace nebyla úspěšná)"
+
+#: mod/contacts.php:554 mod/contacts.php:992
+msgid "Suggest friends"
+msgstr "Navrhněte přátelé"
+
+#: mod/contacts.php:558
+#, php-format
+msgid "Network type: %s"
+msgstr "Typ sítě: %s"
+
+#: mod/contacts.php:563
+msgid "Communications lost with this contact!"
+msgstr "Komunikace s tímto kontaktem byla ztracena!"
+
+#: mod/contacts.php:569
+msgid "Fetch further information for feeds"
+msgstr "Načíst další informace pro kanál"
+
+#: 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 "Načíst informace jako obrázky náhledu, nadpis a popisek z položky kanálu. Toto můžete aktivovat pokud kanál neobsahuje moc textu. Klíčová slova jsou vzata z hlavičky meta v položce kanálu a jsou zveřejněna jako hashtagy."
+
+#: mod/contacts.php:572 mod/admin.php:1284 mod/admin.php:1449
+#: mod/admin.php:1459
+msgid "Disabled"
+msgstr "Zakázáno"
+
+#: mod/contacts.php:573
+msgid "Fetch information"
+msgstr "Načíst informace"
+
+#: mod/contacts.php:574
+msgid "Fetch keywords"
+msgstr "Načíst klíčová slova"
+
+#: mod/contacts.php:575
+msgid "Fetch information and keywords"
+msgstr "Načíst informace a klíčová slova"
+
+#: mod/contacts.php:599 mod/unfollow.php:100
+msgid "Disconnect/Unfollow"
+msgstr "Odpojit/Zrušit sledování"
+
+#: mod/contacts.php:608
+msgid "Contact"
+msgstr "Kontakt"
+
+#: mod/contacts.php:611
+msgid "Profile Visibility"
+msgstr "Viditelnost profilu"
+
+#: mod/contacts.php:612
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu."
+
+#: mod/contacts.php:613
+msgid "Contact Information / Notes"
+msgstr "Kontaktní informace / poznámky"
+
+#: mod/contacts.php:614
+msgid "Their personal note"
+msgstr "Jejich osobní poznámka"
+
+#: mod/contacts.php:616
+msgid "Edit contact notes"
+msgstr "Editovat poznámky kontaktu"
+
+#: mod/contacts.php:620
+msgid "Block/Unblock contact"
+msgstr "Blokovat / Odblokovat kontakt"
+
+#: mod/contacts.php:621
+msgid "Ignore contact"
+msgstr "Ignorovat kontakt"
+
+#: mod/contacts.php:622
+msgid "Repair URL settings"
+msgstr "Opravit nastavení adresy URL "
+
+#: mod/contacts.php:623
+msgid "View conversations"
+msgstr "Zobrazit konverzace"
+
+#: mod/contacts.php:628
+msgid "Last update:"
+msgstr "Poslední aktualizace:"
+
+#: mod/contacts.php:630
+msgid "Update public posts"
+msgstr "Aktualizovat veřejné příspěvky"
+
+#: mod/contacts.php:632 mod/contacts.php:1002
+msgid "Update now"
+msgstr "Aktualizovat"
 
-#: include/event.php:851
-msgid "Export calendar as ical"
-msgstr ""
+#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
+#: mod/admin.php:489 mod/admin.php:1834
+msgid "Unblock"
+msgstr "Odblokovat"
 
-#: include/event.php:852
-msgid "Export calendar as csv"
-msgstr ""
+#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
+#: mod/admin.php:488 mod/admin.php:1833
+msgid "Block"
+msgstr "Blokovat"
 
-#: include/nav.php:35 mod/navigation.php:19
-msgid "Nothing new here"
-msgstr "Zde není nic nového"
+#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
+msgid "Unignore"
+msgstr "Přestat ignorovat"
 
-#: include/nav.php:39 mod/navigation.php:23
-msgid "Clear notifications"
-msgstr "Smazat notifikace"
+#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
+#: mod/notifications.php:62 mod/notifications.php:181
+#: mod/notifications.php:264
+msgid "Ignore"
+msgstr "Ignorovat"
 
-#: include/nav.php:40 include/text.php:1015
-msgid "@name, !forum, #tags, content"
-msgstr ""
+#: mod/contacts.php:642
+msgid "Currently blocked"
+msgstr "V současnosti zablokováno"
 
-#: include/nav.php:78 view/theme/frio/theme.php:246 boot.php:1792
-msgid "Logout"
-msgstr "Odhlásit se"
+#: mod/contacts.php:643
+msgid "Currently ignored"
+msgstr "V současnosti ignorováno"
 
-#: include/nav.php:78 view/theme/frio/theme.php:246
-msgid "End this session"
-msgstr "Konec této relace"
+#: mod/contacts.php:644
+msgid "Currently archived"
+msgstr "Aktuálně archivován"
 
-#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637
-#: mod/contacts.php:833 view/theme/frio/theme.php:249
-msgid "Status"
-msgstr "Stav"
+#: mod/contacts.php:645
+msgid "Awaiting connection acknowledge"
+msgstr "Čekám na potrvzení spojení"
 
-#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249
-msgid "Your posts and conversations"
-msgstr "Vaše příspěvky a konverzace"
+#: mod/contacts.php:646 mod/notifications.php:175 mod/notifications.php:253
+msgid "Hide this contact from others"
+msgstr "Skrýt tento kontakt před ostatními"
 
-#: include/nav.php:82 include/identity.php:605 include/identity.php:691
-#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32
-#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:250
-msgid "Profile"
-msgstr "Profil"
+#: mod/contacts.php:646
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Odpovědi/Libí se na Vaše veřejné příspěvky <strong>mohou být</strong> stále viditelné"
 
-#: include/nav.php:82 view/theme/frio/theme.php:250
-msgid "Your profile page"
-msgstr "Vaše profilová stránka"
+#: mod/contacts.php:647
+msgid "Notification for new posts"
+msgstr "Upozornění na nové příspěvky"
 
-#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32
-#: view/theme/frio/theme.php:251
-msgid "Photos"
-msgstr "Fotografie"
+#: mod/contacts.php:647
+msgid "Send a notification of every new post of this contact"
+msgstr "Poslat upozornění při každém novém příspěvku tohoto kontaktu"
 
-#: include/nav.php:83 view/theme/frio/theme.php:251
-msgid "Your photos"
-msgstr "Vaše fotky"
+#: mod/contacts.php:650
+msgid "Blacklisted keywords"
+msgstr "Zakázaná klíčová slova"
 
-#: include/nav.php:84 include/identity.php:738 include/identity.php:741
-#: view/theme/frio/theme.php:252
-msgid "Videos"
-msgstr "Videa"
+#: 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 "Čárkou oddělený seznam klíčových slov, které by neměly být převáděna na hashtagy, když je zvoleno \"Načíst informace a klíčová slova\""
 
-#: include/nav.php:84 view/theme/frio/theme.php:252
-msgid "Your videos"
-msgstr "Vaše videa"
+#: mod/contacts.php:656 mod/unfollow.php:122 mod/follow.php:166
+#: mod/admin.php:494 mod/admin.php:504 mod/notifications.php:256
+msgid "Profile URL"
+msgstr "URL profilu"
 
-#: include/nav.php:85 include/nav.php:149 include/identity.php:750
-#: include/identity.php:761 mod/cal.php:275 mod/events.php:379
-#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257
-msgid "Events"
-msgstr "Události"
+#: mod/contacts.php:660 mod/directory.php:148 mod/events.php:519
+#: mod/notifications.php:246 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 "Místo:"
 
-#: include/nav.php:85 view/theme/frio/theme.php:253
-msgid "Your events"
-msgstr "Vaše události"
+#: mod/contacts.php:662 src/Model/Profile.php:420
+msgid "XMPP:"
+msgstr "XMPP:"
 
-#: include/nav.php:86
-msgid "Personal notes"
-msgstr "Osobní poznámky"
+#: mod/contacts.php:664 mod/directory.php:154 mod/notifications.php:248
+#: src/Model/Profile.php:419 src/Model/Profile.php:804
+msgid "About:"
+msgstr "O mě:"
 
-#: include/nav.php:86
-msgid "Your personal notes"
-msgstr "Vaše osobní poznámky"
+#: mod/contacts.php:666 mod/follow.php:174 mod/notifications.php:250
+#: src/Model/Profile.php:792
+msgid "Tags:"
+msgstr "Štítky:"
 
-#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1793
-msgid "Login"
-msgstr "Přihlásit se"
+#: mod/contacts.php:667
+msgid "Actions"
+msgstr "Akce"
 
-#: include/nav.php:95
-msgid "Sign in"
-msgstr "Přihlásit se"
+#: 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 "Stav"
 
-#: include/nav.php:105 include/nav.php:161
-#: include/NotificationsManager.php:174
-msgid "Home"
-msgstr "Domů"
+#: mod/contacts.php:670
+msgid "Contact Settings"
+msgstr "Nastavení kontaktů"
 
-#: include/nav.php:105
-msgid "Home Page"
-msgstr "Domácí stránka"
+#: mod/contacts.php:711
+msgid "Suggestions"
+msgstr "Doporučení"
 
-#: include/nav.php:109 mod/register.php:289 boot.php:1768
-msgid "Register"
-msgstr "Registrovat"
+#: mod/contacts.php:714
+msgid "Suggest potential friends"
+msgstr "Navrhnout potenciální přátele"
 
-#: include/nav.php:109
-msgid "Create an account"
-msgstr "Vytvořit účet"
+#: mod/contacts.php:719 mod/group.php:215
+msgid "All Contacts"
+msgstr "Všechny kontakty"
 
-#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298
-msgid "Help"
-msgstr "Nápověda"
+#: mod/contacts.php:722
+msgid "Show all contacts"
+msgstr "Zobrazit všechny kontakty"
 
-#: include/nav.php:115
-msgid "Help and documentation"
-msgstr "Nápověda a dokumentace"
+#: mod/contacts.php:727
+msgid "Unblocked"
+msgstr "Odblokován"
 
-#: include/nav.php:119
-msgid "Apps"
-msgstr "Aplikace"
+#: mod/contacts.php:730
+msgid "Only show unblocked contacts"
+msgstr "Zobrazit pouze neblokované kontakty"
 
-#: include/nav.php:119
-msgid "Addon applications, utilities, games"
-msgstr "Doplňkové aplikace, nástroje, hry"
+#: mod/contacts.php:735
+msgid "Blocked"
+msgstr "Blokován"
 
-#: include/nav.php:123 include/text.php:1012 mod/search.php:149
-msgid "Search"
-msgstr "Vyhledávání"
+#: mod/contacts.php:738
+msgid "Only show blocked contacts"
+msgstr "Zobrazit pouze blokované kontakty"
 
-#: include/nav.php:123
-msgid "Search site content"
-msgstr "Hledání na stránkách tohoto webu"
+#: mod/contacts.php:743
+msgid "Ignored"
+msgstr "Ignorován"
 
-#: include/nav.php:126 include/text.php:1020
-msgid "Full Text"
-msgstr "Celý text"
+#: mod/contacts.php:746
+msgid "Only show ignored contacts"
+msgstr "Zobrazit pouze ignorované kontakty"
 
-#: include/nav.php:127 include/text.php:1021
-msgid "Tags"
-msgstr "Štítky:"
+#: mod/contacts.php:751
+msgid "Archived"
+msgstr "Archivován"
 
-#: include/nav.php:128 include/nav.php:192 include/identity.php:783
-#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792
-#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:260
-msgid "Contacts"
-msgstr "Kontakty"
+#: mod/contacts.php:754
+msgid "Only show archived contacts"
+msgstr "Zobrazit pouze archivované kontakty"
 
-#: include/nav.php:143 include/nav.php:145 mod/community.php:36
-msgid "Community"
-msgstr "Komunita"
+#: mod/contacts.php:759
+msgid "Hidden"
+msgstr "Skrytý"
 
-#: include/nav.php:143
-msgid "Conversations on this site"
-msgstr "Konverzace na tomto webu"
+#: mod/contacts.php:762
+msgid "Only show hidden contacts"
+msgstr "Zobrazit pouze skryté kontakty"
 
-#: include/nav.php:145
-msgid "Conversations on the network"
-msgstr "Konverzace v síti"
+#: mod/contacts.php:818
+msgid "Search your contacts"
+msgstr "Prohledat Vaše kontakty"
 
-#: include/nav.php:149 include/identity.php:753 include/identity.php:764
-#: view/theme/frio/theme.php:257
-msgid "Events and Calendar"
-msgstr "Události a kalendář"
+#: mod/contacts.php:819 mod/search.php:236
+#, php-format
+msgid "Results for: %s"
+msgstr "Výsledky pro: %s"
 
-#: include/nav.php:152
-msgid "Directory"
-msgstr "Adresář"
+#: mod/contacts.php:820 mod/directory.php:209 view/theme/vier/theme.php:203
+#: src/Content/Widget.php:63
+msgid "Find"
+msgstr "Najít"
 
-#: include/nav.php:152
-msgid "People directory"
-msgstr "Adresář"
+#: mod/contacts.php:826 mod/settings.php:169 mod/settings.php:695
+msgid "Update"
+msgstr "Aktualizace"
 
-#: include/nav.php:154
-msgid "Information"
-msgstr "Informace"
+#: mod/contacts.php:829 mod/contacts.php:1027
+msgid "Archive"
+msgstr "Archivovat"
 
-#: include/nav.php:154
-msgid "Information about this friendica instance"
-msgstr "Informace o této instanci Friendica"
+#: mod/contacts.php:829 mod/contacts.php:1027
+msgid "Unarchive"
+msgstr "Vrátit z archívu"
 
-#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411
-#: view/theme/frio/theme.php:256
-msgid "Network"
-msgstr "Síť"
+#: mod/contacts.php:832
+msgid "Batch Actions"
+msgstr "Dávkové (batch) akce"
 
-#: include/nav.php:158 view/theme/frio/theme.php:256
-msgid "Conversations from your friends"
-msgstr "Konverzace od Vašich přátel"
+#: mod/contacts.php:858 mod/unfollow.php:132 mod/follow.php:186
+#: src/Model/Profile.php:889
+msgid "Status Messages and Posts"
+msgstr "Statusové zprávy a příspěvky "
 
-#: include/nav.php:159
-msgid "Network Reset"
-msgstr "Síťový Reset"
+#: mod/contacts.php:866 src/Model/Profile.php:897
+msgid "Profile Details"
+msgstr "Detaily profilu"
 
-#: include/nav.php:159
-msgid "Load Network page with no filters"
-msgstr "Načíst stránku Síť bez filtrů"
+#: mod/contacts.php:878
+msgid "View all contacts"
+msgstr "Zobrazit všechny kontakty"
 
-#: include/nav.php:166 include/NotificationsManager.php:181
-msgid "Introductions"
-msgstr "Představení"
+#: mod/contacts.php:889
+msgid "View all common friends"
+msgstr "Zobrazit všechny společné přátele"
 
-#: include/nav.php:166
-msgid "Friend Requests"
-msgstr "Žádosti přátel"
+#: mod/contacts.php:895 mod/admin.php:1362 mod/events.php:533
+#: src/Model/Profile.php:863
+msgid "Advanced"
+msgstr "Pokročilé"
 
-#: include/nav.php:169 mod/notifications.php:96
-msgid "Notifications"
-msgstr "Upozornění"
+#: mod/contacts.php:898
+msgid "Advanced Contact Settings"
+msgstr "Pokročilé nastavení kontaktu"
 
-#: include/nav.php:170
-msgid "See all notifications"
-msgstr "Zobrazit všechny upozornění"
+#: mod/contacts.php:930
+msgid "Mutual Friendship"
+msgstr "Vzájemné přátelství"
 
-#: include/nav.php:171 mod/settings.php:902
-msgid "Mark as seen"
-msgstr "Označit jako přečtené"
+#: mod/contacts.php:934
+msgid "is a fan of yours"
+msgstr "je Váš fanoušek"
 
-#: include/nav.php:171
-msgid "Mark all system notifications seen"
-msgstr "Označit všechny upozornění systému jako přečtené"
+#: mod/contacts.php:938
+msgid "you are a fan of"
+msgstr "jste fanouškem"
 
-#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258
-msgid "Messages"
-msgstr "Zprávy"
+#: mod/contacts.php:953 mod/photos.php:1482 mod/photos.php:1521
+#: mod/photos.php:1594 src/Object/Post.php:801
+msgid "This is you"
+msgstr "Nastavte Vaši polohu"
 
-#: include/nav.php:175 view/theme/frio/theme.php:258
-msgid "Private mail"
-msgstr "Soukromá pošta"
+#: mod/contacts.php:1013
+msgid "Toggle Blocked status"
+msgstr "Přepnout stav Blokováno"
 
-#: include/nav.php:176
-msgid "Inbox"
-msgstr "Doručená pošta"
+#: mod/contacts.php:1021
+msgid "Toggle Ignored status"
+msgstr "Přepnout stav Ignorováno"
 
-#: include/nav.php:177
-msgid "Outbox"
-msgstr "Odeslaná pošta"
+#: mod/contacts.php:1029
+msgid "Toggle Archive status"
+msgstr "Přepnout stav Archivováno"
 
-#: include/nav.php:178 mod/message.php:16
-msgid "New Message"
-msgstr "Nová zpráva"
+#: mod/contacts.php:1037
+msgid "Delete contact"
+msgstr "Odstranit kontakt"
 
-#: include/nav.php:181
-msgid "Manage"
-msgstr "Spravovat"
+#: mod/delegate.php:37
+msgid "Parent user not found."
+msgstr "Rodičovský uživatel nenalezen."
 
-#: include/nav.php:181
-msgid "Manage other pages"
-msgstr "Spravovat jiné stránky"
+#: mod/delegate.php:144
+msgid "No parent user"
+msgstr "Žádný rodičovský uživatel"
 
-#: include/nav.php:184 mod/settings.php:81
-msgid "Delegations"
-msgstr "Delegace"
+#: mod/delegate.php:159
+msgid "Parent Password:"
+msgstr "Rodičovské heslo:"
 
-#: include/nav.php:184 mod/delegate.php:130
-msgid "Delegate Page Management"
-msgstr "Správa delegátů stránky"
+#: mod/delegate.php:159
+msgid ""
+"Please enter the password of the parent account to legitimize your request."
+msgstr "Prosím vložte heslo rodičovského účtu k legitimizaci Vašeho požadavku."
 
-#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111
-#: mod/admin.php:1524 mod/admin.php:1782 view/theme/frio/theme.php:259
-msgid "Settings"
-msgstr "Nastavení"
+#: mod/delegate.php:164
+msgid "Parent User"
+msgstr "Rodičovský uživatel"
 
-#: include/nav.php:186 view/theme/frio/theme.php:259
-msgid "Account settings"
-msgstr "Nastavení účtu"
+#: 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 "Rodičovští uživatelé mají naprostou kontrolu nad tímto účtem, včetně nastavení účtu. Prosím překontrolujte, komu tento přístup dáváte."
 
-#: include/nav.php:189 include/identity.php:282
-msgid "Profiles"
-msgstr "Profily"
+#: mod/delegate.php:168 mod/admin.php:311 mod/admin.php:1357
+#: mod/admin.php:1999 mod/admin.php:2253 mod/admin.php:2327 mod/admin.php:2474
+#: mod/settings.php:669 mod/settings.php:776 mod/settings.php:864
+#: mod/settings.php:953 mod/settings.php:1183
+msgid "Save Settings"
+msgstr "Uložit Nastavení"
 
-#: include/nav.php:189
-msgid "Manage/Edit Profiles"
-msgstr "Spravovat/Editovat Profily"
+#: mod/delegate.php:169 src/Content/Nav.php:205
+msgid "Delegate Page Management"
+msgstr "Správa delegátů stránky"
 
-#: include/nav.php:192 view/theme/frio/theme.php:260
-msgid "Manage/edit friends and contacts"
-msgstr "Spravovat/upravit přátelé a kontakty"
+#: mod/delegate.php:170
+msgid "Delegates"
+msgstr "Delegáti"
 
-#: include/nav.php:197 mod/admin.php:186
-msgid "Admin"
-msgstr "Administrace"
+#: 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 "Delegáti jsou schopni řídit všechny aspekty tohoto účtu / stránky, kromě základních nastavení účtu. Prosím, nepředávejte svůj osobní účet nikomu, komu úplně nevěříte.."
 
-#: include/nav.php:197
-msgid "Site setup and configuration"
-msgstr "Nastavení webu a konfigurace"
+#: mod/delegate.php:173
+msgid "Existing Page Delegates"
+msgstr "Stávající delegáti stránky "
 
-#: include/nav.php:200
-msgid "Navigation"
-msgstr "Navigace"
+#: mod/delegate.php:175
+msgid "Potential Delegates"
+msgstr "Potenciální delegáti"
 
-#: include/nav.php:200
-msgid "Site map"
-msgstr "Mapa webu"
+#: mod/delegate.php:178
+msgid "Add"
+msgstr "Přidat"
 
-#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62
-#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211
-#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807
-msgid "Contact Photos"
-msgstr "Fotogalerie kontaktu"
+#: mod/delegate.php:179
+msgid "No entries."
+msgstr "Žádné záznamy."
 
-#: include/security.php:22
-msgid "Welcome "
-msgstr "Vítejte "
+#: mod/feedtest.php:20
+msgid "You must be logged in to use this module"
+msgstr "Pro používání tohoto modulu musíte být přihlášen/a"
 
-#: include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Prosím nahrejte profilovou fotografii"
+#: mod/feedtest.php:48
+msgid "Source URL"
+msgstr "Zdrojová adresa URL"
 
-#: include/security.php:26
-msgid "Welcome back "
-msgstr "Vítejte zpět "
+#: mod/oexchange.php:30
+msgid "Post successful."
+msgstr "Příspěvek úspěšně odeslán"
 
-#: include/security.php:373
-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 "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním."
+#: mod/ostatus_subscribe.php:21
+msgid "Subscribing to OStatus contacts"
+msgstr "Registruji Vás ke kontaktům OStatus"
 
-#: include/NotificationsManager.php:153
-msgid "System"
-msgstr "Systém"
+#: mod/ostatus_subscribe.php:33
+msgid "No contact provided."
+msgstr "Nebyl poskytnut žádný kontakt."
 
-#: include/NotificationsManager.php:167 mod/profiles.php:703
-#: mod/network.php:845
-msgid "Personal"
-msgstr "Osobní"
+#: mod/ostatus_subscribe.php:40
+msgid "Couldn't fetch information for contact."
+msgstr "Nelze načíst informace pro kontakt."
 
-#: include/NotificationsManager.php:234 include/NotificationsManager.php:244
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s okomentoval příspěvek uživatele %s'"
+#: mod/ostatus_subscribe.php:50
+msgid "Couldn't fetch friends for contact."
+msgstr "Nelze načíst přátele pro kontakt."
 
-#: include/NotificationsManager.php:243
-#, php-format
-msgid "%s created a new post"
-msgstr "%s vytvořil nový příspěvek"
+#: mod/ostatus_subscribe.php:78
+msgid "success"
+msgstr "úspěch"
 
-#: include/NotificationsManager.php:256
-#, php-format
-msgid "%s liked %s's post"
-msgstr "Uživateli %s se líbí příspěvek uživatele %s"
+#: mod/ostatus_subscribe.php:80
+msgid "failed"
+msgstr "selhalo"
 
-#: include/NotificationsManager.php:267
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "Uživateli %s se nelíbí příspěvek uživatele %s"
+#: mod/ostatus_subscribe.php:83 src/Object/Post.php:287
+msgid "ignored"
+msgstr "ignorován"
 
-#: include/NotificationsManager.php:278
-#, php-format
-msgid "%s is attending %s's event"
-msgstr ""
+#: mod/profile_photo.php:55
+msgid "Image uploaded but image cropping failed."
+msgstr "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo."
 
-#: include/NotificationsManager.php:289
+#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104
+#: mod/profile_photo.php:315
 #, php-format
-msgid "%s is not attending %s's event"
-msgstr ""
+msgid "Image size reduction [%s] failed."
+msgstr "Nepodařilo se snížit velikost obrázku [%s]."
 
-#: include/NotificationsManager.php:300
-#, php-format
-msgid "%s may attend %s's event"
-msgstr ""
+#: mod/profile_photo.php:125
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě."
 
-#: include/NotificationsManager.php:315
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s se nyní přátelí s %s"
+#: mod/profile_photo.php:134
+msgid "Unable to process image"
+msgstr "Obrázek nelze zpracovat "
 
-#: include/NotificationsManager.php:748
-msgid "Friend Suggestion"
-msgstr "Návrh přátelství"
+#: mod/profile_photo.php:247
+msgid "Upload File:"
+msgstr "Nahrát soubor:"
 
-#: include/NotificationsManager.php:781
-msgid "Friend/Connect Request"
-msgstr "Přítel / žádost o připojení"
+#: mod/profile_photo.php:248
+msgid "Select a profile:"
+msgstr "Vybrat profil:"
 
-#: include/NotificationsManager.php:781
-msgid "New Follower"
-msgstr "Nový následovník"
+#: mod/profile_photo.php:253
+msgid "or"
+msgstr "nebo"
 
-#: include/dbstructure.php:26
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
-msgstr "\n\t\t\tThe friendica vývojáři uvolnili nedávno aktualizaci %s,\n\t\t\tale při pokusu o její instalaci se něco velmi nepovedlo.\n\t\t\tJe třeba to opravit a já to sám nedokážu. Prosím kontaktuj\n\t\t\tfriendica vývojáře, pokud mi s tím nepomůžeš ty sám. Moje databáze může být poškozena."
+#: mod/profile_photo.php:253
+msgid "skip this step"
+msgstr "přeskočit tento krok "
 
-#: include/dbstructure.php:31
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "Chybová zpráva je\n[pre]%s[/pre]"
+#: mod/profile_photo.php:253
+msgid "select a photo from your photo albums"
+msgstr "Vybrat fotografii z Vašich fotoalb"
 
-#: include/dbstructure.php:183
-msgid "Errors encountered creating database tables."
-msgstr "Při vytváření databázových tabulek došlo k chybám."
+#: mod/profile_photo.php:266
+msgid "Crop Image"
+msgstr "Oříznout obrázek"
 
-#: include/dbstructure.php:260
-msgid "Errors encountered performing database changes."
-msgstr "Při provádění databázových změn došlo k chybám."
+#: mod/profile_photo.php:267
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Prosím, ořízněte tento obrázek pro optimální zobrazení."
 
-#: include/delivery.php:446
-msgid "(no subject)"
-msgstr "(Bez předmětu)"
+#: mod/profile_photo.php:269
+msgid "Done Editing"
+msgstr "Editace dokončena"
 
-#: include/diaspora.php:1958
-msgid "Sharing notification from Diaspora network"
-msgstr "Sdílení oznámení ze sítě Diaspora"
+#: mod/profile_photo.php:305
+msgid "Image uploaded successfully."
+msgstr "Obrázek byl úspěšně nahrán."
 
-#: include/diaspora.php:2864
-msgid "Attachments:"
-msgstr "Přílohy:"
+#: mod/unfollow.php:34
+msgid "Contact wasn't found or can't be unfollowed."
+msgstr "Kontakt nebyl nalezen, nebo u něj nemůže být zrušeno sledování."
 
-#: include/network.php:595
-msgid "view full size"
-msgstr "zobrazit v plné velikosti"
+#: mod/unfollow.php:47
+msgid "Contact unfollowed"
+msgstr "Zrušeno sledování kontaktu"
 
-#: include/Contact.php:340 include/Contact.php:353 include/Contact.php:398
-#: include/conversation.php:968 include/conversation.php:984
-#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203
-#: mod/match.php:71 mod/suggest.php:82
-msgid "View Profile"
-msgstr "Zobrazit Profil"
+#: mod/unfollow.php:65 mod/follow.php:62 mod/dfrn_request.php:657
+msgid "Submit Request"
+msgstr "Odeslat žádost"
 
-#: include/Contact.php:397 include/conversation.php:967
-msgid "View Status"
-msgstr "Zobrazit Status"
+#: mod/unfollow.php:73
+msgid "You aren't a friend of this contact."
+msgstr "nejste přítelem tohoto kontaktu"
 
-#: include/Contact.php:399 include/conversation.php:969
-msgid "View Photos"
-msgstr "Zobrazit Fotky"
+#: mod/unfollow.php:79
+msgid "Unfollowing is currently not supported by your network."
+msgstr "Zrušení sledování není aktuálně na Vaši síti podporováno."
 
-#: include/Contact.php:400 include/conversation.php:970
-msgid "Network Posts"
-msgstr "Zobrazit Příspěvky sítě"
+#: mod/unfollow.php:113 mod/follow.php:157 mod/dfrn_request.php:655
+msgid "Your Identity Address:"
+msgstr "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\"."
 
-#: include/Contact.php:401 include/conversation.php:971
-msgid "View Contact"
-msgstr ""
+#: mod/directory.php:151 mod/notifications.php:252 src/Model/Profile.php:416
+#: src/Model/Profile.php:743
+msgid "Gender:"
+msgstr "Pohlaví:"
 
-#: include/Contact.php:402
-msgid "Drop Contact"
-msgstr "Odstranit kontakt"
+#: mod/directory.php:152 src/Model/Profile.php:417 src/Model/Profile.php:767
+msgid "Status:"
+msgstr "Status:"
 
-#: include/Contact.php:403 include/conversation.php:972
-msgid "Send PM"
-msgstr "Poslat soukromou zprávu"
+#: mod/directory.php:153 src/Model/Profile.php:418 src/Model/Profile.php:784
+msgid "Homepage:"
+msgstr "Domácí stránka:"
 
-#: include/Contact.php:404 include/conversation.php:976
-msgid "Poke"
-msgstr "Šťouchnout"
+#: mod/directory.php:202 view/theme/vier/theme.php:208
+#: src/Content/Widget.php:68
+msgid "Global Directory"
+msgstr "Globální adresář"
 
-#: include/Contact.php:775
-msgid "Organisation"
-msgstr ""
+#: mod/directory.php:204
+msgid "Find on this site"
+msgstr "Nalézt na tomto webu"
 
-#: include/Contact.php:778
-msgid "News"
-msgstr ""
+#: mod/directory.php:206
+msgid "Results for:"
+msgstr "Výsledky pro:"
 
-#: include/Contact.php:781
-msgid "Forum"
-msgstr ""
+#: mod/directory.php:208
+msgid "Site Directory"
+msgstr "Adresář serveru"
 
-#: include/api.php:1018
-#, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
-msgstr "Bylo dosaženo denního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut."
+#: mod/directory.php:213
+msgid "No entries (some entries may be hidden)."
+msgstr "Žádné záznamy (některé položky mohou být skryty)."
 
-#: include/api.php:1038
+#: mod/dirfind.php:49
 #, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr "Bylo týdenního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut."
+msgid "People Search - %s"
+msgstr "Vyhledávání lidí - %s"
 
-#: include/api.php:1059
+#: mod/dirfind.php:60
 #, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
-msgstr "Bylo dosaženo měsíčního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut."
+msgid "Forum Search - %s"
+msgstr "Vyhledávání ve fóru - %s"
 
-#: include/bbcode.php:350 include/bbcode.php:1057 include/bbcode.php:1058
-msgid "Image/photo"
-msgstr "Obrázek/fotografie"
+#: mod/follow.php:45
+msgid "The contact could not be added."
+msgstr "Kontakt nemohl být přidán."
 
-#: include/bbcode.php:467
-#, 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/follow.php:73
+msgid "You already added this contact."
+msgstr "Již jste si tento kontakt přidali."
 
-#: include/bbcode.php:1017 include/bbcode.php:1037
-msgid "$1 wrote:"
-msgstr "$1 napsal:"
+#: mod/follow.php:83
+msgid "Diaspora support isn't enabled. Contact can't be added."
+msgstr "Podpora pro Diasporu není zapnuta. Kontakt nemůže být přidán."
 
-#: include/bbcode.php:1066 include/bbcode.php:1067
-msgid "Encrypted content"
-msgstr "Šifrovaný obsah"
+#: mod/follow.php:90
+msgid "OStatus support is disabled. Contact can't be added."
+msgstr "Podpora pro OStatus je vypnnuta. Kontakt nemůže být přidán."
 
-#: include/bbcode.php:1169
-msgid "Invalid source protocol"
-msgstr ""
+#: mod/follow.php:97
+msgid "The network type couldn't be detected. Contact can't be added."
+msgstr "Typ sítě nemohl být detekován. Kontakt nemůže být přidán."
 
-#: include/bbcode.php:1179
-msgid "Invalid link protocol"
-msgstr ""
+#: mod/follow.php:149 mod/dfrn_request.php:647
+msgid "Please answer the following:"
+msgstr "Odpovězte, prosím, následující:"
 
-#: include/conversation.php:147
+#: mod/follow.php:150 mod/dfrn_request.php:648
 #, php-format
-msgid "%1$s attends %2$s's %3$s"
-msgstr ""
+msgid "Does %s know you?"
+msgstr "Zná Vás uživatel %s ?"
 
-#: include/conversation.php:150
-#, php-format
-msgid "%1$s doesn't attend %2$s's %3$s"
-msgstr ""
+#: mod/follow.php:151 mod/dfrn_request.php:649
+msgid "Add a personal note:"
+msgstr "Přidat osobní poznámku:"
 
-#: include/conversation.php:153
-#, php-format
-msgid "%1$s attends maybe %2$s's %3$s"
-msgstr ""
+#: mod/lostpass.php:27
+msgid "No valid account found."
+msgstr "Nenalezen žádný platný účet."
 
-#: include/conversation.php:185 mod/dfrn_confirm.php:477
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s je nyní přítel s %2$s"
+#: mod/lostpass.php:39
+msgid "Password reset request issued. Check your email."
+msgstr "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku."
 
-#: include/conversation.php:219
+#: mod/lostpass.php:45
 #, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s šťouchnul %2$s"
+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\tVážený/á %1$s,\n\t\t\tPřed nedávnem jsme obdrželi na \"%2$s\" požadavek pro resetování\n\t\thesla k Vašemu účtu. Pro potvrzení tohoto požadavku, prosím klikněte na odkaz\n\t\tpro ověření dole, nebo ho zkopírujte do adresního řádku Vašeho prohlížeče.\n\n\t\tPokud jste o tuto změnu NEPOŽÁDAL/A, prosím NEKLIKEJTE na tento odkaz\n\t\ta ignorujte a/nebo smažte tento e-mail. Platnost požadavku brzy vyprší.\n\n\t\tVaše heslo nebude změněno, dokud nedokážeme ověřit, že jste tento\n\t\tpožadavek nevydal/a Vy."
 
-#: include/conversation.php:239 mod/mood.php:62
+#: mod/lostpass.php:56
 #, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s je právě %2$s"
+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 "\n\t\tKlikněte na tento odkaz brzy pro ověření vaší identity:\n\n\t\t%1$s\n\n\t\tObdržíte poté následnou zprávu obsahující nové heslo.\n\t\tPo přihlášení můžete toto heslo změnit na stránce nastavení Vašeho účtu.\n\n\t\tZde jsou vaše přihlašovací detaily:\n\n\t\tAdresa stránky:\t\t%2$s\n\t\tPřihlašovací jméno:\t%3$s"
 
-#: include/conversation.php:278 mod/tagger.php:95
+#: mod/lostpass.php:73
 #, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s označen uživatelem %2$s %3$s s %4$s"
+msgid "Password reset requested at %s"
+msgstr "Na %s bylo zažádáno o resetování hesla"
 
-#: include/conversation.php:303
-msgid "post/item"
-msgstr "příspěvek/položka"
+#: mod/lostpass.php:89
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení hesla se nezdařilo."
 
-#: include/conversation.php:304
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "uživatel %1$s označil %2$s's %3$s jako oblíbeného"
+#: mod/lostpass.php:102
+msgid "Request has expired, please make a new one."
+msgstr "Platnost požadavku vypršela, prosím vytvořte nový."
 
-#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346
-#: mod/photos.php:1607
-msgid "Likes"
-msgstr "Libí se mi"
+#: mod/lostpass.php:117
+msgid "Forgot your Password?"
+msgstr "Zapomněli jste heslo?"
 
-#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350
-#: mod/photos.php:1607
-msgid "Dislikes"
-msgstr "Nelibí se mi"
+#: mod/lostpass.php:118
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Zadejte svůj e-mailovou adresu a odešlete žádost o zaslání Vašeho nového hesla. Poté zkontrolujte svůj e-mail pro další instrukce."
 
-#: include/conversation.php:586 include/conversation.php:1481
-#: mod/content.php:373 mod/photos.php:1608
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+#: mod/lostpass.php:119 src/Module/Login.php:315
+msgid "Nickname or Email: "
+msgstr "Přezdívka nebo e-mail: "
 
-#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
-msgid "Not attending"
-msgstr ""
+#: mod/lostpass.php:120
+msgid "Reset"
+msgstr "Reset"
 
-#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
-msgid "Might attend"
-msgstr ""
+#: mod/lostpass.php:136 src/Module/Login.php:327
+msgid "Password Reset"
+msgstr "Obnovení hesla"
 
-#: include/conversation.php:708 mod/content.php:453 mod/content.php:758
-#: mod/photos.php:1681 object/Item.php:133
-msgid "Select"
-msgstr "Vybrat"
+#: mod/lostpass.php:137
+msgid "Your password has been reset as requested."
+msgstr "Vaše heslo bylo na Vaše přání resetováno."
 
-#: include/conversation.php:709 mod/group.php:171 mod/content.php:454
-#: mod/content.php:759 mod/photos.php:1682 mod/settings.php:741
-#: mod/admin.php:1414 mod/contacts.php:808 mod/contacts.php:1007
-#: object/Item.php:134
-msgid "Delete"
-msgstr "Odstranit"
+#: mod/lostpass.php:138
+msgid "Your new password is"
+msgstr "Někdo Vám napsal na Vaši profilovou stránku"
 
-#: include/conversation.php:753 mod/content.php:487 mod/content.php:910
-#: mod/content.php:911 object/Item.php:367 object/Item.php:368
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Zobrazit profil uživatele %s na %s"
+#: mod/lostpass.php:139
+msgid "Save or copy your new password - and then"
+msgstr "Uložte si nebo zkopírujte nové heslo - a pak"
 
-#: include/conversation.php:765 object/Item.php:355
-msgid "Categories:"
-msgstr "Kategorie:"
+#: mod/lostpass.php:140
+msgid "click here to login"
+msgstr "klikněte zde pro přihlášení"
 
-#: include/conversation.php:766 object/Item.php:356
-msgid "Filed under:"
-msgstr "Vyplněn pod:"
+#: mod/lostpass.php:141
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení)."
 
-#: include/conversation.php:773 mod/content.php:497 mod/content.php:923
-#: object/Item.php:381
+#: mod/lostpass.php:149
 #, php-format
-msgid "%s from %s"
-msgstr "%s od %s"
+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\tVážený/á %1$s,\n\t\t\t\tVaše heslo se před nedávnem změnilo, jak jste požádal/a. Prosím uchovejte\n\t\t\ttyto informace pro vaše záznamy (nebo si ihned změňte heslo na něco,\n\t\t\tco si zapamatujete).\n\t\t"
 
-#: include/conversation.php:789 mod/content.php:513
-msgid "View in context"
-msgstr "Pohled v kontextu"
+#: 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\tZde jsou vaše přihlašovací detaily:\n\n\t\t\tAdresa stránky:\t\t%1$s\n\t\t\tPřihlašovací jméno:\t%2$s\n\t\t\tHeslo:\t\t\t%3$s\n\n\t\t\tSvé heslo si po přihlášení můžete změnit na stránce nastavení Vašeho účtu\n\t\t"
 
-#: include/conversation.php:791 include/conversation.php:1264
-#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356
-#: mod/message.php:548 mod/content.php:515 mod/content.php:948
-#: mod/photos.php:1570 object/Item.php:406
-msgid "Please wait"
-msgstr "Čekejte prosím"
+#: mod/lostpass.php:169
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Vaše heslo bylo změněno na %s"
 
-#: include/conversation.php:870
-msgid "remove"
-msgstr "odstranit"
+#: mod/babel.php:22
+msgid "Source input"
+msgstr "Zdrojový vstup"
 
-#: include/conversation.php:874
-msgid "Delete Selected Items"
-msgstr "Smazat vybrané položky"
+#: mod/babel.php:28
+msgid "BBCode::toPlaintext"
+msgstr "BBCode::toPlaintext"
 
-#: include/conversation.php:966
-msgid "Follow Thread"
-msgstr "Následovat vlákno"
+#: mod/babel.php:34
+msgid "BBCode::convert (raw HTML)"
+msgstr "BBCode::convert (raw HTML)"
 
-#: include/conversation.php:1097
-#, php-format
-msgid "%s likes this."
-msgstr "%s se to líbí."
+#: mod/babel.php:39
+msgid "BBCode::convert"
+msgstr "BBCode::convert"
 
-#: include/conversation.php:1100
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s se to nelíbí."
+#: mod/babel.php:45
+msgid "BBCode::convert => HTML::toBBCode"
+msgstr "BBCode::convert => HTML::toBBCode"
 
-#: include/conversation.php:1103
-#, php-format
-msgid "%s attends."
-msgstr ""
+#: mod/babel.php:51
+msgid "BBCode::toMarkdown"
+msgstr "BBCode::toMarkdown"
 
-#: include/conversation.php:1106
-#, php-format
-msgid "%s doesn't attend."
-msgstr ""
+#: mod/babel.php:57
+msgid "BBCode::toMarkdown => Markdown::convert"
+msgstr "BBCode::toMarkdown => Markdown::convert"
 
-#: include/conversation.php:1109
-#, php-format
-msgid "%s attends maybe."
-msgstr ""
+#: mod/babel.php:63
+msgid "BBCode::toMarkdown => Markdown::toBBCode"
+msgstr "BBCode::toMarkdown => Markdown::toBBCode"
 
-#: include/conversation.php:1119
-msgid "and"
-msgstr "a"
+#: mod/babel.php:69
+msgid "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
+msgstr "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
 
-#: include/conversation.php:1125
-#, php-format
-msgid ", and %d other people"
-msgstr ", a %d dalších lidí"
+#: mod/babel.php:76
+msgid "Source input \\x28Diaspora format\\x29"
+msgstr "Zdrojový vstup \\x28Formát Diaspora\\x29"
 
-#: include/conversation.php:1134
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d lidem</span> se to líbí"
+#: mod/babel.php:82
+msgid "Markdown::toBBCode"
+msgstr "Markdown::toBBCode"
 
-#: include/conversation.php:1135
-#, php-format
-msgid "%s like this."
-msgstr ""
+#: mod/babel.php:89
+msgid "Raw HTML input"
+msgstr "Hrubý HTML vstup"
 
-#: include/conversation.php:1138
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d lidem</span> se to nelíbí"
+#: mod/babel.php:94
+msgid "HTML Input"
+msgstr "HTML vstup"
 
-#: include/conversation.php:1139
-#, php-format
-msgid "%s don't like this."
-msgstr ""
+#: mod/babel.php:100
+msgid "HTML::toBBCode"
+msgstr "HTML::toBBCode"
 
-#: include/conversation.php:1142
-#, php-format
-msgid "<span  %1$s>%2$d people</span> attend"
-msgstr ""
+#: mod/babel.php:106
+msgid "HTML::toPlaintext"
+msgstr "HTML::toPlaintext"
 
-#: include/conversation.php:1143
-#, php-format
-msgid "%s attend."
-msgstr ""
+#: mod/babel.php:114
+msgid "Source text"
+msgstr "Zdrojový text"
 
-#: include/conversation.php:1146
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't attend"
-msgstr ""
+#: mod/babel.php:115
+msgid "BBCode"
+msgstr "BBCode"
 
-#: include/conversation.php:1147
-#, php-format
-msgid "%s don't attend."
-msgstr ""
+#: mod/babel.php:116
+msgid "Markdown"
+msgstr "Markdown"
 
-#: include/conversation.php:1150
-#, php-format
-msgid "<span  %1$s>%2$d people</span> attend maybe"
-msgstr ""
+#: mod/babel.php:117
+msgid "HTML"
+msgstr "HTML"
 
-#: include/conversation.php:1151
-#, php-format
-msgid "%s anttend maybe."
-msgstr ""
+#: mod/friendica.php:77
+msgid "This is Friendica, version"
+msgstr "Toto je Friendica, verze"
 
-#: include/conversation.php:1190 include/conversation.php:1208
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Viditelné pro <strong>všechny</strong>"
+#: mod/friendica.php:78
+msgid "running at web location"
+msgstr "běžící na webu"
 
-#: include/conversation.php:1191 include/conversation.php:1209
-#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291
-#: mod/message.php:299 mod/message.php:442 mod/message.php:450
-msgid "Please enter a link URL:"
-msgstr "Zadejte prosím URL odkaz:"
+#: mod/friendica.php:82
+msgid ""
+"Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
+"about the Friendica project."
+msgstr "Pro více informací o projektu Friendica, prosím, navštivte stránku <a href=\"https://friendi.ca\">Friendi.ca</a>"
 
-#: include/conversation.php:1192 include/conversation.php:1210
-msgid "Please enter a video link/URL:"
-msgstr "Prosím zadejte URL adresu videa:"
+#: mod/friendica.php:86
+msgid "Bug reports and issues: please visit"
+msgstr "Pro hlášení chyb a námětů na změny navštivte"
 
-#: include/conversation.php:1193 include/conversation.php:1211
-msgid "Please enter an audio link/URL:"
-msgstr "Prosím zadejte URL adresu zvukového záznamu:"
+#: mod/friendica.php:86
+msgid "the bugtracker at github"
+msgstr "sledování chyb na GitHubu"
 
-#: include/conversation.php:1194 include/conversation.php:1212
-msgid "Tag term:"
-msgstr "Štítek:"
+#: mod/friendica.php:89
+msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
+msgstr "Návrhy, pochvaly atd., prosím, posílejte na adresu \"info\" zavináč \"friendi\"-tečka-\"ca\""
 
-#: include/conversation.php:1195 include/conversation.php:1213
-#: mod/filer.php:30
-msgid "Save to Folder:"
-msgstr "Uložit do složky:"
+#: mod/friendica.php:103
+msgid "Installed addons/apps:"
+msgstr "Nainstalované doplňky/aplikace:"
 
-#: include/conversation.php:1196 include/conversation.php:1214
-msgid "Where are you right now?"
-msgstr "Kde právě jste?"
+#: mod/friendica.php:117
+msgid "No installed addons/apps"
+msgstr "Žádne nainstalované doplňky/aplikace"
 
-#: include/conversation.php:1197
-msgid "Delete item(s)?"
-msgstr "Smazat položku(y)?"
+#: mod/friendica.php:122
+#, php-format
+msgid "Read about the <a href=\"%1$s/tos\">Terms of Service</a> of this node."
+msgstr "Přečtěte si o <a href=\"%1$s/tos\">Podmínkách používání</a> tohoto serveru."
 
-#: include/conversation.php:1245 mod/photos.php:1569
-msgid "Share"
-msgstr "Sdílet"
+#: mod/friendica.php:127
+msgid "On this server the following remote servers are blocked."
+msgstr "Na tomto serveru jsou zablokovány následující vzdálené servery."
 
-#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154
-#: mod/message.php:354 mod/message.php:545
-msgid "Upload photo"
-msgstr "Nahrát fotografii"
+#: mod/friendica.php:128 mod/admin.php:357 mod/admin.php:375
+#: mod/dfrn_request.php:347 src/Model/Contact.php:1281
+msgid "Blocked domain"
+msgstr "Zablokovaná doména"
 
-#: include/conversation.php:1247 mod/editpost.php:111
-msgid "upload photo"
-msgstr "nahrát fotky"
+#: mod/friendica.php:128 mod/admin.php:358 mod/admin.php:376
+msgid "Reason for the block"
+msgstr "Důvody pro zablokování"
 
-#: include/conversation.php:1248 mod/editpost.php:112
-msgid "Attach file"
-msgstr "Přiložit soubor"
+#: mod/invite.php:33
+msgid "Total invitation limit exceeded."
+msgstr "Celkový limit pozvánek byl překročen"
 
-#: include/conversation.php:1249 mod/editpost.php:113
-msgid "attach file"
-msgstr "přidat soubor"
+#: mod/invite.php:55
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s : není platná e-mailová adresa."
 
-#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155
-#: mod/message.php:355 mod/message.php:546
-msgid "Insert web link"
-msgstr "Vložit webový odkaz"
+#: mod/invite.php:87
+msgid "Please join us on Friendica"
+msgstr "Prosím přidejte se k nám na Friendice"
 
-#: include/conversation.php:1251 mod/editpost.php:115
-msgid "web link"
-msgstr "webový odkaz"
+#: mod/invite.php:96
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limit pozvánek byl překročen. Prosím kontaktujte administrátora Vaší stránky."
 
-#: include/conversation.php:1252 mod/editpost.php:116
-msgid "Insert video link"
-msgstr "Zadejte odkaz na video"
+#: mod/invite.php:100
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : Doručení zprávy se nezdařilo."
 
-#: include/conversation.php:1253 mod/editpost.php:117
-msgid "video link"
-msgstr "odkaz na video"
+#: mod/invite.php:104
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d zpráva odeslána."
+msgstr[1] "%d zprávy odeslány."
+msgstr[2] "%d zpráv odesláno."
+msgstr[3] "%d zprávy odeslány."
 
-#: include/conversation.php:1254 mod/editpost.php:118
-msgid "Insert audio link"
-msgstr "Zadejte odkaz na zvukový záznam"
+#: mod/invite.php:122
+msgid "You have no more invitations available"
+msgstr "Nemáte k dispozici žádné další pozvánky"
 
-#: include/conversation.php:1255 mod/editpost.php:119
-msgid "audio link"
-msgstr "odkaz na audio"
+#: 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 "Navštivte %s pro seznam veřejných serverů, na kterých se můžete přidat. Členové Friendica na jiných serverech se mohou spojit mezi sebou, jakožto i se členy mnoha dalších sociálních sítí."
 
-#: include/conversation.php:1256 mod/editpost.php:120
-msgid "Set your location"
-msgstr "Nastavte vaši polohu"
+#: mod/invite.php:132
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "K přijetí této pozvánky prosím navštivte a registrujte se na %s nebo na kterékoliv jiném veřejném Friendica serveru."
 
-#: include/conversation.php:1257 mod/editpost.php:121
-msgid "set location"
-msgstr "nastavit místo"
+#: 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 "Stránky Friendica jsou navzájem propojené a vytváří tak obrovský sociální web s dúrazem na soukromí, kterou vlastní a kontrojují její členové, Mohou se také připojit k mnoha tradičním socilním sítím. Navštivte %s pro seznam alternativních serverů Friendica, ke kterým se můžete přidat."
 
-#: include/conversation.php:1258 mod/editpost.php:122
-msgid "Clear browser location"
-msgstr "Odstranit adresu v prohlížeči"
+#: mod/invite.php:137
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy."
 
-#: include/conversation.php:1259 mod/editpost.php:123
-msgid "clear location"
-msgstr "vymazat místo"
+#: 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 "Stránky Friendica jsou navzájem propojené a vytváří tak obrovský sociální web s dúrazem na soukromí, kterou vlastní a kontrojují její členové, Mohou se také připojit k mnoha tradičním socilním sítím."
 
-#: include/conversation.php:1261 mod/editpost.php:137
-msgid "Set title"
-msgstr "Nastavit titulek"
+#: mod/invite.php:140
+#, php-format
+msgid "To accept this invitation, please visit and register at %s."
+msgstr "Pokud chcete tuto pozvánku přijmout, prosím navštivte %s a registrujte se tam."
 
-#: include/conversation.php:1263 mod/editpost.php:139
-msgid "Categories (comma-separated list)"
-msgstr "Kategorie (čárkou oddělený seznam)"
+#: mod/invite.php:147
+msgid "Send invitations"
+msgstr "Poslat pozvánky"
 
-#: include/conversation.php:1265 mod/editpost.php:125
-msgid "Permission settings"
-msgstr "Nastavení oprávnění"
+#: mod/invite.php:148
+msgid "Enter email addresses, one per line:"
+msgstr "Zadejte e-mailové adresy, jednu na řádek:"
 
-#: include/conversation.php:1266 mod/editpost.php:154
-msgid "permissions"
-msgstr "oprávnění"
+#: mod/invite.php:149
+msgid ""
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr "Jste srdečně pozván/a se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální web."
 
-#: include/conversation.php:1274 mod/editpost.php:134
-msgid "Public post"
-msgstr "Veřejný příspěvek"
+#: mod/invite.php:151
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Budete muset zadat kód této pozvánky: $invite_code"
 
-#: include/conversation.php:1279 mod/editpost.php:145 mod/content.php:737
-#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639
-#: mod/photos.php:1725 object/Item.php:729
-msgid "Preview"
-msgstr "Náhled"
+#: mod/invite.php:151
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:"
 
-#: include/conversation.php:1283 include/items.php:1974 mod/fbrowser.php:101
-#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/editpost.php:148
-#: mod/message.php:220 mod/suggest.php:32 mod/photos.php:235
-#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705
-#: mod/videos.php:128 mod/contacts.php:445 mod/dfrn_request.php:876
-#: mod/follow.php:121
-msgid "Cancel"
-msgstr "Zrušit"
+#: 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 "Pro více informací o projektu Friendica a proč si myslíme, že je důležitý, prosím navštivte http://friendi.ca"
 
-#: include/conversation.php:1289
-msgid "Post to Groups"
-msgstr "Zveřejnit na Groups"
+#: mod/crepair.php:87
+msgid "Contact settings applied."
+msgstr "Nastavení kontaktu změněno"
 
-#: include/conversation.php:1290
-msgid "Post to Contacts"
-msgstr "Zveřejnit na Groups"
+#: mod/crepair.php:89
+msgid "Contact update failed."
+msgstr "Aktualizace kontaktu selhala."
 
-#: include/conversation.php:1291
-msgid "Private post"
-msgstr "Soukromý příspěvek"
+#: 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>VAROVÁNÍ: Toto je velmi pokročilé</strong> a pokud zadáte nesprávné informace, Vaše komunikace s tímto kontaktem může přestat fungovat."
 
-#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152
-msgid "Message"
-msgstr "Zpráva"
+#: 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 "Prosím použijte <strong>ihned</strong> v prohlížeči tlačítko \"zpět\" pokud si nejste jisti, co dělat na této stránce."
 
-#: include/conversation.php:1297 mod/editpost.php:153
-msgid "Browser"
-msgstr ""
+#: mod/crepair.php:129 mod/crepair.php:131
+msgid "No mirroring"
+msgstr "Žádné zrcadlení"
 
-#: include/conversation.php:1453
-msgid "View all"
-msgstr ""
+#: mod/crepair.php:129
+msgid "Mirror as forwarded posting"
+msgstr "Zrcadlit pro přeposlané příspěvky"
 
-#: include/conversation.php:1475
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+#: mod/crepair.php:129 mod/crepair.php:131
+msgid "Mirror as my own posting"
+msgstr "Zrcadlit jako mé vlastní příspěvky"
+
+#: mod/crepair.php:144
+msgid "Return to contact editor"
+msgstr "Návrat k editoru kontaktu"
 
-#: include/conversation.php:1478
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+#: mod/crepair.php:146
+msgid "Refetch contact data"
+msgstr "Znovu načíst data kontaktu"
 
-#: include/conversation.php:1484
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+#: mod/crepair.php:149
+msgid "Remote Self"
+msgstr "Remote Self"
 
-#: include/dfrn.php:1108
-#, php-format
-msgid "%s\\'s birthday"
-msgstr ""
+#: mod/crepair.php:152
+msgid "Mirror postings from this contact"
+msgstr "Zrcadlení příspěvků od tohoto kontaktu"
 
-#: include/features.php:70
-msgid "General Features"
-msgstr "Obecné funkčnosti"
+#: mod/crepair.php:154
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr "Označit tento kontakt jako \"remote_self\", s tímto nastavením bude friendica přeposílat všechny nové příspěvky od tohoto kontaktu."
 
-#: include/features.php:72
-msgid "Multiple Profiles"
-msgstr "Vícenásobné profily"
+#: mod/crepair.php:158 mod/admin.php:494 mod/admin.php:1816 mod/admin.php:1827
+#: mod/admin.php:1840 mod/admin.php:1856 mod/settings.php:671
+#: mod/settings.php:697
+msgid "Name"
+msgstr "Jméno"
 
-#: include/features.php:72
-msgid "Ability to create multiple profiles"
-msgstr "Schopnost vytvořit vícenásobné profily"
+#: mod/crepair.php:159
+msgid "Account Nickname"
+msgstr "Přezdívka účtu"
 
-#: include/features.php:73
-msgid "Photo Location"
-msgstr ""
+#: mod/crepair.php:160
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname - upřednostněno před Jménem/Přezdívkou"
 
-#: include/features.php:73
-msgid ""
-"Photo metadata is normally stripped. This extracts the location (if present)"
-" prior to stripping metadata and links it to a map."
-msgstr ""
+#: mod/crepair.php:161
+msgid "Account URL"
+msgstr "URL adresa účtu"
 
-#: include/features.php:74
-msgid "Export Public Calendar"
-msgstr ""
+#: mod/crepair.php:162
+msgid "Friend Request URL"
+msgstr "Žádost o přátelství URL"
 
-#: include/features.php:74
-msgid "Ability for visitors to download the public calendar"
-msgstr ""
+#: mod/crepair.php:163
+msgid "Friend Confirm URL"
+msgstr "URL adresa potvrzení přátelství"
 
-#: include/features.php:79
-msgid "Post Composition Features"
-msgstr "Nastavení vytváření příspěvků"
+#: mod/crepair.php:164
+msgid "Notification Endpoint URL"
+msgstr "Notifikační URL adresa"
 
-#: include/features.php:80
-msgid "Richtext Editor"
-msgstr "Richtext Editor"
+#: mod/crepair.php:165
+msgid "Poll/Feed URL"
+msgstr "Poll/Feed URL adresa"
 
-#: include/features.php:80
-msgid "Enable richtext editor"
-msgstr "Povolit richtext editor"
+#: mod/crepair.php:166
+msgid "New photo from this URL"
+msgstr "Nové foto z této URL adresy"
 
-#: include/features.php:81
-msgid "Post Preview"
-msgstr "Náhled příspěvku"
+#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:539
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s vítá %2$s"
 
-#: include/features.php:81
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Povolit náhledy příspěvků a komentářů před jejich zveřejněním"
+#: mod/help.php:48
+msgid "Help:"
+msgstr "Nápověda:"
 
-#: include/features.php:82
-msgid "Auto-mention Forums"
-msgstr "Automaticky zmíněná Fóra"
+#: mod/help.php:54 view/theme/vier/theme.php:297 src/Content/Nav.php:134
+msgid "Help"
+msgstr "Nápověda"
 
-#: include/features.php:82
-msgid ""
-"Add/remove mention when a forum page is selected/deselected in ACL window."
-msgstr ""
+#: mod/help.php:63 index.php:317
+msgid "Page not found."
+msgstr "Stránka nenalezena"
 
-#: include/features.php:87
-msgid "Network Sidebar Widgets"
-msgstr "Síťové postranní widgety"
+#: mod/install.php:87
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica Komunikační server - Nastavení"
 
-#: include/features.php:88
-msgid "Search by Date"
-msgstr "Vyhledávat dle Data"
+#: mod/install.php:93
+msgid "Could not connect to database."
+msgstr "Nelze se připojit k databázi."
 
-#: include/features.php:88
-msgid "Ability to select posts by date ranges"
-msgstr "Možnost označit příspěvky dle časového intervalu"
+#: mod/install.php:97
+msgid "Could not create table."
+msgstr "Nelze vytvořit tabulku."
 
-#: include/features.php:89 include/features.php:119
-msgid "List Forums"
-msgstr ""
+#: mod/install.php:103
+msgid "Your Friendica site database has been installed."
+msgstr "Vaše databáze Friendica  byla nainstalována."
 
-#: include/features.php:89
-msgid "Enable widget to display the forums your are connected with"
-msgstr ""
+#: mod/install.php:108
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Pravděpodobně budete muset manuálně importovat soubor \"database.sql\" pomocí phpMyAdmin či MySQL."
 
-#: include/features.php:90
-msgid "Group Filter"
-msgstr "Skupinový Filtr"
+#: mod/install.php:109 mod/install.php:155 mod/install.php:267
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Přečtěte si prosím informace v souboru \"INSTALL.txt\"."
 
-#: include/features.php:90
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny"
+#: mod/install.php:121
+msgid "Database already in use."
+msgstr "Databáze se již používá."
 
-#: include/features.php:91
-msgid "Network Filter"
-msgstr "Síťový Filtr"
+#: mod/install.php:152
+msgid "System check"
+msgstr "Testování systému"
 
-#: include/features.php:91
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě"
+#: mod/install.php:157
+msgid "Check again"
+msgstr "Otestovat znovu"
 
-#: include/features.php:92 mod/search.php:34 mod/network.php:200
-msgid "Saved Searches"
-msgstr "Uložená hledání"
+#: mod/install.php:177
+msgid "Database connection"
+msgstr "Databázové spojení"
 
-#: include/features.php:92
-msgid "Save search terms for re-use"
-msgstr "Uložit kritéria vyhledávání pro znovupoužití"
+#: mod/install.php:178
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi."
 
-#: include/features.php:97
-msgid "Network Tabs"
-msgstr "Síťové záložky"
+#: mod/install.php:179
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru, "
 
-#: include/features.php:98
-msgid "Network Personal Tab"
-msgstr "Osobní síťový záložka "
+#: mod/install.php:180
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním."
 
-#: include/features.php:98
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval "
+#: mod/install.php:184
+msgid "Database Server Name"
+msgstr "Jméno databázového serveru"
 
-#: include/features.php:99
-msgid "Network New Tab"
-msgstr "Nová záložka síť"
+#: mod/install.php:185
+msgid "Database Login Name"
+msgstr "Přihlašovací jméno k databázi"
 
-#: include/features.php:99
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)"
+#: mod/install.php:186
+msgid "Database Login Password"
+msgstr "Heslo k databázovému účtu "
 
-#: include/features.php:100
-msgid "Network Shared Links Tab"
-msgstr "záložka Síťové sdílené odkazy "
+#: mod/install.php:186
+msgid "For security reasons the password must not be empty"
+msgstr "Z bezpečnostních důvodů nesmí být heslo prázdné."
 
-#: include/features.php:100
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně"
+#: mod/install.php:187
+msgid "Database Name"
+msgstr "Jméno databáze"
 
-#: include/features.php:105
-msgid "Post/Comment Tools"
-msgstr "Nástroje Příspěvků/Komentářů"
+#: mod/install.php:188 mod/install.php:228
+msgid "Site administrator email address"
+msgstr "Emailová adresa administrátora webu"
 
-#: include/features.php:106
-msgid "Multiple Deletion"
-msgstr "Násobné mazání"
+#: mod/install.php:188 mod/install.php:228
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní."
 
-#: include/features.php:106
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Označit a smazat více "
+#: mod/install.php:192 mod/install.php:231
+msgid "Please select a default timezone for your website"
+msgstr "Prosím, vyberte výchozí časové pásmo pro váš server"
 
-#: include/features.php:107
-msgid "Edit Sent Posts"
-msgstr "Editovat Odeslané příspěvky"
+#: mod/install.php:218
+msgid "Site settings"
+msgstr "Nastavení webu"
 
-#: include/features.php:107
-msgid "Edit and correct posts and comments after sending"
-msgstr "Editovat a opravit příspěvky a komentáře po odeslání"
+#: mod/install.php:232
+msgid "System Language:"
+msgstr "Systémový jazyk"
 
-#: include/features.php:108
-msgid "Tagging"
-msgstr "Štítkování"
+#: mod/install.php:232
+msgid ""
+"Set the default language for your Friendica installation interface and to "
+"send emails."
+msgstr "Nastavte si výchozí jazyk pro vaše instalační rozhraní Friendica a pro odesílání e-mailů."
 
-#: include/features.php:108
-msgid "Ability to tag existing posts"
-msgstr "Schopnost přidat štítky ke stávajícím příspvěkům"
+#: mod/install.php:248
+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 "Databázový konfigurační soubor \".htconfig.php\" nemohl být uložen. Prosím, použijte přiložený text k vytvoření konfiguračního souboru ve vašem kořenovém adresáři webového serveru."
 
-#: include/features.php:109
-msgid "Post Categories"
-msgstr "Kategorie příspěvků"
+#: mod/install.php:265
+msgid "<h1>What next</h1>"
+msgstr "<h1>Co dál<h1>"
 
-#: include/features.php:109
-msgid "Add categories to your posts"
-msgstr "Přidat kategorie k Vašim příspěvkům"
+#: mod/install.php:266
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"worker."
+msgstr "DŮLEŽITÉ: Budete si muset [manuálně] nastavit naplánovaný úkol pro pracovníka."
 
-#: include/features.php:110
-msgid "Ability to file posts under folders"
-msgstr "Možnost řadit příspěvky do složek"
+#: mod/install.php:269
+#, 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 "Přejděte k <a href=\"%s/register\">registrační stránce</a> Vašeho nového serveru Friendica a zaregistrujte se jako nový uživatel. Nezapomeňte použít stejný e-mail, který jste zadal/a jako administrátorský e-mail. To Vám umožní navštívit panel pro administraci stránky."
 
-#: include/features.php:111
-msgid "Dislike Posts"
-msgstr "Označit příspěvky jako neoblíbené"
+#: mod/message.php:30 src/Content/Nav.php:199
+msgid "New Message"
+msgstr "Nová zpráva"
 
-#: include/features.php:111
-msgid "Ability to dislike posts/comments"
-msgstr "Možnost označit příspěvky/komentáře jako neoblíbené"
+#: mod/message.php:77
+msgid "Unable to locate contact information."
+msgstr "Nepodařilo se najít kontaktní informace."
 
-#: include/features.php:112
-msgid "Star Posts"
-msgstr "Příspěvky s hvězdou"
+#: mod/message.php:112 view/theme/frio/theme.php:268 src/Content/Nav.php:196
+msgid "Messages"
+msgstr "Zprávy"
 
-#: include/features.php:112
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Možnost označit příspěvky s indikátorem hvězdy"
+#: mod/message.php:136
+msgid "Do you really want to delete this message?"
+msgstr "Opravdu chcete smazat tuto zprávu?"
 
-#: include/features.php:113
-msgid "Mute Post Notifications"
-msgstr "Utlumit upozornění na přísvěvky"
+#: mod/message.php:152
+msgid "Message deleted."
+msgstr "Zpráva odstraněna."
 
-#: include/features.php:113
-msgid "Ability to mute notifications for a thread"
-msgstr "Možnost stlumit upozornění pro vlákno"
+#: mod/message.php:166
+msgid "Conversation removed."
+msgstr "Konverzace odstraněna."
 
-#: include/features.php:118
-msgid "Advanced Profile Settings"
-msgstr ""
+#: mod/message.php:272
+msgid "No messages."
+msgstr "Žádné zprávy."
 
-#: include/features.php:119
-msgid "Show visitors public community forums at the Advanced Profile Page"
-msgstr ""
+#: mod/message.php:311
+msgid "Message not available."
+msgstr "Zpráva není k dispozici."
 
-#: include/follow.php:81 mod/dfrn_request.php:509
-msgid "Disallowed profile URL."
-msgstr "Nepovolené URL profilu."
+#: mod/message.php:378
+msgid "Delete message"
+msgstr "Smazat zprávu"
 
-#: include/follow.php:86
-msgid "Connect URL missing."
-msgstr "Chybí URL adresa."
+#: mod/message.php:380 mod/message.php:481
+msgid "D, d M Y - g:i A"
+msgstr "D M R - g:i A"
 
-#: include/follow.php:113
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi."
+#: mod/message.php:395 mod/message.php:478
+msgid "Delete conversation"
+msgstr "Odstranit konverzaci"
 
-#: include/follow.php:114 include/follow.php:134
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Nenalezen žádný kompatibilní komunikační protokol nebo kanál."
+#: mod/message.php:397
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Není k dispozici zabezpečená komunikace. <strong>Možná</strong> budete schopni reagovat z odesilatelovy profilové stránky."
 
-#: include/follow.php:132
-msgid "The profile address specified does not provide adequate information."
-msgstr "Uvedená adresa profilu neposkytuje dostatečné informace."
+#: mod/message.php:401
+msgid "Send Reply"
+msgstr "Poslat odpověď"
 
-#: include/follow.php:136
-msgid "An author or name was not found."
-msgstr "Autor nebo jméno nenalezeno"
+#: mod/message.php:452
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Neznámý odesilatel - %s"
 
-#: include/follow.php:138
-msgid "No browser URL could be matched to this address."
-msgstr "Této adrese neodpovídá žádné URL prohlížeče."
+#: mod/message.php:454
+#, php-format
+msgid "You and %s"
+msgstr "Vy a %s"
 
-#: include/follow.php:140
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem."
+#: mod/message.php:456
+#, php-format
+msgid "%s and You"
+msgstr "%s a Vy"
 
-#: include/follow.php:141
-msgid "Use mailto: in front of address to force email check."
-msgstr "Použite mailo: před adresou k vynucení emailové kontroly."
+#: mod/message.php:484
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d zpráva"
+msgstr[1] "%d zprávy"
+msgstr[2] "%d zpráv"
+msgstr[3] "%d zpráv"
 
-#: include/follow.php:147
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "Zadaná adresa profilu patří do sítě, která  byla na tomto serveru zakázána."
+#: mod/admin.php:107
+msgid "Theme settings updated."
+msgstr "Nastavení motivu bylo aktualizováno."
 
-#: include/follow.php:157
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé / osobní sdělení."
+#: mod/admin.php:180 src/Content/Nav.php:175
+msgid "Information"
+msgstr "Informace"
 
-#: include/follow.php:258
-msgid "Unable to retrieve contact information."
-msgstr "Nepodařilo se získat kontaktní informace."
+#: mod/admin.php:181
+msgid "Overview"
+msgstr "Přehled"
 
-#: include/identity.php:42
-msgid "Requested account is not available."
-msgstr "Požadovaný účet není dostupný."
+#: mod/admin.php:182 mod/admin.php:717
+msgid "Federation Statistics"
+msgstr "Statistiky Federation"
 
-#: include/identity.php:51 mod/profile.php:21
-msgid "Requested profile is not available."
-msgstr "Požadovaný profil není k dispozici."
+#: mod/admin.php:183
+msgid "Configuration"
+msgstr "Konfigurace"
 
-#: include/identity.php:95 include/identity.php:311 include/identity.php:688
-msgid "Edit profile"
-msgstr "Upravit profil"
+#: mod/admin.php:184 mod/admin.php:1356
+msgid "Site"
+msgstr "Web"
 
-#: include/identity.php:251
-msgid "Atom feed"
-msgstr ""
+#: mod/admin.php:185 mod/admin.php:1285 mod/admin.php:1822 mod/admin.php:1838
+msgid "Users"
+msgstr "Uživatelé"
 
-#: include/identity.php:282
-msgid "Manage/edit profiles"
-msgstr "Spravovat/upravit profily"
+#: mod/admin.php:186 mod/admin.php:1938 mod/admin.php:1998 mod/settings.php:87
+msgid "Addons"
+msgstr "Doplňky"
 
-#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795
-msgid "Change profile photo"
-msgstr "Změnit profilovou fotografii"
+#: mod/admin.php:187 mod/admin.php:2208 mod/admin.php:2252
+msgid "Themes"
+msgstr "Motivy"
 
-#: include/identity.php:288 mod/profiles.php:796
-msgid "Create New Profile"
-msgstr "Vytvořit nový profil"
+#: mod/admin.php:188 mod/settings.php:65
+msgid "Additional features"
+msgstr "Další funkčnosti"
 
-#: include/identity.php:298 mod/profiles.php:785
-msgid "Profile Image"
-msgstr "Profilový obrázek"
+#: mod/admin.php:189 mod/admin.php:304 mod/register.php:291
+#: src/Content/Nav.php:178 src/Module/Tos.php:70
+msgid "Terms of Service"
+msgstr "Podmínky používání"
 
-#: include/identity.php:301 mod/profiles.php:787
-msgid "visible to everybody"
-msgstr "viditelné pro všechny"
+#: mod/admin.php:190
+msgid "Database"
+msgstr "Databáze"
 
-#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788
-msgid "Edit visibility"
-msgstr "Upravit viditelnost"
+#: mod/admin.php:191
+msgid "DB updates"
+msgstr "Aktualizace databáze"
 
-#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238
-#: mod/directory.php:139
-msgid "Gender:"
-msgstr "Pohlaví:"
+#: mod/admin.php:192 mod/admin.php:752
+msgid "Inspect Queue"
+msgstr "Proskoumat frontu"
 
-#: include/identity.php:333 include/identity.php:636 mod/directory.php:141
-msgid "Status:"
-msgstr "Status:"
+#: mod/admin.php:193
+msgid "Tools"
+msgstr "Nástroje"
 
-#: include/identity.php:335 include/identity.php:647 mod/directory.php:143
-msgid "Homepage:"
-msgstr "Domácí stránka:"
+#: mod/admin.php:194
+msgid "Contact Blocklist"
+msgstr "Blokované kontakty"
 
-#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234
-#: mod/directory.php:145 mod/contacts.php:632
-msgid "About:"
-msgstr "O mě:"
+#: mod/admin.php:195 mod/admin.php:366
+msgid "Server Blocklist"
+msgstr "Blokované servery"
 
-#: include/identity.php:339 mod/contacts.php:630
-msgid "XMPP:"
-msgstr ""
+#: mod/admin.php:196 mod/admin.php:525
+msgid "Delete Item"
+msgstr "Smazat položku"
 
-#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50
-msgid "Network:"
-msgstr "Síť:"
+#: mod/admin.php:197 mod/admin.php:198 mod/admin.php:2326
+msgid "Logs"
+msgstr "Logy"
 
-#: include/identity.php:451 include/identity.php:535
-msgid "g A l F d"
-msgstr "g A l F d"
+#: mod/admin.php:199 mod/admin.php:2393
+msgid "View Logs"
+msgstr "Zobrazit záznamy"
 
-#: include/identity.php:452 include/identity.php:536
-msgid "F d"
-msgstr "d. F"
+#: mod/admin.php:201
+msgid "Diagnostics"
+msgstr "Diagnostica"
 
-#: include/identity.php:497 include/identity.php:582
-msgid "[today]"
-msgstr "[Dnes]"
+#: mod/admin.php:202
+msgid "PHP Info"
+msgstr "Info o PHP"
 
-#: include/identity.php:509
-msgid "Birthday Reminders"
-msgstr "Připomínka narozenin"
+#: mod/admin.php:203
+msgid "probe address"
+msgstr "vyzkoušet adresu"
 
-#: include/identity.php:510
-msgid "Birthdays this week:"
-msgstr "Narozeniny tento týden:"
+#: mod/admin.php:204
+msgid "check webfinger"
+msgstr "vyzkoušet webfinger"
 
-#: include/identity.php:569
-msgid "[No description]"
-msgstr "[Žádný popis]"
+#: mod/admin.php:223 src/Content/Nav.php:218
+msgid "Admin"
+msgstr "Administrace"
 
-#: include/identity.php:593
-msgid "Event Reminders"
-msgstr "Připomenutí událostí"
+#: mod/admin.php:224
+msgid "Addon Features"
+msgstr "Vlastnosti doplňků"
 
-#: include/identity.php:594
-msgid "Events this week:"
-msgstr "Události tohoto týdne:"
+#: mod/admin.php:225
+msgid "User registrations waiting for confirmation"
+msgstr "Registrace uživatele čeká na potvrzení"
 
-#: include/identity.php:614 mod/settings.php:1279
-msgid "Full Name:"
-msgstr "Celé jméno:"
+#: mod/admin.php:303 mod/admin.php:365 mod/admin.php:482 mod/admin.php:524
+#: mod/admin.php:716 mod/admin.php:751 mod/admin.php:847 mod/admin.php:1355
+#: mod/admin.php:1821 mod/admin.php:1937 mod/admin.php:1997 mod/admin.php:2207
+#: mod/admin.php:2251 mod/admin.php:2325 mod/admin.php:2392
+msgid "Administration"
+msgstr "Administrace"
 
-#: include/identity.php:621
-msgid "j F, Y"
-msgstr "j F, Y"
+#: mod/admin.php:305
+msgid "Display Terms of Service"
+msgstr "Ukázat Podmínky používání"
 
-#: include/identity.php:622
-msgid "j F"
-msgstr "j F"
+#: mod/admin.php:305
+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 "Povolte stránku Podmínky používání. Pokud je toto povoleno, bude na formulář pro registrací a stránku s obecnými informacemi přidán odkaz k podmínkám."
 
-#: include/identity.php:633
-msgid "Age:"
-msgstr "Věk:"
+#: mod/admin.php:306
+msgid "Display Privacy Statement"
+msgstr "Zobrazit Prohlášení o ochraně soukromí"
 
-#: include/identity.php:642
+#: mod/admin.php:306
 #, php-format
-msgid "for %1$d %2$s"
-msgstr "pro %1$d %2$s"
-
-#: include/identity.php:645 mod/profiles.php:710
-msgid "Sexual Preference:"
-msgstr "Sexuální preference:"
+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 "Ukázat některé informace ohledně potřebných informací k provozování serveru podle například <a href=\"%s\" target=\"_blank\">GDPR EU</a>"
 
-#: include/identity.php:649 mod/profiles.php:737
-msgid "Hometown:"
-msgstr "Rodné město"
+#: mod/admin.php:307
+msgid "Privacy Statement Preview"
+msgstr "Náhled Prohlášení o ochraně soukromí"
 
-#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634
-#: mod/follow.php:134
-msgid "Tags:"
-msgstr "Štítky:"
+#: mod/admin.php:309
+msgid "The Terms of Service"
+msgstr "Podmínky používání"
 
-#: include/identity.php:653 mod/profiles.php:738
-msgid "Political Views:"
-msgstr "Politické přesvědčení:"
+#: mod/admin.php:309
+msgid ""
+"Enter the Terms of Service for your node here. You can use BBCode. Headers "
+"of sections should be [h2] and below."
+msgstr "Zde zadejte Podmínky používání Vašeho serveru. Můžete používat BBCode. Záhlaví sekcí by měly být označeny [h2] a níže."
 
-#: include/identity.php:655
-msgid "Religion:"
-msgstr "Náboženství:"
+#: mod/admin.php:357
+msgid "The blocked domain"
+msgstr "Zablokovaná doména"
 
-#: include/identity.php:659
-msgid "Hobbies/Interests:"
-msgstr "Koníčky/zájmy:"
+#: mod/admin.php:358 mod/admin.php:371
+msgid "The reason why you blocked this domain."
+msgstr "Důvod, proč jste doménu zablokoval/a"
 
-#: include/identity.php:661 mod/profiles.php:742
-msgid "Likes:"
-msgstr "Líbí se:"
+#: mod/admin.php:359
+msgid "Delete domain"
+msgstr "Smazat doménu"
 
-#: include/identity.php:663 mod/profiles.php:743
-msgid "Dislikes:"
-msgstr "Nelibí se:"
+#: mod/admin.php:359
+msgid "Check to delete this entry from the blocklist"
+msgstr "Zaškrtnutím odstraníte tuto položku z blokovacího seznamu"
 
-#: include/identity.php:666
-msgid "Contact information and Social Networks:"
-msgstr "Kontaktní informace a sociální sítě:"
+#: mod/admin.php:367
+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 "Tato stránka může být použita k definici \"černé listiny\" serverů z federované sítě, kterým není dovoleno interagovat s vaším serverem. Měl/a byste také pro všechny zadané domény uvést důvod, proč jste vzdálený server zablokoval/a."
 
-#: include/identity.php:668
-msgid "Musical interests:"
-msgstr "Hudební vkus:"
+#: mod/admin.php:368
+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 "Seznam zablokovaných server bude zveřejněn na stránce /friendica, takže vaši uživatelé a lidé vyšetřující probém s komunikací mohou důvod najít snadno."
 
-#: include/identity.php:670
-msgid "Books, literature:"
-msgstr "Knihy, literatura:"
+#: mod/admin.php:369
+msgid "Add new entry to block list"
+msgstr "Přidat na blokovací seznam novou položku"
 
-#: include/identity.php:672
-msgid "Television:"
-msgstr "Televize:"
+#: mod/admin.php:370
+msgid "Server Domain"
+msgstr "Serverová doména"
 
-#: include/identity.php:674
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film/tanec/kultura/zábava:"
+#: mod/admin.php:370
+msgid ""
+"The domain of the new server to add to the block list. Do not include the "
+"protocol."
+msgstr "Doména serveru, který má být přidán na blokovací seznam. Vynechejte protokol (\"http://\")."
 
-#: include/identity.php:676
-msgid "Love/Romance:"
-msgstr "Láska/romance"
+#: mod/admin.php:371
+msgid "Block reason"
+msgstr "Důvod zablokování"
 
-#: include/identity.php:678
-msgid "Work/employment:"
-msgstr "Práce/zaměstnání:"
+#: mod/admin.php:372
+msgid "Add Entry"
+msgstr "Přidat položku"
 
-#: include/identity.php:680
-msgid "School/education:"
-msgstr "Škola/vzdělávání:"
+#: mod/admin.php:373
+msgid "Save changes to the blocklist"
+msgstr "Uložit změny do blokovacího seznamu"
 
-#: include/identity.php:684
-msgid "Forums:"
-msgstr ""
+#: mod/admin.php:374
+msgid "Current Entries in the Blocklist"
+msgstr "Aktuální položky v bokovacím seznamu"
 
-#: include/identity.php:692 mod/events.php:507
-msgid "Basic"
-msgstr ""
+#: mod/admin.php:377
+msgid "Delete entry from blocklist"
+msgstr "Odstranit položku z blokovacího seznamu"
 
-#: include/identity.php:693 mod/events.php:508 mod/admin.php:959
-#: mod/contacts.php:870
-msgid "Advanced"
-msgstr "Pokročilé"
+#: mod/admin.php:380
+msgid "Delete entry from blocklist?"
+msgstr "Odstranit položku z blokovacího seznamu?"
 
-#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:142
-msgid "Status Messages and Posts"
-msgstr "Statusové zprávy a příspěvky "
+#: mod/admin.php:406
+msgid "Server added to blocklist."
+msgstr "Server přidán do blokovacího seznamu"
 
-#: include/identity.php:725 mod/contacts.php:844
-msgid "Profile Details"
-msgstr "Detaily profilu"
+#: mod/admin.php:422
+msgid "Site blocklist updated."
+msgstr "Blokovací seznam stránky aktualizován"
 
-#: include/identity.php:733 mod/photos.php:87
-msgid "Photo Albums"
-msgstr "Fotoalba"
+#: mod/admin.php:445 src/Core/Console/GlobalCommunityBlock.php:72
+msgid "The contact has been blocked from the node"
+msgstr "Kontakt byl na serveru zablokován"
 
-#: include/identity.php:772 mod/notes.php:46
-msgid "Personal Notes"
-msgstr "Osobní poznámky"
+#: mod/admin.php:447 src/Core/Console/GlobalCommunityBlock.php:69
+#, php-format
+msgid "Could not find any contact entry for this URL (%s)"
+msgstr "Nelze nalézt žádnou položku v kontaktech pro tuto URL adresu (%s)"
 
-#: include/identity.php:775
-msgid "Only You Can See This"
-msgstr "Toto můžete vidět jen Vy"
+#: mod/admin.php:454
+#, php-format
+msgid "%s contact unblocked"
+msgid_plural "%s contacts unblocked"
+msgstr[0] "%s kontakt odblokován"
+msgstr[1] "%skontakty odblokovány"
+msgstr[2] "%s kontaktů odblokováno"
+msgstr[3] "%s kontaktů odblokováno"
 
-#: include/items.php:1575 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746
-msgid "[Name Withheld]"
-msgstr "[Jméno odepřeno]"
+#: mod/admin.php:483
+msgid "Remote Contact Blocklist"
+msgstr "Blokované vzdálené kontakty"
 
-#: include/items.php:1930 mod/viewsrc.php:15 mod/notice.php:15
-#: mod/display.php:103 mod/display.php:279 mod/display.php:478
-#: mod/admin.php:234 mod/admin.php:1471 mod/admin.php:1705
-msgid "Item not found."
-msgstr "Položka nenalezena."
+#: mod/admin.php:484
+msgid ""
+"This page allows you to prevent any message from a remote contact to reach "
+"your node."
+msgstr "Tato stránka Vám umožňuje zabránit jakýmkoliv zprávám ze vzdáleného kontaktu, aby se k vašemu serveru dostaly."
 
-#: include/items.php:1969
-msgid "Do you really want to delete this item?"
-msgstr "Opravdu chcete smazat tuto položku?"
+#: mod/admin.php:485
+msgid "Block Remote Contact"
+msgstr "Zablokovat vzdálený kontakt"
 
-#: include/items.php:1971 mod/api.php:105 mod/message.php:217
-#: mod/profiles.php:648 mod/profiles.php:651 mod/profiles.php:677
-#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163
-#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181
-#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198
-#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231
-#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
-#: mod/contacts.php:442 mod/dfrn_request.php:862 mod/follow.php:110
-msgid "Yes"
-msgstr "Ano"
+#: mod/admin.php:486 mod/admin.php:1824
+msgid "select all"
+msgstr "Vybrat vše"
 
-#: include/items.php:2134 mod/notes.php:22 mod/uimport.php:23
-#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101
-#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33
-#: mod/editpost.php:10 mod/group.php:19 mod/wallmessage.php:9
-#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103
-#: mod/api.php:26 mod/api.php:31 mod/ostatus_subscribe.php:9
-#: mod/message.php:46 mod/message.php:182 mod/manage.php:96
-#: mod/crepair.php:100 mod/fsuggest.php:78 mod/mood.php:114 mod/poke.php:150
-#: mod/profile_photo.php:19 mod/profile_photo.php:175
-#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110
-#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605
-#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18 mod/dirfind.php:11
-#: mod/display.php:475 mod/events.php:190 mod/suggest.php:58
-#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42
-#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665
-#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wall_upload.php:77
-#: mod/wall_upload.php:80 mod/contacts.php:350 mod/dfrn_confirm.php:61
-#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/item.php:199
-#: mod/item.php:211 mod/network.php:4 mod/viewcontacts.php:45 index.php:401
-msgid "Permission denied."
-msgstr "Přístup odmítnut."
+#: mod/admin.php:487
+msgid "select none"
+msgstr "nevybrat žádný"
 
-#: include/items.php:2239
-msgid "Archives"
-msgstr "Archív"
+#: mod/admin.php:490
+msgid "No remote contact is blocked from this node."
+msgstr "Žádný vzdálený kontakt není na tomto serveru zablokován."
 
-#: include/oembed.php:264
-msgid "Embedded content"
-msgstr "vložený obsah"
+#: mod/admin.php:492
+msgid "Blocked Remote Contacts"
+msgstr "Zablokovat vzdálené kontakty"
 
-#: include/oembed.php:272
-msgid "Embedding disabled"
-msgstr "Vkládání zakázáno"
+#: mod/admin.php:493
+msgid "Block New Remote Contact"
+msgstr "Zablokovat nový vzdálený kontakt"
 
-#: include/ostatus.php:1825
-#, php-format
-msgid "%s is now following %s."
-msgstr ""
+#: mod/admin.php:494
+msgid "Photo"
+msgstr "Fotka"
 
-#: include/ostatus.php:1826
-msgid "following"
-msgstr "následující"
+#: mod/admin.php:494 mod/profiles.php:394
+msgid "Address"
+msgstr "Adresa"
 
-#: include/ostatus.php:1829
+#: mod/admin.php:502
 #, php-format
-msgid "%s stopped following %s."
-msgstr ""
+msgid "%s total blocked contact"
+msgid_plural "%s total blocked contacts"
+msgstr[0] "Celkem %s zablokovaný kontakt"
+msgstr[1] "Celkem %s zablokované kontakty"
+msgstr[2] "Celkem %s zablokovaných kontaktů"
+msgstr[3] "Celkem %s zablokovaných kontaktů"
 
-#: include/ostatus.php:1830
-msgid "stopped following"
-msgstr "následování zastaveno"
+#: mod/admin.php:504
+msgid "URL of the remote contact to block."
+msgstr "Adresa URL vzdáleného kontaktu k zablokování."
 
-#: include/text.php:304
-msgid "newer"
-msgstr "novější"
+#: mod/admin.php:526
+msgid "Delete this Item"
+msgstr "Smazat tuto položku"
 
-#: include/text.php:306
-msgid "older"
-msgstr "starší"
+#: mod/admin.php:527
+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 této stránce můžete smazat pološku z Vašeho serveru. Pokud je položkou příspěvek nejvyššího stupně, bude smazáno celé vlákno."
 
-#: include/text.php:311
-msgid "prev"
-msgstr "předchozí"
+#: mod/admin.php:528
+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 "Budete muset znát číslo GUID položky. Můžete jej najít např. v adrese URL. Poslední část adresy http://example.com/display/123456 je GUID, v tomto případě 123456"
 
-#: include/text.php:313
-msgid "first"
-msgstr "první"
+#: mod/admin.php:529
+msgid "GUID"
+msgstr "GUID"
 
-#: include/text.php:345
-msgid "last"
-msgstr "poslední"
+#: mod/admin.php:529
+msgid "The GUID of the item you want to delete."
+msgstr "Číslo GUID položky, kterou chcete smazat"
 
-#: include/text.php:348
-msgid "next"
-msgstr "další"
+#: mod/admin.php:563
+msgid "Item marked for deletion."
+msgstr "Položka označená ke smazání"
 
-#: include/text.php:403
-msgid "Loading more entries..."
-msgstr "Načítání více záznamů..."
+#: mod/admin.php:634
+msgid "unknown"
+msgstr "neznámé"
 
-#: include/text.php:404
-msgid "The end"
-msgstr "Konec"
+#: mod/admin.php:710
+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 "Tato stránka vám nabízí pár čísel pro známou část federované sociální sítě, které je Váš server Friendica součástí. Tato čísla nejsou kompletní, ale pouze odrážejí část sítě, které si je Váš server vědom."
 
-#: include/text.php:889
-msgid "No contacts"
-msgstr "Žádné kontakty"
+#: mod/admin.php:711
+msgid ""
+"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
+"will improve the data displayed here."
+msgstr "Funkce <em>Adresář automaticky objevených kontaktů</em> není zapnuta, zlepší zde zobrazená data."
 
-#: include/text.php:912
+#: mod/admin.php:723
 #, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d kontakt"
-msgstr[1] "%d kontaktů"
-msgstr[2] "%d kontaktů"
+msgid ""
+"Currently this node is aware of %d nodes with %d registered users from the "
+"following platforms:"
+msgstr "Aktuálně si je tento server vědom %d serverů s %d registrovanými uživateli z těchto platforem:"
 
-#: include/text.php:925
-msgid "View Contacts"
-msgstr "Zobrazit kontakty"
+#: mod/admin.php:754
+msgid "ID"
+msgstr "Identifikátor"
 
-#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31
-#: mod/editpost.php:109
-msgid "Save"
-msgstr "Uložit"
+#: mod/admin.php:755
+msgid "Recipient Name"
+msgstr "Jméno příjemce"
+
+#: mod/admin.php:756
+msgid "Recipient Profile"
+msgstr "Profil píjemce"
+
+#: mod/admin.php:757 view/theme/frio/theme.php:266
+#: src/Core/NotificationsManager.php:178 src/Content/Nav.php:183
+msgid "Network"
+msgstr "Síť"
+
+#: mod/admin.php:758
+msgid "Created"
+msgstr "Vytvořeno"
+
+#: mod/admin.php:759
+msgid "Last Tried"
+msgstr "Naposled vyzkoušeno"
 
-#: include/text.php:1076
-msgid "poke"
-msgstr "šťouchnout"
+#: mod/admin.php:760
+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 této stránce najdete obsah fronty odchozích příspěvků. Toto jsou příspěvky, u kterých počáteční doručení selhalo. Budou znovu poslány později, a pokud doručení selže trvale, budou nakonec smazány."
 
-#: include/text.php:1076
-msgid "poked"
-msgstr "šťouchnut"
+#: mod/admin.php:784
+#, 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 "Vaše databáze stále běží s tabulkami MyISAM. Měl/a byste změnit typ datového úložiště na InnoDB. Protože Friendica bude v budoucnu používat pouze funkce InnoDB, měl/a byste to změnit! <a href=\"%s\">Zde</a> naleznete návod, který by pro vás mohl být užitečný při konverzi úložišť. Můžete také použít příkaz <tt>php bin/console.php dbstructure toinnodb</tt> na Vaší instalaci Friendica pro automatickou konverzi.<br />"
 
-#: include/text.php:1077
-msgid "ping"
-msgstr "cinknout"
+#: mod/admin.php:791
+#, 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 "Je dostupná ke stažení nová verze Friendica. Vaše aktuální verze je %1$s, upstreamová verze je%2$s"
 
-#: include/text.php:1077
-msgid "pinged"
-msgstr "cinkut"
+#: mod/admin.php:801
+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 "Aktualizace databáze selhala. Prosím, spusťte příkaz \"php bin/console.php dbstructure update\" z příkazového řádku a podívejte se na chyby, které by se mohly vyskytnout."
 
-#: include/text.php:1078
-msgid "prod"
-msgstr "pobídnout"
+#: mod/admin.php:807
+msgid "The worker was never executed. Please check your database structure!"
+msgstr "Pracovník nebyl nikdy spuštěn. Prosím zkontrolujte strukturu Vaší databáze!"
 
-#: include/text.php:1078
-msgid "prodded"
-msgstr "pobídnut"
+#: mod/admin.php:810
+#, php-format
+msgid ""
+"The last worker execution was on %s UTC. This is older than one hour. Please"
+" check your crontab settings."
+msgstr "Pracovník byl naposledy spuštěn v %s UTC. Toto je více než jedna hodina. Prosím zkontrolujte si nastavení crontab."
 
-#: include/text.php:1079
-msgid "slap"
-msgstr "dát facku"
+#: mod/admin.php:815
+msgid "Normal Account"
+msgstr "Normální účet"
 
-#: include/text.php:1079
-msgid "slapped"
-msgstr "být uhozen"
+#: mod/admin.php:816
+msgid "Automatic Follower Account"
+msgstr "Automatický účet následovníka"
 
-#: include/text.php:1080
-msgid "finger"
-msgstr "osahávat"
+#: mod/admin.php:817
+msgid "Public Forum Account"
+msgstr "Veřejný účet na fóru"
 
-#: include/text.php:1080
-msgid "fingered"
-msgstr "osaháván"
+#: mod/admin.php:818
+msgid "Automatic Friend Account"
+msgstr "Účet s automatickým schvalováním přátel"
 
-#: include/text.php:1081
-msgid "rebuff"
-msgstr "odmítnout"
+#: mod/admin.php:819
+msgid "Blog Account"
+msgstr "Účet Blogu"
 
-#: include/text.php:1081
-msgid "rebuffed"
-msgstr "odmítnut"
+#: mod/admin.php:820
+msgid "Private Forum Account"
+msgstr "Soukromá účet na fóru"
 
-#: include/text.php:1095
-msgid "happy"
-msgstr "šťasný"
+#: mod/admin.php:842
+msgid "Message queues"
+msgstr "Fronty zpráv"
 
-#: include/text.php:1096
-msgid "sad"
-msgstr "smutný"
+#: mod/admin.php:848
+msgid "Summary"
+msgstr "Shrnutí"
 
-#: include/text.php:1097
-msgid "mellow"
-msgstr "jemný"
+#: mod/admin.php:850
+msgid "Registered users"
+msgstr "Registrovaní uživatelé"
 
-#: include/text.php:1098
-msgid "tired"
-msgstr "unavený"
+#: mod/admin.php:852
+msgid "Pending registrations"
+msgstr "Čekající registrace"
 
-#: include/text.php:1099
-msgid "perky"
-msgstr "emergický"
+#: mod/admin.php:853
+msgid "Version"
+msgstr "Verze"
 
-#: include/text.php:1100
-msgid "angry"
-msgstr "nazlobený"
+#: mod/admin.php:858
+msgid "Active addons"
+msgstr "Aktivní doplňky"
 
-#: include/text.php:1101
-msgid "stupified"
-msgstr "otupen"
+#: mod/admin.php:889
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň <schéma>://<doméma>"
 
-#: include/text.php:1102
-msgid "puzzled"
-msgstr "popletený"
+#: mod/admin.php:1220
+msgid "Site settings updated."
+msgstr "Nastavení webu aktualizováno."
 
-#: include/text.php:1103
-msgid "interested"
-msgstr "zajímavý"
+#: mod/admin.php:1247 mod/settings.php:897
+msgid "No special theme for mobile devices"
+msgstr "Žádný speciální motiv pro mobilní zařízení"
 
-#: include/text.php:1104
-msgid "bitter"
-msgstr "hořký"
+#: mod/admin.php:1276
+msgid "No community page for local users"
+msgstr "Žádná komunitní stránka pro lokální uživatele"
 
-#: include/text.php:1105
-msgid "cheerful"
-msgstr "radnostný"
+#: mod/admin.php:1277
+msgid "No community page"
+msgstr "Komunitní stránka neexistuje"
 
-#: include/text.php:1106
-msgid "alive"
-msgstr "naživu"
+#: mod/admin.php:1278
+msgid "Public postings from users of this site"
+msgstr "Počet veřejných příspěvků od uživatele na této stránce"
 
-#: include/text.php:1107
-msgid "annoyed"
-msgstr "otráven"
+#: mod/admin.php:1279
+msgid "Public postings from the federated network"
+msgstr "Veřejné příspěvky z federované sítě"
 
-#: include/text.php:1108
-msgid "anxious"
-msgstr "znepokojený"
+#: mod/admin.php:1280
+msgid "Public postings from local users and the federated network"
+msgstr "Veřejné příspěvky od lokálních uživatelů a z federované sítě"
 
-#: include/text.php:1109
-msgid "cranky"
-msgstr "mrzutý"
+#: mod/admin.php:1286
+msgid "Users, Global Contacts"
+msgstr "Uživatelé, Všechny kontakty"
 
-#: include/text.php:1110
-msgid "disturbed"
-msgstr "vyrušen"
+#: mod/admin.php:1287
+msgid "Users, Global Contacts/fallback"
+msgstr "Uživatelé, globální kontakty/fallback"
 
-#: include/text.php:1111
-msgid "frustrated"
-msgstr "frustrovaný"
+#: mod/admin.php:1291
+msgid "One month"
+msgstr "Jeden měsíc"
 
-#: include/text.php:1112
-msgid "motivated"
-msgstr "motivovaný"
+#: mod/admin.php:1292
+msgid "Three months"
+msgstr "Tři měsíce"
 
-#: include/text.php:1113
-msgid "relaxed"
-msgstr "uvolněný"
+#: mod/admin.php:1293
+msgid "Half a year"
+msgstr "Půl roku"
 
-#: include/text.php:1114
-msgid "surprised"
-msgstr "překvapený"
+#: mod/admin.php:1294
+msgid "One year"
+msgstr "Jeden rok"
 
-#: include/text.php:1324 mod/videos.php:380
-msgid "View Video"
-msgstr "Zobrazit video"
+#: mod/admin.php:1299
+msgid "Multi user instance"
+msgstr "Více uživatelská instance"
 
-#: include/text.php:1356
-msgid "bytes"
-msgstr "bytů"
+#: mod/admin.php:1325
+msgid "Closed"
+msgstr "Uzavřeno"
 
-#: include/text.php:1388 include/text.php:1400
-msgid "Click to open/close"
-msgstr "Klikněte pro otevření/zavření"
+#: mod/admin.php:1326
+msgid "Requires approval"
+msgstr "Vyžaduje schválení"
 
-#: include/text.php:1526
-msgid "View on separate page"
-msgstr "Zobrazit na separátní stránce"
+#: mod/admin.php:1327
+msgid "Open"
+msgstr "Otevřená"
 
-#: include/text.php:1527
-msgid "view on separate page"
-msgstr "Zobrazit na separátní stránce"
+#: mod/admin.php:1331
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Žádná SSL politika, odkazy budou následovat stránky SSL stav"
 
-#: include/text.php:1806
-msgid "activity"
-msgstr "aktivita"
+#: mod/admin.php:1332
+msgid "Force all links to use SSL"
+msgstr "Vyžadovat u všech odkazů použití SSL"
 
-#: include/text.php:1808 mod/content.php:623 object/Item.php:431
-#: object/Item.php:444
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] "komentář"
+#: mod/admin.php:1333
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Certifikát podepsaný sám sebou, použít SSL pouze pro lokální odkazy (nedoporučeno)"
 
-#: include/text.php:1809
-msgid "post"
-msgstr "příspěvek"
+#: mod/admin.php:1337
+msgid "Don't check"
+msgstr "Nezkontrolovat"
 
-#: include/text.php:1977
-msgid "Item filed"
-msgstr "Položka vyplněna"
+#: mod/admin.php:1338
+msgid "check the stable version"
+msgstr "zkontrolovat stabilní verzi"
 
-#: include/user.php:39 mod/settings.php:373
-msgid "Passwords do not match. Password unchanged."
-msgstr "Hesla se neshodují. Heslo nebylo změněno."
+#: mod/admin.php:1339
+msgid "check the development version"
+msgstr "zkontrolovat verzi ve vývoji"
 
-#: include/user.php:48
-msgid "An invitation is required."
-msgstr "Pozvánka je vyžadována."
+#: mod/admin.php:1358
+msgid "Republish users to directory"
+msgstr ""
 
-#: include/user.php:53
-msgid "Invitation could not be verified."
-msgstr "Pozvánka nemohla být ověřena."
+#: mod/admin.php:1359 mod/register.php:267
+msgid "Registration"
+msgstr "Registrace"
 
-#: include/user.php:61
-msgid "Invalid OpenID url"
-msgstr "Neplatný odkaz OpenID"
+#: mod/admin.php:1360
+msgid "File upload"
+msgstr "Nahrání souborů"
 
-#: include/user.php:82
-msgid "Please enter the required information."
-msgstr "Zadejte prosím požadované informace."
+#: mod/admin.php:1361
+msgid "Policies"
+msgstr "Politiky"
 
-#: include/user.php:96
-msgid "Please use a shorter name."
-msgstr "Použijte prosím kratší jméno."
+#: mod/admin.php:1363
+msgid "Auto Discovered Contact Directory"
+msgstr ""
 
-#: include/user.php:98
-msgid "Name too short."
-msgstr "Jméno je příliš krátké."
+#: mod/admin.php:1364
+msgid "Performance"
+msgstr "Výkonnost"
 
-#: include/user.php:113
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení)."
+#: mod/admin.php:1365
+msgid "Worker"
+msgstr "Pracovník"
 
-#: include/user.php:118
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Váš e-mailová doména není na tomto serveru mezi povolenými."
+#: mod/admin.php:1366
+msgid "Message Relay"
+msgstr ""
 
-#: include/user.php:121
-msgid "Not a valid email address."
-msgstr "Neplatná e-mailová adresa."
+#: mod/admin.php:1367
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Změna umístění - Varování: pokročilá funkčnost. Tímto můžete znepřístupnit server."
 
-#: include/user.php:134
-msgid "Cannot use that email."
-msgstr "Tento e-mail nelze použít."
+#: mod/admin.php:1370
+msgid "Site name"
+msgstr "Název webu"
 
-#: include/user.php:140
-msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
-msgstr "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", a \"_\"."
+#: mod/admin.php:1371
+msgid "Host name"
+msgstr "Jméno hostitele (host name)"
 
-#: include/user.php:147 include/user.php:245
-msgid "Nickname is already registered. Please choose another."
-msgstr "Přezdívka je již registrována. Prosím vyberte jinou."
+#: mod/admin.php:1372
+msgid "Sender Email"
+msgstr "Email ddesílatele"
 
-#: include/user.php:157
+#: mod/admin.php:1372
 msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Tato přezdívka již zde byla použita a nemůže být využita znovu. Prosím vyberete si jinou."
+"The email address your server shall use to send notification emails from."
+msgstr ""
 
-#: include/user.php:173
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo."
+#: mod/admin.php:1373
+msgid "Banner/Logo"
+msgstr "Banner/logo"
 
-#: include/user.php:231
-msgid "An error occurred during registration. Please try again."
-msgstr "Došlo k chybě při registraci. Zkuste to prosím znovu."
+#: mod/admin.php:1374
+msgid "Shortcut icon"
+msgstr "Ikona zkratky"
 
-#: include/user.php:256 view/theme/duepuntozero/config.php:44
-msgid "default"
-msgstr "standardní"
+#: mod/admin.php:1374
+msgid "Link to an icon that will be used for browsers."
+msgstr "Odkaz k ikoně, která bude použita pro prohlížeče."
 
-#: include/user.php:266
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu."
+#: mod/admin.php:1375
+msgid "Touch icon"
+msgstr "Dotyková ikona"
 
-#: include/user.php:326 include/user.php:333 include/user.php:340
-#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88
-#: mod/profile_photo.php:210 mod/profile_photo.php:302
-#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180
-#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232
-#: mod/photos.php:1819
-msgid "Profile Photos"
-msgstr "Profilové fotografie"
+#: mod/admin.php:1375
+msgid "Link to an icon that will be used for tablets and mobiles."
+msgstr "Odkaz k ikoně, která bude použita pro tablety a mobilní zařízení."
+
+#: mod/admin.php:1376
+msgid "Additional Info"
+msgstr "Dodatečné informace"
 
-#: include/user.php:414
+#: mod/admin.php:1376
 #, php-format
 msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
-"\t"
-msgstr ""
+"For public servers: you can add additional information here that will be "
+"listed at %s/servers."
+msgstr "Pro veřejné servery: zde můžete přidat dodatečné informace, které budou vypsané na stránce %s/servers."
 
-#: include/user.php:424
-#, php-format
-msgid "Registration at %s"
-msgstr ""
+#: mod/admin.php:1377
+msgid "System language"
+msgstr "Systémový jazyk"
 
-#: include/user.php:434
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t"
-msgstr "\n\t\tDrahý %1$s,\n\t\t\tDěkujeme Vám za registraci na %2$s. Váš účet byl vytvořen.\n\t"
+#: mod/admin.php:1378
+msgid "System theme"
+msgstr "Grafická šablona systému "
 
-#: include/user.php:438
-#, php-format
+#: mod/admin.php:1378
 msgid ""
-"\n"
-"\t\tThe login details are as follows:\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t%1$s\n"
-"\t\t\tPassword:\t%5$s\n"
-"\n"
-"\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\tin.\n"
-"\n"
-"\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\tthan that.\n"
-"\n"
-"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\n"
-"\t\tThank you and welcome to %2$s."
-msgstr "\n\t\tVaše přihlašovací údaje jsou následující:\n\t\t\tAdresa webu:\t%3$s\n\t\t\tpřihlašovací jméno:\t%1$s\n\t\t\theslo:\t%5$s\n\n\t\tHeslo si můžete změnit na stránce \"Nastavení\" vašeho účtu poté, co se přihlásíte.\n\n\t\tProsím věnujte pár chvil revizi dalšího nastavení vašeho účtu na dané stránce.\n\n\t\tTaké su můžete přidat nějaké základní informace do svého výchozího profilu (na stránce \"Profily\"), takže ostatní lidé vás snáze najdou.\n\n\t\tDoporučujeme Vám uvést celé jméno a i foto. Přidáním nějakých \"klíčových slov\" (velmi užitečné pro hledání nových přátel) a možná také zemi, ve které žijete, pokud nechcete být více konkrétní.\n\n\t\tPlně resepktujeme vaše právo na soukromí a nic z výše uvedeného není povinné.\n\t\tPokud jste zde nový a neznáte zde nikoho, uvedením daných informací můžete získat nové přátele.\n\n\n\t\tDíky a vítejte na %2$s."
-
-#: include/user.php:470 mod/admin.php:1213
-#, php-format
-msgid "Registration details for %s"
-msgstr "Registrační údaje pro %s"
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Výchozí systémový motiv - může být změněn v uživatelských profilech - <a href='#' id='cnftheme'> změnit nastavení motivu</a>"
 
-#: mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Příspěvek úspěšně odeslán"
+#: mod/admin.php:1379
+msgid "Mobile system theme"
+msgstr "Mobilní systémový motiv"
 
-#: mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Přístup odmítnut"
+#: mod/admin.php:1379
+msgid "Theme for mobile devices"
+msgstr "Motiv pro mobilní zařízení"
 
-#: mod/home.php:35
-#, php-format
-msgid "Welcome to %s"
-msgstr "Vítá Vás %s"
+#: mod/admin.php:1380
+msgid "SSL link policy"
+msgstr "Politika SSL odkazů"
 
-#: mod/notify.php:60
-msgid "No more system notifications."
-msgstr "Žádné další systémová upozornění."
+#: mod/admin.php:1380
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Určuje, zda-li budou generované odkazy používat SSL"
 
-#: mod/notify.php:64 mod/notifications.php:111
-msgid "System Notifications"
-msgstr "Systémová upozornění"
+#: mod/admin.php:1381
+msgid "Force SSL"
+msgstr "Vynutit SSL"
 
-#: mod/search.php:25 mod/network.php:191
-msgid "Remove term"
-msgstr "Odstranit termín"
+#: mod/admin.php:1381
+msgid ""
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
+" to endless loops."
+msgstr "Vynutit SSL pro všechny ne-SSL žádosti - Upozornění: na některých systémech může dojít k nekonečnému zacyklení."
 
-#: mod/search.php:93 mod/search.php:99 mod/community.php:22
-#: mod/directory.php:37 mod/display.php:200 mod/photos.php:944
-#: mod/videos.php:194 mod/dfrn_request.php:791 mod/viewcontacts.php:35
-msgid "Public access denied."
-msgstr "Veřejný přístup odepřen."
+#: mod/admin.php:1382
+msgid "Hide help entry from navigation menu"
+msgstr "skrýt nápovědu z navigačního menu"
 
-#: mod/search.php:100
-msgid "Only logged in users are permitted to perform a search."
-msgstr ""
+#: mod/admin.php:1382
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Skryje menu ze stránek Nápověda z navigačního menu. Nápovědu můžete stále zobrazit přímo zadáním /help."
 
-#: mod/search.php:124
-msgid "Too Many Requests"
-msgstr ""
+#: mod/admin.php:1383
+msgid "Single user instance"
+msgstr "Jednouživatelská instance"
 
-#: mod/search.php:125
-msgid "Only one search per minute is permitted for not logged in users."
-msgstr ""
+#: mod/admin.php:1383
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Nastavit tuto instanci víceuživatelskou nebo jednouživatelskou pro pojmenovaného uživatele"
 
-#: mod/search.php:224 mod/community.php:66 mod/community.php:75
-msgid "No results."
-msgstr "Žádné výsledky."
+#: mod/admin.php:1384
+msgid "Maximum image size"
+msgstr "Maximální velikost obrázků"
 
-#: mod/search.php:230
-#, php-format
-msgid "Items tagged with: %s"
-msgstr "Položky označené s: %s"
+#: mod/admin.php:1384
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Maximální velikost nahraných obrázků v bajtech. Výchozí hodnota je 0, což znamená bez omezení."
 
-#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146
-#, php-format
-msgid "Results for: %s"
-msgstr ""
+#: mod/admin.php:1385
+msgid "Maximum image length"
+msgstr "Maximální velikost obrázků"
 
-#: mod/friendica.php:70
-msgid "This is Friendica, version"
-msgstr "Toto je Friendica, verze"
+#: mod/admin.php:1385
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Maximální délka delší stránky nahrávaných obrázků v pixelech. Výchozí hodnota je -1, což znamená bez omezení."
 
-#: mod/friendica.php:71
-msgid "running at web location"
-msgstr "běžící na webu"
+#: mod/admin.php:1386
+msgid "JPEG image quality"
+msgstr "JPEG kvalita obrázku"
 
-#: mod/friendica.php:73
+#: mod/admin.php:1386
 msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Pro získání dalších informací o projektu Friendica navštivte prosím <a href=\"http://friendica.com\">Friendica.com</a>."
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "Nahrávaný JPEG bude uložen se zadanou kvalitou v rozmezí [0-100]. Defaultní je 100, což znamená plnou kvalitu."
 
-#: mod/friendica.php:75
-msgid "Bug reports and issues: please visit"
-msgstr "Pro hlášení chyb a námětů na změny navštivte:"
+#: mod/admin.php:1388
+msgid "Register policy"
+msgstr "Politika registrace"
 
-#: mod/friendica.php:75
-msgid "the bugtracker at github"
-msgstr ""
+#: mod/admin.php:1389
+msgid "Maximum Daily Registrations"
+msgstr "Maximální počet denních registrací"
 
-#: mod/friendica.php:76
+#: mod/admin.php:1389
 msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Návrhy, chválu, dary, apod. - prosím piště na \"info\" na Friendica - tečka com"
-
-#: mod/friendica.php:90
-msgid "Installed plugins/addons/apps:"
-msgstr "Instalované pluginy/doplňky/aplikace:"
+"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 "Pokud je registrace výše povolena, zde se nastaví maximální počet registrací nových uživatelů za den.\nPokud je registrace zakázána, toto nastavení nemá žádný efekt."
 
-#: mod/friendica.php:103
-msgid "No installed plugins/addons/apps"
-msgstr "Nejsou žádné nainstalované doplňky/aplikace"
+#: mod/admin.php:1390
+msgid "Register text"
+msgstr "Registrace textu"
 
-#: mod/lostpass.php:19
-msgid "No valid account found."
-msgstr "Nenalezen žádný platný účet."
+#: mod/admin.php:1390
+msgid ""
+"Will be displayed prominently on the registration page. You can use BBCode "
+"here."
+msgstr "Bude zobrazeno viditelně na stránce registrace. Zde můžete používat BBCode."
 
-#: mod/lostpass.php:35
-msgid "Password reset request issued. Check your email."
-msgstr "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku."
+#: mod/admin.php:1391
+msgid "Accounts abandoned after x days"
+msgstr "Účet je opuštěn po x dnech"
 
-#: mod/lostpass.php:42
-#, php-format
+#: mod/admin.php:1391
 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.\n"
-"\n"
-"\t\tYour password will not be changed unless we can verify that you\n"
-"\t\tissued this request."
-msgstr "\n\t\tDrahý %1$s,\n\t\t\tNa \"%2$s\" jsme obdrželi  požadavek na obnovu vašeho hesla \n\t\tpassword. Pro potvrzení žádosti prosím klikněte na zaslaný verifikační odkaz níže nebo si ho zkopírujte do adresní řádky prohlížeče.\n\n\t\tPokud jste tuto žádost nezasílaliI prosím na uvedený odkaz neklikejte a tento email smažte.\n\n\t\tVaše heslo nebude změněno dokud nebudeme moci oveřit, že jste autorem této žádosti."
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Nebude se plýtvat systémovými zdroji kontaktováním externích webů s opuštěnými účty. Zadejte 0 pro žádný časový limit."
 
-#: mod/lostpass.php:53
-#, php-format
+#: mod/admin.php:1392
+msgid "Allowed friend domains"
+msgstr "Povolené domény přátel"
+
+#: mod/admin.php:1392
 msgid ""
-"\n"
-"\t\tFollow this link 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 "\n\t\tKlikněte na následující odkaz pro potvrzení Vaší identity:\n\n\t\t%1$s\n\n\t\tNásledně obdržíte zprávu obsahující nové heslo.\n\t\tHeslo si můžete si změnit na stránce nastavení účtu poté, co se přihlásíte.\n\n\t\tVaše přihlašovací údaje jsou následující:\n\n\t\tUmístění webu:\t%2$s\n\t\tPřihlašovací jméno:\t%3$s"
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Čárkou oddělený seznam domén, kterým je povoleno navazovat přátelství s tímto webem. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu."
 
-#: mod/lostpass.php:72
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Na %s bylo zažádáno o resetování hesla"
+#: mod/admin.php:1393
+msgid "Allowed email domains"
+msgstr "Povolené e-mailové domény"
 
-#: mod/lostpass.php:92
+#: mod/admin.php:1393
 msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení hesla se nezdařilo."
+"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 "Čárkou oddělený seznam domén emalových adres, kterým je povoleno provádět registraci na tomto webu. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu."
 
-#: mod/lostpass.php:109 boot.php:1807
-msgid "Password Reset"
-msgstr "Obnovení hesla"
+#: mod/admin.php:1394
+msgid "No OEmbed rich content"
+msgstr "Žádný obohacený obsah oEmbed"
 
-#: mod/lostpass.php:110
-msgid "Your password has been reset as requested."
-msgstr "Vaše heslo bylo na Vaše přání resetováno."
+#: mod/admin.php:1394
+msgid ""
+"Don't show the rich content (e.g. embedded PDF), except from the domains "
+"listed below."
+msgstr "Neukazovat obohacený obsah (např. vložené PDF dokumenty), kromě toho z domén vypsaných níže."
 
-#: mod/lostpass.php:111
-msgid "Your new password is"
-msgstr "Někdo Vám napsal na Vaši profilovou stránku"
+#: mod/admin.php:1395
+msgid "Allowed OEmbed domains"
+msgstr "Povolené domény pro oEmbed"
 
-#: mod/lostpass.php:112
-msgid "Save or copy your new password - and then"
-msgstr "Uložte si nebo zkopírujte nové heslo - a pak"
+#: mod/admin.php:1395
+msgid ""
+"Comma separated list of domains which oembed content is allowed to be "
+"displayed. Wildcards are accepted."
+msgstr "Výpis domén, u nichž je povoleno zobrazit obsah oEmbed, oddělených čárkami. Zástupné znaky jsou povoleny."
 
-#: mod/lostpass.php:113
-msgid "click here to login"
-msgstr "klikněte zde pro přihlášení"
+#: mod/admin.php:1396
+msgid "Block public"
+msgstr "Blokovat veřejný přístup"
 
-#: mod/lostpass.php:114
+#: mod/admin.php:1396
 msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení)."
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Označením zablokujete veřejný přístup ke všem jinak veřejně přístupným osobním stránkám nepřihlášeným uživatelům."
 
-#: mod/lostpass.php:125
-#, php-format
-msgid ""
-"\n"
-"\t\t\t\tDear %1$s,\n"
-"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
-"\t\t\t\tinformation for your records (or change your password immediately to\n"
-"\t\t\t\tsomething that you will remember).\n"
-"\t\t\t"
-msgstr "\n\t\t\t\tDrahý %1$s,\n⇥⇥⇥⇥⇥Vaše heslo bylo na požádání změněno. Prosím uchovejte si tuto informaci (nebo si změntě heslo ihned na něco, co si budete pamatovat).\t"
+#: mod/admin.php:1397
+msgid "Force publish"
+msgstr "Vynutit publikaci"
 
-#: mod/lostpass.php:131
-#, php-format
+#: mod/admin.php:1397
 msgid ""
-"\n"
-"\t\t\t\tYour login details are as follows:\n"
-"\n"
-"\t\t\t\tSite Location:\t%1$s\n"
-"\t\t\t\tLogin Name:\t%2$s\n"
-"\t\t\t\tPassword:\t%3$s\n"
-"\n"
-"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
-"\t\t\t"
-msgstr "\n\t\t\t\tVaše přihlašovací údaje jsou následující:\n\n\t\t\t\tUmístění webu:\t%1$s\n\t\t\t\tPřihlašovací jméno:\t%2$s\n\t\t\t\tHeslo:\t%3$s\n\n\t\t\t\tHeslo si můžete si změnit na stránce  nastavení účtu poté, co se přihlásíte.\n\t\t\t"
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Označením budou všechny profily na tomto serveru uvedeny v adresáři stránky."
 
-#: mod/lostpass.php:147
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Vaše heslo bylo změněno na %s"
+#: mod/admin.php:1397
+msgid "Enabling this may violate privacy laws like the GDPR"
+msgstr "Povolení této funkce může porušit zákony o ochraně soukromí, jako je Obecné nařízení o ochraně osobních údajů (GDPR)"
 
-#: mod/lostpass.php:159
-msgid "Forgot your Password?"
-msgstr "Zapomněli jste heslo?"
+#: mod/admin.php:1398
+msgid "Global directory URL"
+msgstr "Adresa URL globálního adresáře"
 
-#: mod/lostpass.php:160
+#: mod/admin.php:1398
 msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Zadejte svůj e-mailovou adresu a odešlete žádost o zaslání Vašeho nového hesla. Poté zkontrolujte svůj e-mail pro další instrukce."
+"URL to the global directory. If this is not set, the global directory is "
+"completely unavailable to the application."
+msgstr "Adresa URL globálního adresáře. Pokud toto není nastaveno, globální adresář bude aplikaci naprosto nedostupný."
 
-#: mod/lostpass.php:161 boot.php:1795
-msgid "Nickname or Email: "
-msgstr "Přezdívka nebo e-mail: "
+#: mod/admin.php:1399
+msgid "Private posts by default for new users"
+msgstr "Nastavit pro nové uživatele příspěvky jako soukromé"
 
-#: mod/lostpass.php:162
-msgid "Reset"
-msgstr "Reset"
+#: mod/admin.php:1399
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Nastavit defaultní práva pro příspěvky od všech nových členů na výchozí soukromou skupinu raději než jako veřejné."
 
-#: mod/hcard.php:10
-msgid "No profile"
-msgstr "Žádný profil"
+#: mod/admin.php:1400
+msgid "Don't include post content in email notifications"
+msgstr "Nezahrnovat obsah příspěvků v emailových upozorněních"
 
-#: mod/help.php:41
-msgid "Help:"
-msgstr "Nápověda:"
+#: mod/admin.php:1400
+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 " V mailových upozorněních, které jsou odesílány z tohoto webu jako soukromé zprávy, nejsou z důvodů bezpečnosti obsaženy příspěvky/komentáře/soukromé zprávy apod. "
 
-#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12
-#: mod/fetch.php:39 mod/fetch.php:48 index.php:288
-msgid "Not Found"
-msgstr "Nenalezen"
+#: mod/admin.php:1401
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Zakázat veřejný přístup k rozšířením uvedeným v menu aplikace."
 
-#: mod/help.php:56 index.php:291
-msgid "Page not found."
-msgstr "Stránka nenalezena"
+#: mod/admin.php:1401
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr "Označení této volby omezí rozšíření uvedená v menu aplikace pouze pro členy."
 
-#: mod/lockview.php:31 mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Vzdálené soukromé informace nejsou k dispozici."
+#: mod/admin.php:1402
+msgid "Don't embed private images in posts"
+msgstr "Nepovolit přidávání soukromých správ v příspěvcích"
 
-#: mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Viditelné pro:"
+#: mod/admin.php:1402
+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 "Nereplikovat lokální soukromé fotografie v příspěvcích s přidáním kopie obrázku. To znamená, že kontakty, které obdrží příspěvek obsahující soukromé fotografie se budou muset přihlásit a načíst každý obrázek, což může zabrat nějaký čas."
 
-#: mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "Chyba OpenID protokolu. Navrátilo se žádné ID."
+#: mod/admin.php:1403
+msgid "Allow Users to set remote_self"
+msgstr "Umožnit uživatelům nastavit "
 
-#: mod/openid.php:60
+#: mod/admin.php:1403
 msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "Nenalezen účet a OpenID registrace na tomto serveru není dovolena."
+"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 "S tímto označením má každý uživatel možnost označit jakékoliv ze svých kontakt jako \"remote_self\" v nastavení v dialogu opravit kontakt. Tímto označením se budou zrcadlit všechny správy tohoto kontaktu v uživatelově proudu."
 
-#: mod/uimport.php:50 mod/register.php:198
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to  zítra znovu."
+#: mod/admin.php:1404
+msgid "Block multiple registrations"
+msgstr "Blokovat více registrací"
 
-#: mod/uimport.php:64 mod/register.php:295
-msgid "Import"
-msgstr "Import"
+#: mod/admin.php:1404
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Znemožnit uživatelům registraci dodatečných účtů k použití jako stránky."
 
-#: mod/uimport.php:66
-msgid "Move account"
-msgstr "Přesunout účet"
+#: mod/admin.php:1405
+msgid "OpenID support"
+msgstr "Podpora OpenID"
 
-#: mod/uimport.php:67
-msgid "You can import an account from another Friendica server."
-msgstr "Můžete importovat účet z jiného Friendica serveru."
+#: mod/admin.php:1405
+msgid "OpenID support for registration and logins."
+msgstr "Podpora OpenID pro registraci a přihlašování."
 
-#: mod/uimport.php:68
-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 "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali."
+#: mod/admin.php:1406
+msgid "Fullname check"
+msgstr "kontrola úplného jména"
 
-#: mod/uimport.php:69
+#: mod/admin.php:1406
 msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (GNU Social/Statusnet) or from Diaspora"
-msgstr ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Přimět uživatele k registraci s mezerou mezi jménu a příjmením v poli Celé jméno, jako antispamové opatření."
 
-#: mod/uimport.php:70
-msgid "Account file"
-msgstr "Soubor s účtem"
+#: mod/admin.php:1407
+msgid "Community pages for visitors"
+msgstr "Komunitní stránky pro návštěvníky"
 
-#: mod/uimport.php:70
+#: mod/admin.php:1407
 msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
-msgstr "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\""
+"Which community pages should be available for visitors. Local users always "
+"see both pages."
+msgstr "Které komunitní stránky by měly být viditelné pro návštěvníky. Lokální uživatelé vždy vidí obě stránky."
 
-#: mod/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:930
-#: mod/viewcontacts.php:97
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Navštivte profil uživatele %s [%s]"
+#: mod/admin.php:1408
+msgid "Posts per user on community page"
+msgstr "Počet příspěvků na komunitní stránce"
 
-#: mod/nogroup.php:42 mod/contacts.php:931
-msgid "Edit contact"
-msgstr "Editovat kontakt"
+#: mod/admin.php:1408
+msgid ""
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
+msgstr "Maximální počet příspěvků na uživatele na komunitní sptránce. (neplatí pro 'Globální komunitu')"
 
-#: mod/nogroup.php:63
-msgid "Contacts who are not members of a group"
-msgstr "Kontakty, které nejsou členy skupiny"
+#: mod/admin.php:1409
+msgid "Enable OStatus support"
+msgstr "Zapnout podporu OStatus"
+
+#: mod/admin.php:1409
+msgid ""
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "Poskytnout zabudouvanou kompatibilitu s OStatus (StatusNet, GNU Social apod.). Veškerá komunikace s OStatus je veřejná, proto bude občas zobrazeno upozornění."
 
-#: mod/uexport.php:29
-msgid "Export account"
-msgstr "Exportovat účet"
+#: mod/admin.php:1410
+msgid "Only import OStatus threads from our contacts"
+msgstr "Pouze importovat vlákna z OStatus z našich kontaktů"
 
-#: mod/uexport.php:29
+#: mod/admin.php:1410
 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 "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření  zálohy svého účtu a/nebo k přesunu na jiný server."
+"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 "Běžně importujeme všechen obsah z našich kontaktů na OStatus. S touto volbou uchováváme vlákna počatá kontaktem, který je na našem systému známý."
 
-#: mod/uexport.php:30
-msgid "Export all"
-msgstr "Exportovat vše"
+#: mod/admin.php:1411
+msgid "OStatus support can only be enabled if threading is enabled."
+msgstr "Podpora pro OStatus může být zapnuta pouze, je-li povolen threading."
 
-#: mod/uexport.php:30
+#: mod/admin.php:1413
 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 "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)"
+"Diaspora support can't be enabled because Friendica was installed into a sub"
+" directory."
+msgstr "Podpora pro Diasporu nemůže být zapnuta, protože Friendica byla nainstalována do podadresáře."
 
-#: mod/uexport.php:37 mod/settings.php:95
-msgid "Export personal data"
-msgstr "Export osobních údajů"
+#: mod/admin.php:1414
+msgid "Enable Diaspora support"
+msgstr "Povolit podporu Diaspora"
 
-#: mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "Celkový limit pozvánek byl překročen"
+#: mod/admin.php:1414
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Poskytnout zabudovanou kompatibilitu sitě Diaspora."
 
-#: mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : není platná e-mailová adresa."
+#: mod/admin.php:1415
+msgid "Only allow Friendica contacts"
+msgstr "Povolit pouze Friendica kontakty"
 
-#: mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Prosím přidejte se k nám na Friendice"
+#: mod/admin.php:1415
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Všechny kontakty musí používat Friendica protokol. Všchny jiné zabudované komunikační protokoly budou zablokované."
 
-#: mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu."
+#: mod/admin.php:1416
+msgid "Verify SSL"
+msgstr "Ověřit SSL"
 
-#: mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : Doručení zprávy se nezdařilo."
+#: mod/admin.php:1416
+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 "Pokud si přejete, můžete vynutit striktní ověřování certifikátů. To znamená že se nebudete moci připojit k žádnému serveru s vlastním SSL certifikátem."
 
-#: mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d zpráva odeslána."
-msgstr[1] "%d zprávy odeslány."
-msgstr[2] "%d zprávy odeslány."
+#: mod/admin.php:1417
+msgid "Proxy user"
+msgstr "Proxy uživatel"
 
-#: mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Nemáte k dispozici žádné další pozvánky"
+#: mod/admin.php:1418
+msgid "Proxy URL"
+msgstr "Proxy URL adresa"
 
-#: mod/invite.php:120
-#, 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 "Navštivte %s pro seznam veřejných serverů, na kterých se můžete přidat. Členové Friendica se mohou navzájem propojovat, stejně tak jako se mohou přiopojit se členy mnoha dalších sociálních sítí."
+#: mod/admin.php:1419
+msgid "Network timeout"
+msgstr "Čas síťového spojení vypršel (timeout)"
 
-#: mod/invite.php:122
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "K akceptaci této pozvánky prosím navštivte a registrujte se na %s nebo na kterékoliv jiném veřejném Friendica serveru."
+#: mod/admin.php:1419
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Hodnota ve vteřinách. Nastavte 0 pro neomezeno (není doporučeno)."
 
-#: mod/invite.php:123
-#, 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 "Friendica servery jsou všechny propojené a vytváří tak rozsáhlou sociální síť s důrazem na soukromý a je pod kontrolou svých členů. Členové se mohou propojovat s mnoha dalšími tradičními sociálními sítěmi. Navštivte %s pro seznam alternativních Friendica serverů kde se můžete přidat."
+#: mod/admin.php:1420
+msgid "Maximum Load Average"
+msgstr "Maximální průměrné zatížení"
 
-#: mod/invite.php:126
+#: mod/admin.php:1420
 msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy."
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Maximální zatížení systému před pozastavením procesů zajišťujících doručování aktualizací - defaultně 50"
 
-#: mod/invite.php:132
-msgid "Send invitations"
-msgstr "Poslat pozvánky"
+#: mod/admin.php:1421
+msgid "Maximum Load Average (Frontend)"
+msgstr "Maximální průměrné zatížení (Frontend)"
 
-#: mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "Zadejte e-mailové adresy, jednu na řádek:"
+#: mod/admin.php:1421
+msgid "Maximum system load before the frontend quits service - default 50."
+msgstr "Maximální zatížení systému předtím, než frontend ukončí službu - defaultně 50"
 
-#: mod/invite.php:134 mod/wallmessage.php:151 mod/message.php:351
-#: mod/message.php:541
-msgid "Your message:"
-msgstr "Vaše zpráva:"
+#: mod/admin.php:1422
+msgid "Minimal Memory"
+msgstr "Minimální paměť"
 
-#: mod/invite.php:135
+#: mod/admin.php:1422
 msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "Jste srdečně pozván se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální síť."
-
-#: mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Budete muset zadat kód této pozvánky: $invite_code"
+"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
+"default 0 (deactivated)."
+msgstr "Minimální volná paměť v MB pro pracovníka. Potřebuje přístup do /proc/meminfo - výchozí hodnota 0 (deaktivováno)"
 
-#: mod/invite.php:137
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:"
+#: mod/admin.php:1423
+msgid "Maximum table size for optimization"
+msgstr "Maximální velikost tabulky pro optimalizaci"
 
-#: mod/invite.php:139
+#: mod/admin.php:1423
 msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
-msgstr "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navštivte http://friendica.com"
-
-#: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357
-#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154
-#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199
-#: mod/profiles.php:688 mod/events.php:506 mod/photos.php:1104
-#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590
-#: mod/photos.php:1638 mod/photos.php:1724 mod/contacts.php:577
-#: mod/install.php:272 mod/install.php:312 object/Item.php:720
-#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64
-#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59
-msgid "Submit"
-msgstr "Odeslat"
-
-#: mod/fbrowser.php:133
-msgid "Files"
-msgstr "Soubory"
+"Maximum table size (in MB) for the automatic optimization. Enter -1 to "
+"disable it."
+msgstr "Maximální velikost tabulky (v MB) pro automatickou optimalizaci. Zadáním -1 ji vypnete."
 
-#: mod/profperm.php:19 mod/group.php:72 index.php:400
-msgid "Permission denied"
-msgstr "Nedostatečné oprávnění"
+#: mod/admin.php:1424
+msgid "Minimum level of fragmentation"
+msgstr "Minimální úroveň fragmentace"
 
-#: mod/profperm.php:25 mod/profperm.php:56
-msgid "Invalid profile identifier."
-msgstr "Neplatný identifikátor profilu."
+#: mod/admin.php:1424
+msgid ""
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
+msgstr "Minimální úroveň fragmentace pro spuštění automatické optimalizace - výchozí hodnota je 30%."
 
-#: mod/profperm.php:102
-msgid "Profile Visibility Editor"
-msgstr "Editor viditelnosti profilu "
+#: mod/admin.php:1426
+msgid "Periodical check of global contacts"
+msgstr "Pravidelně ověřování globálních kontaktů"
 
-#: mod/profperm.php:106 mod/group.php:223
-msgid "Click on a contact to add or remove."
-msgstr "Klikněte na kontakt pro přidání nebo odebrání"
+#: mod/admin.php:1426
+msgid ""
+"If enabled, the global contacts are checked periodically for missing or "
+"outdated data and the vitality of the contacts and servers."
+msgstr "Pokud je toto povoleno, budou globální kontakty pravidelně kontrolovány pro zastaralá data a životnost kontaktů a serverů."
 
-#: mod/profperm.php:115
-msgid "Visible To"
-msgstr "Viditelný pro"
+#: mod/admin.php:1427
+msgid "Days between requery"
+msgstr "Dny mezi dotazy"
 
-#: mod/profperm.php:131
-msgid "All Contacts (with secure profile access)"
-msgstr "Všechny kontakty (se zabezpečeným přístupovým profilem )"
+#: mod/admin.php:1427
+msgid "Number of days after which a server is requeried for his contacts."
+msgstr "Počet dnů, po kterých je server znovu dotázán na své kontakty"
 
-#: mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Štítek odstraněn"
+#: mod/admin.php:1428
+msgid "Discover contacts from other servers"
+msgstr "Objevit kontakty z ostatních serverů"
 
-#: mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Odebrat štítek položky"
+#: mod/admin.php:1428
+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 "Periodicky dotazovat ostatní servery pro kontakty. Můžete si vybrat mezi možnostmi: \"uživatelé\" - uživatelé na vzdáleném systému, a \"globální kontakty\" - aktivní kontakty, které jsou známy na systému. Funkce fallback je určena pro servery Redmatrix a starší servery Friendica, kde globální kontakty nejsou dostupné. Fallback zvyšuje serverovou zátěž, doporučené nastavení je proto \"Uživatelé, globální kontakty\"."
 
-#: mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Vyberte štítek k odebrání: "
+#: mod/admin.php:1429
+msgid "Timeframe for fetching global contacts"
+msgstr "Časový rámec pro načítání globálních kontaktů"
 
-#: mod/tagrm.php:93 mod/delegate.php:139
-msgid "Remove"
-msgstr "Odstranit"
+#: mod/admin.php:1429
+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 "Pokud je aktivováno objevování, tato hodnota definuje časový rámec pro aktivitu globálních kontaktů, které jsou načteny z jiných serverů."
 
-#: mod/repair_ostatus.php:14
-msgid "Resubscribing to OStatus contacts"
-msgstr ""
+#: mod/admin.php:1430
+msgid "Search the local directory"
+msgstr "Hledat  v lokálním adresáři"
 
-#: mod/repair_ostatus.php:30
-msgid "Error"
-msgstr ""
+#: mod/admin.php:1430
+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 "Prohledat lokální adresář místo globálního adresáře. Při lokálním prohledávání bude každé hledání provedeno v globálním adresáři na pozadí. To vylepšuje výsledky při zopakování hledání."
 
-#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51
-msgid "Done"
-msgstr ""
+#: mod/admin.php:1432
+msgid "Publish server information"
+msgstr "Zveřejnit informace o serveru"
 
-#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73
-msgid "Keep this window open until done."
-msgstr ""
+#: mod/admin.php:1432
+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 "Pokud je toto povoleno, budou zveřejněna obecná data o serveru a jeho používání. Data obsahují jméno a verzi serveru, počet uživatelů s vřejnými profily, počet příspěvků a aktivované protokoly a konektory. Pro více informací navštivte <a href='http://the-federation.info/'>the-federation.info</a>."
 
-#: mod/delegate.php:101
-msgid "No potential page delegates located."
-msgstr "Žádní potenciální delegáti stránky nenalezeni."
+#: mod/admin.php:1434
+msgid "Check upstream version"
+msgstr "Zkontrolovat upstreamovou verzi"
 
-#: mod/delegate.php:132
+#: mod/admin.php:1434
 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 "Delegáti jsou schopni řídit všechny aspekty tohoto účtu / stránky, kromě základních nastavení účtu. Prosím, nepředávejte svůj osobní účet nikomu, komu úplně nevěříte.."
+"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žní kontrolovat nové verze Friendica na GitHubu. Pokud existuje nová verze, budete informován/a na přehledu administračního panelu."
 
-#: mod/delegate.php:133
-msgid "Existing Page Managers"
-msgstr "Stávající správci stránky"
+#: mod/admin.php:1435
+msgid "Suppress Tags"
+msgstr "Potlačit štítky"
 
-#: mod/delegate.php:135
-msgid "Existing Page Delegates"
-msgstr "Stávající delegáti stránky "
+#: mod/admin.php:1435
+msgid "Suppress showing a list of hashtags at the end of the posting."
+msgstr "Potlačit zobrazení seznamu hastagů na konci příspěvků."
 
-#: mod/delegate.php:137
-msgid "Potential Delegates"
-msgstr "Potenciální delegáti"
+#: mod/admin.php:1436
+msgid "Clean database"
+msgstr "Vyčistit databázi"
 
-#: mod/delegate.php:140
-msgid "Add"
-msgstr "Přidat"
+#: mod/admin.php:1436
+msgid ""
+"Remove old remote items, orphaned database records and old content from some"
+" other helper tables."
+msgstr "Odstranit staré vzdálené položky, osiřelé záznamy v databázi a starý obsah z některých dalších pomocných tabulek."
 
-#: mod/delegate.php:141
-msgid "No entries."
-msgstr "Žádné záznamy."
+#: mod/admin.php:1437
+msgid "Lifespan of remote items"
+msgstr "Životnost vzdálených položek"
 
-#: mod/credits.php:16
-msgid "Credits"
+#: mod/admin.php:1437
+msgid ""
+"When the database cleanup is enabled, this defines the days after which "
+"remote items will be deleted. Own items, and marked or filed items are "
+"always kept. 0 disables this behaviour."
+msgstr "Pokud je zapnuto čištění databáze, tato funkce definuje dny, po kterých budou vzdálené položky smazány. Vlastní položky a označené či vyplněné položky jsou vždy ponechány. Hodnota 0 tuto funkci vypíná."
+
+#: mod/admin.php:1438
+msgid "Lifespan of unclaimed items"
 msgstr ""
 
-#: mod/credits.php:17
+#: mod/admin.php:1438
 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!"
+"When the database cleanup is enabled, this defines the days after which "
+"unclaimed remote items (mostly content from the relay) will be deleted. "
+"Default value is 90 days. Defaults to the general lifespan value of remote "
+"items if set to 0."
 msgstr ""
 
-#: mod/filer.php:30
-msgid "- select -"
-msgstr "- vyber -"
-
-#: mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s následuje %3$s uživatele %2$s"
-
-#: mod/attach.php:8
-msgid "Item not available."
-msgstr "Položka není k dispozici."
-
-#: mod/attach.php:20
-msgid "Item was not found."
-msgstr "Položka nebyla nalezena."
-
-#: mod/apps.php:7 index.php:244
-msgid "You must be logged in to use addons. "
-msgstr "Musíte být přihlášeni pro použití rozšíření."
-
-#: mod/apps.php:11
-msgid "Applications"
-msgstr "Aplikace"
-
-#: mod/apps.php:14
-msgid "No installed applications."
-msgstr "Žádné nainstalované aplikace."
+#: mod/admin.php:1439
+msgid "Path to item cache"
+msgstr "Cesta k položkám v mezipaměti"
 
-#: mod/p.php:9
-msgid "Not Extended"
-msgstr "Nerozšířeně"
+#: mod/admin.php:1439
+msgid "The item caches buffers generated bbcode and external images."
+msgstr ""
 
-#: mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Vítejte na Friendica"
+#: mod/admin.php:1440
+msgid "Cache duration in seconds"
+msgstr "Doba platnosti vyrovnávací paměti v sekundách"
 
-#: mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Seznam doporučení pro nového člena"
+#: mod/admin.php:1440
+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 dlouho by měla vyrovnávací paměť držet data? Výchozí hodnota je 86400 sekund (Jeden den). Pro vypnutí funkce vyrovnávací paměti nastavte hodnotu na -1."
 
-#: mod/newmember.php:12
-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 "Rádi bychom vám nabídli několik tipů a odkazů pro začátek. Klikněte na jakoukoliv položku pro zobrazení relevantní stránky. Odkaz na tuto stránku bude viditelný z Vaší domovské stránky po dobu dvou týdnů od Vaší první registrace."
+#: mod/admin.php:1441
+msgid "Maximum numbers of comments per post"
+msgstr "Maximální počet komentářů k příspěvku"
 
-#: mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Začínáme"
+#: mod/admin.php:1441
+msgid "How much comments should be shown for each post? Default value is 100."
+msgstr "Kolik komentářů by mělo být zobrazeno k každému příspěvku? Defaultní hodnota je 100."
 
-#: mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Prohlídka Friendica "
+#: mod/admin.php:1442
+msgid "Temp path"
+msgstr "Cesta k dočasným souborům"
 
-#: mod/newmember.php:18
+#: mod/admin.php:1442
 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 Vaší stránce <em>Rychlý Start</em> - naleznete stručné představení k Vašemu profilu a záložce Síť, k vytvoření spojení s novými kontakty a nalezení skupin, ke kterým se můžete připojit."
+"If you have a restricted system where the webserver can't access the system "
+"temp path, enter another path here."
+msgstr ""
 
-#: mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Navštivte své nastavení"
+#: mod/admin.php:1443
+msgid "Base path to installation"
+msgstr "Základní cesta k instalaci"
 
-#: mod/newmember.php:26
+#: mod/admin.php:1443
 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 Vaší stránce <em>Nastavení</em> - si změňte Vaše první heslo.\nVěnujte také svou pozornost k adrese identity. Vypadá jako emailová adresa a bude Vám užitečná pro navazování přátelství na svobodné sociální síti."
+"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/newmember.php:28
+#: mod/admin.php:1444
+msgid "Disable picture proxy"
+msgstr "Vypnutí obrázkové proxy"
+
+#: mod/admin.php:1444
 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 "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši potenciální přátelé věděli, jak vás přesně najít."
+"The picture proxy increases performance and privacy. It shouldn't be used on"
+" systems with very low bandwidth."
+msgstr ""
 
-#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:707
-msgid "Upload Profile Photo"
-msgstr "Nahrát profilovou fotografii"
+#: mod/admin.php:1445
+msgid "Only search in tags"
+msgstr "Hledat pouze ve štítkách"
 
-#: mod/newmember.php:36
-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 "Nahrajte si svou profilovou fotku, pokud jste tak již neučinili. Studie ukázaly, že lidé se skutečnými fotografiemi mají desetkrát častěji přátele než lidé, kteří nemají."
+#: mod/admin.php:1445
+msgid "On large systems the text search can slow down the system extremely."
+msgstr "Textové vyhledávání může u rozsáhlých systémů znamenat velmi citelné zpomalení systému."
 
-#: mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Editujte Váš profil"
+#: mod/admin.php:1447
+msgid "New base url"
+msgstr "Nová výchozí url adresa"
 
-#: mod/newmember.php:38
+#: mod/admin.php:1447
 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 "Upravit <strong>výchozí</strong> profil podle vašich představ. Prověřte nastavení pro skrytí Vašeho  seznamu přátel a skrytí profilu před neznámými návštěvníky."
+"Change base url for this server. Sends relocate message to all Friendica and"
+" Diaspora* contacts of all users."
+msgstr ""
 
-#: mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Profilová klíčová slova"
+#: mod/admin.php:1449
+msgid "RINO Encryption"
+msgstr "RINO Šifrování"
 
-#: mod/newmember.php:40
-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 "Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují Vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a navrhnout přátelství."
+#: mod/admin.php:1449
+msgid "Encryption layer between nodes."
+msgstr "Šifrovací vrstva mezi nódy."
 
-#: mod/newmember.php:44
-msgid "Connecting"
-msgstr "Probíhá pokus o připojení"
+#: mod/admin.php:1449
+msgid "Enabled"
+msgstr "Povoleno"
 
-#: mod/newmember.php:51
-msgid "Importing Emails"
-msgstr "Importování emaiů"
+#: mod/admin.php:1451
+msgid "Maximum number of parallel workers"
+msgstr ""
 
-#: mod/newmember.php:51
+#: mod/admin.php:1451
 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 "Pokud chcete importovat své přátele nebo mailové skupiny a komunikovat s nimi, zadejte na Vaší stránce Nastavení kontektoru své přístupové údaje do svého emailového účtu"
+"On shared hosters set this to 2. On larger systems, values of 10 are great. "
+"Default value is 4."
+msgstr ""
 
-#: mod/newmember.php:53
-msgid "Go to Your Contacts Page"
-msgstr "Navštivte Vaši stránku s kontakty"
+#: mod/admin.php:1452
+msgid "Don't use 'proc_open' with the worker"
+msgstr ""
 
-#: mod/newmember.php:53
+#: mod/admin.php:1452
 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 "Vaše stránka Kontakty je Vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu <em>Přidat nový kontakt</em>."
+"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/newmember.php:55
-msgid "Go to Your Site's Directory"
-msgstr "Navštivte lokální adresář Friendica"
+#: mod/admin.php:1453
+msgid "Enable fastlane"
+msgstr ""
 
-#: mod/newmember.php:55
+#: mod/admin.php:1453
 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 "Stránka Adresář Vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Prostřednictvím odkazů <em>Připojení</em> nebo <em>Následovat</em> si prohlédněte jejich profilovou stránku. Uveďte svou vlastní adresu identity, je-li požadována."
+"When enabed, the fastlane mechanism starts an additional worker if processes"
+" with higher priority are blocked by processes of lower priority."
+msgstr ""
 
-#: mod/newmember.php:57
-msgid "Finding New People"
-msgstr "Nalezení nových lidí"
+#: mod/admin.php:1454
+msgid "Enable frontend worker"
+msgstr ""
 
-#: mod/newmember.php:57
+#: mod/admin.php:1454
+#, php-format
 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 bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin."
+"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/newmember.php:65
-msgid "Group Your Contacts"
-msgstr "Seskupte si své kontakty"
+#: mod/admin.php:1456
+msgid "Subscribe to relay"
+msgstr ""
 
-#: mod/newmember.php:65
+#: mod/admin.php:1456
 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 "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu Vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť."
+"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/newmember.php:68
-msgid "Why Aren't My Posts Public?"
-msgstr "Proč nejsou mé příspěvky veřejné?"
+#: mod/admin.php:1457
+msgid "Relay server"
+msgstr ""
 
-#: mod/newmember.php:68
+#: mod/admin.php:1457
 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 respektuje Vaše soukromí. Defaultně  jsou Vaše příspěvky viditelné pouze lidem, které označíte jako Vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu"
-
-#: mod/newmember.php:73
-msgid "Getting Help"
-msgstr "Získání nápovědy"
+"Address of the relay server where public posts should be send to. For "
+"example https://relay.diasp.org"
+msgstr ""
 
-#: mod/newmember.php:77
-msgid "Go to the Help Section"
-msgstr "Navštivte sekci nápovědy"
+#: mod/admin.php:1458
+msgid "Direct relay transfer"
+msgstr ""
 
-#: mod/newmember.php:77
+#: mod/admin.php:1458
 msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Na stránkách <strong>Nápověda</strong> naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací."
+"Enables the direct transfer to other servers without using the relay servers"
+msgstr ""
 
-#: mod/removeme.php:46 mod/removeme.php:49
-msgid "Remove My Account"
-msgstr "Odstranit můj účet"
+#: mod/admin.php:1459
+msgid "Relay scope"
+msgstr ""
 
-#: mod/removeme.php:47
+#: mod/admin.php:1459
 msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit."
+"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/removeme.php:48
-msgid "Please enter your password for verification:"
-msgstr "Prosím, zadejte své heslo pro ověření:"
+#: mod/admin.php:1459
+msgid "all"
+msgstr ""
 
-#: mod/editpost.php:17 mod/editpost.php:27
-msgid "Item not found"
-msgstr "Položka nenalezena"
+#: mod/admin.php:1459
+msgid "tags"
+msgstr ""
 
-#: mod/editpost.php:40
-msgid "Edit post"
-msgstr "Upravit příspěvek"
+#: mod/admin.php:1460
+msgid "Server tags"
+msgstr "Serverové štítky"
 
-#: mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Časová konverze"
+#: mod/admin.php:1460
+msgid "Comma separated list of tags for the 'tags' subscription."
+msgstr "Seznam štítků pro odběr \"tags\", oddělených čárkami."
 
-#: mod/localtime.php:26
+#: mod/admin.php:1461
+msgid "Allow user tags"
+msgstr "Povolit uživatelské štítky"
+
+#: mod/admin.php:1461
 msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přáteli v neznámých časových zónách"
+"If enabled, the tags from the saved searches will used for the 'tags' "
+"subscription in addition to the 'relay_server_tags'."
+msgstr "Pokud je toto povoleno, budou štítky z uložených hledání vedle odběru \"relay_server_tags\" použity i pro odběr \"tags\"."
+
+#: mod/admin.php:1489
+msgid "Update has been marked successful"
+msgstr "Aktualizace byla označena jako úspěšná."
 
-#: mod/localtime.php:30
+#: mod/admin.php:1496
 #, php-format
-msgid "UTC time: %s"
-msgstr "UTC čas: %s"
+msgid "Database structure update %s was successfully applied."
+msgstr "Aktualizace struktury databáze %s byla úspěšně aplikována."
 
-#: mod/localtime.php:33
+#: mod/admin.php:1499
 #, php-format
-msgid "Current timezone: %s"
-msgstr "Aktuální časové pásmo: %s"
+msgid "Executing of database structure update %s failed with error: %s"
+msgstr "Provádění aktualizace databáze %s skončilo chybou: %s"
 
-#: mod/localtime.php:36
+#: mod/admin.php:1515
 #, php-format
-msgid "Converted localtime: %s"
-msgstr "Převedený lokální čas : %s"
+msgid "Executing %s failed with error: %s"
+msgstr "Vykonávání %s selhalo s chybou: %s"
 
-#: mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Prosím, vyberte své časové pásmo:"
+#: mod/admin.php:1517
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Aktualizace %s byla úspěšně aplikována."
 
-#: mod/bookmarklet.php:41
-msgid "The post was created"
-msgstr "Příspěvek byl vytvořen"
+#: mod/admin.php:1520
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Aktualizace %s nevrátila žádný status. Není zřejmé, jestli byla úspěšná."
 
-#: mod/group.php:29
-msgid "Group created."
-msgstr "Skupina vytvořena."
+#: mod/admin.php:1523
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
+msgstr "Nebyla nalezena žádná další aktualizační funkce %s která by měla být volána."
 
-#: mod/group.php:35
-msgid "Could not create group."
-msgstr "Nelze vytvořit skupinu."
+#: mod/admin.php:1546
+msgid "No failed updates."
+msgstr "Žádné neúspěšné aktualizace."
 
-#: mod/group.php:47 mod/group.php:140
-msgid "Group not found."
-msgstr "Skupina nenalezena."
+#: mod/admin.php:1547
+msgid "Check database structure"
+msgstr "Ověření struktury databáze"
 
-#: mod/group.php:60
-msgid "Group name changed."
-msgstr "Název skupiny byl změněn."
+#: mod/admin.php:1552
+msgid "Failed Updates"
+msgstr "Neúspěšné aktualizace"
 
-#: mod/group.php:87
-msgid "Save Group"
-msgstr "Uložit Skupinu"
+#: mod/admin.php:1553
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "To nezahrnuje aktualizace do verze 1139, které nevracejí žádný status."
 
-#: mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Vytvořit skupinu kontaktů / přátel."
+#: mod/admin.php:1554
+msgid "Mark success (if update was manually applied)"
+msgstr "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)"
 
-#: mod/group.php:113
-msgid "Group removed."
-msgstr "Skupina odstraněna. "
+#: mod/admin.php:1555
+msgid "Attempt to execute this update step automatically"
+msgstr "Pokusit se provést tuto aktualizaci automaticky."
 
-#: mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Nelze odstranit skupinu."
+#: mod/admin.php:1594
+#, php-format
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tthe administrator of %2$s has set up an account for you."
+msgstr "\n\t\t\tVážený/á%1$s,\n\t\t\t\tadministrátor %2$s pro Vás vytvořil/a uživatelský účet."
 
-#: mod/group.php:177
-msgid "Group Editor"
-msgstr "Editor skupin"
+#: mod/admin.php:1597
+#, 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\tZde jsou vaše přihlašovací detaily:\n\n\t\t\tAdresa stránky:\t\t%1$s\n\t\t\tPřihlašovací jméno:\t%2$s\n\t\t\tHeslo:\t\t\t%3$s\n\n\t\t\tSvé heslo si po přihlášení můžete změnit na stránce \"Nastavení\" vašeho\n\t\t\túčtu.\n\n\t\t\tProsím, prohlédněte si na chvilku ostatní nastavení účtu na té stránce.\n\n\t\t\tMožná byste si také přáli přidat pár základních informací na svůj výchozí\n\t\t\tprofil (na stránce \"Profily\") aby vás další lidé mohli snadno najít.\n\t\t\tDoporučujeme nastavit si vaše celé jméno, přidat profilovou fotku,\n\t\t\tpřidat pár \"klíčových slov\" k profilu (velmi užitečné při získávání nových\n\t\t\tpřátel) - a možná v jaké zemi žijete; pokud nechcete být konkrétnější.\n\n\t\t\tZcela respektujeme vaše právo na soukromí a žádnou z těchto položek\n\t\t\tnení potřeba vyplňovat. Pokud jste zde nový/á a nikoho zde neznáte, mohou vám\n\t\t\tpomoci si získat nové a zajímavé přátele.\n\t\t\tPokud byste si někdy přál/a smazat účet, může tak učinit na stránce\n\t\t\t%1$s/removeme.\n\n\t\t\tDěkujeme vám a vítáme vás na %4$s."
 
-#: mod/group.php:190
-msgid "Members"
-msgstr "Členové"
+#: mod/admin.php:1631 src/Model/User.php:665
+#, php-format
+msgid "Registration details for %s"
+msgstr "Registrační údaje pro %s"
 
-#: mod/group.php:192 mod/contacts.php:692
-msgid "All Contacts"
-msgstr "Všechny kontakty"
+#: mod/admin.php:1641
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s uživatel blokován/odblokován"
+msgstr[1] "%s uživatelů blokováno/odblokováno"
+msgstr[2] "%s uživatelů blokováno/odblokováno"
+msgstr[3] "%s uživatelů blokováno/odblokováno"
 
-#: mod/group.php:193 mod/content.php:130 mod/network.php:496
-msgid "Group is empty"
-msgstr "Skupina je prázdná"
+#: mod/admin.php:1647
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s uživatel smazán"
+msgstr[1] "%s uživatelů smazáno"
+msgstr[2] "%s uživatelů smazáno"
+msgstr[3] "%s uživatelů smazáno"
 
-#: mod/wallmessage.php:42 mod/wallmessage.php:112
+#: mod/admin.php:1694
 #, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena."
+msgid "User '%s' deleted"
+msgstr "Uživatel '%s' smazán"
 
-#: mod/wallmessage.php:56 mod/message.php:71
-msgid "No recipient selected."
-msgstr "Nevybrán příjemce."
+#: mod/admin.php:1702
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Uživatel '%s' odblokován"
 
-#: mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "Nebylo možné zjistit Vaši domácí lokaci."
+#: mod/admin.php:1702
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Uživatel '%s' blokován"
 
-#: mod/wallmessage.php:62 mod/message.php:78
-msgid "Message could not be sent."
-msgstr "Zprávu se nepodařilo odeslat."
+#: mod/admin.php:1759 mod/settings.php:1058
+msgid "Normal Account Page"
+msgstr "Normální stránka účtu"
 
-#: mod/wallmessage.php:65 mod/message.php:81
-msgid "Message collection failure."
-msgstr "Sběr zpráv selhal."
+#: mod/admin.php:1760 mod/settings.php:1062
+msgid "Soapbox Page"
+msgstr "Stránka \"Soapbox\""
 
-#: mod/wallmessage.php:68 mod/message.php:84
-msgid "Message sent."
-msgstr "Zpráva odeslána."
+#: mod/admin.php:1761 mod/settings.php:1066
+msgid "Public Forum"
+msgstr "Veřejné fórum"
 
-#: mod/wallmessage.php:86 mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Žádný příjemce."
+#: mod/admin.php:1762 mod/settings.php:1070
+msgid "Automatic Friend Page"
+msgstr "Automatická stránka přítele"
 
-#: mod/wallmessage.php:142 mod/message.php:341
-msgid "Send Private Message"
-msgstr "Odeslat soukromou zprávu"
+#: mod/admin.php:1763
+msgid "Private Forum"
+msgstr "Soukromé fórum"
 
-#: mod/wallmessage.php:143
-#, 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 "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů."
+#: mod/admin.php:1766 mod/settings.php:1042
+msgid "Personal Page"
+msgstr "Osobní stránka"
 
-#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536
-msgid "To:"
-msgstr "Adresát:"
+#: mod/admin.php:1767 mod/settings.php:1046
+msgid "Organisation Page"
+msgstr "Stránka organizace"
 
-#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538
-msgid "Subject:"
-msgstr "Předmět:"
+#: mod/admin.php:1768 mod/settings.php:1050
+msgid "News Page"
+msgstr "Zpravodajská stránka"
 
-#: mod/share.php:38
-msgid "link"
-msgstr "odkaz"
+#: mod/admin.php:1769 mod/settings.php:1054
+msgid "Community Forum"
+msgstr "Komunitní fórum"
 
-#: mod/api.php:76 mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Povolit připojení aplikacím"
+#: mod/admin.php:1816 mod/admin.php:1827 mod/admin.php:1840 mod/admin.php:1858
+#: src/Content/ContactSelector.php:82
+msgid "Email"
+msgstr "E-mail"
 
-#: mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Vraťte se do vaší aplikace a zadejte tento bezpečnostní kód:"
+#: mod/admin.php:1816 mod/admin.php:1840
+msgid "Register date"
+msgstr "Datum registrace"
 
-#: mod/api.php:89
-msgid "Please login to continue."
-msgstr "Pro pokračování se prosím přihlaste."
+#: mod/admin.php:1816 mod/admin.php:1840
+msgid "Last login"
+msgstr "Datum posledního přihlášení"
 
-#: mod/api.php:104
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?"
+#: mod/admin.php:1816 mod/admin.php:1840
+msgid "Last item"
+msgstr "Poslední položka"
 
-#: mod/api.php:106 mod/profiles.php:648 mod/profiles.php:652
-#: mod/profiles.php:677 mod/register.php:246 mod/settings.php:1163
-#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181
-#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198
-#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231
-#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
-#: mod/dfrn_request.php:862 mod/follow.php:110
-msgid "No"
-msgstr "Ne"
+#: mod/admin.php:1816
+msgid "Type"
+msgstr "Typ"
 
-#: mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Zdrojový text (bbcode):"
+#: mod/admin.php:1823
+msgid "Add User"
+msgstr "Přidat Uživatele"
 
-#: mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Zdrojový (Diaspora) text k převedení do BB kódování:"
+#: mod/admin.php:1825
+msgid "User registrations waiting for confirm"
+msgstr "Registrace uživatele čeká na potvrzení"
 
-#: mod/babel.php:31
-msgid "Source input: "
-msgstr "Zdrojový vstup: "
+#: mod/admin.php:1826
+msgid "User waiting for permanent deletion"
+msgstr "Uživatel čeká na trvalé smazání"
 
-#: mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (raw HTML): "
+#: mod/admin.php:1827
+msgid "Request date"
+msgstr "Datum žádosti"
 
-#: mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html: "
+#: mod/admin.php:1828
+msgid "No registrations."
+msgstr "Žádné registrace."
 
-#: mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
+#: mod/admin.php:1829
+msgid "Note from the user"
+msgstr "Poznámka od uživatele"
 
-#: mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
+#: mod/admin.php:1830 mod/notifications.php:178 mod/notifications.php:262
+msgid "Approve"
+msgstr "Schválit"
 
-#: mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
+#: mod/admin.php:1831
+msgid "Deny"
+msgstr "Odmítnout"
 
-#: mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
+#: mod/admin.php:1835
+msgid "Site admin"
+msgstr "Site administrátor"
 
-#: mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
+#: mod/admin.php:1836
+msgid "Account expired"
+msgstr "Účtu vypršela platnost"
 
-#: mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Vstupní data (ve formátu Diaspora): "
+#: mod/admin.php:1839
+msgid "New User"
+msgstr "Nový uživatel"
 
-#: mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: mod/admin.php:1840
+msgid "Deleted since"
+msgstr "Smazán od"
 
-#: mod/ostatus_subscribe.php:14
-msgid "Subscribing to OStatus contacts"
-msgstr ""
+#: mod/admin.php:1845
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Vybraní uživatelé budou smazáni!\\n\\n Vše, co tito uživatelé na těchto stránkách vytvořili, bude trvale odstraněno!\\n\\n Opravdu pokračovat?"
 
-#: mod/ostatus_subscribe.php:25
-msgid "No contact provided."
-msgstr ""
+#: mod/admin.php:1846
+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živatel {0} bude smazán!\\n\\n Vše, co tento uživatel na těchto stránkách vytvořil, bude trvale odstraněno!\\n\\n Opravdu pokračovat?"
 
-#: mod/ostatus_subscribe.php:30
-msgid "Couldn't fetch information for contact."
-msgstr ""
+#: mod/admin.php:1856
+msgid "Name of the new user."
+msgstr "Jméno nového uživatele"
 
-#: mod/ostatus_subscribe.php:38
-msgid "Couldn't fetch friends for contact."
-msgstr ""
+#: mod/admin.php:1857
+msgid "Nickname"
+msgstr "Přezdívka"
 
-#: mod/ostatus_subscribe.php:65
-msgid "success"
-msgstr ""
+#: mod/admin.php:1857
+msgid "Nickname of the new user."
+msgstr "Přezdívka nového uživatele."
 
-#: mod/ostatus_subscribe.php:67
-msgid "failed"
-msgstr ""
+#: mod/admin.php:1858
+msgid "Email address of the new user."
+msgstr "Emailová adresa nového uživatele."
 
-#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245
-msgid "ignored"
-msgstr "ignorován"
+#: mod/admin.php:1900
+#, php-format
+msgid "Addon %s disabled."
+msgstr "Doplněk %s zakázán."
 
-#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537
+#: mod/admin.php:1904
 #, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s vítá %2$s"
+msgid "Addon %s enabled."
+msgstr "Doplněk %s povolen."
 
-#: mod/message.php:75
-msgid "Unable to locate contact information."
-msgstr "Nepodařilo se najít kontaktní informace."
+#: mod/admin.php:1914 mod/admin.php:2163
+msgid "Disable"
+msgstr "Zakázat"
 
-#: mod/message.php:215
-msgid "Do you really want to delete this message?"
-msgstr "Opravdu chcete smazat tuto zprávu?"
+#: mod/admin.php:1917 mod/admin.php:2166
+msgid "Enable"
+msgstr "Povolit"
 
-#: mod/message.php:235
-msgid "Message deleted."
-msgstr "Zpráva odstraněna."
+#: mod/admin.php:1939 mod/admin.php:2209
+msgid "Toggle"
+msgstr "Přepnout"
 
-#: mod/message.php:266
-msgid "Conversation removed."
-msgstr "Konverzace odstraněna."
+#: mod/admin.php:1947 mod/admin.php:2218
+msgid "Author: "
+msgstr "Autor: "
 
-#: mod/message.php:383
-msgid "No messages."
-msgstr "Žádné zprávy."
+#: mod/admin.php:1948 mod/admin.php:2219
+msgid "Maintainer: "
+msgstr "Správce: "
 
-#: mod/message.php:426
-msgid "Message not available."
-msgstr "Zpráva není k dispozici."
+#: mod/admin.php:2000
+msgid "Reload active addons"
+msgstr "Znovu načíst aktivní doplňky"
 
-#: mod/message.php:503
-msgid "Delete message"
-msgstr "Smazat zprávu"
+#: mod/admin.php:2005
+#, 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 "Aktuálně nejsou na Vašem serveru k dispozici žádné doplňky. Oficiální repozitář doplňků najdete na %1$s a další zajímavé doplňky můžete najít v otevřeném registru doplňků na %2$s"
 
-#: mod/message.php:529 mod/message.php:609
-msgid "Delete conversation"
-msgstr "Odstranit konverzaci"
+#: mod/admin.php:2125
+msgid "No themes found."
+msgstr "Nenalezeny žádné motivy."
 
-#: mod/message.php:531
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Není k dispozici zabezpečená komunikace. <strong>Možná</strong> budete schopni reagovat z odesilatelovy profilové stránky."
+#: mod/admin.php:2200
+msgid "Screenshot"
+msgstr "Snímek obrazovky"
 
-#: mod/message.php:535
-msgid "Send Reply"
-msgstr "Poslat odpověď"
+#: mod/admin.php:2254
+msgid "Reload active themes"
+msgstr "Znovu načíst aktivní motivy"
 
-#: mod/message.php:579
+#: mod/admin.php:2259
 #, php-format
-msgid "Unknown sender - %s"
-msgstr "Neznámý odesilatel - %s"
+msgid "No themes found on the system. They should be placed in %1$s"
+msgstr "V systému nebyly nalezeny žádné motivy. Měly by být uloženy v %1$s"
 
-#: mod/message.php:581
-#, php-format
-msgid "You and %s"
-msgstr "Vy a %s"
+#: mod/admin.php:2260
+msgid "[Experimental]"
+msgstr "[Experimentální]"
 
-#: mod/message.php:583
-#, php-format
-msgid "%s and You"
-msgstr "%s a Vy"
+#: mod/admin.php:2261
+msgid "[Unsupported]"
+msgstr "[Nepodporováno]"
 
-#: mod/message.php:612
-msgid "D, d M Y - g:i A"
-msgstr "D M R - g:i A"
+#: mod/admin.php:2285
+msgid "Log settings updated."
+msgstr "Nastavení protokolu aktualizováno."
 
-#: mod/message.php:615
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d zpráva"
-msgstr[1] "%d zprávy"
-msgstr[2] "%d zpráv"
+#: mod/admin.php:2317
+msgid "PHP log currently enabled."
+msgstr "PHP záznamy jsou aktuálně povolené."
 
-#: mod/manage.php:139
-msgid "Manage Identities and/or Pages"
-msgstr "Správa identit a / nebo stránek"
+#: mod/admin.php:2319
+msgid "PHP log currently disabled."
+msgstr "PHP záznamy jsou aktuálně povolené."
 
-#: mod/manage.php:140
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Přepnutí mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí Vaše detaily účtu, nebo kterým jste přidělili oprávnění nastavovat přístupová práva."
+#: mod/admin.php:2328
+msgid "Clear"
+msgstr "Vyčistit"
 
-#: mod/manage.php:141
-msgid "Select an identity to manage: "
-msgstr "Vyberte identitu pro správu: "
+#: mod/admin.php:2332
+msgid "Enable Debugging"
+msgstr "Povolit ladění"
 
-#: mod/crepair.php:87
-msgid "Contact settings applied."
-msgstr "Nastavení kontaktu změněno"
+#: mod/admin.php:2333
+msgid "Log file"
+msgstr "Soubor s logem"
 
-#: mod/crepair.php:89
-msgid "Contact update failed."
-msgstr "Aktualizace kontaktu selhala."
+#: mod/admin.php:2333
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Musí být editovatelné web serverem. Relativní cesta k vašemu kořenovému adresáři Friendica"
 
-#: mod/crepair.php:114 mod/fsuggest.php:20 mod/fsuggest.php:92
-#: mod/dfrn_confirm.php:126
-msgid "Contact not found."
-msgstr "Kontakt nenalezen."
+#: mod/admin.php:2334
+msgid "Log level"
+msgstr "Úroveň auditu"
+
+#: mod/admin.php:2336
+msgid "PHP logging"
+msgstr "Záznamování PHP"
+
+#: mod/admin.php:2337
+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 "Pro umožnění zaznamenávání PHP chyb a varování, můžete přidat do souboru .htconfig.php na vaší instalaci následující: Název souboru nastavený v řádku \"error_log\" je relativní ke kořenovému adresáři Friendica a webový server musí mít povolení na něj zapisovat. Možnost \"1\" pro \"log_errors\" a \"display_errors\" tyto funkce povoluje, nastavením hodnoty na \"0\" je zakážete."
 
-#: mod/crepair.php:120
+#: mod/admin.php:2368
+#, php-format
 msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>Varování: Toto je velmi pokročilé</strong> a pokud zadáte nesprávné informace, Vaše komunikace s tímto kontaktem může přestat fungovat."
+"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 "Chyba při otevírání záznamu <strong>%1$s</strong>.\\r\\n<br/>Zkontrolujte, jestli soubor %1$s existuje a může se číst."
 
-#: mod/crepair.php:121
+#: mod/admin.php:2372
+#, php-format
 msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Prosím použijte <strong>ihned</strong> v prohlížeči tlačítko \"zpět\" pokud si nejste jistí co dělat na této stránce."
+"Couldn't open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see if file"
+" %1$s is readable."
+msgstr "Nelze otevřít záznam <strong>%1$s</strong>.\\r\\n<br/>Zkontrolujte, jestli se soubor %1$s může číst."
 
-#: mod/crepair.php:134 mod/crepair.php:136
-msgid "No mirroring"
-msgstr "Žádné zrcadlení"
+#: mod/admin.php:2463 mod/admin.php:2464 mod/settings.php:767
+msgid "Off"
+msgstr "Vypnuto"
 
-#: mod/crepair.php:134
-msgid "Mirror as forwarded posting"
-msgstr "Zrcadlit pro přeposlané příspěvky"
+#: mod/admin.php:2463 mod/admin.php:2464 mod/settings.php:767
+msgid "On"
+msgstr "Zapnuto"
 
-#: mod/crepair.php:134 mod/crepair.php:136
-msgid "Mirror as my own posting"
-msgstr "Zrcadlit jako mé vlastní příspěvky"
+#: mod/admin.php:2464
+#, php-format
+msgid "Lock feature %s"
+msgstr ""
 
-#: mod/crepair.php:150
-msgid "Return to contact editor"
-msgstr "Návrat k editoru kontaktu"
+#: mod/admin.php:2472
+msgid "Manage Additional Features"
+msgstr ""
 
-#: mod/crepair.php:152
-msgid "Refetch contact data"
-msgstr "Znovu načíst data kontaktu"
+#: mod/community.php:51
+msgid "Community option not available."
+msgstr ""
 
-#: mod/crepair.php:156
-msgid "Remote Self"
-msgstr "Remote Self"
+#: mod/community.php:68
+msgid "Not available."
+msgstr "Není k dispozici."
 
-#: mod/crepair.php:159
-msgid "Mirror postings from this contact"
-msgstr "Zrcadlení správ od tohoto kontaktu"
+#: mod/community.php:81
+msgid "Local Community"
+msgstr "Lokální komunita"
 
-#: mod/crepair.php:161
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
-msgstr "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu."
+#: mod/community.php:84
+msgid "Posts from local users on this server"
+msgstr ""
 
-#: mod/crepair.php:165 mod/settings.php:680 mod/settings.php:706
-#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1438
-msgid "Name"
-msgstr "Jméno"
+#: mod/community.php:92
+msgid "Global Community"
+msgstr "Globální komunita"
 
-#: mod/crepair.php:166
-msgid "Account Nickname"
-msgstr "Přezdívka účtu"
+#: mod/community.php:95
+msgid "Posts from users of the whole federated network"
+msgstr "Příspěvky od uživatelů z celé federované sítě"
 
-#: mod/crepair.php:167
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tagname - upřednostněno před Jménem/Přezdívkou"
+#: mod/community.php:141 mod/search.php:228
+msgid "No results."
+msgstr "Žádné výsledky."
 
-#: mod/crepair.php:168
-msgid "Account URL"
-msgstr "URL adresa účtu"
+#: mod/community.php:185
+msgid ""
+"This community stream shows all public posts received by this node. They may"
+" not reflect the opinions of this node’s users."
+msgstr "Tento komunitní proud ukazuje všechny veřejné příspěvky, které tento server přijme. Nemusí odrážet názory uživatelů serveru."
 
-#: mod/crepair.php:169
-msgid "Friend Request URL"
-msgstr "Žádost o přátelství URL"
+#: mod/dfrn_confirm.php:74 mod/profiles.php:39 mod/profiles.php:149
+#: mod/profiles.php:196 mod/profiles.php:525
+msgid "Profile not found."
+msgstr "Profil nenalezen"
 
-#: mod/crepair.php:170
-msgid "Friend Confirm URL"
-msgstr "URL adresa potvrzení přátelství"
+#: mod/dfrn_confirm.php:130
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "To se může občas stát pokud kontakt byl zažádán oběma osobami a již byl schválen."
 
-#: mod/crepair.php:171
-msgid "Notification Endpoint URL"
-msgstr "Notifikační URL adresa"
+#: mod/dfrn_confirm.php:240
+msgid "Response from remote site was not understood."
+msgstr "Odpověď ze vzdáleného serveru nebyla srozumitelná."
 
-#: mod/crepair.php:172
-msgid "Poll/Feed URL"
-msgstr "Poll/Feed URL adresa"
+#: mod/dfrn_confirm.php:247 mod/dfrn_confirm.php:252
+msgid "Unexpected response from remote site: "
+msgstr "Neočekávaná odpověď od vzdáleného serveru:"
 
-#: mod/crepair.php:173
-msgid "New photo from this URL"
-msgstr "Nové foto z této URL adresy"
+#: mod/dfrn_confirm.php:261
+msgid "Confirmation completed successfully."
+msgstr "Potvrzení úspěšně dokončena."
 
-#: mod/content.php:119 mod/network.php:469
-msgid "No such group"
-msgstr "Žádná taková skupina"
+#: mod/dfrn_confirm.php:273
+msgid "Temporary failure. Please wait and try again."
+msgstr "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu."
+
+#: mod/dfrn_confirm.php:276
+msgid "Introduction failed or was revoked."
+msgstr "Žádost o propojení selhala nebo byla zrušena."
+
+#: mod/dfrn_confirm.php:281
+msgid "Remote site reported: "
+msgstr "Vzdálený server oznámil:"
+
+#: mod/dfrn_confirm.php:392
+msgid "Unable to set contact photo."
+msgstr "Nelze nastavit fotografii kontaktu."
 
-#: mod/content.php:135 mod/network.php:500
+#: mod/dfrn_confirm.php:450
 #, php-format
-msgid "Group: %s"
-msgstr "Skupina: %s"
+msgid "No user record found for '%s' "
+msgstr "Pro '%s' nenalezen žádný uživatelský záznam "
 
-#: mod/content.php:325 object/Item.php:95
-msgid "This entry was edited"
-msgstr "Tento záznam byl editován"
+#: mod/dfrn_confirm.php:460
+msgid "Our site encryption key is apparently messed up."
+msgstr "Náš šifrovací klíč zřejmě přestal správně fungovat."
+
+#: mod/dfrn_confirm.php:471
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "Byla poskytnuta prázdná URL adresa nebo se nepodařilo URL adresu dešifrovat."
+
+#: mod/dfrn_confirm.php:487
+msgid "Contact record was not found for you on our site."
+msgstr "Kontakt záznam nebyl nalezen pro vás na našich stránkách."
 
-#: mod/content.php:621 object/Item.php:429
+#: mod/dfrn_confirm.php:501
 #, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d komentář"
-msgstr[1] "%d komentářů"
-msgstr[2] "%d komentářů"
+msgid "Site public key not available in contact record for URL %s."
+msgstr "V adresáři není k dispozici veřejný klíč pro URL %s."
 
-#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117
-msgid "Private Message"
-msgstr "Soukromá zpráva"
+#: mod/dfrn_confirm.php:517
+msgid ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci zopakovat."
 
-#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263
-msgid "I like this (toggle)"
-msgstr "Líbí se mi to (přepínač)"
+#: mod/dfrn_confirm.php:528
+msgid "Unable to set your contact credentials on our system."
+msgstr "Nelze nastavit Vaše přihlašovací údaje v našem systému."
 
-#: mod/content.php:702 object/Item.php:263
-msgid "like"
-msgstr "má rád"
+#: mod/dfrn_confirm.php:583
+msgid "Unable to update your contact profile details on our system"
+msgstr "Nelze aktualizovat Váš profil v našem systému"
 
-#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264
-msgid "I don't like this (toggle)"
-msgstr "Nelíbí se mi to (přepínač)"
+#: mod/dfrn_confirm.php:613 mod/dfrn_request.php:564
+#: src/Model/Contact.php:1578
+msgid "[Name Withheld]"
+msgstr "[Jméno odepřeno]"
 
-#: mod/content.php:703 object/Item.php:264
-msgid "dislike"
-msgstr "nemá rád"
+#: mod/dfrn_request.php:94
+msgid "This introduction has already been accepted."
+msgstr "Toto pozvání již bylo přijato."
 
-#: mod/content.php:705 object/Item.php:266
-msgid "Share this"
-msgstr "Sdílet toto"
+#: mod/dfrn_request.php:112 mod/dfrn_request.php:355
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Adresa profilu není platná nebo neobsahuje profilové informace"
 
-#: mod/content.php:705 object/Item.php:266
-msgid "share"
-msgstr "sdílí"
+#: mod/dfrn_request.php:116 mod/dfrn_request.php:359
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka"
 
-#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635
-#: mod/photos.php:1721 object/Item.php:717
-msgid "This is you"
-msgstr "Nastavte Vaši polohu"
+#: mod/dfrn_request.php:119 mod/dfrn_request.php:362
+msgid "Warning: profile location has no profile photo."
+msgstr "Varování: umístění profilu nemá žádnou profilovou fotografii."
 
-#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589
-#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403
-#: object/Item.php:719 boot.php:971
-msgid "Comment"
-msgstr "Okomentovat"
+#: mod/dfrn_request.php:123 mod/dfrn_request.php:366
+#, 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 požadovaný parametr nebyl nalezen na daném místě"
+msgstr[1] "%d požadované parametry nebyly nalezeny na daném místě"
+msgstr[2] "%d požadované parametry nebyly nalezeny na daném místě"
+msgstr[3] "%d požadované parametry nebyly nalezeny na daném místě"
 
-#: mod/content.php:729 object/Item.php:721
-msgid "Bold"
-msgstr "Tučné"
+#: mod/dfrn_request.php:162
+msgid "Introduction complete."
+msgstr "Představení dokončeno."
 
-#: mod/content.php:730 object/Item.php:722
-msgid "Italic"
-msgstr "Kurzíva"
+#: mod/dfrn_request.php:199
+msgid "Unrecoverable protocol error."
+msgstr "Neopravitelná chyba protokolu"
 
-#: mod/content.php:731 object/Item.php:723
-msgid "Underline"
-msgstr "Podrtžené"
+#: mod/dfrn_request.php:226
+msgid "Profile unavailable."
+msgstr "Profil není k dispozici."
 
-#: mod/content.php:732 object/Item.php:724
-msgid "Quote"
-msgstr "Citovat"
+#: mod/dfrn_request.php:248
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s dnes obdržel příliš mnoho požadavků na připojení."
 
-#: mod/content.php:733 object/Item.php:725
-msgid "Code"
-msgstr "Kód"
+#: mod/dfrn_request.php:249
+msgid "Spam protection measures have been invoked."
+msgstr "Ochrana proti spamu byla aktivována"
 
-#: mod/content.php:734 object/Item.php:726
-msgid "Image"
-msgstr "Obrázek"
+#: mod/dfrn_request.php:250
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Přátelům se doporučuje to zkusit znovu za 24 hodin."
 
-#: mod/content.php:735 object/Item.php:727
-msgid "Link"
-msgstr "Odkaz"
+#: mod/dfrn_request.php:276
+msgid "Invalid locator"
+msgstr "Neplatný odkaz"
 
-#: mod/content.php:736 object/Item.php:728
-msgid "Video"
-msgstr "Video"
+#: mod/dfrn_request.php:312
+msgid "You have already introduced yourself here."
+msgstr "Již jste se zde zavedli."
 
-#: mod/content.php:746 mod/settings.php:740 object/Item.php:122
-#: object/Item.php:124
-msgid "Edit"
-msgstr "Upravit"
+#: mod/dfrn_request.php:315
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Zřejmě jste již přátelé se %s."
 
-#: mod/content.php:771 object/Item.php:227
-msgid "add star"
-msgstr "přidat hvězdu"
+#: mod/dfrn_request.php:335
+msgid "Invalid profile URL."
+msgstr "Neplatné URL profilu."
 
-#: mod/content.php:772 object/Item.php:228
-msgid "remove star"
-msgstr "odebrat hvězdu"
+#: mod/dfrn_request.php:341 src/Model/Contact.php:1276
+msgid "Disallowed profile URL."
+msgstr "Nepovolené URL profilu."
 
-#: mod/content.php:773 object/Item.php:229
-msgid "toggle star status"
-msgstr "přepnout hvězdu"
+#: mod/dfrn_request.php:435
+msgid "Your introduction has been sent."
+msgstr "Vaše žádost o propojení byla odeslána."
 
-#: mod/content.php:776 object/Item.php:232
-msgid "starred"
-msgstr "označeno hvězdou"
+#: mod/dfrn_request.php:473
+msgid ""
+"Remote subscription can't be done for your network. Please subscribe "
+"directly on your system."
+msgstr "Vzdálený odběr nemůže být na Vaší síti proveden. Prosím, přihlaste se k odběru přímo na Vašem systému."
 
-#: mod/content.php:777 mod/content.php:798 object/Item.php:252
-msgid "add tag"
-msgstr "přidat štítek"
+#: mod/dfrn_request.php:489
+msgid "Please login to confirm introduction."
+msgstr "Prosím přihlašte se k potvrzení žádosti o propojení."
 
-#: mod/content.php:787 object/Item.php:240
-msgid "ignore thread"
-msgstr "ignorovat vlákno"
+#: mod/dfrn_request.php:497
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Jste přihlášeni pod nesprávnou identitou  Prosím, přihlaste se do <strong>tohoto</strong> profilu."
 
-#: mod/content.php:788 object/Item.php:241
-msgid "unignore thread"
-msgstr "přestat ignorovat vlákno"
+#: mod/dfrn_request.php:511 mod/dfrn_request.php:528
+msgid "Confirm"
+msgstr "Potvrdit"
 
-#: mod/content.php:789 object/Item.php:242
-msgid "toggle ignore status"
-msgstr "přepnout stav Ignorování"
+#: mod/dfrn_request.php:523
+msgid "Hide this contact"
+msgstr "Skrýt tento kontakt"
 
-#: mod/content.php:803 object/Item.php:137
-msgid "save to folder"
-msgstr "uložit do složky"
+#: mod/dfrn_request.php:526
+#, php-format
+msgid "Welcome home %s."
+msgstr "Vítejte doma %s."
 
-#: mod/content.php:848 object/Item.php:201
-msgid "I will attend"
-msgstr ""
+#: mod/dfrn_request.php:527
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Prosím potvrďte Vaši žádost o propojení %s."
 
-#: mod/content.php:848 object/Item.php:201
-msgid "I will not attend"
-msgstr ""
+#: mod/dfrn_request.php:637
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Prosím zadejte Vaši adresu identity jedné z následujících podporovaných komunikačních sítí:"
 
-#: mod/content.php:848 object/Item.php:201
-msgid "I might attend"
-msgstr ""
+#: mod/dfrn_request.php:640
+#, 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 "Pokud ještě nejste členem svobodného sociálního webu, <a href=\"%s\">klikněte na tento odkaz, najděte si veřejný server Friendica a připojte se k nám ještě dnes</a>."
 
-#: mod/content.php:912 object/Item.php:369
-msgid "to"
-msgstr "pro"
+#: mod/dfrn_request.php:645
+msgid "Friend/Connection Request"
+msgstr "Požadavek o přátelství / kontaktování"
 
-#: mod/content.php:913 object/Item.php:371
-msgid "Wall-to-Wall"
-msgstr "Zeď-na-Zeď"
+#: mod/dfrn_request.php:646
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@gnusocial.de"
+msgstr "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"
 
-#: mod/content.php:914 object/Item.php:372
-msgid "via Wall-To-Wall:"
-msgstr "přes Zeď-na-Zeď "
+#: mod/dfrn_request.php:651 src/Content/ContactSelector.php:79
+msgid "Friendica"
+msgstr "Friendica"
 
-#: mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Návrhy přátelství odeslány "
+#: mod/dfrn_request.php:652
+msgid "GNU Social (Pleroma, Mastodon)"
+msgstr "GNU social (Pleroma, Mastodon)"
 
-#: mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Navrhněte přátelé"
+#: mod/dfrn_request.php:653
+msgid "Diaspora (Socialhome, Hubzilla)"
+msgstr "Diaspora (Socialhome, Hubzilla)"
 
-#: mod/fsuggest.php:99
+#: mod/dfrn_request.php:654
 #, php-format
-msgid "Suggest a friend for %s"
-msgstr "Navrhněte přátelé pro uživatele %s"
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - prosím nepoužívejte tento formulář.  Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole."
 
-#: mod/mood.php:133
-msgid "Mood"
-msgstr "Nálada"
+#: mod/events.php:105 mod/events.php:107
+msgid "Event can not end before it has started."
+msgstr "Událost nemůže končit dříve, než začala."
 
-#: mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "Nastavte svou aktuální náladu a řekněte to Vašim přátelům"
+#: mod/events.php:114 mod/events.php:116
+msgid "Event title and start time are required."
+msgstr "Název události a datum začátku jsou vyžadovány."
 
-#: mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Šťouchanec"
+#: mod/events.php:393
+msgid "Create New Event"
+msgstr "Vytvořit novou událost"
 
-#: mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "někoho šťouchnout nebo mu provést  jinou věc"
+#: mod/events.php:507
+msgid "Event details"
+msgstr "Detaily události"
 
-#: mod/poke.php:194
-msgid "Recipient"
-msgstr "Příjemce"
+#: mod/events.php:508
+msgid "Starting date and Title are required."
+msgstr "Počáteční datum a Název jsou vyžadovány."
 
-#: mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Vyberte, co si přejete příjemci udělat"
+#: mod/events.php:509 mod/events.php:510
+msgid "Event Starts:"
+msgstr "Událost začíná:"
 
-#: mod/poke.php:198
-msgid "Make this post private"
-msgstr "Změnit tento příspěvek na soukromý"
+#: mod/events.php:509 mod/events.php:521 mod/profiles.php:607
+msgid "Required"
+msgstr "Vyžadováno"
 
-#: mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo."
+#: mod/events.php:511 mod/events.php:527
+msgid "Finish date/time is not known or not relevant"
+msgstr "Datum/čas konce není zadán nebo není relevantní"
 
-#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91
-#: mod/profile_photo.php:314
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Nepodařilo se snížit velikost obrázku [%s]."
+#: mod/events.php:513 mod/events.php:514
+msgid "Event Finishes:"
+msgstr "Akce končí:"
 
-#: mod/profile_photo.php:124
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě."
+#: mod/events.php:515 mod/events.php:528
+msgid "Adjust for viewer timezone"
+msgstr "Nastavit časové pásmo pro uživatele s právem pro čtení"
 
-#: mod/profile_photo.php:134
-msgid "Unable to process image"
-msgstr "Obrázek nelze zpracovat "
+#: mod/events.php:517
+msgid "Description:"
+msgstr "Popis:"
 
-#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151
-#, php-format
-msgid "Image exceeds size limit of %s"
-msgstr "Obrázek překročil limit velikosti %s"
+#: mod/events.php:521 mod/events.php:523
+msgid "Title:"
+msgstr "Název:"
 
-#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188
-msgid "Unable to process image."
-msgstr "Obrázek není možné zprocesovat"
+#: mod/events.php:524 mod/events.php:525
+msgid "Share this event"
+msgstr "Sdílet tuto událost"
 
-#: mod/profile_photo.php:248
-msgid "Upload File:"
-msgstr "Nahrát soubor:"
+#: mod/events.php:532 src/Model/Profile.php:862
+msgid "Basic"
+msgstr "Základní"
 
-#: mod/profile_photo.php:249
-msgid "Select a profile:"
-msgstr "Vybrat profil:"
+#: mod/events.php:534 mod/photos.php:1086 mod/photos.php:1435
+#: src/Core/ACL.php:318
+msgid "Permissions"
+msgstr "Oprávnění:"
 
-#: mod/profile_photo.php:251
-msgid "Upload"
-msgstr "Nahrát"
+#: mod/events.php:553
+msgid "Failed to remove event"
+msgstr "Odstranění události selhalo"
 
-#: mod/profile_photo.php:254
-msgid "or"
-msgstr "nebo"
+#: mod/events.php:555
+msgid "Event removed"
+msgstr "Událost odstraněna"
 
-#: mod/profile_photo.php:254
-msgid "skip this step"
-msgstr "přeskočit tento krok "
+#: mod/group.php:36
+msgid "Group created."
+msgstr "Skupina vytvořena."
 
-#: mod/profile_photo.php:254
-msgid "select a photo from your photo albums"
-msgstr "Vybrat fotografii z Vašich fotoalb"
+#: mod/group.php:42
+msgid "Could not create group."
+msgstr "Nelze vytvořit skupinu."
 
-#: mod/profile_photo.php:268
-msgid "Crop Image"
-msgstr "Oříznout obrázek"
+#: mod/group.php:56 mod/group.php:157
+msgid "Group not found."
+msgstr "Skupina nenalezena."
 
-#: mod/profile_photo.php:269
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Prosím, ořízněte tento obrázek pro optimální zobrazení."
+#: mod/group.php:70
+msgid "Group name changed."
+msgstr "Název skupiny byl změněn."
 
-#: mod/profile_photo.php:271
-msgid "Done Editing"
-msgstr "Editace dokončena"
+#: mod/group.php:97
+msgid "Save Group"
+msgstr "Uložit Skupinu"
 
-#: mod/profile_photo.php:305
-msgid "Image uploaded successfully."
-msgstr "Obrázek byl úspěšně nahrán."
+#: mod/group.php:102
+msgid "Create a group of contacts/friends."
+msgstr "Vytvořit skupinu kontaktů / přátel."
 
-#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221
-msgid "Image upload failed."
-msgstr "Nahrání obrázku selhalo."
+#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421
+msgid "Group Name: "
+msgstr "Název skupiny: "
 
-#: mod/regmod.php:55
-msgid "Account approved."
-msgstr "Účet schválen."
+#: mod/group.php:127
+msgid "Group removed."
+msgstr "Skupina odstraněna. "
 
-#: mod/regmod.php:92
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrace zrušena pro %s"
+#: mod/group.php:129
+msgid "Unable to remove group."
+msgstr "Nelze odstranit skupinu."
 
-#: mod/regmod.php:104
-msgid "Please login."
-msgstr "Přihlaste se, prosím."
+#: mod/group.php:192
+msgid "Delete Group"
+msgstr "Odstranit skupinu"
 
-#: mod/notifications.php:35
-msgid "Invalid request identifier."
-msgstr "Neplatný identifikátor požadavku."
+#: mod/group.php:198
+msgid "Group Editor"
+msgstr "Editor skupin"
 
-#: mod/notifications.php:44 mod/notifications.php:180
-#: mod/notifications.php:252
-msgid "Discard"
-msgstr "Odstranit"
+#: mod/group.php:203
+msgid "Edit Group Name"
+msgstr "Upravit název skupiny"
 
-#: mod/notifications.php:60 mod/notifications.php:179
-#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806
-#: mod/contacts.php:991
-msgid "Ignore"
-msgstr "Ignorovat"
+#: mod/group.php:213
+msgid "Members"
+msgstr "Členové"
 
-#: mod/notifications.php:105
-msgid "Network Notifications"
-msgstr "Upozornění Sítě"
+#: mod/group.php:216 mod/network.php:639
+msgid "Group is empty"
+msgstr "Skupina je prázdná"
 
-#: mod/notifications.php:117
-msgid "Personal Notifications"
-msgstr "Osobní upozornění"
+#: mod/group.php:229
+msgid "Remove contact from group"
+msgstr "Odebrat kontakt ze skupiny"
 
-#: mod/notifications.php:123
-msgid "Home Notifications"
-msgstr "Upozornění na vstupní straně"
+#: mod/group.php:253
+msgid "Add contact to group"
+msgstr "Přidat kontakt ke skupině"
 
-#: mod/notifications.php:152
-msgid "Show Ignored Requests"
-msgstr "Zobrazit ignorované žádosti"
+#: mod/item.php:114
+msgid "Unable to locate original post."
+msgstr "Nelze nalézt původní příspěvek."
 
-#: mod/notifications.php:152
-msgid "Hide Ignored Requests"
-msgstr "Skrýt ignorované žádosti"
+#: mod/item.php:274
+msgid "Empty post discarded."
+msgstr "Prázdný příspěvek odstraněn."
 
-#: mod/notifications.php:164 mod/notifications.php:222
-msgid "Notification type: "
-msgstr "Typ oznámení: "
+#: mod/item.php:804
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Tato zpráva vám byla zaslána od %s, člena sociální sítě Friendica."
 
-#: mod/notifications.php:167
+#: mod/item.php:806
 #, php-format
-msgid "suggested by %s"
-msgstr "navrhl %s"
+msgid "You may visit them online at %s"
+msgstr "Můžete je navštívit online na adrese %s"
 
-#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613
-msgid "Hide this contact from others"
-msgstr "Skrýt tento kontakt před ostatními"
+#: mod/item.php:807
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam."
 
-#: mod/notifications.php:173 mod/notifications.php:240
-msgid "Post a new friend activity"
-msgstr "Zveřejnit aktivitu nového přítele."
+#: mod/item.php:811
+#, php-format
+msgid "%s posted an update."
+msgstr "%s poslal aktualizaci."
 
-#: mod/notifications.php:173 mod/notifications.php:240
-msgid "if applicable"
-msgstr "je-li použitelné"
+#: mod/network.php:194 mod/search.php:37
+msgid "Remove term"
+msgstr "Odstranit termín"
 
-#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412
-msgid "Approve"
-msgstr "Schválit"
+#: mod/network.php:201 mod/search.php:46 src/Content/Feature.php:100
+msgid "Saved Searches"
+msgstr "Uložená hledání"
 
-#: mod/notifications.php:195
-msgid "Claims to be known to you: "
-msgstr "Vaši údajní známí: "
+#: mod/network.php:202 src/Model/Group.php:413
+msgid "add"
+msgstr "přidat"
 
-#: mod/notifications.php:196
-msgid "yes"
-msgstr "ano"
+#: 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] "Varování: Tato skupina obsahuje %s člena ze sítě, která nepovoluje posílání soukromých zpráv."
+msgstr[1] "Varování: Tato skupina obsahuje %s členy ze sítě, která nepovoluje posílání soukromých zpráv."
+msgstr[2] "Varování: Tato skupina obsahuje %s členů ze sítě, která nepovoluje posílání soukromých zpráv."
+msgstr[3] "Varování: Tato skupina obsahuje %s členů ze sítě, která nepovoluje posílání soukromých zpráv."
 
-#: mod/notifications.php:196
-msgid "no"
-msgstr "ne"
+#: mod/network.php:550
+msgid "Messages in this group won't be send to these receivers."
+msgstr "Zprávy v této skupině nebudou těmto příjemcům doručeny."
 
-#: mod/notifications.php:197
-msgid ""
-"Shall your connection be bidirectional or not? \"Friend\" implies that you "
-"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that "
-"you allow to read but you do not want to read theirs. Approve as: "
-msgstr "Má být vaše propojení oboustanné nebo ne? \"Přítel\" implikuje, že dovolíte čtení a přihlašování se k jejich příspěvkům. \"Fanoušek/Obdivovatel\" znamená, že umožníte čtení, ale už nebudete číst jejich příspěvky: Odsouhlasit jako: "
+#: mod/network.php:618
+msgid "No such group"
+msgstr "Žádná taková skupina"
 
-#: mod/notifications.php:200
-msgid ""
-"Shall your connection be bidirectional or not? \"Friend\" implies that you "
-"allow to read and you subscribe to their posts. \"Sharer\" means that you "
-"allow to read but you do not want to read theirs. Approve as: "
-msgstr "Má být vaše propojení oboustanné nebo ne? \"Přítel\" implikuje, že dovolíte čtení a vy budete přihlášen k odebírání jejich příspěvků. \"Sdíleč\" znamená, že umožníte čtení, ale už nebudete číst jejich příspěvky: Odsouhlasit jako: "
+#: mod/network.php:643
+#, php-format
+msgid "Group: %s"
+msgstr "Skupina: %s"
 
-#: mod/notifications.php:209
-msgid "Friend"
-msgstr "Přítel"
+#: mod/network.php:669
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení."
 
-#: mod/notifications.php:210
-msgid "Sharer"
-msgstr "Sdílené"
+#: mod/network.php:672
+msgid "Invalid contact."
+msgstr "Neplatný kontakt."
 
-#: mod/notifications.php:210
-msgid "Fan/Admirer"
-msgstr "Fanoušek / obdivovatel"
+#: mod/network.php:943
+msgid "Commented Order"
+msgstr "Dle komentářů"
 
-#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126
-msgid "Profile URL"
-msgstr "URL profilu"
+#: mod/network.php:946
+msgid "Sort by Comment Date"
+msgstr "Řadit podle data komentáře"
 
-#: mod/notifications.php:260
-msgid "No introductions."
-msgstr "Žádné představení."
+#: mod/network.php:951
+msgid "Posted Order"
+msgstr "Dle data"
 
-#: mod/notifications.php:299
-msgid "Show unread"
-msgstr ""
+#: mod/network.php:954
+msgid "Sort by Post Date"
+msgstr "Řadit podle data příspěvku"
 
-#: mod/notifications.php:299
-msgid "Show all"
-msgstr ""
+#: mod/network.php:962 mod/profiles.php:594
+#: src/Core/NotificationsManager.php:185
+msgid "Personal"
+msgstr "Osobní"
 
-#: mod/notifications.php:305
-#, php-format
-msgid "No more %s notifications."
-msgstr ""
+#: mod/network.php:965
+msgid "Posts that mention or involve you"
+msgstr "Příspěvky, které Vás zmiňují nebo zahrnují"
 
-#: mod/profiles.php:19 mod/profiles.php:134 mod/profiles.php:180
-#: mod/profiles.php:617 mod/dfrn_confirm.php:70
-msgid "Profile not found."
-msgstr "Profil nenalezen"
+#: mod/network.php:973
+msgid "New"
+msgstr "Nové"
 
-#: mod/profiles.php:38
-msgid "Profile deleted."
-msgstr "Profil smazán."
+#: mod/network.php:976
+msgid "Activity Stream - by date"
+msgstr "Proud aktivit - dle data"
 
-#: mod/profiles.php:56 mod/profiles.php:90
-msgid "Profile-"
-msgstr "Profil-"
+#: mod/network.php:984
+msgid "Shared Links"
+msgstr "Sdílené odkazy"
 
-#: mod/profiles.php:75 mod/profiles.php:118
-msgid "New profile created."
-msgstr "Nový profil vytvořen."
+#: mod/network.php:987
+msgid "Interesting Links"
+msgstr "Zajímavé odkazy"
 
-#: mod/profiles.php:96
-msgid "Profile unavailable to clone."
-msgstr "Profil není možné naklonovat."
+#: mod/network.php:995
+msgid "Starred"
+msgstr "S hvězdičkou"
 
-#: mod/profiles.php:190
-msgid "Profile Name is required."
-msgstr "Jméno profilu je povinné."
+#: mod/network.php:998
+msgid "Favourite Posts"
+msgstr "Oblíbené přízpěvky"
 
-#: mod/profiles.php:338
-msgid "Marital Status"
-msgstr "Rodinný Stav"
+#: mod/notes.php:52 src/Model/Profile.php:944
+msgid "Personal Notes"
+msgstr "Osobní poznámky"
 
-#: mod/profiles.php:342
-msgid "Romantic Partner"
-msgstr "Romatický partner"
+#: mod/notifications.php:37
+msgid "Invalid request identifier."
+msgstr "Neplatný identifikátor požadavku."
 
-#: mod/profiles.php:354
-msgid "Work/Employment"
-msgstr "Práce/Zaměstnání"
+#: mod/notifications.php:46 mod/notifications.php:182
+#: mod/notifications.php:229
+msgid "Discard"
+msgstr "Odstranit"
 
-#: mod/profiles.php:357
-msgid "Religion"
-msgstr "Náboženství"
+#: mod/notifications.php:98 src/Content/Nav.php:191
+msgid "Notifications"
+msgstr "Upozornění"
 
-#: mod/profiles.php:361
-msgid "Political Views"
-msgstr "Politické přesvědčení"
+#: mod/notifications.php:107
+msgid "Network Notifications"
+msgstr "Upozornění Sítě"
 
-#: mod/profiles.php:365
-msgid "Gender"
-msgstr "Pohlaví"
+#: mod/notifications.php:119
+msgid "Personal Notifications"
+msgstr "Osobní upozornění"
 
-#: mod/profiles.php:369
-msgid "Sexual Preference"
-msgstr "Sexuální orientace"
+#: mod/notifications.php:125
+msgid "Home Notifications"
+msgstr "Upozornění na vstupní straně"
 
-#: mod/profiles.php:373
-msgid "XMPP"
-msgstr ""
+#: mod/notifications.php:155
+msgid "Show Ignored Requests"
+msgstr "Zobrazit ignorované žádosti"
 
-#: mod/profiles.php:377
-msgid "Homepage"
-msgstr "Domácí stránka"
+#: mod/notifications.php:155
+msgid "Hide Ignored Requests"
+msgstr "Skrýt ignorované žádosti"
 
-#: mod/profiles.php:381 mod/profiles.php:702
-msgid "Interests"
-msgstr "Zájmy"
+#: mod/notifications.php:167 mod/notifications.php:236
+msgid "Notification type: "
+msgstr "Typ oznámení: "
 
-#: mod/profiles.php:385
-msgid "Address"
-msgstr "Adresa"
+#: mod/notifications.php:170
+#, php-format
+msgid "suggested by %s"
+msgstr "navrhl %s"
 
-#: mod/profiles.php:392 mod/profiles.php:698
-msgid "Location"
-msgstr "Lokace"
+#: mod/notifications.php:197
+msgid "Claims to be known to you: "
+msgstr "Vaši údajní známí: "
 
-#: mod/profiles.php:477
-msgid "Profile updated."
-msgstr "Profil aktualizován."
+#: mod/notifications.php:198
+msgid "yes"
+msgstr "ano"
 
-#: mod/profiles.php:564
-msgid " and "
-msgstr " a "
+#: mod/notifications.php:198
+msgid "no"
+msgstr "ne"
 
-#: mod/profiles.php:572
-msgid "public profile"
-msgstr "veřejný profil"
+#: mod/notifications.php:199 mod/notifications.php:204
+msgid "Shall your connection be bidirectional or not?"
+msgstr "Má Vaše spojení být obousměrné, nebo ne?"
 
-#: mod/profiles.php:575
+#: mod/notifications.php:200 mod/notifications.php:205
 #, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s změnil %2$s na &ldquo;%3$s&rdquo;"
+msgid ""
+"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
+"also receive updates from them in your news feed."
+msgstr ""
 
-#: mod/profiles.php:576
+#: mod/notifications.php:201
 #, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " - Navštivte %2$s uživatele %1$s"
+msgid ""
+"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
+" will not receive updates from them in your news feed."
+msgstr ""
 
-#: mod/profiles.php:579
+#: mod/notifications.php:206
 #, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s aktualizoval %2$s, změnou %3$s."
+msgid ""
+"Accepting %s as a sharer allows them to subscribe to your posts, but you "
+"will not receive updates from them in your news feed."
+msgstr ""
 
-#: mod/profiles.php:645
-msgid "Hide contacts and friends:"
-msgstr "Skrýt kontakty a přátele:"
+#: mod/notifications.php:217
+msgid "Friend"
+msgstr "Přítel"
 
-#: mod/profiles.php:650
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Skrýt u tohoto profilu Vaše kontakty / seznam přátel před před dalšími uživateli zobrazující si tento profil?"
+#: mod/notifications.php:218
+msgid "Sharer"
+msgstr "Sdílející"
 
-#: mod/profiles.php:674
-msgid "Show more profile fields:"
-msgstr ""
+#: mod/notifications.php:218
+msgid "Subscriber"
+msgstr "Odběratel"
 
-#: mod/profiles.php:686
-msgid "Profile Actions"
-msgstr ""
+#: mod/notifications.php:273
+msgid "No introductions."
+msgstr "Žádné představení."
 
-#: mod/profiles.php:687
-msgid "Edit Profile Details"
-msgstr "Upravit podrobnosti profilu "
+#: mod/notifications.php:314
+msgid "Show unread"
+msgstr "Zobrazit nepřečtené"
 
-#: mod/profiles.php:689
-msgid "Change Profile Photo"
-msgstr "Změna Profilové fotky"
+#: mod/notifications.php:314
+msgid "Show all"
+msgstr "Zobrazit vše"
 
-#: mod/profiles.php:690
-msgid "View this profile"
-msgstr "Zobrazit tento profil"
+#: mod/notifications.php:320
+#, php-format
+msgid "No more %s notifications."
+msgstr "Žádná další %s oznámení"
 
-#: mod/profiles.php:692
-msgid "Create a new profile using these settings"
-msgstr "Vytvořit nový profil pomocí tohoto nastavení"
+#: mod/openid.php:29
+msgid "OpenID protocol error. No ID returned."
+msgstr "Chyba OpenID protokolu. Nebylo navráceno žádné ID."
 
-#: mod/profiles.php:693
-msgid "Clone this profile"
-msgstr "Klonovat tento profil"
+#: mod/openid.php:66
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Nenalezen účet a OpenID registrace na tomto serveru není dovolena."
 
-#: mod/profiles.php:694
-msgid "Delete this profile"
-msgstr "Smazat tento profil"
+#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:135
+msgid "Login failed."
+msgstr "Přihlášení se nezdařilo."
 
-#: mod/profiles.php:696
-msgid "Basic information"
-msgstr "Základní informace"
+#: mod/photos.php:108 src/Model/Profile.php:905
+msgid "Photo Albums"
+msgstr "Fotoalba"
 
-#: mod/profiles.php:697
-msgid "Profile picture"
-msgstr "Profilový obrázek"
+#: mod/photos.php:109 mod/photos.php:1708
+msgid "Recent Photos"
+msgstr "Aktuální fotografie"
 
-#: mod/profiles.php:699
-msgid "Preferences"
-msgstr "Nastavení"
+#: mod/photos.php:112 mod/photos.php:1198 mod/photos.php:1710
+msgid "Upload New Photos"
+msgstr "Nahrát nové fotografie"
 
-#: mod/profiles.php:700
-msgid "Status information"
-msgstr "Statusové informace"
+#: mod/photos.php:126 mod/settings.php:51
+msgid "everybody"
+msgstr "Žádost o připojení selhala nebo byla zrušena."
 
-#: mod/profiles.php:701
-msgid "Additional information"
-msgstr "Dodatečné informace"
+#: mod/photos.php:184
+msgid "Contact information unavailable"
+msgstr "Kontakt byl zablokován"
 
-#: mod/profiles.php:704
-msgid "Relation"
-msgstr ""
+#: mod/photos.php:204
+msgid "Album not found."
+msgstr "Album nenalezeno."
 
-#: mod/profiles.php:708
-msgid "Your Gender:"
-msgstr "Vaše pohlaví:"
+#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1149
+msgid "Delete Album"
+msgstr "Smazat album"
 
-#: mod/profiles.php:709
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Rodinný stav:"
+#: mod/photos.php:243
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Opravdu chcete smazat toto foto album a všechny jeho fotografie?"
 
-#: mod/profiles.php:711
-msgid "Example: fishing photography software"
-msgstr "Příklad: fishing photography software"
+#: mod/photos.php:303 mod/photos.php:314 mod/photos.php:1440
+msgid "Delete Photo"
+msgstr "Smazat fotografii"
 
-#: mod/profiles.php:716
-msgid "Profile Name:"
-msgstr "Jméno profilu:"
+#: mod/photos.php:312
+msgid "Do you really want to delete this photo?"
+msgstr "Opravdu chcete smazat tuto fotografii?"
 
-#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496
-msgid "Required"
-msgstr "Vyžadováno"
+#: mod/photos.php:655
+msgid "a photo"
+msgstr "fotografie"
+
+#: mod/photos.php:655
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s byl označen v %2$s uživatelem %3$s"
 
-#: mod/profiles.php:718
+#: mod/photos.php:757
+msgid "Image upload didn't complete, please try again"
+msgstr "Nahrávání obrázku nebylo dokončeno, zkuste to prosím znovu"
+
+#: mod/photos.php:760
+msgid "Image file is missing"
+msgstr "Chybí soubor obrázku"
+
+#: mod/photos.php:765
 msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "Toto je váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu."
+"Server can't accept new file upload at this time, please contact your "
+"administrator"
+msgstr "Server v tuto chvíli nemůže akceptovat nové nahrané soubory, prosím kontaktujte Vašeho administrátora"
 
-#: mod/profiles.php:719
-msgid "Your Full Name:"
-msgstr "Vaše celé jméno:"
+#: mod/photos.php:791
+msgid "Image file is empty."
+msgstr "Soubor obrázku je prázdný."
 
-#: mod/profiles.php:720
-msgid "Title/Description:"
-msgstr "Název / Popis:"
+#: mod/photos.php:928
+msgid "No photos selected"
+msgstr "Není vybrána žádná fotografie"
 
-#: mod/profiles.php:723
-msgid "Street Address:"
-msgstr "Ulice:"
+#: mod/photos.php:1024 mod/videos.php:309
+msgid "Access to this item is restricted."
+msgstr "Přístup k této položce je omezen."
 
-#: mod/profiles.php:724
-msgid "Locality/City:"
-msgstr "Město:"
+#: mod/photos.php:1078
+msgid "Upload Photos"
+msgstr "Nahrání fotografií "
 
-#: mod/profiles.php:725
-msgid "Region/State:"
-msgstr "Region / stát:"
+#: mod/photos.php:1082 mod/photos.php:1144
+msgid "New album name: "
+msgstr "Název nového alba: "
 
-#: mod/profiles.php:726
-msgid "Postal/Zip Code:"
-msgstr "PSČ:"
+#: mod/photos.php:1083
+msgid "or existing album name: "
+msgstr "nebo stávající název alba: "
 
-#: mod/profiles.php:727
-msgid "Country:"
-msgstr "Země:"
+#: mod/photos.php:1084
+msgid "Do not show a status post for this upload"
+msgstr "Nezobrazovat stav pro tento upload"
 
-#: mod/profiles.php:731
-msgid "Who: (if applicable)"
-msgstr "Kdo: (pokud je možné)"
+#: mod/photos.php:1094 mod/photos.php:1443 mod/settings.php:1218
+msgid "Show to Groups"
+msgstr "Zobrazit ve Skupinách"
 
-#: mod/profiles.php:731
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Příklady: jan123, Jan Novák, jan@seznam.cz"
+#: mod/photos.php:1095 mod/photos.php:1444 mod/settings.php:1219
+msgid "Show to Contacts"
+msgstr "Zobrazit v Kontaktech"
 
-#: mod/profiles.php:732
-msgid "Since [date]:"
-msgstr "Od [data]:"
+#: mod/photos.php:1155
+msgid "Edit Album"
+msgstr "Edituj album"
 
-#: mod/profiles.php:734
-msgid "Tell us about yourself..."
-msgstr "Řekněte nám něco o sobě ..."
+#: mod/photos.php:1160
+msgid "Show Newest First"
+msgstr "Zobrazit nejprve nejnovější:"
 
-#: mod/profiles.php:735
-msgid "XMPP (Jabber) address:"
-msgstr ""
+#: mod/photos.php:1162
+msgid "Show Oldest First"
+msgstr "Zobrazit nejprve nejstarší:"
 
-#: mod/profiles.php:735
-msgid ""
-"The XMPP address will be propagated to your contacts so that they can follow"
-" you."
-msgstr ""
+#: mod/photos.php:1183 mod/photos.php:1693
+msgid "View Photo"
+msgstr "Zobraz fotografii"
 
-#: mod/profiles.php:736
-msgid "Homepage URL:"
-msgstr "Odkaz na domovskou stránku:"
+#: mod/photos.php:1224
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen."
 
-#: mod/profiles.php:739
-msgid "Religious Views:"
-msgstr "Náboženské přesvědčení:"
+#: mod/photos.php:1226
+msgid "Photo not available"
+msgstr "Fotografie není k dispozici"
 
-#: mod/profiles.php:740
-msgid "Public Keywords:"
-msgstr "Veřejná klíčová slova:"
+#: mod/photos.php:1294
+msgid "View photo"
+msgstr "Zobrazit obrázek"
 
-#: mod/profiles.php:740
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)"
+#: mod/photos.php:1294
+msgid "Edit photo"
+msgstr "Editovat fotografii"
 
-#: mod/profiles.php:741
-msgid "Private Keywords:"
-msgstr "Soukromá klíčová slova:"
+#: mod/photos.php:1295
+msgid "Use as profile photo"
+msgstr "Použít jako profilovou fotografii"
 
-#: mod/profiles.php:741
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)"
+#: mod/photos.php:1301 src/Object/Post.php:149
+msgid "Private Message"
+msgstr "Soukromá zpráva"
 
-#: mod/profiles.php:744
-msgid "Musical interests"
-msgstr "Hudební vkus"
+#: mod/photos.php:1321
+msgid "View Full Size"
+msgstr "Zobrazit v plné velikosti"
 
-#: mod/profiles.php:745
-msgid "Books, literature"
-msgstr "Knihy, literatura"
+#: mod/photos.php:1408
+msgid "Tags: "
+msgstr "Štítky: "
 
-#: mod/profiles.php:746
-msgid "Television"
-msgstr "Televize"
+#: mod/photos.php:1411
+msgid "[Remove any tag]"
+msgstr "[Odstranit všechny štítky]"
 
-#: mod/profiles.php:747
-msgid "Film/dance/culture/entertainment"
-msgstr "Film/tanec/kultura/zábava"
+#: mod/photos.php:1426
+msgid "New album name"
+msgstr "Nové jméno alba"
 
-#: mod/profiles.php:748
-msgid "Hobbies/Interests"
-msgstr "Koníčky/zájmy"
+#: mod/photos.php:1427
+msgid "Caption"
+msgstr "Titulek"
 
-#: mod/profiles.php:749
-msgid "Love/romance"
-msgstr "Láska/romantika"
+#: mod/photos.php:1428
+msgid "Add a Tag"
+msgstr "Přidat štítek"
 
-#: mod/profiles.php:750
-msgid "Work/employment"
-msgstr "Práce/zaměstnání"
+#: mod/photos.php:1428
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: mod/profiles.php:751
-msgid "School/education"
-msgstr "Škola/vzdělání"
+#: mod/photos.php:1429
+msgid "Do not rotate"
+msgstr "Neotáčet"
 
-#: mod/profiles.php:752
-msgid "Contact information and Social Networks"
-msgstr "Kontaktní informace a sociální sítě"
+#: mod/photos.php:1430
+msgid "Rotate CW (right)"
+msgstr "Rotovat po směru hodinových ručiček (doprava)"
 
-#: mod/profiles.php:794
-msgid "Edit/Manage Profiles"
-msgstr "Upravit / Spravovat profily"
+#: mod/photos.php:1431
+msgid "Rotate CCW (left)"
+msgstr "Rotovat proti směru hodinových ručiček (doleva)"
 
-#: mod/allfriends.php:43
-msgid "No friends to display."
-msgstr "Žádní přátelé k zobrazení"
+#: mod/photos.php:1465 src/Object/Post.php:304
+msgid "I like this (toggle)"
+msgstr "Líbí se mi to (přepínač)"
 
-#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "Přístup na tento profil byl omezen."
+#: mod/photos.php:1466 src/Object/Post.php:305
+msgid "I don't like this (toggle)"
+msgstr "Nelíbí se mi to (přepínač)"
 
-#: mod/cal.php:276 mod/events.php:380
-msgid "View"
-msgstr ""
+#: mod/photos.php:1484 mod/photos.php:1523 mod/photos.php:1596
+#: src/Object/Post.php:407 src/Object/Post.php:803
+msgid "Comment"
+msgstr "Okomentovat"
 
-#: mod/cal.php:277 mod/events.php:382
-msgid "Previous"
-msgstr "Předchozí"
+#: mod/photos.php:1628
+msgid "Map"
+msgstr "Mapa"
 
-#: mod/cal.php:278 mod/events.php:383 mod/install.php:231
-msgid "Next"
-msgstr "Dále"
+#: mod/photos.php:1699 mod/videos.php:387
+msgid "View Album"
+msgstr "Zobrazit album"
 
-#: mod/cal.php:287 mod/events.php:392
-msgid "list"
-msgstr ""
+#: mod/profile.php:37 src/Model/Profile.php:118
+msgid "Requested profile is not available."
+msgstr "Požadovaný profil není k dispozici."
 
-#: mod/cal.php:297
-msgid "User not found"
-msgstr ""
+#: mod/profile.php:78 mod/profile.php:81 src/Protocol/OStatus.php:1250
+#, php-format
+msgid "%s's timeline"
+msgstr "Časová osa %s"
 
-#: mod/cal.php:313
-msgid "This calendar format is not supported"
-msgstr ""
+#: mod/profile.php:79 src/Protocol/OStatus.php:1251
+#, php-format
+msgid "%s's posts"
+msgstr "Příspěvky %s"
 
-#: mod/cal.php:315
-msgid "No exportable data found"
-msgstr ""
+#: mod/profile.php:80 src/Protocol/OStatus.php:1252
+#, php-format
+msgid "%s's comments"
+msgstr "Komentáře %s"
 
-#: mod/cal.php:330
-msgid "calendar"
-msgstr ""
+#: mod/profile.php:195
+msgid "Tips for New Members"
+msgstr "Tipy pro nové členy"
 
-#: mod/common.php:86
-msgid "No contacts in common."
-msgstr "Žádné společné kontakty."
+#: mod/profiles.php:58
+msgid "Profile deleted."
+msgstr "Profil smazán."
 
-#: mod/common.php:134 mod/contacts.php:863
-msgid "Common Friends"
-msgstr "Společní přátelé"
+#: mod/profiles.php:74 mod/profiles.php:110
+msgid "Profile-"
+msgstr "Profil-"
 
-#: mod/community.php:27
-msgid "Not available."
-msgstr "Není k dispozici."
+#: mod/profiles.php:93 mod/profiles.php:132
+msgid "New profile created."
+msgstr "Nový profil vytvořen."
 
-#: mod/directory.php:197 view/theme/vier/theme.php:201
-msgid "Global Directory"
-msgstr "Globální adresář"
+#: mod/profiles.php:116
+msgid "Profile unavailable to clone."
+msgstr "Profil není možné naklonovat."
 
-#: mod/directory.php:199
-msgid "Find on this site"
-msgstr "Nalézt na tomto webu"
+#: mod/profiles.php:206
+msgid "Profile Name is required."
+msgstr "Jméno profilu je povinné."
 
-#: mod/directory.php:201
-msgid "Results for:"
-msgstr ""
+#: mod/profiles.php:347
+msgid "Marital Status"
+msgstr "Rodinný Stav"
 
-#: mod/directory.php:203
-msgid "Site Directory"
-msgstr "Adresář serveru"
+#: mod/profiles.php:351
+msgid "Romantic Partner"
+msgstr "Romatický partner"
 
-#: mod/directory.php:210
-msgid "No entries (some entries may be hidden)."
-msgstr "Žádné záznamy (některé položky mohou být skryty)."
+#: mod/profiles.php:363
+msgid "Work/Employment"
+msgstr "Práce/Zaměstnání"
 
-#: mod/dirfind.php:36
-#, php-format
-msgid "People Search - %s"
-msgstr "Vyhledávání lidí - %s"
+#: mod/profiles.php:366
+msgid "Religion"
+msgstr "Náboženství"
 
-#: mod/dirfind.php:47
-#, php-format
-msgid "Forum Search - %s"
-msgstr ""
+#: mod/profiles.php:370
+msgid "Political Views"
+msgstr "Politické přesvědčení"
 
-#: mod/dirfind.php:240 mod/match.php:107
-msgid "No matches"
-msgstr "Žádné shody"
+#: mod/profiles.php:374
+msgid "Gender"
+msgstr "Pohlaví"
 
-#: mod/display.php:473
-msgid "Item has been removed."
-msgstr "Položka byla odstraněna."
+#: mod/profiles.php:378
+msgid "Sexual Preference"
+msgstr "Sexuální orientace"
 
-#: mod/events.php:95 mod/events.php:97
-msgid "Event can not end before it has started."
-msgstr "Událost nemůže končit dříve, než začala."
+#: mod/profiles.php:382
+msgid "XMPP"
+msgstr "XMPP"
 
-#: mod/events.php:104 mod/events.php:106
-msgid "Event title and start time are required."
-msgstr "Název události a datum začátku jsou vyžadovány."
+#: mod/profiles.php:386
+msgid "Homepage"
+msgstr "Domácí stránka"
 
-#: mod/events.php:381
-msgid "Create New Event"
-msgstr "Vytvořit novou událost"
+#: mod/profiles.php:390 mod/profiles.php:593
+msgid "Interests"
+msgstr "Zájmy"
 
-#: mod/events.php:482
-msgid "Event details"
-msgstr "Detaily události"
+#: mod/profiles.php:401 mod/profiles.php:589
+msgid "Location"
+msgstr "Umístění"
 
-#: mod/events.php:483
-msgid "Starting date and Title are required."
-msgstr "Počáteční datum a Název jsou vyžadovány."
+#: mod/profiles.php:483
+msgid "Profile updated."
+msgstr "Profil aktualizován."
 
-#: mod/events.php:484 mod/events.php:485
-msgid "Event Starts:"
-msgstr "Událost začíná:"
+#: mod/profiles.php:540
+msgid "Hide contacts and friends:"
+msgstr "Skrýt kontakty a přátele:"
 
-#: mod/events.php:486 mod/events.php:502
-msgid "Finish date/time is not known or not relevant"
-msgstr "Datum/čas konce není zadán nebo není relevantní"
+#: mod/profiles.php:545
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Skrýt u tohoto profilu Vaše kontakty / seznam přátel před před dalšími uživateli zobrazující si tento profil?"
 
-#: mod/events.php:488 mod/events.php:489
-msgid "Event Finishes:"
-msgstr "Akce končí:"
+#: mod/profiles.php:565
+msgid "Show more profile fields:"
+msgstr ""
 
-#: mod/events.php:490 mod/events.php:503
-msgid "Adjust for viewer timezone"
-msgstr "Nastavit časové pásmo pro uživatele s právem pro čtení"
+#: mod/profiles.php:577
+msgid "Profile Actions"
+msgstr "Akce profilu"
 
-#: mod/events.php:492
-msgid "Description:"
-msgstr "Popis:"
+#: mod/profiles.php:578
+msgid "Edit Profile Details"
+msgstr "Upravit podrobnosti profilu "
 
-#: mod/events.php:496 mod/events.php:498
-msgid "Title:"
-msgstr "Název:"
+#: mod/profiles.php:580
+msgid "Change Profile Photo"
+msgstr "Změna Profilové fotky"
 
-#: mod/events.php:499 mod/events.php:500
-msgid "Share this event"
-msgstr "Sdílet tuto událost"
+#: mod/profiles.php:581
+msgid "View this profile"
+msgstr "Zobrazit tento profil"
 
-#: mod/maintenance.php:9
-msgid "System down for maintenance"
-msgstr "Systém vypnut z důvodů údržby"
+#: mod/profiles.php:582 mod/profiles.php:677 src/Model/Profile.php:389
+msgid "Edit visibility"
+msgstr "Upravit viditelnost"
 
-#: mod/match.php:33
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do Vašeho výchozího profilu."
+#: mod/profiles.php:583
+msgid "Create a new profile using these settings"
+msgstr "Vytvořit nový profil pomocí tohoto nastavení"
 
-#: mod/match.php:86
-msgid "is interested in:"
-msgstr "zajímá se o:"
+#: mod/profiles.php:584
+msgid "Clone this profile"
+msgstr "Klonovat tento profil"
 
-#: mod/match.php:100
-msgid "Profile Match"
-msgstr "Shoda profilu"
+#: mod/profiles.php:585
+msgid "Delete this profile"
+msgstr "Smazat tento profil"
 
-#: mod/profile.php:179
-msgid "Tips for New Members"
-msgstr "Tipy pro nové členy"
+#: mod/profiles.php:587
+msgid "Basic information"
+msgstr "Základní informace"
 
-#: mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Opravdu chcete smazat tento návrh?"
+#: mod/profiles.php:588
+msgid "Profile picture"
+msgstr "Profilový obrázek"
 
-#: mod/suggest.php:71
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin."
+#: mod/profiles.php:590
+msgid "Preferences"
+msgstr "Nastavení"
 
-#: mod/suggest.php:84 mod/suggest.php:104
-msgid "Ignore/Hide"
-msgstr "Ignorovat / skrýt"
+#: mod/profiles.php:591
+msgid "Status information"
+msgstr "Statusové informace"
 
-#: mod/update_community.php:19 mod/update_display.php:23
-#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
-msgid "[Embedded content - reload page to view]"
-msgstr "[Vložený obsah - obnovte stránku pro zobrazení]"
+#: mod/profiles.php:592
+msgid "Additional information"
+msgstr "Dodatečné informace"
 
-#: mod/photos.php:88 mod/photos.php:1856
-msgid "Recent Photos"
-msgstr "Aktuální fotografie"
+#: mod/profiles.php:595
+msgid "Relation"
+msgstr "Vztah"
 
-#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858
-msgid "Upload New Photos"
-msgstr "Nahrát nové fotografie"
+#: mod/profiles.php:596 src/Util/Temporal.php:81 src/Util/Temporal.php:83
+msgid "Miscellaneous"
+msgstr "Různé"
 
-#: mod/photos.php:105 mod/settings.php:36
-msgid "everybody"
-msgstr "Žádost o připojení selhala nebo byla zrušena."
+#: mod/profiles.php:599
+msgid "Your Gender:"
+msgstr "Vaše pohlaví:"
 
-#: mod/photos.php:169
-msgid "Contact information unavailable"
-msgstr "Kontakt byl zablokován"
+#: mod/profiles.php:600
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Rodinný stav:"
 
-#: mod/photos.php:190
-msgid "Album not found."
-msgstr "Album nenalezeno."
+#: mod/profiles.php:601 src/Model/Profile.php:780
+msgid "Sexual Preference:"
+msgstr "Sexuální preference:"
 
-#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227
-msgid "Delete Album"
-msgstr "Smazat album"
+#: mod/profiles.php:602
+msgid "Example: fishing photography software"
+msgstr "Příklad: fishing photography software"
 
-#: mod/photos.php:230
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Opravdu chcete smazat toto foto album a všechny jeho fotografie?"
+#: mod/profiles.php:607
+msgid "Profile Name:"
+msgstr "Jméno profilu:"
 
-#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540
-msgid "Delete Photo"
-msgstr "Smazat fotografii"
+#: mod/profiles.php:609
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Toto je váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu."
 
-#: mod/photos.php:317
-msgid "Do you really want to delete this photo?"
-msgstr "Opravdu chcete smazat tuto fotografii?"
+#: mod/profiles.php:610
+msgid "Your Full Name:"
+msgstr "Vaše celé jméno:"
 
-#: mod/photos.php:688
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s byl označen v %2$s uživatelem %3$s"
+#: mod/profiles.php:611
+msgid "Title/Description:"
+msgstr "Název / Popis:"
 
-#: mod/photos.php:688
-msgid "a photo"
-msgstr "fotografie"
+#: mod/profiles.php:614
+msgid "Street Address:"
+msgstr "Ulice:"
 
-#: mod/photos.php:794
-msgid "Image file is empty."
-msgstr "Soubor obrázku je prázdný."
+#: mod/profiles.php:615
+msgid "Locality/City:"
+msgstr "Lokalita/Město:"
 
-#: mod/photos.php:954
-msgid "No photos selected"
-msgstr "Není vybrána žádná fotografie"
+#: mod/profiles.php:616
+msgid "Region/State:"
+msgstr "Region / stát:"
 
-#: mod/photos.php:1054 mod/videos.php:305
-msgid "Access to this item is restricted."
-msgstr "Přístup k této položce je omezen."
+#: mod/profiles.php:617
+msgid "Postal/Zip Code:"
+msgstr "PSČ:"
 
-#: mod/photos.php:1114
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "Použil jste %1$.2f Mbajtů z %2$.2f Mbajtů úložiště fotografií."
+#: mod/profiles.php:618
+msgid "Country:"
+msgstr "Země:"
 
-#: mod/photos.php:1148
-msgid "Upload Photos"
-msgstr "Nahrání fotografií "
+#: mod/profiles.php:619 src/Util/Temporal.php:149
+msgid "Age: "
+msgstr "Věk: "
 
-#: mod/photos.php:1152 mod/photos.php:1222
-msgid "New album name: "
-msgstr "Název nového alba: "
+#: mod/profiles.php:622
+msgid "Who: (if applicable)"
+msgstr "Kdo: (pokud je možné)"
 
-#: mod/photos.php:1153
-msgid "or existing album name: "
-msgstr "nebo stávající název alba: "
+#: mod/profiles.php:622
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Příklady: jan123, Jan Novák, jan@seznam.cz"
 
-#: mod/photos.php:1154
-msgid "Do not show a status post for this upload"
-msgstr "Nezobrazovat stav pro tento upload"
+#: mod/profiles.php:623
+msgid "Since [date]:"
+msgstr "Od [data]:"
 
-#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300
-msgid "Show to Groups"
-msgstr "Zobrazit ve Skupinách"
+#: mod/profiles.php:625
+msgid "Tell us about yourself..."
+msgstr "Řekněte nám něco o sobě ..."
 
-#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301
-msgid "Show to Contacts"
-msgstr "Zobrazit v Kontaktech"
+#: mod/profiles.php:626
+msgid "XMPP (Jabber) address:"
+msgstr "Adresa pro XMPP (Jabber)"
 
-#: mod/photos.php:1167
-msgid "Private Photo"
-msgstr "Soukromé Fotografie"
+#: mod/profiles.php:626
+msgid ""
+"The XMPP address will be propagated to your contacts so that they can follow"
+" you."
+msgstr "Adresa XMPP bude rozšířena mezi Vašimi kontakty, aby vás mohly sledovat."
 
-#: mod/photos.php:1168
-msgid "Public Photo"
-msgstr "Veřejné Fotografie"
+#: mod/profiles.php:627
+msgid "Homepage URL:"
+msgstr "Odkaz na domovskou stránku:"
 
-#: mod/photos.php:1234
-msgid "Edit Album"
-msgstr "Edituj album"
+#: mod/profiles.php:628 src/Model/Profile.php:788
+msgid "Hometown:"
+msgstr "Rodné město"
 
-#: mod/photos.php:1240
-msgid "Show Newest First"
-msgstr "Zobrazit nejprve nejnovější:"
+#: mod/profiles.php:629 src/Model/Profile.php:796
+msgid "Political Views:"
+msgstr "Politické přesvědčení:"
 
-#: mod/photos.php:1242
-msgid "Show Oldest First"
-msgstr "Zobrazit nejprve nejstarší:"
+#: mod/profiles.php:630
+msgid "Religious Views:"
+msgstr "Náboženské přesvědčení:"
 
-#: mod/photos.php:1269 mod/photos.php:1841
-msgid "View Photo"
-msgstr "Zobraz fotografii"
+#: mod/profiles.php:631
+msgid "Public Keywords:"
+msgstr "Veřejná klíčová slova:"
 
-#: mod/photos.php:1315
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen."
+#: mod/profiles.php:631
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)"
 
-#: mod/photos.php:1317
-msgid "Photo not available"
-msgstr "Fotografie není k dispozici"
+#: mod/profiles.php:632
+msgid "Private Keywords:"
+msgstr "Soukromá klíčová slova:"
 
-#: mod/photos.php:1372
-msgid "View photo"
-msgstr "Zobrazit obrázek"
+#: mod/profiles.php:632
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)"
 
-#: mod/photos.php:1372
-msgid "Edit photo"
-msgstr "Editovat fotografii"
+#: mod/profiles.php:633 src/Model/Profile.php:812
+msgid "Likes:"
+msgstr "Líbí se:"
 
-#: mod/photos.php:1373
-msgid "Use as profile photo"
-msgstr "Použít jako profilovou fotografii"
+#: mod/profiles.php:634 src/Model/Profile.php:816
+msgid "Dislikes:"
+msgstr "Nelibí se:"
 
-#: mod/photos.php:1398
-msgid "View Full Size"
-msgstr "Zobrazit v plné velikosti"
+#: mod/profiles.php:635
+msgid "Musical interests"
+msgstr "Hudební vkus"
 
-#: mod/photos.php:1484
-msgid "Tags: "
-msgstr "Štítky: "
+#: mod/profiles.php:636
+msgid "Books, literature"
+msgstr "Knihy, literatura"
 
-#: mod/photos.php:1487
-msgid "[Remove any tag]"
-msgstr "[Odstranit všechny štítky]"
+#: mod/profiles.php:637
+msgid "Television"
+msgstr "Televize"
 
-#: mod/photos.php:1526
-msgid "New album name"
-msgstr "Nové jméno alba"
+#: mod/profiles.php:638
+msgid "Film/dance/culture/entertainment"
+msgstr "Film/tanec/kultura/zábava"
 
-#: mod/photos.php:1527
-msgid "Caption"
-msgstr "Titulek"
+#: mod/profiles.php:639
+msgid "Hobbies/Interests"
+msgstr "Koníčky/zájmy"
 
-#: mod/photos.php:1528
-msgid "Add a Tag"
-msgstr "Přidat štítek"
+#: mod/profiles.php:640
+msgid "Love/romance"
+msgstr "Láska/romance"
 
-#: mod/photos.php:1528
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+#: mod/profiles.php:641
+msgid "Work/employment"
+msgstr "Práce/zaměstnání"
 
-#: mod/photos.php:1529
-msgid "Do not rotate"
-msgstr "Neotáčet"
+#: mod/profiles.php:642
+msgid "School/education"
+msgstr "Škola/vzdělání"
 
-#: mod/photos.php:1530
-msgid "Rotate CW (right)"
-msgstr "Rotovat po směru hodinových ručiček (doprava)"
+#: mod/profiles.php:643
+msgid "Contact information and Social Networks"
+msgstr "Kontaktní informace a sociální sítě"
 
-#: mod/photos.php:1531
-msgid "Rotate CCW (left)"
-msgstr "Rotovat proti směru hodinových ručiček (doleva)"
+#: mod/profiles.php:674 src/Model/Profile.php:385
+msgid "Profile Image"
+msgstr "Profilový obrázek"
 
-#: mod/photos.php:1546
-msgid "Private photo"
-msgstr "Soukromé fotografie"
+#: mod/profiles.php:676 src/Model/Profile.php:388
+msgid "visible to everybody"
+msgstr "viditelné pro všechny"
 
-#: mod/photos.php:1547
-msgid "Public photo"
-msgstr "Veřejné fotografie"
+#: mod/profiles.php:683
+msgid "Edit/Manage Profiles"
+msgstr "Upravit/Spravovat profily"
 
-#: mod/photos.php:1770
-msgid "Map"
-msgstr ""
+#: mod/profiles.php:684 src/Model/Profile.php:375 src/Model/Profile.php:397
+msgid "Change profile photo"
+msgstr "Změnit profilovou fotografii"
 
-#: mod/photos.php:1847 mod/videos.php:387
-msgid "View Album"
-msgstr "Zobrazit album"
+#: mod/profiles.php:685 src/Model/Profile.php:376
+msgid "Create New Profile"
+msgstr "Vytvořit nový profil"
 
-#: mod/register.php:93
+#: mod/register.php:100
 msgid ""
 "Registration successful. Please check your email for further instructions."
 msgstr "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce."
 
-#: mod/register.php:98
+#: mod/register.php:104
 #, 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 "Nepovedlo se odeslat emailovou zprávu. Zde jsou detaily Vašeho účtu:<br> login: %s<br> heslo: %s<br><br>Své heslo můžete změnit po přihlášení."
+msgstr "Nepovedlo se odeslat emailovou zprávu. Zde jsou detaily Vašeho účtu:<br> přihlášení: %s<br> heslo: %s<br><br>Své heslo si můžete změnit po přihlášení."
 
-#: mod/register.php:105
+#: mod/register.php:111
 msgid "Registration successful."
-msgstr ""
+msgstr "Registrace byla úspěšná."
 
-#: mod/register.php:111
+#: mod/register.php:116
 msgid "Your registration can not be processed."
 msgstr "Vaši registraci nelze zpracovat."
 
-#: mod/register.php:160
+#: mod/register.php:163
 msgid "Your registration is pending approval by the site owner."
 msgstr "Vaše registrace čeká na schválení vlastníkem serveru."
 
-#: mod/register.php:226
+#: mod/register.php:221
 msgid ""
 "You may (optionally) fill in this form via OpenID by supplying your OpenID "
 "and clicking 'Register'."
-msgstr "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknutete na tlačítko 'Zaregistrovat'."
+msgstr "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknutete na tlačítko \"Zaregistrovat\"."
 
-#: mod/register.php:227
+#: mod/register.php:222
 msgid ""
 "If you are not familiar with OpenID, please leave that field blank and fill "
 "in the rest of the items."
 msgstr "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky."
 
-#: mod/register.php:228
+#: mod/register.php:223
 msgid "Your OpenID (optional): "
 msgstr "Vaše OpenID (nepovinné): "
 
-#: mod/register.php:242
+#: mod/register.php:235
 msgid "Include your profile in member directory?"
 msgstr "Toto je Váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu."
 
-#: mod/register.php:267
+#: mod/register.php:262
 msgid "Note for the admin"
-msgstr ""
+msgstr "Poznámka pro administrátora"
 
-#: mod/register.php:267
+#: mod/register.php:262
 msgid "Leave a message for the admin, why you want to join this node"
 msgstr ""
 
-#: mod/register.php:268
+#: mod/register.php:263
 msgid "Membership on this site is by invitation only."
 msgstr "Členství na tomto webu je pouze na pozvání."
 
-#: mod/register.php:269
-msgid "Your invitation ID: "
-msgstr "Vaše pozvání ID:"
-
-#: mod/register.php:272 mod/admin.php:956
-msgid "Registration"
-msgstr "Registrace"
+#: mod/register.php:264
+msgid "Your invitation code: "
+msgstr ""
 
-#: mod/register.php:280
+#: mod/register.php:273
 msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
 msgstr ""
 
-#: mod/register.php:281
-msgid "Your Email Address: "
-msgstr "Vaše e-mailová adresa:"
+#: mod/register.php:274
+msgid ""
+"Your Email Address: (Initial information will be send there, so this has to "
+"be an existing address.)"
+msgstr ""
 
-#: mod/register.php:283 mod/settings.php:1271
+#: mod/register.php:276 mod/settings.php:1190
 msgid "New Password:"
 msgstr "Nové heslo:"
 
-#: mod/register.php:283
+#: mod/register.php:276
 msgid "Leave empty for an auto generated password."
 msgstr "Ponechte prázdné pro automatické vygenerovaní hesla."
 
-#: mod/register.php:284 mod/settings.php:1272
+#: mod/register.php:277 mod/settings.php:1191
 msgid "Confirm:"
 msgstr "Potvrďte:"
 
-#: mod/register.php:285
+#: mod/register.php:278
+#, 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@$sitename</strong>'."
-msgstr "Vyberte přezdívku k profilu. Ta musí začít s textovým znakem. Vaše profilová adresa na tomto webu pak bude \"<strong>přezdívka@$sitename</strong>\"."
+"profile address on this site will then be '<strong>nickname@%s</strong>'."
+msgstr ""
 
-#: mod/register.php:286
+#: mod/register.php:279
 msgid "Choose a nickname: "
 msgstr "Vyberte přezdívku:"
 
-#: mod/register.php:296
+#: mod/register.php:282 src/Content/Nav.php:128 src/Module/Login.php:284
+msgid "Register"
+msgstr "Registrovat"
+
+#: mod/register.php:289
 msgid "Import your profile to this friendica instance"
 msgstr "Import Vašeho profilu do této friendica instance"
 
-#: mod/settings.php:43 mod/admin.php:1396
+#: mod/removeme.php:45
+msgid "User deleted their account"
+msgstr "Uživatel si smazal účet"
+
+#: mod/removeme.php:46
+msgid ""
+"On your Friendica node an user deleted their account. Please ensure that "
+"their data is removed from the backups."
+msgstr "Uživatel na vašem serveru Friendica smazal svůj účet. Prosím ujistěte se, ře jsou jeho data odstraněna ze záloh dat."
+
+#: mod/removeme.php:47
+#, php-format
+msgid "The user id is %d"
+msgstr "Uživatelské ID je %d"
+
+#: mod/removeme.php:78 mod/removeme.php:81
+msgid "Remove My Account"
+msgstr "Odstranit můj účet"
+
+#: mod/removeme.php:79
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit."
+
+#: mod/removeme.php:80
+msgid "Please enter your password for verification:"
+msgstr "Prosím, zadejte své heslo pro ověření:"
+
+#: mod/search.php:105
+msgid "Only logged in users are permitted to perform a search."
+msgstr "Pouze přihlášení uživatelé mohou prohledávat tento server."
+
+#: mod/search.php:129
+msgid "Too Many Requests"
+msgstr "Příliš mnoho požadavků"
+
+#: mod/search.php:130
+msgid "Only one search per minute is permitted for not logged in users."
+msgstr "Nepřihlášení uživatelé mohou vyhledávat pouze jednou za minutu."
+
+#: mod/search.php:234
+#, php-format
+msgid "Items tagged with: %s"
+msgstr "Položky označené s: %s"
+
+#: mod/settings.php:56
 msgid "Account"
 msgstr "Účet"
 
-#: mod/settings.php:52 mod/admin.php:160
-msgid "Additional features"
-msgstr "Další funkčnosti"
-
-#: mod/settings.php:60
+#: mod/settings.php:73
 msgid "Display"
 msgstr "Zobrazení"
 
-#: mod/settings.php:67 mod/settings.php:886
+#: mod/settings.php:80 mod/settings.php:834
 msgid "Social Networks"
 msgstr "Sociální sítě"
 
-#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582
-msgid "Plugins"
-msgstr "Pluginy"
+#: mod/settings.php:94 src/Content/Nav.php:205
+msgid "Delegations"
+msgstr "Delegace"
 
-#: mod/settings.php:88
+#: mod/settings.php:101
 msgid "Connected apps"
 msgstr "Propojené aplikace"
 
-#: mod/settings.php:102
+#: mod/settings.php:115
 msgid "Remove account"
 msgstr "Odstranit účet"
 
-#: mod/settings.php:155
+#: mod/settings.php:167
 msgid "Missing some important data!"
 msgstr "Chybí některé důležité údaje!"
 
-#: mod/settings.php:158 mod/settings.php:704 mod/contacts.php:804
-msgid "Update"
-msgstr "Aktualizace"
-
-#: mod/settings.php:269
+#: mod/settings.php:278
 msgid "Failed to connect with email account using the settings provided."
 msgstr "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení."
 
-#: mod/settings.php:274
+#: mod/settings.php:283
 msgid "Email settings updated."
 msgstr "Nastavení e-mailu aktualizována."
 
-#: mod/settings.php:289
+#: mod/settings.php:299
 msgid "Features updated"
 msgstr "Aktualizované funkčnosti"
 
-#: mod/settings.php:359
+#: mod/settings.php:372
 msgid "Relocate message has been send to your contacts"
 msgstr "Správa o změně umístění byla odeslána vašim kontaktům"
 
-#: mod/settings.php:378
+#: mod/settings.php:384 src/Model/User.php:340
+msgid "Passwords do not match. Password unchanged."
+msgstr "Hesla se neshodují. Heslo nebylo změněno."
+
+#: mod/settings.php:389
 msgid "Empty passwords are not allowed. Password unchanged."
 msgstr "Prázdné hesla nejsou povolena. Heslo nebylo změněno."
 
-#: mod/settings.php:386
+#: mod/settings.php:394 src/Core/Console/NewPassword.php:87
+msgid ""
+"The new password has been exposed in a public data dump, please choose "
+"another."
+msgstr ""
+
+#: mod/settings.php:400
 msgid "Wrong password."
 msgstr "Špatné heslo."
 
-#: mod/settings.php:397
+#: mod/settings.php:407 src/Core/Console/NewPassword.php:94
 msgid "Password changed."
 msgstr "Heslo bylo změněno."
 
-#: mod/settings.php:399
+#: mod/settings.php:409 src/Core/Console/NewPassword.php:91
 msgid "Password update failed. Please try again."
 msgstr "Aktualizace hesla se nezdařila. Zkuste to prosím znovu."
 
-#: mod/settings.php:479
+#: mod/settings.php:493
 msgid " Please use a shorter name."
 msgstr "Prosím použijte kratší jméno."
 
-#: mod/settings.php:481
+#: mod/settings.php:496
 msgid " Name too short."
 msgstr "Jméno je příliš krátké."
 
-#: mod/settings.php:490
+#: mod/settings.php:504
 msgid "Wrong Password"
 msgstr "Špatné heslo"
 
-#: mod/settings.php:495
-msgid " Not valid email."
-msgstr "Neplatný e-mail."
+#: mod/settings.php:509
+msgid "Invalid email."
+msgstr ""
 
-#: mod/settings.php:501
-msgid " Cannot change to that email."
-msgstr "Nelze provést změnu na tento e-mail."
+#: mod/settings.php:516
+msgid "Cannot change to that email."
+msgstr ""
 
-#: mod/settings.php:557
+#: mod/settings.php:566
 msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr "Soukromé fórum nemá nastaveno zabezpečení. Používá se defaultní soukromá skupina."
 
-#: mod/settings.php:561
+#: mod/settings.php:569
 msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr "Soukromé fórum nemá nastaveno zabezpečení a ani žádnou defaultní soukromou skupinu."
 
-#: mod/settings.php:601
+#: mod/settings.php:609
 msgid "Settings updated."
 msgstr "Nastavení aktualizováno."
 
-#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739
+#: mod/settings.php:668 mod/settings.php:694 mod/settings.php:728
 msgid "Add application"
 msgstr "Přidat aplikaci"
 
-#: mod/settings.php:678 mod/settings.php:788 mod/settings.php:835
-#: mod/settings.php:904 mod/settings.php:996 mod/settings.php:1264
-#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905
-#: mod/admin.php:2055
-msgid "Save Settings"
-msgstr "Uložit Nastavení"
-
-#: mod/settings.php:681 mod/settings.php:707
+#: mod/settings.php:672 mod/settings.php:698
 msgid "Consumer Key"
 msgstr "Consumer Key"
 
-#: mod/settings.php:682 mod/settings.php:708
+#: mod/settings.php:673 mod/settings.php:699
 msgid "Consumer Secret"
 msgstr "Consumer Secret"
 
-#: mod/settings.php:683 mod/settings.php:709
+#: mod/settings.php:674 mod/settings.php:700
 msgid "Redirect"
 msgstr "Přesměrování"
 
-#: mod/settings.php:684 mod/settings.php:710
+#: mod/settings.php:675 mod/settings.php:701
 msgid "Icon url"
 msgstr "URL ikony"
 
-#: mod/settings.php:695
+#: mod/settings.php:686
 msgid "You can't edit this application."
 msgstr "Nemůžete editovat tuto aplikaci."
 
-#: mod/settings.php:738
+#: mod/settings.php:727
 msgid "Connected Apps"
 msgstr "Připojené aplikace"
 
-#: mod/settings.php:742
+#: mod/settings.php:729 src/Object/Post.php:155 src/Object/Post.php:157
+msgid "Edit"
+msgstr "Upravit"
+
+#: mod/settings.php:731
 msgid "Client key starts with"
 msgstr "Klienský klíč začíná"
 
-#: mod/settings.php:743
+#: mod/settings.php:732
 msgid "No name"
 msgstr "Bez názvu"
 
-#: mod/settings.php:744
+#: mod/settings.php:733
 msgid "Remove authorization"
 msgstr "Odstranit oprávnění"
 
-#: mod/settings.php:756
-msgid "No Plugin settings configured"
-msgstr "Žádný doplněk není nastaven"
-
-#: mod/settings.php:764
-msgid "Plugin Settings"
-msgstr "Nastavení doplňku"
-
-#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045
-msgid "Off"
-msgstr "Vypnuto"
+#: mod/settings.php:744
+msgid "No Addon settings configured"
+msgstr ""
 
-#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045
-msgid "On"
-msgstr "Zapnuto"
+#: mod/settings.php:753
+msgid "Addon Settings"
+msgstr ""
 
-#: mod/settings.php:786
+#: mod/settings.php:774
 msgid "Additional Features"
 msgstr "Další Funkčnosti"
 
-#: mod/settings.php:796 mod/settings.php:800
+#: mod/settings.php:797 src/Content/ContactSelector.php:83
+msgid "Diaspora"
+msgstr "Diaspora"
+
+#: mod/settings.php:797 mod/settings.php:798
+msgid "enabled"
+msgstr "povoleno"
+
+#: mod/settings.php:797 mod/settings.php:798
+msgid "disabled"
+msgstr "zakázáno"
+
+#: mod/settings.php:797 mod/settings.php:798
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
+msgstr "Vestavěná podpora pro připojení s %s je %s"
+
+#: mod/settings.php:798
+msgid "GNU Social (OStatus)"
+msgstr "GNU Social (OStatus)"
+
+#: mod/settings.php:829
+msgid "Email access is disabled on this site."
+msgstr "Přístup k elektronické poště je na tomto serveru zakázán."
+
+#: mod/settings.php:839
 msgid "General Social Media Settings"
 msgstr "General Social Media nastavení"
 
-#: mod/settings.php:806
+#: mod/settings.php:840
+msgid "Disable Content Warning"
+msgstr ""
+
+#: mod/settings.php:840
+msgid ""
+"Users on networks like Mastodon or Pleroma are able to set a content warning"
+" field which collapse their post by default. This disables the automatic "
+"collapsing and sets the content warning as the post title. Doesn't affect "
+"any other content filtering you eventually set up."
+msgstr ""
+
+#: mod/settings.php:841
 msgid "Disable intelligent shortening"
 msgstr "Vypnout inteligentní zkracování"
 
-#: mod/settings.php:808
+#: mod/settings.php:841
 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 "Normálně se systém snaží nalézt nejlepší link pro přidání zkrácených příspěvků. Pokud je tato volba aktivní, pak každý zkrácený příspěvek bude vždy ukazovat na originální friencika příspěvek"
 
-#: mod/settings.php:814
+#: mod/settings.php:842
 msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
-msgstr "Automaticky následovat jakékoliv GNU Social (OStatus) následníky/přispivatele"
+msgstr "Automaticky následovat jakékoliv GNU Social (OStatus) následníky/zmiňovatele"
 
-#: mod/settings.php:816
+#: mod/settings.php:842
 msgid ""
 "If you receive a message from an unknown OStatus user, this option decides "
 "what to do. If it is checked, a new contact will be created for every "
 "unknown user."
 msgstr ""
 
-#: mod/settings.php:822
+#: mod/settings.php:843
 msgid "Default group for OStatus contacts"
 msgstr ""
 
-#: mod/settings.php:828
+#: mod/settings.php:844
 msgid "Your legacy GNU Social account"
 msgstr ""
 
-#: mod/settings.php:830
+#: mod/settings.php:844
 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:833
+#: mod/settings.php:847
 msgid "Repair OStatus subscriptions"
 msgstr ""
 
-#: mod/settings.php:842 mod/settings.php:843
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr "Vestavěná podpora pro připojení s %s je %s"
-
-#: mod/settings.php:842 mod/settings.php:843
-msgid "enabled"
-msgstr "povoleno"
-
-#: mod/settings.php:842 mod/settings.php:843
-msgid "disabled"
-msgstr "zakázáno"
-
-#: mod/settings.php:843
-msgid "GNU Social (OStatus)"
-msgstr "GNU Social (OStatus)"
-
-#: mod/settings.php:879
-msgid "Email access is disabled on this site."
-msgstr "Přístup k elektronické poště je na tomto serveru zakázán."
-
-#: mod/settings.php:891
+#: mod/settings.php:851
 msgid "Email/Mailbox Setup"
 msgstr "Nastavení e-mailu"
 
-#: mod/settings.php:892
+#: mod/settings.php:852
 msgid ""
 "If you wish to communicate with email contacts using this service "
 "(optional), please specify how to connect to your mailbox."
 msgstr "Pokud chcete komunikovat pomocí této služby s Vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce."
 
-#: mod/settings.php:893
+#: mod/settings.php:853
 msgid "Last successful email check:"
 msgstr "Poslední úspěšná kontrola e-mailu:"
 
-#: mod/settings.php:895
+#: mod/settings.php:855
 msgid "IMAP server name:"
 msgstr "jméno IMAP serveru:"
 
-#: mod/settings.php:896
+#: mod/settings.php:856
 msgid "IMAP port:"
 msgstr "IMAP port:"
 
-#: mod/settings.php:897
+#: mod/settings.php:857
 msgid "Security:"
 msgstr "Zabezpečení:"
 
-#: mod/settings.php:897 mod/settings.php:902
+#: mod/settings.php:857 mod/settings.php:862
 msgid "None"
 msgstr "Žádný"
 
-#: mod/settings.php:898
+#: mod/settings.php:858
 msgid "Email login name:"
 msgstr "přihlašovací jméno k e-mailu:"
 
-#: mod/settings.php:899
+#: mod/settings.php:859
 msgid "Email password:"
 msgstr "heslo k Vašemu e-mailu:"
 
-#: mod/settings.php:900
+#: mod/settings.php:860
 msgid "Reply-to address:"
 msgstr "Odpovědět na adresu:"
 
-#: mod/settings.php:901
+#: mod/settings.php:861
 msgid "Send public posts to all email contacts:"
 msgstr "Poslat veřejné příspěvky na všechny e-mailové kontakty:"
 
-#: mod/settings.php:902
+#: mod/settings.php:862
 msgid "Action after import:"
 msgstr "Akce po importu:"
 
-#: mod/settings.php:902
+#: mod/settings.php:862 src/Content/Nav.php:193
+msgid "Mark as seen"
+msgstr "Označit jako přečtené"
+
+#: mod/settings.php:862
 msgid "Move to folder"
 msgstr "Přesunout do složky"
 
-#: mod/settings.php:903
+#: mod/settings.php:863
 msgid "Move to folder:"
 msgstr "Přesunout do složky:"
 
-#: mod/settings.php:934 mod/admin.php:862
-msgid "No special theme for mobile devices"
-msgstr "žádné speciální téma pro mobilní zařízení"
+#: mod/settings.php:906
+#, php-format
+msgid "%s - (Unsupported)"
+msgstr ""
 
-#: mod/settings.php:994
+#: mod/settings.php:908
+#, php-format
+msgid "%s - (Experimental)"
+msgstr "%s - (Experimentální)"
+
+#: mod/settings.php:951
 msgid "Display Settings"
 msgstr "Nastavení Zobrazení"
 
-#: mod/settings.php:1000 mod/settings.php:1023
+#: mod/settings.php:957 mod/settings.php:981
 msgid "Display Theme:"
-msgstr "Vybrat grafickou šablonu:"
+msgstr "Vybrat motiv:"
 
-#: mod/settings.php:1001
+#: mod/settings.php:958
 msgid "Mobile Theme:"
-msgstr "Téma pro mobilní zařízení:"
+msgstr "Mobilní motiv:"
 
-#: mod/settings.php:1002
+#: mod/settings.php:959
 msgid "Suppress warning of insecure networks"
 msgstr ""
 
-#: mod/settings.php:1002
+#: mod/settings.php:959
 msgid ""
 "Should the system suppress the warning that the current group contains "
 "members of networks that can't receive non public postings."
 msgstr ""
 
-#: mod/settings.php:1003
+#: mod/settings.php:960
 msgid "Update browser every xx seconds"
 msgstr "Aktualizovat prohlížeč každých xx sekund"
 
-#: mod/settings.php:1003
+#: mod/settings.php:960
 msgid "Minimum of 10 seconds. Enter -1 to disable it."
 msgstr ""
 
-#: mod/settings.php:1004
+#: mod/settings.php:961
 msgid "Number of items to display per page:"
 msgstr "Počet položek zobrazených na stránce:"
 
-#: mod/settings.php:1004 mod/settings.php:1005
+#: mod/settings.php:961 mod/settings.php:962
 msgid "Maximum of 100 items"
 msgstr "Maximum 100 položek"
 
-#: mod/settings.php:1005
+#: mod/settings.php:962
 msgid "Number of items to display per page when viewed from mobile device:"
 msgstr "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:"
 
-#: mod/settings.php:1006
+#: mod/settings.php:963
 msgid "Don't show emoticons"
 msgstr "Nezobrazovat emotikony"
 
-#: mod/settings.php:1007
+#: mod/settings.php:964
 msgid "Calendar"
 msgstr ""
 
-#: mod/settings.php:1008
+#: mod/settings.php:965
 msgid "Beginning of week:"
 msgstr ""
 
-#: mod/settings.php:1009
+#: mod/settings.php:966
 msgid "Don't show notices"
 msgstr "Nezobrazovat oznámění"
 
-#: mod/settings.php:1010
+#: mod/settings.php:967
 msgid "Infinite scroll"
 msgstr "Nekonečné posouvání"
 
-#: mod/settings.php:1011
+#: mod/settings.php:968
 msgid "Automatic updates only at the top of the network page"
 msgstr "Automatické aktualizace pouze na hlavní stránce Síť."
 
-#: mod/settings.php:1012
-msgid "Bandwith Saver Mode"
+#: mod/settings.php:968
+msgid ""
+"When disabled, the network page is updated all the time, which could be "
+"confusing while reading."
+msgstr ""
+
+#: mod/settings.php:969
+msgid "Bandwidth Saver Mode"
 msgstr ""
 
-#: mod/settings.php:1012
+#: mod/settings.php:969
 msgid ""
 "When enabled, embedded content is not displayed on automatic updates, they "
 "only show on page reload."
 msgstr ""
 
-#: mod/settings.php:1014
-msgid "General Theme Settings"
+#: mod/settings.php:970
+msgid "Smart Threading"
 msgstr ""
 
-#: mod/settings.php:1015
-msgid "Custom Theme Settings"
+#: mod/settings.php:970
+msgid ""
+"When enabled, suppress extraneous thread indentation while keeping it where "
+"it matters. Only works if threading is available and enabled."
 msgstr ""
 
-#: mod/settings.php:1016
+#: mod/settings.php:972
+msgid "General Theme Settings"
+msgstr "Obecná nastavení motivu"
+
+#: mod/settings.php:973
+msgid "Custom Theme Settings"
+msgstr "Vlastní nastavení motivu"
+
+#: mod/settings.php:974
 msgid "Content Settings"
 msgstr ""
 
-#: mod/settings.php:1017 view/theme/frio/config.php:61
-#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109
-#: view/theme/duepuntozero/config.php:61
+#: mod/settings.php:975 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 "Nastavení téma"
+msgstr "Nastavení motivu"
+
+#: mod/settings.php:994
+msgid "Unable to find your profile. Please contact your admin."
+msgstr ""
 
-#: mod/settings.php:1099
+#: mod/settings.php:1033
 msgid "Account Types"
 msgstr ""
 
-#: mod/settings.php:1100
+#: mod/settings.php:1034
 msgid "Personal Page Subtypes"
 msgstr ""
 
-#: mod/settings.php:1101
+#: mod/settings.php:1035
 msgid "Community Forum Subtypes"
 msgstr ""
 
-#: mod/settings.php:1108
-msgid "Personal Page"
-msgstr ""
-
-#: mod/settings.php:1109
-msgid "This account is a regular personal profile"
-msgstr ""
-
-#: mod/settings.php:1112
-msgid "Organisation Page"
-msgstr ""
-
-#: mod/settings.php:1113
-msgid "This account is a profile for an organisation"
+#: mod/settings.php:1043
+msgid "Account for a personal profile."
 msgstr ""
 
-#: mod/settings.php:1116
-msgid "News Page"
+#: mod/settings.php:1047
+msgid ""
+"Account for an organisation that automatically approves contact requests as "
+"\"Followers\"."
 msgstr ""
 
-#: mod/settings.php:1117
-msgid "This account is a news account/reflector"
+#: mod/settings.php:1051
+msgid ""
+"Account for a news reflector that automatically approves contact requests as"
+" \"Followers\"."
 msgstr ""
 
-#: mod/settings.php:1120
-msgid "Community Forum"
+#: mod/settings.php:1055
+msgid "Account for community discussions."
 msgstr ""
 
-#: mod/settings.php:1121
+#: mod/settings.php:1059
 msgid ""
-"This account is a community forum where people can discuss with each other"
+"Account for a regular personal profile that requires manual approval of "
+"\"Friends\" and \"Followers\"."
 msgstr ""
 
-#: mod/settings.php:1124
-msgid "Normal Account Page"
-msgstr "Normální stránka účtu"
-
-#: mod/settings.php:1125
-msgid "This account is a normal personal profile"
-msgstr "Tento účet je běžný osobní profil"
-
-#: mod/settings.php:1128
-msgid "Soapbox Page"
-msgstr "Stránka \"Soapbox\""
-
-#: mod/settings.php:1129
-msgid "Automatically approve all connection/friend requests as read-only fans"
-msgstr "Automaticky schválit všechna spojení / přátelství jako fanoušky s právem pouze ke čtení"
-
-#: mod/settings.php:1132
-msgid "Public Forum"
+#: mod/settings.php:1063
+msgid ""
+"Account for a public profile that automatically approves contact requests as"
+" \"Followers\"."
 msgstr ""
 
-#: mod/settings.php:1133
-msgid "Automatically approve all contact requests"
+#: mod/settings.php:1067
+msgid "Automatically approves all contact requests."
 msgstr ""
 
-#: mod/settings.php:1136
-msgid "Automatic Friend Page"
-msgstr "Automatická stránka přítele"
-
-#: mod/settings.php:1137
-msgid "Automatically approve all connection/friend requests as friends"
-msgstr "Automaticky schvalovat všechny žádosti o spojení / přátelství jako přátele"
+#: mod/settings.php:1071
+msgid ""
+"Account for a popular profile that automatically approves contact requests "
+"as \"Friends\"."
+msgstr ""
 
-#: mod/settings.php:1140
+#: mod/settings.php:1074
 msgid "Private Forum [Experimental]"
 msgstr "Soukromé fórum [Experimentální]"
 
-#: mod/settings.php:1141
-msgid "Private forum - approved members only"
-msgstr "Soukromé fórum - pouze pro schválené členy"
+#: mod/settings.php:1075
+msgid "Requires manual approval of contact requests."
+msgstr ""
 
-#: mod/settings.php:1153
+#: mod/settings.php:1086
 msgid "OpenID:"
 msgstr "OpenID:"
 
-#: mod/settings.php:1153
+#: mod/settings.php:1086
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu."
 
-#: mod/settings.php:1163
+#: mod/settings.php:1094
 msgid "Publish your default profile in your local site directory?"
 msgstr "Publikovat Váš výchozí profil v místním adresáři webu?"
 
-#: mod/settings.php:1169
+#: mod/settings.php:1094
+#, 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:1100
 msgid "Publish your default profile in the global social directory?"
 msgstr "Publikovat Váš výchozí profil v globální sociálním adresáři?"
 
-#: mod/settings.php:1177
+#: mod/settings.php:1100
+#, 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/settings.php:1107
 msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr "Skrýt Vaše kontaktní údaje a seznam přátel před návštěvníky ve Vašem výchozím profilu?"
 
-#: mod/settings.php:1181
+#: mod/settings.php:1107
+msgid ""
+"Your contact list won't be shown in your default profile page. You can "
+"decide to show your contact list separately for each additional profile you "
+"create"
+msgstr ""
+
+#: mod/settings.php:1111
+msgid "Hide your profile details from anonymous viewers?"
+msgstr ""
+
+#: mod/settings.php:1111
 msgid ""
-"If enabled, posting public messages to Diaspora and other networks isn't "
-"possible."
-msgstr "Pokud je povoleno, není možné zasílání veřejných příspěvků do Diaspory a dalších sítí."
+"Anonymous visitors will only see your profile picture, your display name and"
+" the nickname you are using on your profile page. Your public posts and "
+"replies will still be accessible by other means."
+msgstr ""
 
-#: mod/settings.php:1186
+#: mod/settings.php:1115
 msgid "Allow friends to post to your profile page?"
 msgstr "Povolit přátelům umisťování příspěvků na vaši profilovou stránku?"
 
-#: mod/settings.php:1192
+#: mod/settings.php:1115
+msgid ""
+"Your contacts may write posts on your profile wall. These posts will be "
+"distributed to your contacts"
+msgstr ""
+
+#: mod/settings.php:1119
 msgid "Allow friends to tag your posts?"
 msgstr "Povolit přátelům označovat Vaše příspěvky?"
 
-#: mod/settings.php:1198
+#: mod/settings.php:1119
+msgid "Your contacts can add additional tags to your posts."
+msgstr ""
+
+#: mod/settings.php:1123
 msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr "Chcete nám povolit abychom vás navrhovali jako přátelé pro nové členy?"
 
-#: mod/settings.php:1204
+#: mod/settings.php:1123
+msgid ""
+"If you like, Friendica may suggest new members to add you as a contact."
+msgstr ""
+
+#: mod/settings.php:1127
 msgid "Permit unknown people to send you private mail?"
 msgstr "Povolit neznámým lidem Vám zasílat soukromé zprávy?"
 
-#: mod/settings.php:1212
+#: mod/settings.php:1127
+msgid ""
+"Friendica network users may send you private messages even if they are not "
+"in your contact list."
+msgstr ""
+
+#: mod/settings.php:1131
 msgid "Profile is <strong>not published</strong>."
 msgstr "Profil <strong>není zveřejněn</strong>."
 
-#: mod/settings.php:1220
+#: mod/settings.php:1137
 #, php-format
 msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
 msgstr "Vaše Identity adresa je <strong>\"%s\"</strong> nebo \"%s\"."
 
-#: mod/settings.php:1227
+#: mod/settings.php:1144
 msgid "Automatically expire posts after this many days:"
 msgstr "Automaticky expirovat příspěvky po zadaném počtu dní:"
 
-#: mod/settings.php:1227
+#: mod/settings.php:1144
 msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr "Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány"
 
-#: mod/settings.php:1228
+#: mod/settings.php:1145
 msgid "Advanced expiration settings"
 msgstr "Pokročilé nastavení expirací"
 
-#: mod/settings.php:1229
+#: mod/settings.php:1146
 msgid "Advanced Expiration"
 msgstr "Nastavení expirací"
 
-#: mod/settings.php:1230
+#: mod/settings.php:1147
 msgid "Expire posts:"
 msgstr "Expirovat příspěvky:"
 
-#: mod/settings.php:1231
+#: mod/settings.php:1148
 msgid "Expire personal notes:"
 msgstr "Expirovat osobní poznámky:"
 
-#: mod/settings.php:1232
+#: mod/settings.php:1149
 msgid "Expire starred posts:"
 msgstr "Expirovat příspěvky s hvězdou:"
 
-#: mod/settings.php:1233
+#: mod/settings.php:1150
 msgid "Expire photos:"
 msgstr "Expirovat fotografie:"
 
-#: mod/settings.php:1234
+#: mod/settings.php:1151
 msgid "Only expire posts by others:"
-msgstr "Přízpěvky expirovat pouze ostatními:"
+msgstr "Příspěvky expirovat pouze ostatními:"
 
-#: mod/settings.php:1262
+#: mod/settings.php:1181
 msgid "Account Settings"
 msgstr "Nastavení účtu"
 
-#: mod/settings.php:1270
+#: mod/settings.php:1189
 msgid "Password Settings"
 msgstr "Nastavení hesla"
 
-#: mod/settings.php:1272
+#: mod/settings.php:1191
 msgid "Leave password fields blank unless changing"
 msgstr "Pokud nechcete změnit heslo, položku hesla nevyplňujte"
 
-#: mod/settings.php:1273
+#: mod/settings.php:1192
 msgid "Current Password:"
 msgstr "Stávající heslo:"
 
-#: mod/settings.php:1273 mod/settings.php:1274
+#: mod/settings.php:1192 mod/settings.php:1193
 msgid "Your current password to confirm the changes"
 msgstr "Vaše stávající heslo k potvrzení změn"
 
-#: mod/settings.php:1274
+#: mod/settings.php:1193
 msgid "Password:"
 msgstr "Heslo: "
 
-#: mod/settings.php:1278
+#: mod/settings.php:1197
 msgid "Basic Settings"
 msgstr "Základní nastavení"
 
-#: mod/settings.php:1280
+#: mod/settings.php:1198 src/Model/Profile.php:736
+msgid "Full Name:"
+msgstr "Celé jméno:"
+
+#: mod/settings.php:1199
 msgid "Email Address:"
 msgstr "E-mailová adresa:"
 
-#: mod/settings.php:1281
+#: mod/settings.php:1200
 msgid "Your Timezone:"
 msgstr "Vaše časové pásmo:"
 
-#: mod/settings.php:1282
+#: mod/settings.php:1201
 msgid "Your Language:"
-msgstr ""
+msgstr "Váš jazyk:"
 
-#: mod/settings.php:1282
+#: mod/settings.php:1201
 msgid ""
 "Set the language we use to show you friendica interface and to send you "
 "emails"
 msgstr ""
 
-#: mod/settings.php:1283
-msgid "Default Post Location:"
-msgstr "Výchozí umístění příspěvků:"
-
-#: mod/settings.php:1284
-msgid "Use Browser Location:"
-msgstr "Používat umístění dle prohlížeče:"
-
-#: mod/settings.php:1287
-msgid "Security and Privacy Settings"
-msgstr "Nastavení zabezpečení a soukromí"
-
-#: mod/settings.php:1289
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maximální počet žádostí o přátelství za den:"
-
-#: mod/settings.php:1289 mod/settings.php:1319
-msgid "(to prevent spam abuse)"
-msgstr "(Aby se zabránilo spamu)"
-
-#: mod/settings.php:1290
-msgid "Default Post Permissions"
-msgstr "Výchozí oprávnění pro příspěvek"
-
-#: mod/settings.php:1291
-msgid "(click to open/close)"
-msgstr "(Klikněte pro otevření/zavření)"
-
-#: mod/settings.php:1302
-msgid "Default Private Post"
-msgstr "Výchozí Soukromý příspěvek"
-
-#: mod/settings.php:1303
-msgid "Default Public Post"
-msgstr "Výchozí Veřejný příspěvek"
-
-#: mod/settings.php:1307
-msgid "Default Permissions for New Posts"
-msgstr "Výchozí oprávnění pro nové příspěvky"
-
-#: mod/settings.php:1319
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Maximum soukromých zpráv od neznámých lidí:"
-
-#: mod/settings.php:1322
-msgid "Notification Settings"
-msgstr "Nastavení notifikací"
-
-#: mod/settings.php:1323
-msgid "By default post a status message when:"
-msgstr "Defaultně posílat statusové zprávy když:"
-
-#: mod/settings.php:1324
-msgid "accepting a friend request"
-msgstr "akceptuji požadavek na přátelství"
-
-#: mod/settings.php:1325
-msgid "joining a forum/community"
-msgstr "připojující se k fóru/komunitě"
-
-#: mod/settings.php:1326
-msgid "making an <em>interesting</em> profile change"
-msgstr "provedení <em>zajímavé</em> profilové změny"
-
-#: mod/settings.php:1327
-msgid "Send a notification email when:"
-msgstr "Poslat notifikaci e-mailem, když"
-
-#: mod/settings.php:1328
-msgid "You receive an introduction"
-msgstr "obdržíte žádost o propojení"
-
-#: mod/settings.php:1329
-msgid "Your introductions are confirmed"
-msgstr "Vaše žádosti jsou potvrzeny"
-
-#: mod/settings.php:1330
-msgid "Someone writes on your profile wall"
-msgstr "někdo Vám napíše na Vaši profilovou stránku"
-
-#: mod/settings.php:1331
-msgid "Someone writes a followup comment"
-msgstr "někdo Vám napíše následný komentář"
-
-#: mod/settings.php:1332
-msgid "You receive a private message"
-msgstr "obdržíte soukromou zprávu"
-
-#: mod/settings.php:1333
-msgid "You receive a friend suggestion"
-msgstr "Obdržel jste návrh přátelství"
-
-#: mod/settings.php:1334
-msgid "You are tagged in a post"
-msgstr "Jste označen v příspěvku"
-
-#: mod/settings.php:1335
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Byl Jste šťouchnout v příspěvku"
-
-#: mod/settings.php:1337
-msgid "Activate desktop notifications"
-msgstr "Aktivovat upozornění na desktopu"
-
-#: mod/settings.php:1337
-msgid "Show desktop popup on new notifications"
-msgstr "Zobrazit dektopové zprávy nových upozornění."
-
-#: mod/settings.php:1339
-msgid "Text-only notification emails"
-msgstr "Pouze textové notifikační e-maily"
-
-#: mod/settings.php:1341
-msgid "Send text only notification emails, without the html part"
-msgstr "Posílat pouze textové notifikační e-maily, bez html části."
-
-#: mod/settings.php:1343
-msgid "Advanced Account/Page Type Settings"
-msgstr "Pokročilé nastavení účtu/stránky"
-
-#: mod/settings.php:1344
-msgid "Change the behaviour of this account for special situations"
-msgstr "Změnit chování tohoto účtu ve speciálních situacích"
-
-#: mod/settings.php:1347
-msgid "Relocate"
-msgstr "Změna umístění"
-
-#: mod/settings.php:1348
-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 "Pokud jste přemístil tento profil z jiného serveru a nějaký z vašich kontaktů nedostává Vaše aktualizace, zkuste stisknout toto tlačítko."
-
-#: mod/settings.php:1349
-msgid "Resend relocate message to contacts"
-msgstr "Znovu odeslat správu o změně umístění Vašim kontaktům"
-
-#: mod/videos.php:120
-msgid "Do you really want to delete this video?"
-msgstr "Opravdu chcete smazat toto video?"
-
-#: mod/videos.php:125
-msgid "Delete Video"
-msgstr "Odstranit video"
-
-#: mod/videos.php:204
-msgid "No videos selected"
-msgstr "Není vybráno žádné video"
-
-#: mod/videos.php:396
-msgid "Recent Videos"
-msgstr "Aktuální Videa"
-
-#: mod/videos.php:398
-msgid "Upload New Videos"
-msgstr "Nahrát nová videa"
-
-#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76
-#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
-#: mod/wall_upload.php:122 mod/wall_upload.php:125
-msgid "Invalid request."
-msgstr "Neplatný požadavek."
-
-#: mod/wall_attach.php:94
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP"
-
-#: mod/wall_attach.php:94
-msgid "Or - did you try to upload an empty file?"
-msgstr "Nebo - nenahrával jste prázdný soubor?"
-
-#: mod/wall_attach.php:105
-#, php-format
-msgid "File exceeds size limit of %s"
-msgstr "Velikost souboru přesáhla limit %s"
-
-#: mod/wall_attach.php:156 mod/wall_attach.php:172
-msgid "File upload failed."
-msgstr "Nahrání souboru se nezdařilo."
-
-#: mod/admin.php:92
-msgid "Theme settings updated."
-msgstr "Nastavení téma zobrazení bylo aktualizováno."
-
-#: mod/admin.php:156 mod/admin.php:954
-msgid "Site"
-msgstr "Web"
-
-#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420
-msgid "Users"
-msgstr "Uživatelé"
-
-#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830
-msgid "Themes"
-msgstr "Témata"
-
-#: mod/admin.php:161
-msgid "DB updates"
-msgstr "Aktualizace databáze"
-
-#: mod/admin.php:162 mod/admin.php:406
-msgid "Inspect Queue"
-msgstr "Proskoumat frontu"
-
-#: mod/admin.php:163 mod/admin.php:372
-msgid "Federation Statistics"
-msgstr ""
-
-#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904
-msgid "Logs"
-msgstr "Logy"
-
-#: mod/admin.php:178 mod/admin.php:1972
-msgid "View Logs"
-msgstr ""
-
-#: mod/admin.php:179
-msgid "probe address"
-msgstr "vyzkoušet adresu"
-
-#: mod/admin.php:180
-msgid "check webfinger"
-msgstr "vyzkoušet webfinger"
-
-#: mod/admin.php:187
-msgid "Plugin Features"
-msgstr "Funkčnosti rozšíření"
-
-#: mod/admin.php:189
-msgid "diagnostics"
-msgstr "diagnostika"
-
-#: mod/admin.php:190
-msgid "User registrations waiting for confirmation"
-msgstr "Registrace uživatele čeká na potvrzení"
-
-#: mod/admin.php:306
-msgid "unknown"
-msgstr ""
-
-#: mod/admin.php:365
-msgid ""
-"This page offers you some numbers to the known part of the federated social "
-"network your Friendica node is part of. These numbers are not complete but "
-"only reflect the part of the network your node is aware of."
-msgstr ""
-
-#: mod/admin.php:366
-msgid ""
-"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
-"will improve the data displayed here."
-msgstr ""
-
-#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953
-#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779
-#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971
-msgid "Administration"
-msgstr "Administrace"
-
-#: mod/admin.php:378
-#, php-format
-msgid "Currently this node is aware of %d nodes from the following platforms:"
-msgstr ""
-
-#: mod/admin.php:408
-msgid "ID"
-msgstr "Identifikátor"
-
-#: mod/admin.php:409
-msgid "Recipient Name"
-msgstr "Jméno příjemce"
-
-#: mod/admin.php:410
-msgid "Recipient Profile"
-msgstr "Profil píjemce"
-
-#: mod/admin.php:412
-msgid "Created"
-msgstr "Vytvořeno"
-
-#: mod/admin.php:413
-msgid "Last Tried"
-msgstr "Naposled vyzkoušeno"
-
-#: mod/admin.php:414
-msgid ""
-"This page lists the content of the queue for outgoing postings. These are "
-"postings the initial delivery failed for. They will be resend later and "
-"eventually deleted if the delivery fails permanently."
-msgstr ""
-
-#: mod/admin.php:439
-#, 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 "
-"<tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your "
-"Friendica installation.<br />"
-msgstr ""
-
-#: mod/admin.php:444
-msgid ""
-"You are using a MySQL version which does not support all features that "
-"Friendica uses. You should consider switching to MariaDB."
-msgstr ""
+#: mod/settings.php:1202
+msgid "Default Post Location:"
+msgstr "Výchozí umístění příspěvků:"
 
-#: mod/admin.php:448 mod/admin.php:1352
-msgid "Normal Account"
-msgstr "Normální účet"
+#: mod/settings.php:1203
+msgid "Use Browser Location:"
+msgstr "Používat umístění dle prohlížeče:"
 
-#: mod/admin.php:449 mod/admin.php:1353
-msgid "Soapbox Account"
-msgstr "Soapbox účet"
+#: mod/settings.php:1206
+msgid "Security and Privacy Settings"
+msgstr "Nastavení zabezpečení a soukromí"
 
-#: mod/admin.php:450 mod/admin.php:1354
-msgid "Community/Celebrity Account"
-msgstr "Komunitní účet / Účet celebrity"
+#: mod/settings.php:1208
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maximální počet žádostí o přátelství za den:"
 
-#: mod/admin.php:451 mod/admin.php:1355
-msgid "Automatic Friend Account"
-msgstr "Účet s automatickým schvalováním přátel"
+#: mod/settings.php:1208 mod/settings.php:1237
+msgid "(to prevent spam abuse)"
+msgstr "(Aby se zabránilo spamu)"
 
-#: mod/admin.php:452
-msgid "Blog Account"
-msgstr "Účet Blogu"
+#: mod/settings.php:1209
+msgid "Default Post Permissions"
+msgstr "Výchozí oprávnění pro příspěvek"
 
-#: mod/admin.php:453
-msgid "Private Forum"
-msgstr "Soukromé fórum"
+#: mod/settings.php:1210
+msgid "(click to open/close)"
+msgstr "(Klikněte pro otevření/zavření)"
 
-#: mod/admin.php:479
-msgid "Message queues"
-msgstr "Fronty zpráv"
+#: mod/settings.php:1220
+msgid "Default Private Post"
+msgstr "Výchozí Soukromý příspěvek"
 
-#: mod/admin.php:485
-msgid "Summary"
-msgstr "Shrnutí"
+#: mod/settings.php:1221
+msgid "Default Public Post"
+msgstr "Výchozí Veřejný příspěvek"
 
-#: mod/admin.php:488
-msgid "Registered users"
-msgstr "Registrovaní uživatelé"
+#: mod/settings.php:1225
+msgid "Default Permissions for New Posts"
+msgstr "Výchozí oprávnění pro nové příspěvky"
 
-#: mod/admin.php:490
-msgid "Pending registrations"
-msgstr "Čekající registrace"
+#: mod/settings.php:1237
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Maximum soukromých zpráv od neznámých lidí:"
 
-#: mod/admin.php:491
-msgid "Version"
-msgstr "Verze"
+#: mod/settings.php:1240
+msgid "Notification Settings"
+msgstr "Nastavení notifikací"
 
-#: mod/admin.php:496
-msgid "Active plugins"
-msgstr "Aktivní pluginy"
+#: mod/settings.php:1241
+msgid "Send a notification email when:"
+msgstr "Poslat notifikaci e-mailem, když"
 
-#: mod/admin.php:521
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň <schéma>://<doméma>"
+#: mod/settings.php:1242
+msgid "You receive an introduction"
+msgstr "obdržíte žádost o propojení"
 
-#: mod/admin.php:826
-msgid "RINO2 needs mcrypt php extension to work."
-msgstr ""
+#: mod/settings.php:1243
+msgid "Your introductions are confirmed"
+msgstr "Vaše žádosti jsou potvrzeny"
 
-#: mod/admin.php:834
-msgid "Site settings updated."
-msgstr "Nastavení webu aktualizováno."
+#: mod/settings.php:1244
+msgid "Someone writes on your profile wall"
+msgstr "někdo Vám napíše na Vaši profilovou stránku"
 
-#: mod/admin.php:881
-msgid "No community page"
-msgstr "Komunitní stránka neexistuje"
+#: mod/settings.php:1245
+msgid "Someone writes a followup comment"
+msgstr "někdo Vám napíše následný komentář"
 
-#: mod/admin.php:882
-msgid "Public postings from users of this site"
-msgstr "Počet veřejných příspěvků od uživatele na této stránce"
+#: mod/settings.php:1246
+msgid "You receive a private message"
+msgstr "obdržíte soukromou zprávu"
 
-#: mod/admin.php:883
-msgid "Global community page"
-msgstr "Globální komunitní stránka"
+#: mod/settings.php:1247
+msgid "You receive a friend suggestion"
+msgstr "Obdržel jste návrh přátelství"
 
-#: mod/admin.php:888 mod/contacts.php:530
-msgid "Never"
-msgstr "Nikdy"
+#: mod/settings.php:1248
+msgid "You are tagged in a post"
+msgstr "Jste označen v příspěvku"
 
-#: mod/admin.php:889
-msgid "At post arrival"
-msgstr "Při obdržení příspěvku"
+#: mod/settings.php:1249
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Byl Jste šťouchnout v příspěvku"
 
-#: mod/admin.php:897 mod/contacts.php:557
-msgid "Disabled"
-msgstr "Zakázáno"
+#: mod/settings.php:1251
+msgid "Activate desktop notifications"
+msgstr "Aktivovat upozornění na desktopu"
 
-#: mod/admin.php:899
-msgid "Users, Global Contacts"
-msgstr "Uživatelé, Všechny kontakty"
+#: mod/settings.php:1251
+msgid "Show desktop popup on new notifications"
+msgstr "Zobrazit dektopové zprávy nových upozornění."
 
-#: mod/admin.php:900
-msgid "Users, Global Contacts/fallback"
-msgstr ""
+#: mod/settings.php:1253
+msgid "Text-only notification emails"
+msgstr "Pouze textové notifikační e-maily"
 
-#: mod/admin.php:904
-msgid "One month"
-msgstr "Jeden měsíc"
+#: mod/settings.php:1255
+msgid "Send text only notification emails, without the html part"
+msgstr "Posílat pouze textové notifikační e-maily, bez html části."
 
-#: mod/admin.php:905
-msgid "Three months"
-msgstr "Tři měsíce"
+#: mod/settings.php:1257
+msgid "Show detailled notifications"
+msgstr ""
 
-#: mod/admin.php:906
-msgid "Half a year"
-msgstr "Půl roku"
+#: mod/settings.php:1259
+msgid ""
+"Per default, notifications are condensed to a single notification per item. "
+"When enabled every notification is displayed."
+msgstr ""
 
-#: mod/admin.php:907
-msgid "One year"
-msgstr "Jeden rok"
+#: mod/settings.php:1261
+msgid "Advanced Account/Page Type Settings"
+msgstr "Pokročilé nastavení účtu/stránky"
 
-#: mod/admin.php:912
-msgid "Multi user instance"
-msgstr "Více uživatelská instance"
+#: mod/settings.php:1262
+msgid "Change the behaviour of this account for special situations"
+msgstr "Změnit chování tohoto účtu ve speciálních situacích"
 
-#: mod/admin.php:935
-msgid "Closed"
-msgstr "Uzavřeno"
+#: mod/settings.php:1265
+msgid "Relocate"
+msgstr "Změna umístění"
 
-#: mod/admin.php:936
-msgid "Requires approval"
-msgstr "Vyžaduje schválení"
+#: mod/settings.php:1266
+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 "Pokud jste přemístil tento profil z jiného serveru a nějaký z vašich kontaktů nedostává Vaše aktualizace, zkuste stisknout toto tlačítko."
 
-#: mod/admin.php:937
-msgid "Open"
-msgstr "Otevřená"
+#: mod/settings.php:1267
+msgid "Resend relocate message to contacts"
+msgstr "Znovu odeslat správu o změně umístění Vašim kontaktům"
 
-#: mod/admin.php:941
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Žádná SSL politika, odkazy budou následovat stránky SSL stav"
+#: mod/subthread.php:117
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s následuje %3$s uživatele %2$s"
 
-#: mod/admin.php:942
-msgid "Force all links to use SSL"
-msgstr "Vyžadovat u všech odkazů použití SSL"
+#: mod/update_community.php:27 mod/update_display.php:27
+#: mod/update_network.php:33 mod/update_notes.php:40 mod/update_profile.php:39
+msgid "[Embedded content - reload page to view]"
+msgstr "[Vložený obsah - obnovte stránku pro zobrazení]"
 
-#: mod/admin.php:943
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Certifikát podepsaný sám sebou, použít SSL pouze pro lokální odkazy (nedoporučeno)"
+#: mod/videos.php:139
+msgid "Do you really want to delete this video?"
+msgstr "Opravdu chcete smazat toto video?"
 
-#: mod/admin.php:957
-msgid "File upload"
-msgstr "Nahrání souborů"
+#: mod/videos.php:144
+msgid "Delete Video"
+msgstr "Odstranit video"
 
-#: mod/admin.php:958
-msgid "Policies"
-msgstr "Politiky"
+#: mod/videos.php:207
+msgid "No videos selected"
+msgstr "Není vybráno žádné video"
 
-#: mod/admin.php:960
-msgid "Auto Discovered Contact Directory"
-msgstr ""
+#: mod/videos.php:396
+msgid "Recent Videos"
+msgstr "Aktuální Videa"
 
-#: mod/admin.php:961
-msgid "Performance"
-msgstr "Výkonnost"
+#: mod/videos.php:398
+msgid "Upload New Videos"
+msgstr "Nahrát nová videa"
 
-#: mod/admin.php:962
-msgid "Worker"
-msgstr ""
+#: view/theme/duepuntozero/config.php:54 src/Model/User.php:504
+msgid "default"
+msgstr "standardní"
 
-#: mod/admin.php:963
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Změna umístění - Varování: pokročilá funkčnost. Tímto můžete znepřístupnit server."
+#: view/theme/duepuntozero/config.php:55
+msgid "greenzero"
+msgstr "zelená nula"
 
-#: mod/admin.php:966
-msgid "Site name"
-msgstr "Název webu"
+#: view/theme/duepuntozero/config.php:56
+msgid "purplezero"
+msgstr "fialová nula"
 
-#: mod/admin.php:967
-msgid "Host name"
-msgstr "Jméno hostitele (host name)"
+#: view/theme/duepuntozero/config.php:57
+msgid "easterbunny"
+msgstr "velikonoční zajíček"
 
-#: mod/admin.php:968
-msgid "Sender Email"
-msgstr "Email ddesílatele"
+#: view/theme/duepuntozero/config.php:58
+msgid "darkzero"
+msgstr "tmavá nula"
 
-#: mod/admin.php:968
-msgid ""
-"The email address your server shall use to send notification emails from."
-msgstr ""
+#: view/theme/duepuntozero/config.php:59
+msgid "comix"
+msgstr "komiksová"
 
-#: mod/admin.php:969
-msgid "Banner/Logo"
-msgstr "Banner/logo"
+#: view/theme/duepuntozero/config.php:60
+msgid "slackr"
+msgstr "flákač"
 
-#: mod/admin.php:970
-msgid "Shortcut icon"
-msgstr "Ikona zkratky"
+#: view/theme/duepuntozero/config.php:74
+msgid "Variations"
+msgstr "Variace"
 
-#: mod/admin.php:970
-msgid "Link to an icon that will be used for browsers."
+#: view/theme/frio/php/Image.php:24
+msgid "Top Banner"
 msgstr ""
 
-#: mod/admin.php:971
-msgid "Touch icon"
-msgstr "Dotyková ikona"
-
-#: mod/admin.php:971
-msgid "Link to an icon that will be used for tablets and mobiles."
-msgstr ""
+#: view/theme/frio/php/Image.php:24
+msgid ""
+"Resize image to the width of the screen and show background color below on "
+"long pages."
+msgstr "Změnit velikost obrázku na šířku obrazovky a ukázat pod ním barvu pozadí na dlouhých stránkách."
 
-#: mod/admin.php:972
-msgid "Additional Info"
-msgstr "Dodatečné informace"
+#: view/theme/frio/php/Image.php:25
+msgid "Full screen"
+msgstr "Celá obrazovka"
 
-#: mod/admin.php:972
-#, php-format
+#: view/theme/frio/php/Image.php:25
 msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/siteinfo."
-msgstr ""
-
-#: mod/admin.php:973
-msgid "System language"
-msgstr "Systémový jazyk"
+"Resize image to fill entire screen, clipping either the right or the bottom."
+msgstr "Změnit velikost obrázku, aby zaplnil celou obrazovku, a odštěpit buď pravou, nebo dolní část"
 
-#: mod/admin.php:974
-msgid "System theme"
-msgstr "Grafická šablona systému "
+#: view/theme/frio/php/Image.php:26
+msgid "Single row mosaic"
+msgstr "Mozaika s jedinou řadou"
 
-#: mod/admin.php:974
+#: view/theme/frio/php/Image.php:26
 msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Defaultní systémové téma - může být změněno v uživatelských profilech - <a href='#' id='cnftheme'> změnit  theme settings</a>"
-
-#: mod/admin.php:975
-msgid "Mobile system theme"
-msgstr "Systémové téma zobrazení pro mobilní zařízení"
+"Resize image to repeat it on a single row, either vertical or horizontal."
+msgstr "Změnit velikost obrázku a opakovat jej v jediné řadě, buď svislé, nebo vodorovné"
 
-#: mod/admin.php:975
-msgid "Theme for mobile devices"
-msgstr "Téma zobrazení pro mobilní zařízení"
+#: view/theme/frio/php/Image.php:27
+msgid "Mosaic"
+msgstr "Mozaika"
 
-#: mod/admin.php:976
-msgid "SSL link policy"
-msgstr "Politika SSL odkazů"
+#: view/theme/frio/php/Image.php:27
+msgid "Repeat image to fill the screen."
+msgstr "Opakovat obrázek, aby zaplnil obrazovku"
 
-#: mod/admin.php:976
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Určuje, zda-li budou generované odkazy používat SSL"
+#: view/theme/frio/config.php:102
+msgid "Custom"
+msgstr "Vlastní"
 
-#: mod/admin.php:977
-msgid "Force SSL"
-msgstr "Vynutit SSL"
+#: view/theme/frio/config.php:114
+msgid "Note"
+msgstr "Poznámka"
 
-#: mod/admin.php:977
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
-" to endless loops."
-msgstr "Vynutit SSL pro všechny ne-SSL žádosti - Upozornění: na některých systémech může dojít k nekonečnému zacyklení."
+#: view/theme/frio/config.php:114
+msgid "Check image permissions if all users are allowed to see the image"
+msgstr "Zkontrolovat povolení u obrázku, jestli všichni uživatelé mají povolení obrázek vidět"
 
-#: mod/admin.php:978
-msgid "Old style 'Share'"
-msgstr "Sdílení \"postaru\""
+#: view/theme/frio/config.php:121
+msgid "Select color scheme"
+msgstr "Vybrat barevné schéma"
 
-#: mod/admin.php:978
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr "Deaktivovat bbcode element \"share\" pro opakující se položky."
+#: view/theme/frio/config.php:122
+msgid "Navigation bar background color"
+msgstr "Barva pozadí navigační lišty"
 
-#: mod/admin.php:979
-msgid "Hide help entry from navigation menu"
-msgstr "skrýt nápovědu z navigačního menu"
+#: view/theme/frio/config.php:123
+msgid "Navigation bar icon color "
+msgstr "Barva ikon navigační lišty"
 
-#: mod/admin.php:979
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr "Skryje menu ze stránek Nápověda z navigačního menu. Nápovědu můžete stále zobrazit přímo zadáním /help."
+#: view/theme/frio/config.php:124
+msgid "Link color"
+msgstr "Barva odkazů"
 
-#: mod/admin.php:980
-msgid "Single user instance"
-msgstr "Jednouživatelská instance"
+#: view/theme/frio/config.php:125
+msgid "Set the background color"
+msgstr "Nastavit barvu pozadí"
 
-#: mod/admin.php:980
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr "Nastavit tuto instanci víceuživatelskou nebo jednouživatelskou pro pojmenovaného uživatele"
+#: view/theme/frio/config.php:126
+msgid "Content background opacity"
+msgstr "Průhlednost pozadí obsahu"
 
-#: mod/admin.php:981
-msgid "Maximum image size"
-msgstr "Maximální velikost obrázků"
+#: view/theme/frio/config.php:127
+msgid "Set the background image"
+msgstr "Nastavit obrázek na pozadí"
 
-#: mod/admin.php:981
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Maximální velikost v bajtech nahraných obrázků. Defaultní je 0, což znamená neomezeno."
+#: view/theme/frio/config.php:128
+msgid "Background image style"
+msgstr "Styl obrázku na pozadí"
 
-#: mod/admin.php:982
-msgid "Maximum image length"
-msgstr "Maximální velikost obrázků"
+#: view/theme/frio/config.php:133
+msgid "Login page background image"
+msgstr "Obrázek na pozadí přihlašovací stránky"
 
-#: mod/admin.php:982
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Maximální délka v pixelech delší stránky nahrávaných obrázků. Defaultně je -1, což označuje bez limitu"
+#: view/theme/frio/config.php:137
+msgid "Login page background color"
+msgstr "Barva pozadí přihlašovací stránky"
 
-#: mod/admin.php:983
-msgid "JPEG image quality"
-msgstr "JPEG kvalita obrázku"
+#: view/theme/frio/config.php:137
+msgid "Leave background image and color empty for theme defaults"
+msgstr "Nechat obrázek a barvu pozadí prázdnou pro výchozí nastavení motivů"
 
-#: mod/admin.php:983
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr "Nahrávaný JPEG bude uložen se zadanou kvalitou v rozmezí [0-100]. Defaultní je 100, což znamená plnou kvalitu."
+#: view/theme/frio/theme.php:238
+msgid "Guest"
+msgstr "Host"
 
-#: mod/admin.php:985
-msgid "Register policy"
-msgstr "Politika registrace"
+#: view/theme/frio/theme.php:243
+msgid "Visitor"
+msgstr "Návštěvník"
 
-#: mod/admin.php:986
-msgid "Maximum Daily Registrations"
-msgstr "Maximální počet denních registrací"
+#: view/theme/frio/theme.php:256 src/Content/Nav.php:97
+#: src/Module/Login.php:312
+msgid "Logout"
+msgstr "Odhlásit se"
 
-#: mod/admin.php:986
-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 "Pokud je registrace výše povolena, zde se nastaví maximální počet registrací nových uživatelů za den.\nPokud je registrace zakázána, toto nastavení nemá žádný efekt."
+#: view/theme/frio/theme.php:256 src/Content/Nav.php:97
+msgid "End this session"
+msgstr "Konec této relace"
 
-#: mod/admin.php:987
-msgid "Register text"
-msgstr "Registrace textu"
+#: view/theme/frio/theme.php:259 src/Content/Nav.php:100
+#: src/Content/Nav.php:186
+msgid "Your posts and conversations"
+msgstr "Vaše příspěvky a konverzace"
 
-#: mod/admin.php:987
-msgid "Will be displayed prominently on the registration page."
-msgstr "Bude zřetelně zobrazeno na registrační stránce."
+#: view/theme/frio/theme.php:260 src/Content/Nav.php:101
+msgid "Your profile page"
+msgstr "Vaše profilová stránka"
 
-#: mod/admin.php:988
-msgid "Accounts abandoned after x days"
-msgstr "Účet je opuštěn po x dnech"
+#: view/theme/frio/theme.php:261 src/Content/Nav.php:102
+msgid "Your photos"
+msgstr "Vaše fotky"
 
-#: mod/admin.php:988
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Neztrácejte systémové zdroje kontaktováním externích webů s opuštěnými účty. Zadejte 0 pro žádný časový limit."
+#: view/theme/frio/theme.php:262 src/Content/Nav.php:103
+#: src/Model/Profile.php:910 src/Model/Profile.php:913
+msgid "Videos"
+msgstr "Videa"
 
-#: mod/admin.php:989
-msgid "Allowed friend domains"
-msgstr "Povolené domény přátel"
+#: view/theme/frio/theme.php:262 src/Content/Nav.php:103
+msgid "Your videos"
+msgstr "Vaše videa"
 
-#: mod/admin.php:989
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Čárkou oddělený seznam domén, kterým je povoleno navazovat přátelství s tímto webem. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu."
+#: view/theme/frio/theme.php:263 src/Content/Nav.php:104
+msgid "Your events"
+msgstr "Vaše události"
 
-#: mod/admin.php:990
-msgid "Allowed email domains"
-msgstr "Povolené e-mailové domény"
+#: view/theme/frio/theme.php:266 src/Content/Nav.php:183
+msgid "Conversations from your friends"
+msgstr "Konverzace od Vašich přátel"
 
-#: mod/admin.php:990
-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 "Čárkou oddělený seznam domén emalových adres, kterým je povoleno provádět registraci na tomto webu. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu."
+#: 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 "Události a kalendář"
 
-#: mod/admin.php:991
-msgid "Block public"
-msgstr "Blokovat veřejnost"
+#: view/theme/frio/theme.php:268 src/Content/Nav.php:196
+msgid "Private mail"
+msgstr "Soukromá pošta"
 
-#: mod/admin.php:991
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Označemím přepínače zablokujete veřejný přístup ke všem jinak veřejně přístupným soukromým stránkám uživatelům, kteří nebudou přihlášeni."
+#: view/theme/frio/theme.php:269 src/Content/Nav.php:207
+msgid "Account settings"
+msgstr "Nastavení účtu"
 
-#: mod/admin.php:992
-msgid "Force publish"
-msgstr "Publikovat"
+#: view/theme/frio/theme.php:270 src/Content/Nav.php:213
+msgid "Manage/edit friends and contacts"
+msgstr "Spravovat/upravit přátelé a kontakty"
 
-#: mod/admin.php:992
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Označením přepínače budou včechny profily na tomto webu uvedeny v adresáři webu."
+#: view/theme/quattro/config.php:76
+msgid "Alignment"
+msgstr "Zarovnání"
 
-#: mod/admin.php:993
-msgid "Global directory URL"
-msgstr ""
+#: view/theme/quattro/config.php:76
+msgid "Left"
+msgstr "Vlevo"
 
-#: mod/admin.php:993
-msgid ""
-"URL to the global directory. If this is not set, the global directory is "
-"completely unavailable to the application."
-msgstr ""
+#: view/theme/quattro/config.php:76
+msgid "Center"
+msgstr "Uprostřed"
 
-#: mod/admin.php:994
-msgid "Allow threaded items"
-msgstr "Povolit vícevláknové zpracování obsahu"
+#: view/theme/quattro/config.php:77
+msgid "Color scheme"
+msgstr "Barevné schéma"
 
-#: mod/admin.php:994
-msgid "Allow infinite level threading for items on this site."
-msgstr "Povolit zpracování obsahu tohoto webu neomezeným počtem paralelních vláken."
+#: view/theme/quattro/config.php:78
+msgid "Posts font size"
+msgstr "Velikost písma u příspěvků"
 
-#: mod/admin.php:995
-msgid "Private posts by default for new users"
-msgstr "Nastavit pro nové uživatele příspěvky jako soukromé"
+#: view/theme/quattro/config.php:79
+msgid "Textareas font size"
+msgstr "Velikost písma textů"
 
-#: mod/admin.php:995
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "Nastavit defaultní práva pro příspěvky od všech nových členů na výchozí soukromou skupinu raději než jako veřejné."
+#: view/theme/vier/config.php:75
+msgid "Comma separated list of helper forums"
+msgstr ""
 
-#: mod/admin.php:996
-msgid "Don't include post content in email notifications"
-msgstr "Nezahrnovat obsah příspěvků v emailových upozorněních"
+#: view/theme/vier/config.php:115 src/Core/ACL.php:309
+msgid "don't show"
+msgstr "nikdy nezobrazit"
 
-#: mod/admin.php:996
-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 " V mailových upozorněních, které jsou odesílány z tohoto webu jako soukromé zprávy, nejsou z důvodů bezpečnosti obsaženy příspěvky/komentáře/soukromé zprávy apod. "
+#: view/theme/vier/config.php:115 src/Core/ACL.php:308
+msgid "show"
+msgstr "zobrazit"
 
-#: mod/admin.php:997
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Zakázat veřejný přístup k rozšířením uvedeným v menu aplikace."
+#: view/theme/vier/config.php:122
+msgid "Set style"
+msgstr "Nastavit styl"
 
-#: mod/admin.php:997
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr "Označení této volby omezí rozšíření uvedená v menu aplikace pouze pro členy."
+#: view/theme/vier/config.php:123
+msgid "Community Pages"
+msgstr "Komunitní stránky"
 
-#: mod/admin.php:998
-msgid "Don't embed private images in posts"
-msgstr "Nepovolit přidávání soukromých správ v příspěvcích"
+#: view/theme/vier/config.php:124 view/theme/vier/theme.php:150
+msgid "Community Profiles"
+msgstr "Komunitní profily"
 
-#: mod/admin.php:998
-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 "Nereplikovat lokální soukromé fotografie v příspěvcích s přidáním kopie obrázku. To znamená, že kontakty, které obdrží příspěvek obsahující soukromé fotografie se budou muset přihlásit a načíst každý obrázek, což může zabrat nějaký čas."
+#: view/theme/vier/config.php:125
+msgid "Help or @NewHere ?"
+msgstr "Pomoc nebo @ProNováčky ?"
 
-#: mod/admin.php:999
-msgid "Allow Users to set remote_self"
-msgstr "Umožnit uživatelům nastavit "
+#: view/theme/vier/config.php:126 view/theme/vier/theme.php:388
+msgid "Connect Services"
+msgstr "Propojené služby"
 
-#: mod/admin.php:999
-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 "S tímto označením má každý uživatel možnost označit jakékoliv ze svých kontakt jako \"remote_self\" v nastavení v dialogu opravit kontakt. Tímto označením se budou zrcadlit všechny správy tohoto kontaktu v uživatelově proudu."
+#: view/theme/vier/config.php:127
+msgid "Find Friends"
+msgstr "Nalézt Přátele"
 
-#: mod/admin.php:1000
-msgid "Block multiple registrations"
-msgstr "Blokovat více registrací"
+#: view/theme/vier/config.php:128 view/theme/vier/theme.php:181
+msgid "Last users"
+msgstr "Poslední uživatelé"
 
-#: mod/admin.php:1000
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Znemožnit uživatelům registraci dodatečných účtů k použití jako stránky."
+#: view/theme/vier/theme.php:199 src/Content/Widget.php:59
+msgid "Find People"
+msgstr "Nalézt lidi"
 
-#: mod/admin.php:1001
-msgid "OpenID support"
-msgstr "podpora OpenID"
+#: view/theme/vier/theme.php:200 src/Content/Widget.php:60
+msgid "Enter name or interest"
+msgstr "Zadejte jméno nebo zájmy"
 
-#: mod/admin.php:1001
-msgid "OpenID support for registration and logins."
-msgstr "Podpora OpenID pro registraci a přihlašování."
+#: view/theme/vier/theme.php:202 src/Content/Widget.php:62
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Příklady: Robert Morgenstein, rybaření"
 
-#: mod/admin.php:1002
-msgid "Fullname check"
-msgstr "kontrola úplného jména"
+#: view/theme/vier/theme.php:205 src/Content/Widget.php:65
+msgid "Similar Interests"
+msgstr "Podobné zájmy"
 
-#: mod/admin.php:1002
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr "Přimět uživatele k registraci s mezerou mezi jménu a příjmením v poli Celé jméno, jako antispamové opatření."
+#: view/theme/vier/theme.php:206 src/Content/Widget.php:66
+msgid "Random Profile"
+msgstr "Náhodný Profil"
 
-#: mod/admin.php:1003
-msgid "UTF-8 Regular expressions"
-msgstr "UTF-8 Regulární výrazy"
+#: view/theme/vier/theme.php:207 src/Content/Widget.php:67
+msgid "Invite Friends"
+msgstr "Pozvat přátele"
 
-#: mod/admin.php:1003
-msgid "Use PHP UTF8 regular expressions"
-msgstr "Použít PHP UTF8 regulární výrazy."
+#: view/theme/vier/theme.php:210 src/Content/Widget.php:70
+msgid "Local Directory"
+msgstr "Lokální Adresář"
 
-#: mod/admin.php:1004
-msgid "Community Page Style"
-msgstr "Styl komunitní stránky"
+#: view/theme/vier/theme.php:255 src/Content/ForumManager.php:127
+msgid "External link to forum"
+msgstr ""
 
-#: mod/admin.php:1004
-msgid ""
-"Type of community page to show. 'Global community' shows every public "
-"posting from an open distributed network that arrived on this server."
-msgstr "Typ komunitní stránky k zobrazení. 'Glogální komunita' zobrazuje každý veřejný příspěvek z otevřené distribuované sítě, která dorazí na tento server."
+#: view/theme/vier/theme.php:291
+msgid "Quick Start"
+msgstr "Rychlý start"
 
-#: mod/admin.php:1005
-msgid "Posts per user on community page"
-msgstr "Počet příspěvků na komunitní stránce"
+#: src/Core/UserImport.php:104
+msgid "Error decoding account file"
+msgstr "Chyba dekódování uživatelského účtu"
 
-#: mod/admin.php:1005
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
-msgstr "Maximální počet příspěvků na uživatele na komunitní sptránce. (neplatí pro 'Globální komunitu')"
+#: src/Core/UserImport.php:110
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?"
 
-#: mod/admin.php:1006
-msgid "Enable OStatus support"
-msgstr "Zapnout podporu OStatus"
+#: src/Core/UserImport.php:118
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "Uživatel '%s' již na tomto serveru existuje!"
 
-#: mod/admin.php:1006
-msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr "Poskytnout zabudouvanou kompatibilitu s OStatus (StatusNet, GNU Social apod.). Veškerá komunikace s OStatus je veřejná, proto bude občas zobrazeno upozornění."
+#: src/Core/UserImport.php:151
+msgid "User creation error"
+msgstr "Chyba vytváření uživatele"
 
-#: mod/admin.php:1007
-msgid "OStatus conversation completion interval"
-msgstr "Interval dokončení konverzace OStatus"
+#: src/Core/UserImport.php:169
+msgid "User profile creation error"
+msgstr "Chyba vytváření uživatelského účtu"
 
-#: mod/admin.php:1007
-msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
-msgstr "Jak často by mělo probíhat ověřování pro nové přísvěvky v konverzacích OStatus? Toto může být velmi výkonově náročný úkol."
+#: src/Core/UserImport.php:213
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d kontakt nenaimporován"
+msgstr[1] "%d kontaktů nenaimporováno"
+msgstr[2] "%d kontakty nenaimporovány"
+msgstr[3] "%d kontakty nenaimporovány"
 
-#: mod/admin.php:1008
-msgid "Only import OStatus threads from our contacts"
-msgstr ""
+#: src/Core/UserImport.php:278
+msgid "Done. You can now login with your username and password"
+msgstr "Hotovo. Nyní  se můžete přihlásit se svými uživatelským účtem a heslem"
 
-#: mod/admin.php:1008
-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 ""
+#: src/Core/ACL.php:295
+msgid "Post to Email"
+msgstr "Poslat příspěvek na e-mail"
 
-#: mod/admin.php:1009
-msgid "OStatus support can only be enabled if threading is enabled."
-msgstr ""
+#: src/Core/ACL.php:301
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Skrýt Vaše profilové detaily před neznámými uživateli?"
 
-#: mod/admin.php:1011
-msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub"
-" directory."
-msgstr ""
+#: src/Core/ACL.php:300
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Kontektory deaktivovány, od \"%s\" je aktivován."
 
-#: mod/admin.php:1012
-msgid "Enable Diaspora support"
-msgstr "Povolit podporu Diaspora"
+#: src/Core/ACL.php:307
+msgid "Visible to everybody"
+msgstr "Viditelné pro všechny"
 
-#: mod/admin.php:1012
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Poskytnout zabudovanou kompatibilitu sitě Diaspora."
+#: src/Core/ACL.php:319
+msgid "Close"
+msgstr "Zavřít"
 
-#: mod/admin.php:1013
-msgid "Only allow Friendica contacts"
-msgstr "Povolit pouze Friendica kontakty"
+#: src/Core/Console/NewPassword.php:78
+msgid "Enter new password: "
+msgstr "Zadejte nové heslo"
 
-#: mod/admin.php:1013
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "Všechny kontakty musí používat Friendica protokol. Všchny jiné zabudované komunikační protokoly budou zablokované."
+#: src/Core/Console/NewPassword.php:83 src/Model/User.php:262
+msgid "Password can't be empty"
+msgstr "Heslo nemůže být prázdné"
 
-#: mod/admin.php:1014
-msgid "Verify SSL"
-msgstr "Ověřit SSL"
+#: src/Core/Console/ArchiveContact.php:67
+#, php-format
+msgid "Could not find any unarchived contact entry for this URL (%s)"
+msgstr ""
 
-#: mod/admin.php:1014
-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 "Pokud si přejete, můžete vynutit striktní ověřování certifikátů. To znamená že se nebudete moci připojit k žádnému serveru s vlastním SSL certifikátem."
+#: src/Core/Console/ArchiveContact.php:72
+msgid "The contact entries have been archived"
+msgstr ""
 
-#: mod/admin.php:1015
-msgid "Proxy user"
-msgstr "Proxy uživatel"
+#: src/Core/NotificationsManager.php:171
+msgid "System"
+msgstr "Systém"
 
-#: mod/admin.php:1016
-msgid "Proxy URL"
-msgstr "Proxy URL adresa"
+#: src/Core/NotificationsManager.php:192 src/Content/Nav.php:124
+#: src/Content/Nav.php:186
+msgid "Home"
+msgstr "Domů"
 
-#: mod/admin.php:1017
-msgid "Network timeout"
-msgstr "čas síťového spojení vypršelo (timeout)"
+#: src/Core/NotificationsManager.php:199 src/Content/Nav.php:190
+msgid "Introductions"
+msgstr "Představení"
 
-#: mod/admin.php:1017
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Hodnota ve vteřinách. Nastavte 0 pro neomezeno (není doporučeno)."
+#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s okomentoval příspěvek uživatele %s'"
 
-#: mod/admin.php:1018
-msgid "Delivery interval"
-msgstr "Interval doručování"
+#: src/Core/NotificationsManager.php:267
+#, php-format
+msgid "%s created a new post"
+msgstr "%s vytvořil nový příspěvek"
 
-#: mod/admin.php:1018
-msgid ""
-"Delay background delivery processes by this many seconds to reduce system "
-"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
-"for large dedicated servers."
-msgstr "Prodleva mezi doručovacími procesy běžícími na pozadí snižuje zátěž systému. Doporučené nastavení: 4-5 pro sdílené instalace, 2-3 pro virtuální soukromé servery, 0-1 pro velké dedikované servery."
+#: src/Core/NotificationsManager.php:281
+#, php-format
+msgid "%s liked %s's post"
+msgstr "Uživateli %s se líbí příspěvek uživatele %s"
 
-#: mod/admin.php:1019
-msgid "Poll interval"
-msgstr "Dotazovací interval"
+#: src/Core/NotificationsManager.php:294
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "Uživateli %s se nelíbí příspěvek uživatele %s"
 
-#: mod/admin.php:1019
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Tímto nastavením ovlivníte prodlení mezi aktualizačními procesy běžícími na pozadí, čímž můžete snížit systémovou zátěž. Pokud 0, použijte doručovací interval."
+#: src/Core/NotificationsManager.php:307
+#, php-format
+msgid "%s is attending %s's event"
+msgstr "%s se zúčastní události %s"
 
-#: mod/admin.php:1020
-msgid "Maximum Load Average"
-msgstr "Maximální průměrné zatížení"
+#: src/Core/NotificationsManager.php:320
+#, php-format
+msgid "%s is not attending %s's event"
+msgstr "%s se nezúčastní události %s"
 
-#: mod/admin.php:1020
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Maximální zatížení systému před pozastavením procesů zajišťujících doručování aktualizací - defaultně 50"
+#: src/Core/NotificationsManager.php:333
+#, php-format
+msgid "%s may attend %s's event"
+msgstr "%s by se mohl/a zúčastnit události %s"
 
-#: mod/admin.php:1021
-msgid "Maximum Load Average (Frontend)"
-msgstr "Maximální průměrné zatížení (Frontend)"
+#: src/Core/NotificationsManager.php:350
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s se nyní přátelí s %s"
 
-#: mod/admin.php:1021
-msgid "Maximum system load before the frontend quits service - default 50."
-msgstr "Maximální zatížení systému předtím, než frontend ukončí službu - defaultně 50"
+#: src/Core/NotificationsManager.php:825
+msgid "Friend Suggestion"
+msgstr "Návrh přátelství"
 
-#: mod/admin.php:1022
-msgid "Maximum table size for optimization"
-msgstr ""
+#: src/Core/NotificationsManager.php:851
+msgid "Friend/Connect Request"
+msgstr "Přítel / žádost o připojení"
 
-#: mod/admin.php:1022
-msgid ""
-"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
-"Enter -1 to disable it."
-msgstr ""
+#: src/Core/NotificationsManager.php:851
+msgid "New Follower"
+msgstr "Nový následovník"
 
-#: mod/admin.php:1023
-msgid "Minimum level of fragmentation"
-msgstr ""
+#: src/Core/Install.php:157
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru."
 
-#: mod/admin.php:1023
+#: src/Core/Install.php:158
 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:1025
-msgid "Periodical check of global contacts"
-msgstr "Pravidelně ověřování globálních kontaktů"
+#: src/Core/Install.php:162
+msgid "PHP executable path"
+msgstr "Cesta k \"PHP executable\""
 
-#: mod/admin.php:1025
+#: src/Core/Install.php:162
 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:1026
-msgid "Days between requery"
-msgstr ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Zadejte plnou cestu k spustitelnému souboru php. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci."
 
-#: mod/admin.php:1026
-msgid "Number of days after which a server is requeried for his contacts."
-msgstr ""
+#: src/Core/Install.php:167
+msgid "Command line PHP"
+msgstr "Příkazový řádek PHP"
 
-#: mod/admin.php:1027
-msgid "Discover contacts from other servers"
-msgstr "Objevit kontakty z ostatních serverů"
+#: src/Core/Install.php:176
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "PHP executable není php cli binary (může být verze cgi-fgci)"
 
-#: mod/admin.php:1027
-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 ""
+#: src/Core/Install.php:177
+msgid "Found PHP version: "
+msgstr "Nalezena PHP verze:"
 
-#: mod/admin.php:1028
-msgid "Timeframe for fetching global contacts"
-msgstr ""
+#: src/Core/Install.php:179
+msgid "PHP cli binary"
+msgstr "PHP cli binary"
 
-#: mod/admin.php:1028
+#: src/Core/Install.php:189
 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:1029
-msgid "Search the local directory"
-msgstr "Hledat  v lokálním adresáři"
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu."
 
-#: mod/admin.php:1029
-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 ""
+#: src/Core/Install.php:190
+msgid "This is required for message delivery to work."
+msgstr "Toto je nutné pro fungování doručování zpráv."
 
-#: mod/admin.php:1031
-msgid "Publish server information"
-msgstr "Zveřejnit informace o serveru"
+#: src/Core/Install.php:192
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: mod/admin.php:1031
+#: src/Core/Install.php:220
 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:1033
-msgid "Use MySQL full text engine"
-msgstr "Použít fulltextový vyhledávací stroj MySQL"
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče"
 
-#: mod/admin.php:1033
+#: src/Core/Install.php:221
 msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
-msgstr "Aktivuje fulltextový vyhledávací stroj. Zrychluje vyhledávání ale pouze pro vyhledávání čtyř a více znaků"
-
-#: mod/admin.php:1034
-msgid "Suppress Language"
-msgstr "Potlačit Jazyk"
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Pokud systém běží na Windows, seznamte se s \"http://www.php.net/manual/en/openssl.installation.php\"."
 
-#: mod/admin.php:1034
-msgid "Suppress language information in meta information about a posting."
-msgstr "Potlačit jazykové informace v meta informacích o příspěvcích"
+#: src/Core/Install.php:223
+msgid "Generate encryption keys"
+msgstr "Generovat kriptovací klíče"
 
-#: mod/admin.php:1035
-msgid "Suppress Tags"
-msgstr "Potlačit štítky"
+#: src/Core/Install.php:244
+msgid "libCurl PHP module"
+msgstr "libCurl PHP modul"
 
-#: mod/admin.php:1035
-msgid "Suppress showing a list of hashtags at the end of the posting."
-msgstr "Potlačit zobrazení listu hastagů na konci zprávy."
+#: src/Core/Install.php:245
+msgid "GD graphics PHP module"
+msgstr "GD graphics PHP modul"
 
-#: mod/admin.php:1036
-msgid "Path to item cache"
-msgstr "Cesta k položkám vyrovnávací paměti"
+#: src/Core/Install.php:246
+msgid "OpenSSL PHP module"
+msgstr "OpenSSL PHP modul"
 
-#: mod/admin.php:1036
-msgid "The item caches buffers generated bbcode and external images."
-msgstr ""
+#: src/Core/Install.php:247
+msgid "PDO or MySQLi PHP module"
+msgstr "PHP modul PDO nebo MySQLi"
 
-#: mod/admin.php:1037
-msgid "Cache duration in seconds"
-msgstr "Doba platnosti vyrovnávací paměti v sekundách"
+#: src/Core/Install.php:248
+msgid "mb_string PHP module"
+msgstr "mb_string PHP modul"
 
-#: mod/admin.php:1037
-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 dlouho by měla vyrovnávací paměť držet data? Výchozí hodnota je 86400 sekund (Jeden den). Pro vypnutí funkce vyrovnávací paměti nastavte hodnotu na -1."
+#: src/Core/Install.php:249
+msgid "XML PHP module"
+msgstr "PHP modul XML"
 
-#: mod/admin.php:1038
-msgid "Maximum numbers of comments per post"
-msgstr "Maximální počet komentářů k příspěvku"
+#: src/Core/Install.php:250
+msgid "iconv PHP module"
+msgstr "PHP modul iconv"
 
-#: mod/admin.php:1038
-msgid "How much comments should be shown for each post? Default value is 100."
-msgstr "Kolik komentářů by mělo být zobrazeno k každému příspěvku? Defaultní hodnota je 100."
+#: src/Core/Install.php:251
+msgid "POSIX PHP module"
+msgstr "PHP modul POSIX"
 
-#: mod/admin.php:1039
-msgid "Path for lock file"
-msgstr "Cesta k souboru zámku"
+#: src/Core/Install.php:255 src/Core/Install.php:257
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite modul"
 
-#: mod/admin.php:1039
+#: src/Core/Install.php:255
 msgid ""
-"The lock file is used to avoid multiple pollers at one time. Only define a "
-"folder here."
-msgstr ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován."
 
-#: mod/admin.php:1040
-msgid "Temp path"
-msgstr "Cesta k dočasným souborům"
+#: src/Core/Install.php:263
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Chyba: požadovaný libcurl PHP modul není nainstalován."
 
-#: mod/admin.php:1040
+#: src/Core/Install.php:267
 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:1041
-msgid "Base path to installation"
-msgstr "Základní cesta k instalaci"
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Chyba: požadovaný GD graphics PHP modul není nainstalován."
 
-#: mod/admin.php:1041
-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 ""
+#: src/Core/Install.php:271
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Chyba: požadovaný openssl PHP modul není nainstalován."
 
-#: mod/admin.php:1042
-msgid "Disable picture proxy"
-msgstr "Vypnutí obrázkové proxy"
+#: src/Core/Install.php:275
+msgid "Error: PDO or MySQLi PHP module required but not installed."
+msgstr "Chyba: PHP modul PDO nebo MySQLi je vyžadován ale není nainstalován."
 
-#: mod/admin.php:1042
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
-msgstr "Obrázková proxi zvyšuje výkonnost a soukromí. Neměla by být použita na systémech s pomalým připojením k síti."
+#: src/Core/Install.php:279
+msgid "Error: The MySQL driver for PDO is not installed."
+msgstr "Chyba: Ovladač MySQL pro PDO není nainstalován"
 
-#: mod/admin.php:1043
-msgid "Enable old style pager"
-msgstr "Aktivovat \"old style\" stránkování "
+#: src/Core/Install.php:283
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Chyba: PHP modul mb_string  je vyžadován, ale není nainstalován."
 
-#: mod/admin.php:1043
-msgid ""
-"The old style pager has page numbers but slows down massively the page "
-"speed."
-msgstr " \"old style\" stránkování zobrazuje čísla stránek ale značně zpomaluje rychlost stránky."
+#: src/Core/Install.php:287
+msgid "Error: iconv PHP module required but not installed."
+msgstr "Chyba: PHP modul iconv je vyžadován ale není nainstalován"
 
-#: mod/admin.php:1044
-msgid "Only search in tags"
-msgstr "Hledat pouze ve štítkách"
+#: src/Core/Install.php:291
+msgid "Error: POSIX PHP module required but not installed."
+msgstr "Chyba: PHP modul POSIX je vyžadován ale není nainstalován."
 
-#: mod/admin.php:1044
-msgid "On large systems the text search can slow down the system extremely."
-msgstr "Textové vyhledávání může u rozsáhlých systémů znamenat velmi citelné zpomalení systému."
+#: src/Core/Install.php:301
+msgid "Error, XML PHP module required but not installed."
+msgstr "Chyba: PHP modul XML je vyžadován ale není nainstalován"
 
-#: mod/admin.php:1046
-msgid "New base url"
-msgstr "Nová výchozí url adresa"
+#: src/Core/Install.php:320
+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 "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři vašeho webového serveru ale nyní mu to není umožněno."
 
-#: mod/admin.php:1046
+#: src/Core/Install.php:321
 msgid ""
-"Change base url for this server. Sends relocate message to all DFRN contacts"
-" of all users."
-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 "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když Vy můžete."
 
-#: mod/admin.php:1048
-msgid "RINO Encryption"
-msgstr "RINO Šifrování"
+#: src/Core/Install.php:322
+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 "Na konci této procedury obd nás obdržíte text k uložení v souboru pojmenovaném .htconfig.php ve Vašem Friendica kořenovém adresáři."
 
-#: mod/admin.php:1048
-msgid "Encryption layer between nodes."
-msgstr "Šifrovací vrstva mezi nódy."
+#: src/Core/Install.php:323
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor \"INSTALL.txt\" pro další instrukce."
 
-#: mod/admin.php:1049
-msgid "Embedly API key"
-msgstr ""
+#: src/Core/Install.php:326
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php je editovatelné"
 
-#: mod/admin.php:1049
+#: src/Core/Install.php:344
 msgid ""
-"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
-"web pages. This is an optional parameter."
-msgstr ""
-
-#: mod/admin.php:1051
-msgid "Enable 'worker' background processing"
-msgstr ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování."
 
-#: mod/admin.php:1051
+#: src/Core/Install.php:345
 msgid ""
-"The worker background processing limits the number of parallel background "
-"jobs to a maximum number and respects the system load."
-msgstr ""
+"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 "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica"
 
-#: mod/admin.php:1052
-msgid "Maximum number of parallel workers"
-msgstr ""
+#: src/Core/Install.php:346
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře"
 
-#: mod/admin.php:1052
+#: src/Core/Install.php:347
 msgid ""
-"On shared hosters set this to 2. On larger systems, values of 10 are great. "
-"Default value is 4."
-msgstr ""
+"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 "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje."
 
-#: mod/admin.php:1053
-msgid "Don't use 'proc_open' with the worker"
-msgstr ""
+#: src/Core/Install.php:350
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 je nastaven pro zápis"
 
-#: mod/admin.php:1053
+#: src/Core/Install.php:375
 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 poller calls in your crontab."
-msgstr ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "Url rewrite v .htconfig nefunguje. Prověřte prosím Vaše nastavení serveru."
 
-#: mod/admin.php:1054
-msgid "Enable fastlane"
-msgstr ""
+#: src/Core/Install.php:377
+msgid "Error message from Curl when fetching"
+msgstr "Chybová zpráva od Curl při načítání"
 
-#: mod/admin.php:1054
-msgid ""
-"When enabed, the fastlane mechanism starts an additional worker if processes"
-" with higher priority are blocked by processes of lower priority."
-msgstr ""
+#: src/Core/Install.php:381
+msgid "Url rewrite is working"
+msgstr "Url rewrite je funkční."
 
-#: mod/admin.php:1055
-msgid "Enable frontend worker"
-msgstr ""
+#: src/Core/Install.php:408
+msgid "ImageMagick PHP extension is not installed"
+msgstr "PHP rozšíření ImageMagick není nainstalováno"
 
-#: mod/admin.php:1055
-msgid ""
-"When enabled the Worker process is triggered when backend access is "
-"performed (e.g. messages being delivered). On smaller sites you might want "
-"to call yourdomain.tld/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. The worker background process needs to be activated for "
-"this."
-msgstr ""
+#: src/Core/Install.php:410
+msgid "ImageMagick PHP extension is installed"
+msgstr "PHP rozšíření ImageMagick je nainstalováno"
+
+#: src/Core/Install.php:412
+msgid "ImageMagick supports GIF"
+msgstr "ImageMagick podporuje GIF"
 
-#: mod/admin.php:1084
-msgid "Update has been marked successful"
-msgstr "Aktualizace byla označena jako úspěšná."
+#: src/Util/Temporal.php:147 src/Model/Profile.php:756
+msgid "Birthday:"
+msgstr "Narozeniny:"
 
-#: mod/admin.php:1092
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "Aktualizace struktury databáze %s byla úspěšně aplikována."
+#: src/Util/Temporal.php:151
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "RRRR-MM-DD nebo MM-DD"
 
-#: mod/admin.php:1095
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
-msgstr "Provádění aktualizace databáze %s skončilo chybou: %s"
+#: src/Util/Temporal.php:294
+msgid "never"
+msgstr "nikdy"
 
-#: mod/admin.php:1107
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr "Vykonávání %s selhalo s chybou: %s"
+#: src/Util/Temporal.php:300
+msgid "less than a second ago"
+msgstr "méně než před sekundou"
 
-#: mod/admin.php:1110
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Aktualizace %s byla úspěšně aplikována."
+#: src/Util/Temporal.php:303
+msgid "year"
+msgstr "rok"
 
-#: mod/admin.php:1114
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "Aktualizace %s nevrátila žádný status. Není zřejmé, jestli byla úspěšná."
+#: src/Util/Temporal.php:303
+msgid "years"
+msgstr "let"
 
-#: mod/admin.php:1116
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
-msgstr "Nebyla nalezena žádná další aktualizační funkce %s která by měla být volána."
+#: src/Util/Temporal.php:304
+msgid "months"
+msgstr "měsíců"
 
-#: mod/admin.php:1135
-msgid "No failed updates."
-msgstr "Žádné neúspěšné aktualizace."
+#: src/Util/Temporal.php:305
+msgid "weeks"
+msgstr "týdny"
 
-#: mod/admin.php:1136
-msgid "Check database structure"
-msgstr "Ověření struktury databáze"
+#: src/Util/Temporal.php:306
+msgid "days"
+msgstr "dnů"
 
-#: mod/admin.php:1141
-msgid "Failed Updates"
-msgstr "Neúspěšné aktualizace"
+#: src/Util/Temporal.php:307
+msgid "hour"
+msgstr "hodina"
 
-#: mod/admin.php:1142
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr "To nezahrnuje aktualizace do verze 1139, které nevracejí žádný status."
+#: src/Util/Temporal.php:307
+msgid "hours"
+msgstr "hodin"
 
-#: mod/admin.php:1143
-msgid "Mark success (if update was manually applied)"
-msgstr "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)"
+#: src/Util/Temporal.php:308
+msgid "minute"
+msgstr "minuta"
 
-#: mod/admin.php:1144
-msgid "Attempt to execute this update step automatically"
-msgstr "Pokusit se provést tuto aktualizaci automaticky."
+#: src/Util/Temporal.php:308
+msgid "minutes"
+msgstr "minut"
 
-#: mod/admin.php:1178
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tthe administrator of %2$s has set up an account for you."
-msgstr "\n\t\t\tDrahý %1$s,\n\t\t\t\tadministrátor webu %2$s pro Vás vytvořil uživatelský účet."
+#: src/Util/Temporal.php:309
+msgid "second"
+msgstr "sekunda"
 
-#: mod/admin.php:1181
-#, 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\tThank you and welcome to %4$s."
-msgstr "\n\t\t\tVaše přihlašovací údaje jsou následující:\n\n\t\t\tAdresa webu: \t%1$s\n\t\t\tpřihlašovací jméno:\t\t%2$s\n\t\t\theslo:\t\t%3$s\n\n\t\t\tHeslo si můžete změnit na stránce \"Nastavení\" vašeho účtu poté, co se přihlásíte.\n\n\t\t\tProsím věnujte pár chvil revizi dalšího nastavení vašeho účtu na dané stránce.\n\n\t\t\tTaké su můžete přidat nějaké základní informace do svého výchozího profilu (na stránce \"Profily\"), takže ostatní lidé vás snáze najdou. \n\n\t\t\tDoporučujeme Vám uvést celé jméno a i foto. Přidáním nějakých \"klíčových slov\" (velmi užitečné pro hledání nových přátel) a možná také zemi, ve které žijete, pokud nechcete být více konkrétní.\n\n\t\t\tPlně resepktujeme vaše právo na soukromí a nic z výše uvedeného není povinné. Pokud jste zde nový a neznáte zde nikoho, uvedením daných informací můžete získat nové přátele.\n\n\t\t\tDíky a vítejte na %4$s."
+#: src/Util/Temporal.php:309
+msgid "seconds"
+msgstr "sekund"
 
-#: mod/admin.php:1225
+#: src/Util/Temporal.php:318
 #, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s uživatel blokován/odblokován"
-msgstr[1] "%s uživatelů blokováno/odblokováno"
-msgstr[2] "%s uživatelů blokováno/odblokováno"
+msgid "%1$d %2$s ago"
+msgstr "před %1$d %2$s"
 
-#: mod/admin.php:1232
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s uživatel smazán"
-msgstr[1] "%s uživatelů smazáno"
-msgstr[2] "%s uživatelů smazáno"
+#: src/Content/Text/BBCode.php:426
+msgid "view full size"
+msgstr "zobrazit v plné velikosti"
 
-#: mod/admin.php:1279
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Uživatel '%s' smazán"
+#: src/Content/Text/BBCode.php:852 src/Content/Text/BBCode.php:1621
+#: src/Content/Text/BBCode.php:1622
+msgid "Image/photo"
+msgstr "Obrázek/fotografie"
 
-#: mod/admin.php:1287
+#: src/Content/Text/BBCode.php:990
 #, php-format
-msgid "User '%s' unblocked"
-msgstr "Uživatel '%s' odblokován"
+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/admin.php:1287
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Uživatel '%s' blokován"
+#: src/Content/Text/BBCode.php:1548 src/Content/Text/BBCode.php:1570
+msgid "$1 wrote:"
+msgstr "$1 napsal:"
 
-#: mod/admin.php:1396 mod/admin.php:1422
-msgid "Register date"
-msgstr "Datum registrace"
+#: src/Content/Text/BBCode.php:1630 src/Content/Text/BBCode.php:1631
+msgid "Encrypted content"
+msgstr "Šifrovaný obsah"
 
-#: mod/admin.php:1396 mod/admin.php:1422
-msgid "Last login"
-msgstr "Datum posledního přihlášení"
+#: src/Content/Text/BBCode.php:1750
+msgid "Invalid source protocol"
+msgstr "Neplatný zdrojový protocol"
 
-#: mod/admin.php:1396 mod/admin.php:1422
-msgid "Last item"
-msgstr "Poslední položka"
+#: src/Content/Text/BBCode.php:1761
+msgid "Invalid link protocol"
+msgstr "Neplatný linkový protokol"
 
-#: mod/admin.php:1405
-msgid "Add User"
-msgstr "Přidat Uživatele"
+#: src/Content/OEmbed.php:253
+msgid "Embedding disabled"
+msgstr "Vkládání zakázáno"
 
-#: mod/admin.php:1406
-msgid "select all"
-msgstr "Vybrat vše"
+#: src/Content/OEmbed.php:373
+msgid "Embedded content"
+msgstr "vložený obsah"
 
-#: mod/admin.php:1407
-msgid "User registrations waiting for confirm"
-msgstr "Registrace uživatele čeká na potvrzení"
+#: src/Content/Widget/CalendarExport.php:61
+msgid "Export"
+msgstr "Exportovat"
 
-#: mod/admin.php:1408
-msgid "User waiting for permanent deletion"
-msgstr "Uživatel čeká na trvalé smazání"
+#: src/Content/Widget/CalendarExport.php:62
+msgid "Export calendar as ical"
+msgstr "Exportovat kalendář jako ical"
 
-#: mod/admin.php:1409
-msgid "Request date"
-msgstr "Datum žádosti"
+#: src/Content/Widget/CalendarExport.php:63
+msgid "Export calendar as csv"
+msgstr "Exportovat kalendář jako csv"
 
-#: mod/admin.php:1410
-msgid "No registrations."
-msgstr "Žádné registrace."
+#: src/Content/ContactSelector.php:55
+msgid "Frequently"
+msgstr "Často"
 
-#: mod/admin.php:1411
-msgid "Note from the user"
-msgstr ""
+#: src/Content/ContactSelector.php:56
+msgid "Hourly"
+msgstr "Hodinově"
 
-#: mod/admin.php:1413
-msgid "Deny"
-msgstr "Odmítnout"
+#: src/Content/ContactSelector.php:57
+msgid "Twice daily"
+msgstr "Dvakrát denně"
 
-#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805
-#: mod/contacts.php:983
-msgid "Block"
-msgstr "Blokovat"
+#: src/Content/ContactSelector.php:58
+msgid "Daily"
+msgstr "Denně"
 
-#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805
-#: mod/contacts.php:983
-msgid "Unblock"
-msgstr "Odblokovat"
+#: src/Content/ContactSelector.php:59
+msgid "Weekly"
+msgstr "Týdně"
 
-#: mod/admin.php:1417
-msgid "Site admin"
-msgstr "Site administrátor"
+#: src/Content/ContactSelector.php:60
+msgid "Monthly"
+msgstr "Měsíčně"
 
-#: mod/admin.php:1418
-msgid "Account expired"
-msgstr "Účtu vypršela platnost"
+#: src/Content/ContactSelector.php:80
+msgid "OStatus"
+msgstr "OStatus"
 
-#: mod/admin.php:1421
-msgid "New User"
-msgstr "Nový uživatel"
+#: src/Content/ContactSelector.php:81
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: mod/admin.php:1422
-msgid "Deleted since"
-msgstr "Smazán od"
+#: src/Content/ContactSelector.php:84
+msgid "Facebook"
+msgstr "Facebook"
 
-#: mod/admin.php:1427
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Vybraní uživatelé budou smazáni!\\n\\n Vše, co tito uživatelé na těchto stránkách vytvořili, bude trvale odstraněno!\\n\\n Opravdu pokračovat?"
+#: src/Content/ContactSelector.php:85
+msgid "Zot!"
+msgstr "Zot!"
 
-#: mod/admin.php:1428
-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živatel {0} bude smazán!\\n\\n Vše, co tento uživatel na těchto stránkách vytvořil, bude trvale odstraněno!\\n\\n Opravdu pokračovat?"
+#: src/Content/ContactSelector.php:86
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: mod/admin.php:1438
-msgid "Name of the new user."
-msgstr "Jméno nového uživatele"
+#: src/Content/ContactSelector.php:87
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: mod/admin.php:1439
-msgid "Nickname"
-msgstr "Přezdívka"
+#: src/Content/ContactSelector.php:88
+msgid "MySpace"
+msgstr "MySpace"
 
-#: mod/admin.php:1439
-msgid "Nickname of the new user."
-msgstr "Přezdívka nového uživatele."
+#: src/Content/ContactSelector.php:89
+msgid "Google+"
+msgstr "Google+"
 
-#: mod/admin.php:1440
-msgid "Email address of the new user."
-msgstr "Emailová adresa nového uživatele."
+#: src/Content/ContactSelector.php:90
+msgid "pump.io"
+msgstr "pump.io"
 
-#: mod/admin.php:1483
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s zakázán."
+#: src/Content/ContactSelector.php:91
+msgid "Twitter"
+msgstr "Twitter"
 
-#: mod/admin.php:1487
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s povolen."
+#: src/Content/ContactSelector.php:92
+msgid "Diaspora Connector"
+msgstr "Diaspora Connector"
 
-#: mod/admin.php:1498 mod/admin.php:1734
-msgid "Disable"
-msgstr "Zakázat"
+#: src/Content/ContactSelector.php:93
+msgid "GNU Social Connector"
+msgstr "GNU Social Connector"
 
-#: mod/admin.php:1500 mod/admin.php:1736
-msgid "Enable"
-msgstr "Povolit"
+#: src/Content/ContactSelector.php:94
+msgid "pnut"
+msgstr "pnut"
 
-#: mod/admin.php:1523 mod/admin.php:1781
-msgid "Toggle"
-msgstr "Přepnout"
+#: src/Content/ContactSelector.php:95
+msgid "App.net"
+msgstr "App.net"
 
-#: mod/admin.php:1531 mod/admin.php:1790
-msgid "Author: "
-msgstr "Autor: "
+#: src/Content/ContactSelector.php:125
+msgid "Male"
+msgstr "Muž"
 
-#: mod/admin.php:1532 mod/admin.php:1791
-msgid "Maintainer: "
-msgstr "Správce: "
+#: src/Content/ContactSelector.php:125
+msgid "Female"
+msgstr "Žena"
+
+#: src/Content/ContactSelector.php:125
+msgid "Currently Male"
+msgstr "V současné době muž"
 
-#: mod/admin.php:1584
-msgid "Reload active plugins"
-msgstr ""
+#: src/Content/ContactSelector.php:125
+msgid "Currently Female"
+msgstr "V současné době žena"
 
-#: mod/admin.php:1589
-#, php-format
-msgid ""
-"There are currently no plugins available on your node. You can find the "
-"official plugin repository at %1$s and might find other interesting plugins "
-"in the open plugin registry at %2$s"
-msgstr ""
+#: src/Content/ContactSelector.php:125
+msgid "Mostly Male"
+msgstr "Z větší části muž"
 
-#: mod/admin.php:1694
-msgid "No themes found."
-msgstr "Nenalezeny žádná témata."
+#: src/Content/ContactSelector.php:125
+msgid "Mostly Female"
+msgstr "Z větší části žena"
 
-#: mod/admin.php:1772
-msgid "Screenshot"
-msgstr "Snímek obrazovky"
+#: src/Content/ContactSelector.php:125
+msgid "Transgender"
+msgstr "Transgender"
 
-#: mod/admin.php:1832
-msgid "Reload active themes"
-msgstr ""
+#: src/Content/ContactSelector.php:125
+msgid "Intersex"
+msgstr "Intersexuál"
 
-#: mod/admin.php:1837
-#, php-format
-msgid "No themes found on the system. They should be paced in %1$s"
-msgstr ""
+#: src/Content/ContactSelector.php:125
+msgid "Transsexual"
+msgstr "Transsexuál"
 
-#: mod/admin.php:1838
-msgid "[Experimental]"
-msgstr "[Experimentální]"
+#: src/Content/ContactSelector.php:125
+msgid "Hermaphrodite"
+msgstr "Hermafrodit"
 
-#: mod/admin.php:1839
-msgid "[Unsupported]"
-msgstr "[Nepodporováno]"
+#: src/Content/ContactSelector.php:125
+msgid "Neuter"
+msgstr "Neutrální"
 
-#: mod/admin.php:1863
-msgid "Log settings updated."
-msgstr "Nastavení protokolu aktualizováno."
+#: src/Content/ContactSelector.php:125
+msgid "Non-specific"
+msgstr "Nespecifikováno"
 
-#: mod/admin.php:1895
-msgid "PHP log currently enabled."
-msgstr ""
+#: src/Content/ContactSelector.php:125
+msgid "Other"
+msgstr "Jiné"
 
-#: mod/admin.php:1897
-msgid "PHP log currently disabled."
-msgstr ""
+#: src/Content/ContactSelector.php:147
+msgid "Males"
+msgstr "Muži"
 
-#: mod/admin.php:1906
-msgid "Clear"
-msgstr "Vyčistit"
+#: src/Content/ContactSelector.php:147
+msgid "Females"
+msgstr "Ženy"
 
-#: mod/admin.php:1911
-msgid "Enable Debugging"
-msgstr "Povolit ladění"
+#: src/Content/ContactSelector.php:147
+msgid "Gay"
+msgstr "Gay"
 
-#: mod/admin.php:1912
-msgid "Log file"
-msgstr "Soubor s logem"
+#: src/Content/ContactSelector.php:147
+msgid "Lesbian"
+msgstr "Lesbička"
 
-#: mod/admin.php:1912
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "Musí být editovatelné web serverem. Relativní cesta k vašemu kořenovému adresáři Friendica"
+#: src/Content/ContactSelector.php:147
+msgid "No Preference"
+msgstr "Bez preferencí"
 
-#: mod/admin.php:1913
-msgid "Log level"
-msgstr "Úroveň auditu"
+#: src/Content/ContactSelector.php:147
+msgid "Bisexual"
+msgstr "Bisexuál"
 
-#: mod/admin.php:1916
-msgid "PHP logging"
-msgstr ""
+#: src/Content/ContactSelector.php:147
+msgid "Autosexual"
+msgstr "Autosexuál"
 
-#: mod/admin.php:1917
-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 ""
+#: src/Content/ContactSelector.php:147
+msgid "Abstinent"
+msgstr "Abstinent"
 
-#: mod/admin.php:2045
-#, php-format
-msgid "Lock feature %s"
-msgstr ""
+#: src/Content/ContactSelector.php:147
+msgid "Virgin"
+msgstr "panic/panna"
 
-#: mod/admin.php:2053
-msgid "Manage Additional Features"
-msgstr ""
+#: src/Content/ContactSelector.php:147
+msgid "Deviant"
+msgstr "Deviant"
 
-#: mod/contacts.php:128
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+#: src/Content/ContactSelector.php:147
+msgid "Fetish"
+msgstr "Fetišista"
 
-#: mod/contacts.php:159 mod/contacts.php:368
-msgid "Could not access contact record."
-msgstr "Nelze získat přístup k záznamu kontaktu."
+#: src/Content/ContactSelector.php:147
+msgid "Oodles"
+msgstr "Hodně"
 
-#: mod/contacts.php:173
-msgid "Could not locate selected profile."
-msgstr "Nelze nalézt vybraný profil."
+#: src/Content/ContactSelector.php:147
+msgid "Nonsexual"
+msgstr "Nesexuální"
 
-#: mod/contacts.php:206
-msgid "Contact updated."
-msgstr "Kontakt aktualizován."
+#: src/Content/ContactSelector.php:169
+msgid "Single"
+msgstr "Svobodný"
 
-#: mod/contacts.php:208 mod/dfrn_request.php:583
-msgid "Failed to update contact record."
-msgstr "Nepodařilo se aktualizovat kontakt."
+#: src/Content/ContactSelector.php:169
+msgid "Lonely"
+msgstr "Osamnělý"
 
-#: mod/contacts.php:389
-msgid "Contact has been blocked"
-msgstr "Kontakt byl zablokován"
+#: src/Content/ContactSelector.php:169
+msgid "Available"
+msgstr "Dostupný"
 
-#: mod/contacts.php:389
-msgid "Contact has been unblocked"
-msgstr "Kontakt byl odblokován"
+#: src/Content/ContactSelector.php:169
+msgid "Unavailable"
+msgstr "Nedostupný"
 
-#: mod/contacts.php:400
-msgid "Contact has been ignored"
-msgstr "Kontakt bude ignorován"
+#: src/Content/ContactSelector.php:169
+msgid "Has crush"
+msgstr "Zamilovaný"
 
-#: mod/contacts.php:400
-msgid "Contact has been unignored"
-msgstr "Kontakt přestal být ignorován"
+#: src/Content/ContactSelector.php:169
+msgid "Infatuated"
+msgstr "Zabouchnutý"
 
-#: mod/contacts.php:412
-msgid "Contact has been archived"
-msgstr "Kontakt byl archivován"
+#: src/Content/ContactSelector.php:169
+msgid "Dating"
+msgstr "Seznamující se"
 
-#: mod/contacts.php:412
-msgid "Contact has been unarchived"
-msgstr "Kontakt byl vrácen z archívu."
+#: src/Content/ContactSelector.php:169
+msgid "Unfaithful"
+msgstr "Nevěrný"
 
-#: mod/contacts.php:437
-msgid "Drop contact"
-msgstr ""
+#: src/Content/ContactSelector.php:169
+msgid "Sex Addict"
+msgstr "Závislý na sexu"
 
-#: mod/contacts.php:440 mod/contacts.php:801
-msgid "Do you really want to delete this contact?"
-msgstr "Opravdu chcete smazat tento kontakt?"
+#: src/Content/ContactSelector.php:169 src/Model/User.php:521
+msgid "Friends"
+msgstr "Přátelé"
 
-#: mod/contacts.php:457
-msgid "Contact has been removed."
-msgstr "Kontakt byl odstraněn."
+#: src/Content/ContactSelector.php:169
+msgid "Friends/Benefits"
+msgstr "Přátelé / výhody"
 
-#: mod/contacts.php:498
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Jste vzájemní přátelé s uživatelem %s"
+#: src/Content/ContactSelector.php:169
+msgid "Casual"
+msgstr "Ležérní"
 
-#: mod/contacts.php:502
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Sdílíte s uživatelem %s"
+#: src/Content/ContactSelector.php:169
+msgid "Engaged"
+msgstr "Zadaný"
 
-#: mod/contacts.php:507
-#, php-format
-msgid "%s is sharing with you"
-msgstr "uživatel %s sdílí s vámi"
+#: src/Content/ContactSelector.php:169
+msgid "Married"
+msgstr "Ženatý/vdaná"
 
-#: mod/contacts.php:527
-msgid "Private communications are not available for this contact."
-msgstr "Soukromá komunikace není dostupná pro tento kontakt."
+#: src/Content/ContactSelector.php:169
+msgid "Imaginarily married"
+msgstr "Pomyslně ženatý/vdaná"
 
-#: mod/contacts.php:534
-msgid "(Update was successful)"
-msgstr "(Aktualizace byla úspěšná)"
+#: src/Content/ContactSelector.php:169
+msgid "Partners"
+msgstr "Partneři"
 
-#: mod/contacts.php:534
-msgid "(Update was not successful)"
-msgstr "(Aktualizace nebyla úspěšná)"
+#: src/Content/ContactSelector.php:169
+msgid "Cohabiting"
+msgstr "Žijící ve společné domácnosti"
 
-#: mod/contacts.php:536 mod/contacts.php:964
-msgid "Suggest friends"
-msgstr "Navrhněte přátelé"
+#: src/Content/ContactSelector.php:169
+msgid "Common law"
+msgstr "Zvykové právo"
 
-#: mod/contacts.php:540
-#, php-format
-msgid "Network type: %s"
-msgstr "Typ sítě: %s"
+#: src/Content/ContactSelector.php:169
+msgid "Happy"
+msgstr "Šťastný"
 
-#: mod/contacts.php:553
-msgid "Communications lost with this contact!"
-msgstr "Komunikace s tímto kontaktem byla ztracena!"
+#: src/Content/ContactSelector.php:169
+msgid "Not looking"
+msgstr "Nehledající"
 
-#: mod/contacts.php:556
-msgid "Fetch further information for feeds"
-msgstr "Načítat další informace pro kanál"
+#: src/Content/ContactSelector.php:169
+msgid "Swinger"
+msgstr "Swinger"
 
-#: mod/contacts.php:557
-msgid "Fetch information"
-msgstr "Načítat informace"
+#: src/Content/ContactSelector.php:169
+msgid "Betrayed"
+msgstr "Zrazen"
 
-#: mod/contacts.php:557
-msgid "Fetch information and keywords"
-msgstr "Načítat informace a klíčová slova"
+#: src/Content/ContactSelector.php:169
+msgid "Separated"
+msgstr "Odloučený"
 
-#: mod/contacts.php:575
-msgid "Contact"
-msgstr ""
+#: src/Content/ContactSelector.php:169
+msgid "Unstable"
+msgstr "Nestálý"
 
-#: mod/contacts.php:578
-msgid "Profile Visibility"
-msgstr "Viditelnost profilu"
+#: src/Content/ContactSelector.php:169
+msgid "Divorced"
+msgstr "Rozvedený(á)"
 
-#: mod/contacts.php:579
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu."
+#: src/Content/ContactSelector.php:169
+msgid "Imaginarily divorced"
+msgstr "Pomyslně rozvedený"
 
-#: mod/contacts.php:580
-msgid "Contact Information / Notes"
-msgstr "Kontaktní informace / poznámky"
+#: src/Content/ContactSelector.php:169
+msgid "Widowed"
+msgstr "Ovdovělý(á)"
 
-#: mod/contacts.php:581
-msgid "Edit contact notes"
-msgstr "Editovat poznámky kontaktu"
+#: src/Content/ContactSelector.php:169
+msgid "Uncertain"
+msgstr "Nejistý"
 
-#: mod/contacts.php:587
-msgid "Block/Unblock contact"
-msgstr "Blokovat / Odblokovat kontakt"
+#: src/Content/ContactSelector.php:169
+msgid "It's complicated"
+msgstr "Je to složité"
 
-#: mod/contacts.php:588
-msgid "Ignore contact"
-msgstr "Ignorovat kontakt"
+#: src/Content/ContactSelector.php:169
+msgid "Don't care"
+msgstr "Nezajímá"
 
-#: mod/contacts.php:589
-msgid "Repair URL settings"
-msgstr "Opravit nastavení adresy URL "
+#: src/Content/ContactSelector.php:169
+msgid "Ask me"
+msgstr "Zeptej se mě"
 
-#: mod/contacts.php:590
-msgid "View conversations"
-msgstr "Zobrazit konverzace"
+#: src/Content/Widget.php:33
+msgid "Add New Contact"
+msgstr "Přidat nový kontakt"
 
-#: mod/contacts.php:596
-msgid "Last update:"
-msgstr "Poslední aktualizace:"
+#: src/Content/Widget.php:34
+msgid "Enter address or web location"
+msgstr "Zadejte adresu nebo umístění webu"
 
-#: mod/contacts.php:598
-msgid "Update public posts"
-msgstr "Aktualizovat veřejné příspěvky"
+#: src/Content/Widget.php:35
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Příklad: jan@příklad.cz, http://příklad.cz/jana"
 
-#: mod/contacts.php:600 mod/contacts.php:974
-msgid "Update now"
-msgstr "Aktualizovat"
+#: src/Content/Widget.php:53
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "Pozvánka %d k dispozici"
+msgstr[1] "Pozvánky %d k dispozici"
+msgstr[2] "Pozvánky %d k dispozici"
+msgstr[3] "Pozvánky %d k dispozici"
 
-#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:991
-msgid "Unignore"
-msgstr "Přestat ignorovat"
+#: src/Content/Widget.php:164
+msgid "Networks"
+msgstr "Sítě"
+
+#: src/Content/Widget.php:167
+msgid "All Networks"
+msgstr "Všechny sítě"
 
-#: mod/contacts.php:610
-msgid "Currently blocked"
-msgstr "V současnosti zablokováno"
+#: src/Content/Widget.php:205 src/Content/Feature.php:118
+msgid "Saved Folders"
+msgstr "Uložené složky"
 
-#: mod/contacts.php:611
-msgid "Currently ignored"
-msgstr "V současnosti ignorováno"
+#: src/Content/Widget.php:208 src/Content/Widget.php:248
+msgid "Everything"
+msgstr "Všechno"
 
-#: mod/contacts.php:612
-msgid "Currently archived"
-msgstr "Aktuálně archivován"
+#: src/Content/Widget.php:245
+msgid "Categories"
+msgstr "Kategorie"
 
-#: mod/contacts.php:613
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Odpovědi/Libí se na Vaše veřejné příspěvky <strong>mohou být</strong> stále viditelné"
+#: src/Content/Widget.php:312
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d sdílený kontakt"
+msgstr[1] "%d sdílených kontaktů"
+msgstr[2] "%d sdílených kontaktů"
+msgstr[3] "%d sdílených kontaktů"
 
-#: mod/contacts.php:614
-msgid "Notification for new posts"
-msgstr "Upozornění na nové příspěvky"
+#: src/Content/Feature.php:79
+msgid "General Features"
+msgstr "Obecné funkčnosti"
 
-#: mod/contacts.php:614
-msgid "Send a notification of every new post of this contact"
-msgstr "Poslat upozornění při každém novém příspěvku tohoto kontaktu"
+#: src/Content/Feature.php:81
+msgid "Multiple Profiles"
+msgstr "Vícenásobné profily"
 
-#: mod/contacts.php:617
-msgid "Blacklisted keywords"
-msgstr "Zakázaná klíčová slova"
+#: src/Content/Feature.php:81
+msgid "Ability to create multiple profiles"
+msgstr "Schopnost vytvořit vícenásobné profily"
 
-#: mod/contacts.php:617
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
-msgstr "Čárkou oddělený seznam klíčových slov, které by neměly být převáděna na hashtagy, když je zvoleno \"Načítat informace a klíčová slova\""
+#: src/Content/Feature.php:82
+msgid "Photo Location"
+msgstr "Umístění fotky"
 
-#: mod/contacts.php:635
-msgid "Actions"
+#: 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 ""
 
-#: mod/contacts.php:638
-msgid "Contact Settings"
+#: src/Content/Feature.php:83
+msgid "Export Public Calendar"
 msgstr ""
 
-#: mod/contacts.php:684
-msgid "Suggestions"
-msgstr "Doporučení"
+#: src/Content/Feature.php:83
+msgid "Ability for visitors to download the public calendar"
+msgstr ""
 
-#: mod/contacts.php:687
-msgid "Suggest potential friends"
-msgstr "Navrhnout potenciální přátele"
+#: src/Content/Feature.php:88
+msgid "Post Composition Features"
+msgstr "Nastavení vytváření příspěvků"
 
-#: mod/contacts.php:695
-msgid "Show all contacts"
-msgstr "Zobrazit všechny kontakty"
+#: src/Content/Feature.php:89
+msgid "Post Preview"
+msgstr "Náhled příspěvku"
 
-#: mod/contacts.php:700
-msgid "Unblocked"
-msgstr "Odblokován"
+#: src/Content/Feature.php:89
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Povolit náhledy příspěvků a komentářů před jejich zveřejněním"
 
-#: mod/contacts.php:703
-msgid "Only show unblocked contacts"
-msgstr "Zobrazit pouze neblokované kontakty"
+#: src/Content/Feature.php:90
+msgid "Auto-mention Forums"
+msgstr "Automaticky zmínit fóra"
 
-#: mod/contacts.php:709
-msgid "Blocked"
-msgstr "Blokován"
+#: src/Content/Feature.php:90
+msgid ""
+"Add/remove mention when a forum page is selected/deselected in ACL window."
+msgstr "Přidat/odstranit zmínku, když je stránka na fóru označena/odznačena v okně ACL."
 
-#: mod/contacts.php:712
-msgid "Only show blocked contacts"
-msgstr "Zobrazit pouze blokované kontakty"
+#: src/Content/Feature.php:95
+msgid "Network Sidebar"
+msgstr ""
 
-#: mod/contacts.php:718
-msgid "Ignored"
-msgstr "Ignorován"
+#: src/Content/Feature.php:96
+msgid "Ability to select posts by date ranges"
+msgstr "Možnost označit příspěvky dle časového intervalu"
 
-#: mod/contacts.php:721
-msgid "Only show ignored contacts"
-msgstr "Zobrazit pouze ignorované kontakty"
+#: src/Content/Feature.php:97 src/Content/Feature.php:127
+msgid "List Forums"
+msgstr ""
 
-#: mod/contacts.php:727
-msgid "Archived"
-msgstr "Archivován"
+#: src/Content/Feature.php:97
+msgid "Enable widget to display the forums your are connected with"
+msgstr ""
 
-#: mod/contacts.php:730
-msgid "Only show archived contacts"
-msgstr "Zobrazit pouze archivované kontakty"
+#: src/Content/Feature.php:98
+msgid "Group Filter"
+msgstr "Skupinový Filtr"
 
-#: mod/contacts.php:736
-msgid "Hidden"
-msgstr "Skrytý"
+#: src/Content/Feature.php:98
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny"
 
-#: mod/contacts.php:739
-msgid "Only show hidden contacts"
-msgstr "Zobrazit pouze skryté kontakty"
+#: src/Content/Feature.php:99
+msgid "Network Filter"
+msgstr "Síťový Filtr"
 
-#: mod/contacts.php:796
-msgid "Search your contacts"
-msgstr "Prohledat Vaše kontakty"
+#: src/Content/Feature.php:99
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě"
 
-#: mod/contacts.php:807 mod/contacts.php:999
-msgid "Archive"
-msgstr "Archivovat"
+#: src/Content/Feature.php:100
+msgid "Save search terms for re-use"
+msgstr "Uložit kritéria vyhledávání pro znovupoužití"
 
-#: mod/contacts.php:807 mod/contacts.php:999
-msgid "Unarchive"
-msgstr "Vrátit z archívu"
+#: src/Content/Feature.php:105
+msgid "Network Tabs"
+msgstr "Síťové záložky"
 
-#: mod/contacts.php:810
-msgid "Batch Actions"
-msgstr ""
+#: src/Content/Feature.php:106
+msgid "Network Personal Tab"
+msgstr "Osobní síťový záložka "
 
-#: mod/contacts.php:856
-msgid "View all contacts"
-msgstr "Zobrazit všechny kontakty"
+#: src/Content/Feature.php:106
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval "
 
-#: mod/contacts.php:866
-msgid "View all common friends"
-msgstr ""
+#: src/Content/Feature.php:107
+msgid "Network New Tab"
+msgstr "Nová záložka síť"
 
-#: mod/contacts.php:873
-msgid "Advanced Contact Settings"
-msgstr "Pokročilé nastavení kontaktu"
+#: src/Content/Feature.php:107
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)"
 
-#: mod/contacts.php:907
-msgid "Mutual Friendship"
-msgstr "Vzájemné přátelství"
+#: src/Content/Feature.php:108
+msgid "Network Shared Links Tab"
+msgstr "záložka Síťové sdílené odkazy "
 
-#: mod/contacts.php:911
-msgid "is a fan of yours"
-msgstr "je Váš fanoušek"
+#: src/Content/Feature.php:108
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně"
 
-#: mod/contacts.php:915
-msgid "you are a fan of"
-msgstr "jste fanouškem"
+#: src/Content/Feature.php:113
+msgid "Post/Comment Tools"
+msgstr "Nástroje Příspěvků/Komentářů"
 
-#: mod/contacts.php:985
-msgid "Toggle Blocked status"
-msgstr "Přepnout stav Blokováno"
+#: src/Content/Feature.php:114
+msgid "Multiple Deletion"
+msgstr "Násobné mazání"
 
-#: mod/contacts.php:993
-msgid "Toggle Ignored status"
-msgstr "Přepnout stav Ignorováno"
+#: src/Content/Feature.php:114
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Označit a smazat více "
 
-#: mod/contacts.php:1001
-msgid "Toggle Archive status"
-msgstr "Přepnout stav Archivováno"
+#: src/Content/Feature.php:115
+msgid "Edit Sent Posts"
+msgstr "Editovat Odeslané příspěvky"
 
-#: mod/contacts.php:1009
-msgid "Delete contact"
-msgstr "Odstranit kontakt"
+#: src/Content/Feature.php:115
+msgid "Edit and correct posts and comments after sending"
+msgstr "Editovat a opravit příspěvky a komentáře po odeslání"
 
-#: mod/dfrn_confirm.php:127
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "To se může občas stát pokud kontakt byl zažádán oběma osobami a již byl schválen."
+#: src/Content/Feature.php:116
+msgid "Tagging"
+msgstr "Štítkování"
 
-#: mod/dfrn_confirm.php:246
-msgid "Response from remote site was not understood."
-msgstr "Odpověď ze vzdáleného serveru nebyla srozumitelná."
+#: src/Content/Feature.php:116
+msgid "Ability to tag existing posts"
+msgstr "Schopnost přidat štítky ke stávajícím příspvěkům"
 
-#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260
-msgid "Unexpected response from remote site: "
-msgstr "Neočekávaná odpověď od vzdáleného serveru:"
+#: src/Content/Feature.php:117
+msgid "Post Categories"
+msgstr "Kategorie příspěvků"
 
-#: mod/dfrn_confirm.php:269
-msgid "Confirmation completed successfully."
-msgstr "Potvrzení úspěšně dokončena."
+#: src/Content/Feature.php:117
+msgid "Add categories to your posts"
+msgstr "Přidat kategorie k Vašim příspěvkům"
 
-#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292
-msgid "Remote site reported: "
-msgstr "Vzdálený server oznámil:"
+#: src/Content/Feature.php:118
+msgid "Ability to file posts under folders"
+msgstr "Možnost řadit příspěvky do složek"
 
-#: mod/dfrn_confirm.php:283
-msgid "Temporary failure. Please wait and try again."
-msgstr "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu."
+#: src/Content/Feature.php:119
+msgid "Dislike Posts"
+msgstr "Označit příspěvky jako neoblíbené"
 
-#: mod/dfrn_confirm.php:290
-msgid "Introduction failed or was revoked."
-msgstr "Žádost o propojení selhala nebo byla zrušena."
+#: src/Content/Feature.php:119
+msgid "Ability to dislike posts/comments"
+msgstr "Možnost označit příspěvky/komentáře jako neoblíbené"
 
-#: mod/dfrn_confirm.php:419
-msgid "Unable to set contact photo."
-msgstr "Nelze nastavit fotografii kontaktu."
+#: src/Content/Feature.php:120
+msgid "Star Posts"
+msgstr "Příspěvky s hvězdou"
 
-#: mod/dfrn_confirm.php:557
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Pro '%s' nenalezen žádný uživatelský záznam "
+#: src/Content/Feature.php:120
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Možnost označit příspěvky s indikátorem hvězdy"
 
-#: mod/dfrn_confirm.php:567
-msgid "Our site encryption key is apparently messed up."
-msgstr "Náš šifrovací klíč zřejmě přestal správně fungovat."
+#: src/Content/Feature.php:121
+msgid "Mute Post Notifications"
+msgstr "Utlumit upozornění na přísvěvky"
 
-#: mod/dfrn_confirm.php:578
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "Byla poskytnuta prázdná URL adresa nebo se nepodařilo URL adresu dešifrovat."
+#: src/Content/Feature.php:121
+msgid "Ability to mute notifications for a thread"
+msgstr "Možnost stlumit upozornění pro vlákno"
 
-#: mod/dfrn_confirm.php:599
-msgid "Contact record was not found for you on our site."
-msgstr "Kontakt záznam nebyl nalezen pro vás na našich stránkách."
+#: src/Content/Feature.php:126
+msgid "Advanced Profile Settings"
+msgstr "Pokročilá nastavení profilu"
 
-#: mod/dfrn_confirm.php:613
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "V adresáři není k dispozici veřejný klíč pro URL %s."
+#: src/Content/Feature.php:127
+msgid "Show visitors public community forums at the Advanced Profile Page"
+msgstr "Ukázat návštěvníkům veřejná komunitní fóra na stránce pokročilého profilu"
 
-#: mod/dfrn_confirm.php:633
-msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr "Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci zopakovat."
+#: src/Content/Feature.php:128
+msgid "Tag Cloud"
+msgstr ""
 
-#: mod/dfrn_confirm.php:644
-msgid "Unable to set your contact credentials on our system."
-msgstr "Nelze nastavit Vaše přihlašovací údaje v našem systému."
+#: src/Content/Feature.php:128
+msgid "Provide a personal tag cloud on your profile page"
+msgstr ""
 
-#: mod/dfrn_confirm.php:703
-msgid "Unable to update your contact profile details on our system"
-msgstr "Nelze aktualizovat Váš profil v našem systému"
+#: src/Content/Feature.php:129
+msgid "Display Membership Date"
+msgstr "Zobrazit datum členství"
 
-#: mod/dfrn_confirm.php:775
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s se připojil k %2$s"
+#: src/Content/Feature.php:129
+msgid "Display membership date in profile"
+msgstr "Zobrazit v profilu datum připojení"
 
-#: mod/dfrn_request.php:101
-msgid "This introduction has already been accepted."
-msgstr "Toto pozvání již bylo přijato."
+#: src/Content/Nav.php:53
+msgid "Nothing new here"
+msgstr "Zde není nic nového"
 
-#: mod/dfrn_request.php:124 mod/dfrn_request.php:520
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Adresa profilu není platná nebo neobsahuje profilové informace"
+#: src/Content/Nav.php:57
+msgid "Clear notifications"
+msgstr "Smazat notifikace"
 
-#: mod/dfrn_request.php:129 mod/dfrn_request.php:525
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka"
+#: src/Content/Nav.php:105
+msgid "Personal notes"
+msgstr "Osobní poznámky"
 
-#: mod/dfrn_request.php:131 mod/dfrn_request.php:527
-msgid "Warning: profile location has no profile photo."
-msgstr "Varování: umístění profilu nemá žádnou profilovou fotografii."
+#: src/Content/Nav.php:105
+msgid "Your personal notes"
+msgstr "Vaše osobní poznámky"
 
-#: mod/dfrn_request.php:134 mod/dfrn_request.php:530
-#, 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 požadovaný parametr nebyl nalezen na daném místě"
-msgstr[1] "%d požadované parametry nebyly nalezeny na daném místě"
-msgstr[2] "%d požadované parametry nebyly nalezeny na daném místě"
+#: src/Content/Nav.php:114
+msgid "Sign in"
+msgstr "Přihlásit se"
 
-#: mod/dfrn_request.php:180
-msgid "Introduction complete."
-msgstr "Představení dokončeno."
+#: src/Content/Nav.php:124
+msgid "Home Page"
+msgstr "Domovská stránka"
 
-#: mod/dfrn_request.php:222
-msgid "Unrecoverable protocol error."
-msgstr "Neopravitelná chyba protokolu"
+#: src/Content/Nav.php:128
+msgid "Create an account"
+msgstr "Vytvořit účet"
 
-#: mod/dfrn_request.php:250
-msgid "Profile unavailable."
-msgstr "Profil není k dispozici."
+#: src/Content/Nav.php:134
+msgid "Help and documentation"
+msgstr "Nápověda a dokumentace"
 
-#: mod/dfrn_request.php:277
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s dnes obdržel příliš mnoho požadavků na připojení."
+#: src/Content/Nav.php:138
+msgid "Apps"
+msgstr "Aplikace"
 
-#: mod/dfrn_request.php:278
-msgid "Spam protection measures have been invoked."
-msgstr "Ochrana proti spamu byla aktivována"
+#: src/Content/Nav.php:138
+msgid "Addon applications, utilities, games"
+msgstr "Doplňkové aplikace, nástroje, hry"
 
-#: mod/dfrn_request.php:279
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Přátelům se doporučuje to zkusit znovu za 24 hodin."
+#: src/Content/Nav.php:142
+msgid "Search site content"
+msgstr "Hledání na stránkách tohoto webu"
 
-#: mod/dfrn_request.php:341
-msgid "Invalid locator"
-msgstr "Neplatný odkaz"
+#: src/Content/Nav.php:166
+msgid "Community"
+msgstr "Komunita"
 
-#: mod/dfrn_request.php:350
-msgid "Invalid email address."
-msgstr "Neplatná emailová adresa"
+#: src/Content/Nav.php:166
+msgid "Conversations on this and other servers"
+msgstr "Konverzace na tomto a jiných serverech"
 
-#: mod/dfrn_request.php:375
-msgid "This account has not been configured for email. Request failed."
-msgstr "Tento účet nebyl nastaven pro email. Požadavek nesplněn."
+#: src/Content/Nav.php:173
+msgid "Directory"
+msgstr "Adresář"
 
-#: mod/dfrn_request.php:478
-msgid "You have already introduced yourself here."
-msgstr "Již jste se zde zavedli."
+#: src/Content/Nav.php:173
+msgid "People directory"
+msgstr "Adresář"
 
-#: mod/dfrn_request.php:482
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Zřejmě jste již přátelé se %s."
+#: src/Content/Nav.php:175
+msgid "Information about this friendica instance"
+msgstr "Informace o této instanci Friendica"
 
-#: mod/dfrn_request.php:503
-msgid "Invalid profile URL."
-msgstr "Neplatné URL profilu."
+#: src/Content/Nav.php:178
+msgid "Terms of Service of this Friendica instance"
+msgstr "Podmínky používání této instance Friendica"
 
-#: mod/dfrn_request.php:604
-msgid "Your introduction has been sent."
-msgstr "Vaše žádost o propojení byla odeslána."
+#: src/Content/Nav.php:184
+msgid "Network Reset"
+msgstr "Reset sítě"
 
-#: mod/dfrn_request.php:644
-msgid ""
-"Remote subscription can't be done for your network. Please subscribe "
-"directly on your system."
-msgstr ""
+#: src/Content/Nav.php:184
+msgid "Load Network page with no filters"
+msgstr "Načíst stránku Síť bez filtrů"
 
-#: mod/dfrn_request.php:664
-msgid "Please login to confirm introduction."
-msgstr "Prosím přihlašte se k potvrzení žádosti o propojení."
+#: src/Content/Nav.php:190
+msgid "Friend Requests"
+msgstr "Žádosti přátel"
 
-#: mod/dfrn_request.php:674
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Jste přihlášeni pod nesprávnou identitou  Prosím, přihlaste se do <strong>tohoto</strong> profilu."
+#: src/Content/Nav.php:192
+msgid "See all notifications"
+msgstr "Zobrazit všechny upozornění"
 
-#: mod/dfrn_request.php:688 mod/dfrn_request.php:705
-msgid "Confirm"
-msgstr "Potvrdit"
+#: src/Content/Nav.php:193
+msgid "Mark all system notifications seen"
+msgstr "Označit všechny upozornění systému jako přečtené"
 
-#: mod/dfrn_request.php:700
-msgid "Hide this contact"
-msgstr "Skrýt tento kontakt"
+#: src/Content/Nav.php:197
+msgid "Inbox"
+msgstr "Doručená pošta"
 
-#: mod/dfrn_request.php:703
-#, php-format
-msgid "Welcome home %s."
-msgstr "Vítejte doma %s."
+#: src/Content/Nav.php:198
+msgid "Outbox"
+msgstr "Odeslaná pošta"
 
-#: mod/dfrn_request.php:704
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Prosím potvrďte Vaši žádost o propojení %s."
+#: src/Content/Nav.php:202
+msgid "Manage"
+msgstr "Spravovat"
 
-#: mod/dfrn_request.php:833
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Prosím zadejte Vaši adresu identity jedné z následujících podporovaných komunikačních sítí:"
+#: src/Content/Nav.php:202
+msgid "Manage other pages"
+msgstr "Spravovat jiné stránky"
 
-#: mod/dfrn_request.php:854
-#, php-format
-msgid ""
-"If you are not yet a member of the free social web, <a "
-"href=\"%s/siteinfo\">follow this link to find a public Friendica site and "
-"join us today</a>."
-msgstr ""
+#: src/Content/Nav.php:210 src/Model/Profile.php:368
+msgid "Profiles"
+msgstr "Profily"
 
-#: mod/dfrn_request.php:859
-msgid "Friend/Connection Request"
-msgstr "Požadavek o přátelství / kontaktování"
+#: src/Content/Nav.php:210
+msgid "Manage/Edit Profiles"
+msgstr "Spravovat/Editovat Profily"
 
-#: mod/dfrn_request.php:860
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+#: src/Content/Nav.php:218
+msgid "Site setup and configuration"
+msgstr "Nastavení webu a konfigurace"
 
-#: mod/dfrn_request.php:861 mod/follow.php:109
-msgid "Please answer the following:"
-msgstr "Odpovězte, prosím, následující:"
+#: src/Content/Nav.php:221
+msgid "Navigation"
+msgstr "Navigace"
 
-#: mod/dfrn_request.php:862 mod/follow.php:110
-#, php-format
-msgid "Does %s know you?"
-msgstr "Zná Vás uživatel %s ?"
+#: src/Content/Nav.php:221
+msgid "Site map"
+msgstr "Mapa webu"
 
-#: mod/dfrn_request.php:866 mod/follow.php:111
-msgid "Add a personal note:"
-msgstr "Přidat osobní poznámku:"
+#: src/Database/DBStructure.php:32
+msgid "There are no tables on MyISAM."
+msgstr "V MyISAM nejsou žádné tabulky."
 
-#: mod/dfrn_request.php:869
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet / Federativní Sociální Web"
+#: 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\tVývojáři Friendica nedávno vydali aktualizaci %s,\n\t\t\t\tale když jsem ji zkusil instalovat, něco se strašně pokazilo.\n\t\t\t\tToto se musí ihned opravit a nemůžu to udělat sám. Prosím, kontaktujte\n\t\t\t\tvývojáře Friendica, pokud to nedokážete sám. Moje databáze může být neplatná."
 
-#: mod/dfrn_request.php:871
+#: src/Database/DBStructure.php:80
 #, php-format
 msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - prosím nepoužívejte tento formulář.  Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole."
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Chybová zpráva je\n[pre]%s[/pre]"
 
-#: mod/dfrn_request.php:872 mod/follow.php:117
-msgid "Your Identity Address:"
-msgstr "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\"."
+#: src/Database/DBStructure.php:191
+#, php-format
+msgid ""
+"\n"
+"Error %d occurred during database update:\n"
+"%s\n"
+msgstr "\nPři aktualizaci databáze se vyskytla chyba %d:\n%s\n"
 
-#: mod/dfrn_request.php:875 mod/follow.php:19
-msgid "Submit Request"
-msgstr "Odeslat žádost"
+#: src/Database/DBStructure.php:194
+msgid "Errors encountered performing database changes: "
+msgstr ""
 
-#: mod/follow.php:30
-msgid "You already added this contact."
-msgstr "Již jste si tento kontakt přidali."
+#: src/Database/DBStructure.php:210
+#, php-format
+msgid "%s: Database update"
+msgstr "%s: Aktualizace databáze"
 
-#: mod/follow.php:39
-msgid "Diaspora support isn't enabled. Contact can't be added."
-msgstr ""
+#: src/Database/DBStructure.php:460
+#, php-format
+msgid "%s: updating %s table."
+msgstr "%s: aktualizuji tabulku %s"
 
-#: mod/follow.php:46
-msgid "OStatus support is disabled. Contact can't be added."
-msgstr ""
+#: src/Model/Mail.php:40 src/Model/Mail.php:174
+msgid "[no subject]"
+msgstr "[bez předmětu]"
 
-#: mod/follow.php:53
-msgid "The network type couldn't be detected. Contact can't be added."
-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."
+msgstr "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění <strong>může</strong> ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěli, vytvořte, prosím, další skupinu s jiným názvem."
 
-#: mod/follow.php:180
-msgid "Contact added"
-msgstr "Kontakt přidán"
+#: src/Model/Group.php:341
+msgid "Default privacy group for new contacts"
+msgstr "Defaultní soukromá skrupina pro nové kontakty."
 
-#: mod/install.php:139
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica Komunikační server - Nastavení"
+#: src/Model/Group.php:374
+msgid "Everybody"
+msgstr "Všichni"
 
-#: mod/install.php:145
-msgid "Could not connect to database."
-msgstr "Nelze se připojit k databázi."
+#: src/Model/Group.php:394
+msgid "edit"
+msgstr "editovat"
 
-#: mod/install.php:149
-msgid "Could not create table."
-msgstr "Nelze vytvořit tabulku."
+#: src/Model/Group.php:418
+msgid "Edit group"
+msgstr "Editovat skupinu"
 
-#: mod/install.php:155
-msgid "Your Friendica site database has been installed."
-msgstr "Vaše databáze Friendica  byla nainstalována."
+#: src/Model/Group.php:419
+msgid "Contacts not in any group"
+msgstr "Kontakty, které nejsou v žádné skupině"
 
-#: mod/install.php:160
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do Vašeho adresáře - i když Vy můžete."
+#: src/Model/Group.php:420
+msgid "Create a new group"
+msgstr "Vytvořit novou skupinu"
 
-#: mod/install.php:161 mod/install.php:230 mod/install.php:607
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Přečtěte si prosím informace v souboru \"INSTALL.txt\"."
+#: src/Model/Group.php:422
+msgid "Edit groups"
+msgstr "Upravit skupiny"
 
-#: mod/install.php:173
-msgid "Database already in use."
-msgstr "Databáze se již používá."
+#: src/Model/Contact.php:667
+msgid "Drop Contact"
+msgstr "Odstranit kontakt"
 
-#: mod/install.php:227
-msgid "System check"
-msgstr "Testování systému"
+#: src/Model/Contact.php:1101
+msgid "Organisation"
+msgstr "Organizace"
 
-#: mod/install.php:232
-msgid "Check again"
-msgstr "Otestovat znovu"
+#: src/Model/Contact.php:1104
+msgid "News"
+msgstr "Zprávy"
 
-#: mod/install.php:251
-msgid "Database connection"
-msgstr "Databázové spojení"
+#: src/Model/Contact.php:1107
+msgid "Forum"
+msgstr "Fórum"
 
-#: mod/install.php:252
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi."
+#: src/Model/Contact.php:1286
+msgid "Connect URL missing."
+msgstr "Chybí URL adresa pro připojení."
 
-#: mod/install.php:253
+#: src/Model/Contact.php:1295
 msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru, "
+"The contact could not be added. Please check the relevant network "
+"credentials in your Settings -> Social Networks page."
+msgstr "Kontakt nemohl být přidán. Prosím zkontrolujte relevantní přihlašovací údaje sítě na stránce Nastavení -> Sociální sítě."
 
-#: mod/install.php:254
+#: src/Model/Contact.php:1342
 msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním."
-
-#: mod/install.php:258
-msgid "Database Server Name"
-msgstr "Jméno databázového serveru"
+"This site is not configured to allow communications with other networks."
+msgstr "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi."
 
-#: mod/install.php:259
-msgid "Database Login Name"
-msgstr "Přihlašovací jméno k databázi"
+#: src/Model/Contact.php:1343 src/Model/Contact.php:1357
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Nenalezen žádný kompatibilní komunikační protokol nebo kanál."
 
-#: mod/install.php:260
-msgid "Database Login Password"
-msgstr "Heslo k databázovému účtu "
+#: src/Model/Contact.php:1355
+msgid "The profile address specified does not provide adequate information."
+msgstr "Uvedená adresa profilu neposkytuje dostatečné informace."
 
-#: mod/install.php:261
-msgid "Database Name"
-msgstr "Jméno databáze"
+#: src/Model/Contact.php:1360
+msgid "An author or name was not found."
+msgstr "Autor nebo jméno nenalezeno"
 
-#: mod/install.php:262 mod/install.php:303
-msgid "Site administrator email address"
-msgstr "Emailová adresa administrátora webu"
+#: src/Model/Contact.php:1363
+msgid "No browser URL could be matched to this address."
+msgstr "Této adrese neodpovídá žádné URL prohlížeče."
 
-#: mod/install.php:262 mod/install.php:303
+#: src/Model/Contact.php:1366
 msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní."
-
-#: mod/install.php:266 mod/install.php:306
-msgid "Please select a default timezone for your website"
-msgstr "Prosím, vyberte výchozí časové pásmo pro váš server"
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Není možné namapovat adresu Identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem."
 
-#: mod/install.php:293
-msgid "Site settings"
-msgstr "Nastavení webu"
+#: src/Model/Contact.php:1367
+msgid "Use mailto: in front of address to force email check."
+msgstr "Použite mailo: před adresou k vynucení emailové kontroly."
 
-#: mod/install.php:307
-msgid "System Language:"
-msgstr ""
+#: src/Model/Contact.php:1373
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "Zadaná adresa profilu patří do sítě, která  byla na tomto serveru zakázána."
 
-#: mod/install.php:307
+#: src/Model/Contact.php:1378
 msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
-msgstr ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé/osobní sdělení."
 
-#: mod/install.php:347
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru."
+#: src/Model/Contact.php:1429
+msgid "Unable to retrieve contact information."
+msgstr "Nepodařilo se získat kontaktní informace."
 
-#: mod/install.php:348
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run background polling via cron. See <a "
-"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
-"up-the-poller'>'Setup the poller'</a>"
-msgstr ""
+#: src/Model/Contact.php:1646 src/Protocol/DFRN.php:1515
+#, php-format
+msgid "%s's birthday"
+msgstr "%s má narozeniny"
 
-#: mod/install.php:352
-msgid "PHP executable path"
-msgstr "Cesta k \"PHP executable\""
+#: src/Model/Contact.php:1647 src/Protocol/DFRN.php:1516
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Veselé narozeniny, %s"
 
-#: mod/install.php:352
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Zadejte plnou cestu k spustitelnému souboru php. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci."
+#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419
+#: src/Model/Event.php:882
+msgid "Starts:"
+msgstr "Začíná:"
 
-#: mod/install.php:357
-msgid "Command line PHP"
-msgstr "Příkazový řádek PHP"
+#: src/Model/Event.php:56 src/Model/Event.php:76 src/Model/Event.php:420
+#: src/Model/Event.php:886
+msgid "Finishes:"
+msgstr "Končí:"
 
-#: mod/install.php:366
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "PHP executable není php cli binary (může být verze cgi-fgci)"
+#: src/Model/Event.php:368
+msgid "all-day"
+msgstr "celodenní"
+
+#: src/Model/Event.php:391
+msgid "Jun"
+msgstr "Čvn"
 
-#: mod/install.php:367
-msgid "Found PHP version: "
-msgstr "Nalezena PHP verze:"
+#: src/Model/Event.php:394
+msgid "Sept"
+msgstr "Září"
 
-#: mod/install.php:369
-msgid "PHP cli binary"
-msgstr "PHP cli binary"
+#: src/Model/Event.php:417
+msgid "No events to display"
+msgstr "Žádné události k zobrazení"
 
-#: mod/install.php:380
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu."
+#: src/Model/Event.php:543
+msgid "l, F j"
+msgstr "l, F j"
 
-#: mod/install.php:381
-msgid "This is required for message delivery to work."
-msgstr "Toto je nutné pro fungování doručování zpráv."
+#: src/Model/Event.php:566
+msgid "Edit event"
+msgstr "Editovat událost"
 
-#: mod/install.php:383
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: src/Model/Event.php:567
+msgid "Duplicate event"
+msgstr "Duplikovat událost"
 
-#: mod/install.php:404
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče"
+#: src/Model/Event.php:568
+msgid "Delete event"
+msgstr "Smazat událost"
 
-#: mod/install.php:405
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Pokud systém běží na Windows, seznamte se s \"http://www.php.net/manual/en/openssl.installation.php\"."
+#: src/Model/Event.php:815
+msgid "D g:i A"
+msgstr "D g:i A"
 
-#: mod/install.php:407
-msgid "Generate encryption keys"
-msgstr "Generovat kriptovací klíče"
+#: src/Model/Event.php:816
+msgid "g:i A"
+msgstr "g:i A"
 
-#: mod/install.php:414
-msgid "libCurl PHP module"
-msgstr "libCurl PHP modul"
+#: src/Model/Event.php:901 src/Model/Event.php:903
+msgid "Show map"
+msgstr "Ukázat mapu"
 
-#: mod/install.php:415
-msgid "GD graphics PHP module"
-msgstr "GD graphics PHP modul"
+#: src/Model/Event.php:902
+msgid "Hide map"
+msgstr "Skrýt mapu"
 
-#: mod/install.php:416
-msgid "OpenSSL PHP module"
-msgstr "OpenSSL PHP modul"
+#: src/Model/Item.php:1883
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
+msgstr "%1$s se zúčactní %3$s %2$s"
 
-#: mod/install.php:417
-msgid "mysqli PHP module"
-msgstr "mysqli PHP modul"
+#: src/Model/Item.php:1888
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr "%1$s se nezúčastní %3$s %2$s"
 
-#: mod/install.php:418
-msgid "mb_string PHP module"
-msgstr "mb_string PHP modul"
+#: src/Model/Item.php:1893
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr "%1$s by se mohl/a zúčastnit %3$s %2$s"
 
-#: mod/install.php:419
-msgid "mcrypt PHP module"
-msgstr ""
+#: src/Model/Profile.php:97
+msgid "Requested account is not available."
+msgstr "Požadovaný účet není dostupný."
 
-#: mod/install.php:420
-msgid "XML PHP module"
-msgstr ""
+#: src/Model/Profile.php:164 src/Model/Profile.php:395
+#: src/Model/Profile.php:857
+msgid "Edit profile"
+msgstr "Upravit profil"
 
-#: mod/install.php:421
-msgid "iconv module"
-msgstr ""
+#: src/Model/Profile.php:332
+msgid "Atom feed"
+msgstr "Kanál Atom"
 
-#: mod/install.php:425 mod/install.php:427
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite modul"
+#: src/Model/Profile.php:368
+msgid "Manage/edit profiles"
+msgstr "Spravovat/upravit profily"
 
-#: mod/install.php:425
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován."
+#: src/Model/Profile.php:546 src/Model/Profile.php:639
+msgid "g A l F d"
+msgstr "g A l F d"
 
-#: mod/install.php:433
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Chyba: požadovaný libcurl PHP modul není nainstalován."
+#: src/Model/Profile.php:547
+msgid "F d"
+msgstr "F d"
 
-#: mod/install.php:437
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Chyba: požadovaný GD graphics PHP modul není nainstalován."
+#: src/Model/Profile.php:604 src/Model/Profile.php:701
+msgid "[today]"
+msgstr "[dnes]"
 
-#: mod/install.php:441
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Chyba: požadovaný openssl PHP modul není nainstalován."
+#: src/Model/Profile.php:615
+msgid "Birthday Reminders"
+msgstr "Připomínka narozenin"
 
-#: mod/install.php:445
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Chyba: požadovaný mysqli PHP modul není nainstalován."
+#: src/Model/Profile.php:616
+msgid "Birthdays this week:"
+msgstr "Narozeniny tento týden:"
 
-#: mod/install.php:449
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Chyba: PHP modul mb_string  je vyžadován, ale není nainstalován."
+#: src/Model/Profile.php:688
+msgid "[No description]"
+msgstr "[Žádný popis]"
 
-#: mod/install.php:453
-msgid "Error: mcrypt PHP module required but not installed."
-msgstr ""
+#: src/Model/Profile.php:715
+msgid "Event Reminders"
+msgstr "Připomenutí událostí"
 
-#: mod/install.php:457
-msgid "Error: iconv PHP module required but not installed."
-msgstr ""
+#: src/Model/Profile.php:716
+msgid "Events this week:"
+msgstr "Události tohoto týdne:"
 
-#: mod/install.php:466
-msgid ""
-"If you are using php_cli, please make sure that mcrypt module is enabled in "
-"its config file"
-msgstr ""
+#: src/Model/Profile.php:739
+msgid "Member since:"
+msgstr "Členem od:"
 
-#: mod/install.php:469
-msgid ""
-"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
-"encryption layer."
-msgstr ""
+#: src/Model/Profile.php:747
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: mod/install.php:471
-msgid "mcrypt_create_iv() function"
-msgstr ""
+#: src/Model/Profile.php:748
+msgid "j F"
+msgstr "j F"
 
-#: mod/install.php:479
-msgid "Error, XML PHP module required but not installed."
-msgstr ""
+#: src/Model/Profile.php:763
+msgid "Age:"
+msgstr "Věk:"
 
-#: mod/install.php:494
-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 "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři vašeho webového serveru ale nyní mu to není umožněno."
+#: src/Model/Profile.php:776
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "pro %1$d %2$s"
 
-#: mod/install.php:495
-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 "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když Vy můžete."
+#: src/Model/Profile.php:800
+msgid "Religion:"
+msgstr "Náboženství:"
 
-#: mod/install.php:496
-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 "Na konci této procedury obd nás obdržíte text k uložení v souboru pojmenovaném .htconfig.php ve Vašem Friendica kořenovém adresáři."
+#: src/Model/Profile.php:808
+msgid "Hobbies/Interests:"
+msgstr "Koníčky/zájmy:"
 
-#: mod/install.php:497
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor \"INSTALL.txt\" pro další instrukce."
+#: src/Model/Profile.php:820
+msgid "Contact information and Social Networks:"
+msgstr "Kontaktní informace a sociální sítě:"
 
-#: mod/install.php:500
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php je editovatelné"
+#: src/Model/Profile.php:824
+msgid "Musical interests:"
+msgstr "Hudební vkus:"
 
-#: mod/install.php:510
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování."
+#: src/Model/Profile.php:828
+msgid "Books, literature:"
+msgstr "Knihy, literatura:"
 
-#: mod/install.php:511
-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 "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica"
+#: src/Model/Profile.php:832
+msgid "Television:"
+msgstr "Televize:"
 
-#: mod/install.php:512
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře"
+#: src/Model/Profile.php:836
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film/tanec/kultura/zábava:"
 
-#: mod/install.php:513
-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 "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje."
+#: src/Model/Profile.php:840
+msgid "Love/Romance:"
+msgstr "Láska/romantika"
 
-#: mod/install.php:516
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 je nastaven pro zápis"
+#: src/Model/Profile.php:844
+msgid "Work/employment:"
+msgstr "Práce/zaměstnání:"
 
-#: mod/install.php:532
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "Url rewrite v .htconfig nefunguje. Prověřte prosím Vaše nastavení serveru."
+#: src/Model/Profile.php:848
+msgid "School/education:"
+msgstr "Škola/vzdělávání:"
 
-#: mod/install.php:534
-msgid "Url rewrite is working"
-msgstr "Url rewrite je funkční."
+#: src/Model/Profile.php:853
+msgid "Forums:"
+msgstr "Fóra"
 
-#: mod/install.php:552
-msgid "ImageMagick PHP extension is not installed"
-msgstr ""
+#: src/Model/Profile.php:947
+msgid "Only You Can See This"
+msgstr "Toto můžete vidět jen Vy"
 
-#: mod/install.php:555
-msgid "ImageMagick PHP extension is installed"
-msgstr ""
+#: src/Model/User.php:154
+msgid "Login failed"
+msgstr "Přihlášení selhalo"
 
-#: mod/install.php:557
-msgid "ImageMagick supports GIF"
-msgstr ""
+#: src/Model/User.php:185
+msgid "Not enough information to authenticate"
+msgstr "Není dost informací pro autentikaci"
 
-#: mod/install.php:566
-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 "Databázový konfigurační soubor \".htconfig.php\" nemohl být uložen. Prosím, použijte přiložený text k vytvoření konfiguračního souboru ve vašem kořenovém adresáři webového serveru."
+#: src/Model/User.php:347
+msgid "An invitation is required."
+msgstr "Pozvánka je vyžadována."
 
-#: mod/install.php:605
-msgid "<h1>What next</h1>"
-msgstr "<h1>Co dál<h1>"
+#: src/Model/User.php:351
+msgid "Invitation could not be verified."
+msgstr "Pozvánka nemohla být ověřena."
 
-#: mod/install.php:606
+#: src/Model/User.php:358
+msgid "Invalid OpenID url"
+msgstr "Neplatný odkaz OpenID"
+
+#: src/Model/User.php:371 src/Module/Login.php:101
 msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři Vašeho webového serveru ale nyní mu to není umožněno."
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. "
 
-#: mod/item.php:116
-msgid "Unable to locate original post."
-msgstr "Nelze nalézt původní příspěvek."
+#: src/Model/User.php:371 src/Module/Login.php:101
+msgid "The error message was:"
+msgstr "Chybová zpráva byla:"
 
-#: mod/item.php:341
-msgid "Empty post discarded."
-msgstr "Prázdný příspěvek odstraněn."
+#: src/Model/User.php:377
+msgid "Please enter the required information."
+msgstr "Zadejte prosím požadované informace."
 
-#: mod/item.php:902
-msgid "System error. Post not saved."
-msgstr "Chyba systému. Příspěvek nebyl uložen."
+#: src/Model/User.php:390
+msgid "Please use a shorter name."
+msgstr "Použijte prosím kratší jméno."
 
-#: mod/item.php:992
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "Tato zpráva vám byla zaslána od %s, člena sociální sítě Friendica."
+#: src/Model/User.php:393
+msgid "Name too short."
+msgstr "Jméno je příliš krátké."
 
-#: mod/item.php:994
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Můžete je navštívit online na adrese %s"
+#: src/Model/User.php:401
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení)."
 
-#: mod/item.php:995
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam."
+#: src/Model/User.php:406
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Váš e-mailová doména není na tomto serveru mezi povolenými."
 
-#: mod/item.php:999
-#, php-format
-msgid "%s posted an update."
-msgstr "%s poslal aktualizaci."
+#: src/Model/User.php:410
+msgid "Not a valid email address."
+msgstr "Neplatná e-mailová adresa."
 
-#: mod/network.php:398
-#, 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] ""
+#: src/Model/User.php:414 src/Model/User.php:422
+msgid "Cannot use that email."
+msgstr "Tento e-mail nelze použít."
 
-#: mod/network.php:401
-msgid "Messages in this group won't be send to these receivers."
-msgstr ""
+#: src/Model/User.php:429
+msgid "Your nickname can only contain a-z, 0-9 and _."
+msgstr "Uživatelské jméno může obsahovat pouze znaky a-z, 0-9 a _."
 
-#: mod/network.php:529
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení."
+#: src/Model/User.php:436 src/Model/User.php:493
+msgid "Nickname is already registered. Please choose another."
+msgstr "Přezdívka je již registrována. Prosím vyberte jinou."
 
-#: mod/network.php:534
-msgid "Invalid contact."
-msgstr "Neplatný kontakt."
+#: src/Model/User.php:446
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "ZÁVAŽNÁ CHYBA: Generování bezpečnostních klíčů se nezdařilo."
 
-#: mod/network.php:826
-msgid "Commented Order"
-msgstr "Dle komentářů"
+#: src/Model/User.php:480 src/Model/User.php:484
+msgid "An error occurred during registration. Please try again."
+msgstr "Došlo k chybě při registraci. Zkuste to prosím znovu."
 
-#: mod/network.php:829
-msgid "Sort by Comment Date"
-msgstr "Řadit podle data komentáře"
+#: src/Model/User.php:509
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu."
 
-#: mod/network.php:834
-msgid "Posted Order"
-msgstr "Dle data"
+#: src/Model/User.php:516
+msgid "An error occurred creating your self contact. Please try again."
+msgstr "Došlo k chybě při vytváření Vašeho kontaktu na sebe. Zkuste to prosím znovu."
+
+#: src/Model/User.php:525
+msgid ""
+"An error occurred creating your default contact group. Please try again."
+msgstr "Došlo k chybě při vytváření Vaší výchozí skupiny kontaktů. Zkuste to prosím znovu."
 
-#: mod/network.php:837
-msgid "Sort by Post Date"
-msgstr "Řadit podle data příspěvku"
+#: src/Model/User.php:599
+#, 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\tVážený/á %1$s,\n\t\t\t\tDěkujeme, že jste se registroval/a na %2$s. Váš účet čeká na schválení administrátora.\n\t\t"
 
-#: mod/network.php:848
-msgid "Posts that mention or involve you"
-msgstr "Příspěvky, které Vás zmiňují nebo zahrnují"
+#: src/Model/User.php:609
+#, php-format
+msgid "Registration at %s"
+msgstr "Registrace na %s"
 
-#: mod/network.php:856
-msgid "New"
-msgstr "Nové"
+#: src/Model/User.php:627
+#, 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\tVážený/á %1$s,\n\t\t\t\tDěkujeme, že jste se registroval/a na %2$s. Váš účet byl vytvořen.\n\t\t"
 
-#: mod/network.php:859
-msgid "Activity Stream - by date"
-msgstr "Proud aktivit - dle data"
+#: src/Model/User.php:631
+#, 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\tZde jsou vaše přihlašovací detaily:\n\n\t\t\tAdresa stránky:\t\t%3$s\n\t\t\tPřihlašovací jméno:\t%1$s\n\t\t\tHeslo:\t\t\t%5$s\n\n\t\t\tSvé heslo si po přihlášení můžete změnit na stránce \"Nastavení\" vašeho\n\t\t\túčtu.\n\n\t\t\tProsím, prohlédněte si na chvilku ostatní nastavení účtu na té stránce.\n\n\t\t\tMožná byste si také přáli přidat pár základních informací na svůj výchozí\n\t\t\tprofil (na stránce \"Profily\") aby vás další lidé mohli snadno najít.\n\n\t\t\tDoporučujeme nastavit si vaše celé jméno, přidat profilovou fotku,\n\t\t\tpřidat pár \"klíčových slov\" k profilu (velmi užitečné při získávání nových\n\t\t\tpřátel) - a možná v jaké zemi žijete; pokud nechcete být konkrétnější.\n\n\t\t\tZcela respektujeme vaše právo na soukromí a žádnou z těchto položek\n\t\t\tnení potřeba vyplňovat. Pokud jste zde nový/á a nikoho zde neznáte, mohou vám\n\t\t\tpomoci si získat nové a zajímavé přátele.\n\n\t\t\tPokud byste si někdy přál/a smazat účet, může tak učinit na stránce\n\t\t\t%3$s/removeme.\n\n\t\t\tDěkujeme vám a vítáme vás na %2$s."
 
-#: mod/network.php:867
-msgid "Shared Links"
-msgstr "Sdílené odkazy"
+#: src/Protocol/Diaspora.php:2521
+msgid "Sharing notification from Diaspora network"
+msgstr "Oznámení o sdílení ze sítě Diaspora"
 
-#: mod/network.php:870
-msgid "Interesting Links"
-msgstr "Zajímavé odkazy"
+#: src/Protocol/Diaspora.php:3609
+msgid "Attachments:"
+msgstr "Přílohy:"
 
-#: mod/network.php:878
-msgid "Starred"
-msgstr "S hvězdičkou"
+#: src/Protocol/OStatus.php:1798
+#, php-format
+msgid "%s is now following %s."
+msgstr "%s nyní sleduje %s."
 
-#: mod/network.php:881
-msgid "Favourite Posts"
-msgstr "Oblíbené přízpěvky"
+#: src/Protocol/OStatus.php:1799
+msgid "following"
+msgstr "sleduje"
 
-#: mod/ping.php:261
-msgid "{0} wants to be your friend"
-msgstr "{0} chce být Vaším přítelem"
+#: src/Protocol/OStatus.php:1802
+#, php-format
+msgid "%s stopped following %s."
+msgstr "%s přestal sledovat %s."
 
-#: mod/ping.php:276
-msgid "{0} sent you a message"
-msgstr "{0} vám poslal zprávu"
+#: src/Protocol/OStatus.php:1803
+msgid "stopped following"
+msgstr "přestal sledovat"
 
-#: mod/ping.php:291
-msgid "{0} requested registration"
-msgstr "{0} požaduje registraci"
+#: src/Worker/Delivery.php:415
+msgid "(no subject)"
+msgstr "(bez předmětu)"
 
-#: mod/viewcontacts.php:72
-msgid "No contacts."
-msgstr "Žádné kontakty."
+#: src/Module/Logout.php:28
+msgid "Logged out."
+msgstr "Odhlášen."
 
-#: object/Item.php:370
-msgid "via"
-msgstr "přes"
+#: src/Module/Login.php:283
+msgid "Create a New Account"
+msgstr "Vytvořit nový účet"
 
-#: view/theme/frio/php/Image.php:23
-msgid "Repeat the image"
-msgstr ""
+#: src/Module/Login.php:316
+msgid "Password: "
+msgstr "Heslo: "
 
-#: view/theme/frio/php/Image.php:23
-msgid "Will repeat your image to fill the background."
-msgstr ""
+#: src/Module/Login.php:317
+msgid "Remember me"
+msgstr "Pamatuj si mne"
 
-#: view/theme/frio/php/Image.php:25
-msgid "Stretch"
-msgstr ""
+#: src/Module/Login.php:320
+msgid "Or login using OpenID: "
+msgstr "Nebo se přihlaste pomocí OpenID: "
 
-#: view/theme/frio/php/Image.php:25
-msgid "Will stretch to width/height of the image."
-msgstr ""
+#: src/Module/Login.php:326
+msgid "Forgot your password?"
+msgstr "Zapomněli jste své heslo?"
 
-#: view/theme/frio/php/Image.php:27
-msgid "Resize fill and-clip"
-msgstr ""
+#: src/Module/Login.php:329
+msgid "Website Terms of Service"
+msgstr "Podmínky používání stránky"
 
-#: view/theme/frio/php/Image.php:27
-msgid "Resize to fill and retain aspect ratio."
-msgstr ""
+#: src/Module/Login.php:330
+msgid "terms of service"
+msgstr "podmínky používání"
 
-#: view/theme/frio/php/Image.php:29
-msgid "Resize best fit"
-msgstr ""
+#: src/Module/Login.php:332
+msgid "Website Privacy Policy"
+msgstr "Pravidla ochrany soukromí serveru"
 
-#: view/theme/frio/php/Image.php:29
-msgid "Resize to best fit and retain aspect ratio."
-msgstr ""
+#: src/Module/Login.php:333
+msgid "privacy policy"
+msgstr "Ochrana soukromí"
 
-#: view/theme/frio/config.php:42
-msgid "Default"
-msgstr ""
+#: src/Module/Tos.php:34 src/Module/Tos.php:74
+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 "Ve chvíli registrace, a pro poskytování komunikace mezi uživatelským účtem a jeho kontakty, musí uživatel poskytnout zobrazované jméno (pseudonym), uživatelské jméno (předzdívku) a funkční e-mailovou adresu. Jména budou dostupná na profilové stránce účtu pro kteréhokoliv návštěvníka, i kdyby ostatní detaily nebyly zobrazeny. E-mailová adresa bude použita pouze pro zasílání oznámení o interakcích, nebude ale viditelně zobrazována. Zápis účtu do adresáře účtů serveru nebo globálního adresáře účtů je nepovinný a může být ovládán v nastavení uživatele, není potřebný pro komunikaci."
 
-#: view/theme/frio/config.php:54
-msgid "Note: "
-msgstr ""
+#: src/Module/Tos.php:35 src/Module/Tos.php:75
+msgid ""
+"This data is required for communication and is passed on to the nodes of the"
+" communication partners and is stored there. Users can enter additional "
+"private data that may be transmitted to the communication partners accounts."
+msgstr "Tato data jsou vyžadována ke komunikaci a jsou předávána serverům komunikačních partnerů a jsou tam ukládána. Uživatelé mohou zadávat dodatečná soukromá data, která mohou být odeslána na účty komunikačních partnerů."
 
-#: view/theme/frio/config.php:54
-msgid "Check image permissions if all users are allowed to visit the image"
-msgstr ""
+#: src/Module/Tos.php:36 src/Module/Tos.php:76
+#, 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. Deletion of the data will also be requested from the nodes of "
+"the communication partners."
+msgstr "Přihlášený uživatel si kdykoliv může exportovat svoje data účtu z <a href=\"%1$s/settings/uexport\">nastavení účtu</a>. Pokud by chtěl uživatel svůj účet smazat, může tak učinit na stránce <a href=\"%1$s/removeme\">%1$s/removeme</a>. Smazání účtu bude trvalé. Na serverech komunikačních partnerů bude zároveň vyžádáno smazání dat."
 
-#: view/theme/frio/config.php:62
-msgid "Select scheme"
-msgstr ""
+#: src/Module/Tos.php:39 src/Module/Tos.php:73
+msgid "Privacy Statement"
+msgstr "Prohlášení o ochraně soukromí"
 
-#: view/theme/frio/config.php:63
-msgid "Navigation bar background color"
-msgstr ""
+#: src/Object/Post.php:128
+msgid "This entry was edited"
+msgstr "Tento záznam byl editován"
 
-#: view/theme/frio/config.php:64
-msgid "Navigation bar icon color "
-msgstr ""
+#: src/Object/Post.php:187
+msgid "Delete globally"
+msgstr "Smazat globálně"
 
-#: view/theme/frio/config.php:65
-msgid "Link color"
-msgstr ""
+#: src/Object/Post.php:187
+msgid "Remove locally"
+msgstr "Odstranit lokálně"
 
-#: view/theme/frio/config.php:66
-msgid "Set the background color"
-msgstr ""
+#: src/Object/Post.php:200
+msgid "save to folder"
+msgstr "uložit do složky"
 
-#: view/theme/frio/config.php:67
-msgid "Content background transparency"
-msgstr ""
+#: src/Object/Post.php:243
+msgid "I will attend"
+msgstr "Zúčastním se"
 
-#: view/theme/frio/config.php:68
-msgid "Set the background image"
-msgstr ""
+#: src/Object/Post.php:243
+msgid "I will not attend"
+msgstr "Nezúčastním se"
 
-#: view/theme/frio/theme.php:229
-msgid "Guest"
-msgstr ""
+#: src/Object/Post.php:243
+msgid "I might attend"
+msgstr "Mohl bych se zúčastnit"
 
-#: view/theme/frio/theme.php:235
-msgid "Visitor"
-msgstr ""
+#: src/Object/Post.php:271
+msgid "add star"
+msgstr "přidat hvězdu"
 
-#: view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Zarovnání"
+#: src/Object/Post.php:272
+msgid "remove star"
+msgstr "odebrat hvězdu"
 
-#: view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Vlevo"
+#: src/Object/Post.php:273
+msgid "toggle star status"
+msgstr "přepínat hvězdu"
 
-#: view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Uprostřed"
+#: src/Object/Post.php:276
+msgid "starred"
+msgstr "označeno hvězdou"
 
-#: view/theme/quattro/config.php:68
-msgid "Color scheme"
-msgstr "Barevné schéma"
+#: src/Object/Post.php:282
+msgid "ignore thread"
+msgstr "ignorovat vlákno"
 
-#: view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Velikost písma u příspěvků"
+#: src/Object/Post.php:283
+msgid "unignore thread"
+msgstr "přestat ignorovat vlákno"
 
-#: view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "Velikost písma textů"
+#: src/Object/Post.php:284
+msgid "toggle ignore status"
+msgstr "přepínat stav ignorování"
 
-#: view/theme/vier/theme.php:152 view/theme/vier/config.php:112
-msgid "Community Profiles"
-msgstr "Komunitní profily"
+#: src/Object/Post.php:293
+msgid "add tag"
+msgstr "přidat štítek"
 
-#: view/theme/vier/theme.php:181 view/theme/vier/config.php:116
-msgid "Last users"
-msgstr "Poslední uživatelé"
+#: src/Object/Post.php:304
+msgid "like"
+msgstr "má rád"
 
-#: view/theme/vier/theme.php:199 view/theme/vier/config.php:115
-msgid "Find Friends"
-msgstr "Nalézt Přátele"
+#: src/Object/Post.php:305
+msgid "dislike"
+msgstr "nemá rád"
 
-#: view/theme/vier/theme.php:200
-msgid "Local Directory"
-msgstr "Lokální Adresář"
+#: src/Object/Post.php:308
+msgid "Share this"
+msgstr "Sdílet toto"
 
-#: view/theme/vier/theme.php:291
-msgid "Quick Start"
-msgstr ""
+#: src/Object/Post.php:308
+msgid "share"
+msgstr "sdílí"
 
-#: view/theme/vier/theme.php:373 view/theme/vier/config.php:114
-msgid "Connect Services"
-msgstr "Propojené služby"
+#: src/Object/Post.php:373
+msgid "to"
+msgstr "pro"
 
-#: view/theme/vier/config.php:64
-msgid "Comma separated list of helper forums"
-msgstr ""
+#: src/Object/Post.php:374
+msgid "via"
+msgstr "přes"
 
-#: view/theme/vier/config.php:110
-msgid "Set style"
-msgstr "Nastavit styl"
+#: src/Object/Post.php:375
+msgid "Wall-to-Wall"
+msgstr "Ze zdi na zeď"
 
-#: view/theme/vier/config.php:111
-msgid "Community Pages"
-msgstr "Komunitní stránky"
+#: src/Object/Post.php:376
+msgid "via Wall-To-Wall:"
+msgstr "ze zdi na zeď"
 
-#: view/theme/vier/config.php:113
-msgid "Help or @NewHere ?"
-msgstr "Pomoc nebo @ProNováčky ?"
+#: src/Object/Post.php:435
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d komentář"
+msgstr[1] "%d komentáře"
+msgstr[2] "%d komentářů"
+msgstr[3] "%d komentářů"
 
-#: view/theme/duepuntozero/config.php:45
-msgid "greenzero"
-msgstr "zelená nula"
+#: src/Object/Post.php:805
+msgid "Bold"
+msgstr "Tučné"
 
-#: view/theme/duepuntozero/config.php:46
-msgid "purplezero"
-msgstr "fialová nula"
+#: src/Object/Post.php:806
+msgid "Italic"
+msgstr "Kurzíva"
 
-#: view/theme/duepuntozero/config.php:47
-msgid "easterbunny"
-msgstr "velikonoční zajíček"
+#: src/Object/Post.php:807
+msgid "Underline"
+msgstr "Podrtžené"
 
-#: view/theme/duepuntozero/config.php:48
-msgid "darkzero"
-msgstr "tmavá nula"
+#: src/Object/Post.php:808
+msgid "Quote"
+msgstr "Citovat"
 
-#: view/theme/duepuntozero/config.php:49
-msgid "comix"
-msgstr "komiksová"
+#: src/Object/Post.php:809
+msgid "Code"
+msgstr "Kód"
 
-#: view/theme/duepuntozero/config.php:50
-msgid "slackr"
-msgstr "flákač"
+#: src/Object/Post.php:810
+msgid "Image"
+msgstr "Obrázek"
 
-#: view/theme/duepuntozero/config.php:62
-msgid "Variations"
-msgstr "Variace"
+#: src/Object/Post.php:811
+msgid "Link"
+msgstr "Odkaz"
 
-#: boot.php:970
+#: src/Object/Post.php:812
+msgid "Video"
+msgstr "Video"
+
+#: src/App.php:526
 msgid "Delete this item?"
 msgstr "Odstranit tuto položku?"
 
-#: boot.php:973
+#: src/App.php:528
 msgid "show fewer"
 msgstr "zobrazit méně"
 
-#: boot.php:1655
+#: src/App.php:1117
+msgid "No system theme config value set."
+msgstr "Není nastavena konfigurační hodnota systémového motivu."
+
+#: index.php:464
+msgid "toggle mobile"
+msgstr "přepínat mobilní zobrazení"
+
+#: boot.php:796
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Aktualizace %s selhala. Zkontrolujte protokol chyb."
 
-#: boot.php:1767
-msgid "Create a New Account"
-msgstr "Vytvořit nový účet"
-
-#: boot.php:1796
-msgid "Password: "
-msgstr "Heslo: "
-
-#: boot.php:1797
-msgid "Remember me"
-msgstr "Pamatuj si mne"
-
-#: boot.php:1800
-msgid "Or login using OpenID: "
-msgstr "Nebo přihlášení pomocí OpenID: "
-
-#: boot.php:1806
-msgid "Forgot your password?"
-msgstr "Zapomněli jste své heslo?"
-
-#: boot.php:1809
-msgid "Website Terms of Service"
-msgstr "Podmínky použití serveru"
-
-#: boot.php:1810
-msgid "terms of service"
-msgstr "podmínky použití"
-
-#: boot.php:1812
-msgid "Website Privacy Policy"
-msgstr "Pravidla ochrany soukromí serveru"
-
-#: boot.php:1813
-msgid "privacy policy"
-msgstr "Ochrana soukromí"
-
-#: index.php:451
-msgid "toggle mobile"
-msgstr "přepnout mobil"
+#: update.php:193
+#, php-format
+msgid "%s: Updating author-id and owner-id in item and thread table. "
+msgstr "%s: Aktualizuji author-id a owner-id v tabulce položek a vláken."
index efc9ecd34ac5750ce994a2ee7493756920c43bff..e6ce7cf13a97abe7fe42b325e873c241ffce2121 100644 (file)
 if(! function_exists("string_plural_select_cs")) {
 function string_plural_select_cs($n){
        $n = intval($n);
-       return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;;
+       return ($n == 1 && $n % 1 == 0) ? 0 : ($n >= 2 && $n <= 4 && $n % 1 == 0) ? 1: ($n % 1 != 0 ) ? 2 : 3;;
 }}
 ;
-$a->strings["Add New Contact"] = "Přidat nový kontakt";
-$a->strings["Enter address or web location"] = "Zadejte adresu nebo umístění webu";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Příklad: jan@příklad.cz, http://příklad.cz/jana";
-$a->strings["Connect"] = "Spojit";
-$a->strings["%d invitation available"] = [
-       0 => "Pozvánka %d k dispozici",
-       1 => "Pozvánky %d k dispozici",
-       2 => "Pozvánky %d k dispozici",
-];
-$a->strings["Find People"] = "Nalézt lidi";
-$a->strings["Enter name or interest"] = "Zadejte jméno nebo zájmy";
-$a->strings["Connect/Follow"] = "Připojit / Následovat";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Příklady: Robert Morgenstein, rybaření";
-$a->strings["Find"] = "Najít";
-$a->strings["Friend Suggestions"] = "Návrhy přátel";
-$a->strings["Similar Interests"] = "Podobné zájmy";
-$a->strings["Random Profile"] = "Náhodný Profil";
-$a->strings["Invite Friends"] = "Pozvat přátele";
-$a->strings["Networks"] = "Sítě";
-$a->strings["All Networks"] = "Všechny sítě";
-$a->strings["Saved Folders"] = "Uložené složky";
-$a->strings["Everything"] = "Všechno";
-$a->strings["Categories"] = "Kategorie";
-$a->strings["%d contact in common"] = [
-       0 => "%d sdílený kontakt",
-       1 => "%d sdílených kontaktů",
-       2 => "%d sdílených kontaktů",
-];
-$a->strings["show more"] = "zobrazit více";
-$a->strings["Forums"] = "Fóra";
-$a->strings["External link to forum"] = "";
-$a->strings["Male"] = "Muž";
-$a->strings["Female"] = "Žena";
-$a->strings["Currently Male"] = "V současné době muž";
-$a->strings["Currently Female"] = "V současné době žena";
-$a->strings["Mostly Male"] = "Většinou muž";
-$a->strings["Mostly Female"] = "Většinou žena";
-$a->strings["Transgender"] = "Transgender";
-$a->strings["Intersex"] = "Intersex";
-$a->strings["Transsexual"] = "Transexuál";
-$a->strings["Hermaphrodite"] = "Hermafrodit";
-$a->strings["Neuter"] = "Neutrál";
-$a->strings["Non-specific"] = "Nespecifikováno";
-$a->strings["Other"] = "Jiné";
-$a->strings["Undecided"] = [
-       0 => "",
-       1 => "",
-       2 => "",
-];
-$a->strings["Males"] = "Muži";
-$a->strings["Females"] = "Ženy";
-$a->strings["Gay"] = "Gay";
-$a->strings["Lesbian"] = "Lesbička";
-$a->strings["No Preference"] = "Bez preferencí";
-$a->strings["Bisexual"] = "Bisexuál";
-$a->strings["Autosexual"] = "Autosexuál";
-$a->strings["Abstinent"] = "Abstinent";
-$a->strings["Virgin"] = "panic/panna";
-$a->strings["Deviant"] = "Deviant";
-$a->strings["Fetish"] = "Fetišista";
-$a->strings["Oodles"] = "Hodně";
-$a->strings["Nonsexual"] = "Nesexuální";
-$a->strings["Single"] = "Svobodný";
-$a->strings["Lonely"] = "Osamnělý";
-$a->strings["Available"] = "Dostupný";
-$a->strings["Unavailable"] = "Nedostupný";
-$a->strings["Has crush"] = "Zamilovaný";
-$a->strings["Infatuated"] = "Zabouchnutý";
-$a->strings["Dating"] = "Seznamující se";
-$a->strings["Unfaithful"] = "Nevěrný";
-$a->strings["Sex Addict"] = "Závislý na sexu";
-$a->strings["Friends"] = "Přátelé";
-$a->strings["Friends/Benefits"] = "Přátelé / výhody";
-$a->strings["Casual"] = "Ležérní";
-$a->strings["Engaged"] = "Zadaný";
-$a->strings["Married"] = "Ženatý/vdaná";
-$a->strings["Imaginarily married"] = "Pomyslně ženatý/vdaná";
-$a->strings["Partners"] = "Partneři";
-$a->strings["Cohabiting"] = "Žijící ve společné domácnosti";
-$a->strings["Common law"] = "Zvykové právo";
-$a->strings["Happy"] = "Šťastný";
-$a->strings["Not looking"] = "Nehledající";
-$a->strings["Swinger"] = "Swinger";
-$a->strings["Betrayed"] = "Zrazen";
-$a->strings["Separated"] = "Odloučený";
-$a->strings["Unstable"] = "Nestálý";
-$a->strings["Divorced"] = "Rozvedený(á)";
-$a->strings["Imaginarily divorced"] = "Pomyslně rozvedený";
-$a->strings["Widowed"] = "Ovdovělý(á)";
-$a->strings["Uncertain"] = "Nejistý";
-$a->strings["It's complicated"] = "Je to složité";
-$a->strings["Don't care"] = "Nezajímá";
-$a->strings["Ask me"] = "Zeptej se mě";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Nelze nalézt záznam v DNS pro databázový server '%s'";
-$a->strings["Logged out."] = "Odhlášen.";
-$a->strings["Login failed."] = "Přihlášení se nezdařilo.";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. ";
-$a->strings["The error message was:"] = "Chybová zpráva byla:";
-$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."] = "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění <strong>může</ strong> ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěli, vytvořte, prosím,  další skupinu s jiným názvem.";
-$a->strings["Default privacy group for new contacts"] = "Defaultní soukromá skrupina pro nové kontakty.";
-$a->strings["Everybody"] = "Všichni";
-$a->strings["edit"] = "editovat";
-$a->strings["Groups"] = "Skupiny";
-$a->strings["Edit groups"] = "";
-$a->strings["Edit group"] = "Editovat skupinu";
-$a->strings["Create a new group"] = "Vytvořit novou skupinu";
-$a->strings["Group Name: "] = "Název skupiny: ";
-$a->strings["Contacts not in any group"] = "Kontakty, které nejsou v žádné skupině";
-$a->strings["add"] = "přidat";
-$a->strings["Unknown | Not categorised"] = "Neznámé | Nezařazeno";
-$a->strings["Block immediately"] = "Okamžitě blokovat ";
-$a->strings["Shady, spammer, self-marketer"] = "pochybný, spammer, self-makerter";
-$a->strings["Known to me, but no opinion"] = "Znám ho ale, ale bez rozhodnutí";
-$a->strings["OK, probably harmless"] = "OK, pravděpodobně neškodný";
-$a->strings["Reputable, has my trust"] = "Renomovaný, má mou důvěru";
-$a->strings["Frequently"] = "Často";
-$a->strings["Hourly"] = "každou hodinu";
-$a->strings["Twice daily"] = "Dvakrát denně";
-$a->strings["Daily"] = "denně";
-$a->strings["Weekly"] = "Týdenně";
-$a->strings["Monthly"] = "Měsíčně";
-$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"] = "Diaspora konektor";
-$a->strings["GNU Social"] = "";
-$a->strings["App.net"] = "App.net";
-$a->strings["Hubzilla/Redmatrix"] = "";
-$a->strings["Post to Email"] = "Poslat příspěvek na e-mail";
-$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Kontektory deaktivovány, od \"%s\" je aktivován.";
-$a->strings["Hide your profile details from unknown viewers?"] = "Skrýt Vaše profilové detaily před neznámými uživateli?";
-$a->strings["Visible to everybody"] = "Viditelné pro všechny";
-$a->strings["show"] = "zobrazit";
-$a->strings["don't show"] = "nikdy nezobrazit";
-$a->strings["CC: email addresses"] = "skrytá kopie: e-mailové adresy";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Příklad: bob@example.com, mary@example.com";
-$a->strings["Permissions"] = "Oprávnění:";
-$a->strings["Close"] = "Zavřít";
-$a->strings["photo"] = "fotografie";
-$a->strings["status"] = "Stav";
-$a->strings["event"] = "událost";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s má rád %2\$s' na %3\$s";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s nemá rád %2\$s na %3\$s";
-$a->strings["%1\$s is attending %2\$s's %3\$s"] = "";
-$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "";
-$a->strings["%1\$s may attend %2\$s's %3\$s"] = "";
-$a->strings["[no subject]"] = "[bez předmětu]";
-$a->strings["Wall Photos"] = "Fotografie na zdi";
-$a->strings["Click here to upgrade."] = "Klikněte zde pro aktualizaci.";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "Tato akce překročí limit nastavené Vaším předplatným.";
-$a->strings["This action is not available under your subscription plan."] = "Tato akce není v rámci Vašeho předplatného dostupná.";
-$a->strings["Error decoding account file"] = "Chyba dekódování uživatelského účtu";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?";
-$a->strings["Error! Cannot check nickname"] = "Chyba! Nelze ověřit přezdívku";
-$a->strings["User '%s' already exists on this server!"] = "Uživatel '%s' již na tomto serveru existuje!";
-$a->strings["User creation error"] = "Chyba vytváření uživatele";
-$a->strings["User profile creation error"] = "Chyba vytváření uživatelského účtu";
-$a->strings["%d contact not imported"] = [
-       0 => "%d kontakt nenaimporován",
-       1 => "%d kontaktů nenaimporováno",
-       2 => "%d kontakty nenaimporovány",
-];
-$a->strings["Done. You can now login with your username and password"] = "Hotovo. Nyní  se můžete přihlásit se svými uživatelským účtem a heslem";
-$a->strings["Miscellaneous"] = "Různé";
-$a->strings["Birthday:"] = "Narozeniny:";
-$a->strings["Age: "] = "Věk: ";
-$a->strings["YYYY-MM-DD or MM-DD"] = "";
-$a->strings["never"] = "nikdy";
-$a->strings["less than a second ago"] = "méně než před sekundou";
-$a->strings["year"] = "rok";
-$a->strings["years"] = "let";
-$a->strings["month"] = "měsíc";
-$a->strings["months"] = "měsíců";
-$a->strings["week"] = "týdnem";
-$a->strings["weeks"] = "týdny";
-$a->strings["day"] = "den";
-$a->strings["days"] = "dnů";
-$a->strings["hour"] = "hodina";
-$a->strings["hours"] = "hodin";
-$a->strings["minute"] = "minuta";
-$a->strings["minutes"] = "minut";
-$a->strings["second"] = "sekunda";
-$a->strings["seconds"] = "sekund";
-$a->strings["%1\$d %2\$s ago"] = "před %1\$d %2\$s";
-$a->strings["%s's birthday"] = "%s má narozeniny";
-$a->strings["Happy Birthday %s"] = "Veselé narozeniny %s";
-$a->strings["Friendica Notification"] = "Friendica Notifikace";
+$a->strings["Friendica Notification"] = "Oznámení Friendica";
 $a->strings["Thank You,"] = "Děkujeme, ";
-$a->strings["%s Administrator"] = "%s Administrátor";
-$a->strings["%1\$s, %2\$s Administrator"] = "";
-$a->strings["noreply"] = "neodpovídat";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Upozornění] Obdržena nová zpráva na %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s Vám poslal novou soukromou zprávu na %2\$s.";
+$a->strings["%s Administrator"] = "%s administrátor";
+$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s administrátor";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Oznámení] Obdržena nová zpráva na %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s Vám poslal/a novou soukromou zprávu na %2\$s.";
+$a->strings["a private message"] = "soukromou zprávu";
 $a->strings["%1\$s sent you %2\$s."] = "%1\$s Vám poslal %2\$s.";
-$a->strings["a private message"] = "soukromá zpráva";
 $a->strings["Please visit %s to view and/or reply to your private messages."] = "Prosím navštivte %s pro zobrazení Vašich soukromých zpráv a možnost na ně odpovědět.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]%3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]%3\$s's %4\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]Váš %3\$s[/url]";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Upozornění] Komentář ke konverzaci #%1\$d od %2\$s";
-$a->strings["%s commented on an item/conversation you have been following."] = "Uživatel %s okomentoval vámi sledovanou položku/konverzaci.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s okomentoval/a [url=%2\$s]%3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s okomentoval/a [url=%2\$s]%4\$s od %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s okomentoval/a [url=%2\$s]Váš/Vaši %3\$s[/url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Oznámení] Komentář ke konverzaci #%1\$d od %2\$s";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s okomentoval/a Vámi sledovanou položku/konverzaci.";
 $a->strings["Please visit %s to view and/or reply to the conversation."] = "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět.";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s přidal příspěvek na Vaši profilovou zeď na %2\$s";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s napřidáno na [url=%2\$s]na Vaši zeď[/url]";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Upozornění] %s Vás označil";
-$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s Vás označil na %2\$s";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]Vás označil[/url].";
-$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s nasdílel nový příspěvek";
-$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s nasdílel nový příspěvek na %2\$s";
-$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]nasdílel příspěvek[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Upozornění] %1\$s Vás šťouchnul";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s Vás šťouchnul na %2\$s";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "Uživatel %1\$s [url=%2\$s]Vás šťouchnul[/url].";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Upozornění] %s označil Váš příspěvek";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s označil Váš příspěvek na %2\$s";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s označil [url=%2\$s]Váš příspěvek[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Upozornění] Obdrženo přestavení";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Obdržel jste žádost o spojení od '%1\$s' na %2\$s";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Obdržel jste [url=%1\$s]žádost o spojení[/url] od %2\$s.";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Oznámení] %s přidal/a příspěvek na Vaši profilovou zeď";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s přidal/a příspěvek na Vaši profilovou zeď na %2\$s";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s přidal/a příspěvek na [url=%2\$s]Vaši zeď[/url]";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Oznámení] %s Vás označil/a";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s Vás označil/a na %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]Vás označil/a[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Oznámení] %s sdílel/a nový příspěvek";
+$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s sdílel/a nový příspěvek na %2\$s";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]sdílel/a příspěvek[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Oznámení] %1\$s Vás šťouchnul/a";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s Vás šťouchnul/a na %2\$s";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "Uživatel %1\$s [url=%2\$s]Vás šťouchnul/a[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Oznámení] %s označil/a Váš příspěvek";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s označil/a Váš příspěvek na%2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s označil/a [url=%2\$s]Váš příspěvek[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Oznámení] Obdrženo představení";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Obdržel/a jste představení od \"%1\$s\" na %2\$s";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Obdržel/a jste [url=%1\$s]představení[/url] od %2\$s.";
 $a->strings["You may visit their profile at %s"] = "Můžete navštívit jejich profil na %s";
 $a->strings["Please visit %s to approve or reject the introduction."] = "Prosím navštivte %s pro schválení či zamítnutí představení.";
-$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Upozornění] Nový člověk s vámi sdílí";
-$a->strings["%1\$s is sharing with you at %2\$s"] = "uživatel %1\$s sdílí s vámi ma %2\$s";
-$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Upozornění] Máte nového následovníka";
+$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Oznámení] Nový člověk s vámi sdílí";
+$a->strings["%1\$s is sharing with you at %2\$s"] = "Uživatel %1\$s s vámi sdílí na %2\$s";
+$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Oznámení] Máte nového následovníka";
 $a->strings["You have a new follower at %2\$s : %1\$s"] = "Máte nového následovníka na %2\$s : %1\$s";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Upozornění] Obdržen návrh na přátelství";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Obdržel jste návrh přátelství od '%1\$s' na %2\$s";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Obdržel jste [url=%1\$s]návrh přátelství[/url] s %2\$s from %3\$s.";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Oznámení] Obdržen návrh pro přátelství";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Obdržel jste návrh pro přátelství od '%1\$s' na %2\$s";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Obdržel jste [url=%1\$s]návrh pro přátelství[/url] s %2\$s from %3\$s.";
 $a->strings["Name:"] = "Jméno:";
 $a->strings["Photo:"] = "Foto:";
 $a->strings["Please visit %s to approve or reject the suggestion."] = "Prosím navštivte %s pro schválení či zamítnutí doporučení.";
-$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Upozornění] Spojení akceptováno";
-$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' akceptoval váš požadavek na spojení na %2\$s";
+$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Oznámení] Spojení akceptováno";
+$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "\"%1\$s\" akceptoval váš požadavek na spojení na %2\$s";
 $a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s akceptoval váš [url=%1\$s]požadavek na spojení[/url].";
-$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "";
-$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "";
-$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' vás přijal jako \"fanouška\", což omezuje některé formy komunikace - jako jsou soukromé zprávy a některé interakce na profilech. Pokud se jedná o celebritu, případně o komunitní stránky, pak bylo toto nastavení provedeno automaticky..";
-$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "";
+$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Jste nyní vzájemní přátelé a můžete si vyměňovat aktualizace stavu, fotky a e-maily bez omezení.";
+$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Pokud chcete provést změny s tímto vztahem, prosím navštivte %s.";
+$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\" se rozhodl/a Vás přijmout jako fanouška, což omezuje některé formy komunikace - například soukoromé zprávy a některé interakce s profily. Pokud je toto stránka celebrity či komunity, byla tato nastavení aplikována automaticky.";
+$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "\"%1\$s\" se může rozhodnout tento vztah v budoucnosti rozšířit do obousměrného či jiného liberálnějšího vztahu.";
 $a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Prosím navštivte %s  pokud chcete změnit tento vztah.";
-$a->strings["[Friendica System:Notify] registration request"] = "[Systém Friendica :Upozornění] registrační požadavek";
-$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Obdržel jste požadavek na registraci od '%1\$s' na %2\$s";
-$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Obdržel jste [url=%1\$s]požadavek na registraci[/url] od '%2\$s'.";
-$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Plné jméno:\t%1\$s\\nUmístění webu:\t%2\$s\\nPřihlašovací účet:\t%3\$s (%4\$s)";
+$a->strings["[Friendica System Notify]"] = "[Oznámení systému Friendica]";
+$a->strings["registration request"] = "žádost o registraci";
+$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Obdržel jste žádost o registraci od '%1\$s' na %2\$s";
+$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Obdržel jste [url=%1\$s]žádost o registraci[/url] od '%2\$s'.";
+$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Celé jméno:\t\t%1\$s\\nAdresa stránky:\t\t%2\$s\\nPřihlašovací jméno:\t%3\$s (%4\$s)";
 $a->strings["Please visit %s to approve or reject the request."] = "Prosím navštivte %s k odsouhlasení nebo k zamítnutí požadavku.";
-$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
-$a->strings["Starts:"] = "Začíná:";
-$a->strings["Finishes:"] = "Končí:";
-$a->strings["Location:"] = "Místo:";
-$a->strings["Sun"] = "";
-$a->strings["Mon"] = "";
-$a->strings["Tue"] = "";
-$a->strings["Wed"] = "";
-$a->strings["Thu"] = "";
-$a->strings["Fri"] = "";
-$a->strings["Sat"] = "";
-$a->strings["Sunday"] = "Neděle";
-$a->strings["Monday"] = "Pondělí";
-$a->strings["Tuesday"] = "Úterý";
-$a->strings["Wednesday"] = "Středa";
-$a->strings["Thursday"] = "Čtvrtek";
-$a->strings["Friday"] = "Pátek";
-$a->strings["Saturday"] = "Sobota";
-$a->strings["Jan"] = "";
-$a->strings["Feb"] = "";
-$a->strings["Mar"] = "";
-$a->strings["Apr"] = "";
-$a->strings["May"] = "Května";
-$a->strings["Jun"] = "";
-$a->strings["Jul"] = "";
-$a->strings["Aug"] = "";
-$a->strings["Sept"] = "";
-$a->strings["Oct"] = "";
-$a->strings["Nov"] = "";
-$a->strings["Dec"] = "";
-$a->strings["January"] = "Ledna";
-$a->strings["February"] = "Února";
-$a->strings["March"] = "Března";
-$a->strings["April"] = "Dubna";
-$a->strings["June"] = "Června";
-$a->strings["July"] = "Července";
-$a->strings["August"] = "Srpna";
-$a->strings["September"] = "Září";
-$a->strings["October"] = "Října";
-$a->strings["November"] = "Listopadu";
-$a->strings["December"] = "Prosinec";
-$a->strings["today"] = "";
-$a->strings["all-day"] = "";
-$a->strings["No events to display"] = "";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "Editovat událost";
-$a->strings["link to source"] = "odkaz na zdroj";
-$a->strings["Export"] = "";
-$a->strings["Export calendar as ical"] = "";
-$a->strings["Export calendar as csv"] = "";
-$a->strings["Nothing new here"] = "Zde není nic nového";
-$a->strings["Clear notifications"] = "Smazat notifikace";
-$a->strings["@name, !forum, #tags, content"] = "";
-$a->strings["Logout"] = "Odhlásit se";
-$a->strings["End this session"] = "Konec této relace";
-$a->strings["Status"] = "Stav";
-$a->strings["Your posts and conversations"] = "Vaše příspěvky a konverzace";
-$a->strings["Profile"] = "Profil";
-$a->strings["Your profile page"] = "Vaše profilová stránka";
-$a->strings["Photos"] = "Fotografie";
-$a->strings["Your photos"] = "Vaše fotky";
-$a->strings["Videos"] = "Videa";
-$a->strings["Your videos"] = "Vaše videa";
-$a->strings["Events"] = "Události";
-$a->strings["Your events"] = "Vaše události";
-$a->strings["Personal notes"] = "Osobní poznámky";
-$a->strings["Your personal notes"] = "Vaše osobní poznámky";
-$a->strings["Login"] = "Přihlásit se";
-$a->strings["Sign in"] = "Přihlásit se";
-$a->strings["Home"] = "Domů";
-$a->strings["Home Page"] = "Domácí stránka";
-$a->strings["Register"] = "Registrovat";
-$a->strings["Create an account"] = "Vytvořit účet";
-$a->strings["Help"] = "Nápověda";
-$a->strings["Help and documentation"] = "Nápověda a dokumentace";
-$a->strings["Apps"] = "Aplikace";
-$a->strings["Addon applications, utilities, games"] = "Doplňkové aplikace, nástroje, hry";
-$a->strings["Search"] = "Vyhledávání";
-$a->strings["Search site content"] = "Hledání na stránkách tohoto webu";
-$a->strings["Full Text"] = "Celý text";
-$a->strings["Tags"] = "Štítky:";
-$a->strings["Contacts"] = "Kontakty";
-$a->strings["Community"] = "Komunita";
-$a->strings["Conversations on this site"] = "Konverzace na tomto webu";
-$a->strings["Conversations on the network"] = "Konverzace v síti";
-$a->strings["Events and Calendar"] = "Události a kalendář";
-$a->strings["Directory"] = "Adresář";
-$a->strings["People directory"] = "Adresář";
-$a->strings["Information"] = "Informace";
-$a->strings["Information about this friendica instance"] = "Informace o této instanci Friendica";
-$a->strings["Network"] = "Síť";
-$a->strings["Conversations from your friends"] = "Konverzace od Vašich přátel";
-$a->strings["Network Reset"] = "Síťový Reset";
-$a->strings["Load Network page with no filters"] = "Načíst stránku Síť bez filtrů";
-$a->strings["Introductions"] = "Představení";
-$a->strings["Friend Requests"] = "Žádosti přátel";
-$a->strings["Notifications"] = "Upozornění";
-$a->strings["See all notifications"] = "Zobrazit všechny upozornění";
-$a->strings["Mark as seen"] = "Označit jako přečtené";
-$a->strings["Mark all system notifications seen"] = "Označit všechny upozornění systému jako přečtené";
-$a->strings["Messages"] = "Zprávy";
-$a->strings["Private mail"] = "Soukromá pošta";
-$a->strings["Inbox"] = "Doručená pošta";
-$a->strings["Outbox"] = "Odeslaná pošta";
-$a->strings["New Message"] = "Nová zpráva";
-$a->strings["Manage"] = "Spravovat";
-$a->strings["Manage other pages"] = "Spravovat jiné stránky";
-$a->strings["Delegations"] = "Delegace";
-$a->strings["Delegate Page Management"] = "Správa delegátů stránky";
-$a->strings["Settings"] = "Nastavení";
-$a->strings["Account settings"] = "Nastavení účtu";
-$a->strings["Profiles"] = "Profily";
-$a->strings["Manage/Edit Profiles"] = "Spravovat/Editovat Profily";
-$a->strings["Manage/edit friends and contacts"] = "Spravovat/upravit přátelé a kontakty";
-$a->strings["Admin"] = "Administrace";
-$a->strings["Site setup and configuration"] = "Nastavení webu a konfigurace";
-$a->strings["Navigation"] = "Navigace";
-$a->strings["Site map"] = "Mapa webu";
-$a->strings["Contact Photos"] = "Fotogalerie kontaktu";
-$a->strings["Welcome "] = "Vítejte ";
-$a->strings["Please upload a profile photo."] = "Prosím nahrejte profilovou fotografii";
-$a->strings["Welcome back "] = "Vítejte zpět ";
-$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."] = "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním.";
-$a->strings["System"] = "Systém";
-$a->strings["Personal"] = "Osobní";
-$a->strings["%s commented on %s's post"] = "%s okomentoval příspěvek uživatele %s'";
-$a->strings["%s created a new post"] = "%s vytvořil nový příspěvek";
-$a->strings["%s liked %s's post"] = "Uživateli %s se líbí příspěvek uživatele %s";
-$a->strings["%s disliked %s's post"] = "Uživateli %s se nelíbí příspěvek uživatele %s";
-$a->strings["%s is attending %s's event"] = "";
-$a->strings["%s is not attending %s's event"] = "";
-$a->strings["%s may attend %s's event"] = "";
-$a->strings["%s is now friends with %s"] = "%s se nyní přátelí s %s";
-$a->strings["Friend Suggestion"] = "Návrh přátelství";
-$a->strings["Friend/Connect Request"] = "Přítel / žádost o připojení";
-$a->strings["New Follower"] = "Nový následovník";
-$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\tThe friendica vývojáři uvolnili nedávno aktualizaci %s,\n\t\t\tale při pokusu o její instalaci se něco velmi nepovedlo.\n\t\t\tJe třeba to opravit a já to sám nedokážu. Prosím kontaktuj\n\t\t\tfriendica vývojáře, pokud mi s tím nepomůžeš ty sám. Moje databáze může být poškozena.";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "Chybová zpráva je\n[pre]%s[/pre]";
-$a->strings["Errors encountered creating database tables."] = "Při vytváření databázových tabulek došlo k chybám.";
-$a->strings["Errors encountered performing database changes."] = "Při provádění databázových změn došlo k chybám.";
-$a->strings["(no subject)"] = "(Bez předmětu)";
-$a->strings["Sharing notification from Diaspora network"] = "Sdílení oznámení ze sítě Diaspora";
-$a->strings["Attachments:"] = "Přílohy:";
-$a->strings["view full size"] = "zobrazit v plné velikosti";
-$a->strings["View Profile"] = "Zobrazit Profil";
-$a->strings["View Status"] = "Zobrazit Status";
-$a->strings["View Photos"] = "Zobrazit Fotky";
-$a->strings["Network Posts"] = "Zobrazit Příspěvky sítě";
-$a->strings["View Contact"] = "";
-$a->strings["Drop Contact"] = "Odstranit kontakt";
-$a->strings["Send PM"] = "Poslat soukromou zprávu";
-$a->strings["Poke"] = "Šťouchnout";
-$a->strings["Organisation"] = "";
-$a->strings["News"] = "";
-$a->strings["Forum"] = "";
-$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Bylo dosaženo denního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut.";
-$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Bylo týdenního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut.";
-$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Bylo dosaženo měsíčního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut.";
-$a->strings["Image/photo"] = "Obrázek/fotografie";
-$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 napsal:";
-$a->strings["Encrypted content"] = "Šifrovaný obsah";
-$a->strings["Invalid source protocol"] = "";
-$a->strings["Invalid link protocol"] = "";
-$a->strings["%1\$s attends %2\$s's %3\$s"] = "";
-$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "";
-$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "";
+$a->strings["Daily posting limit of %d post reached. The post was rejected."] = [
+       0 => "Byl dosažen denní limit %d příspěvku. Příspěvek byl odmítnut.",
+       1 => "Byl dosažen denní limit %d příspěvků. Příspěvek byl odmítnut.",
+       2 => "Byl dosažen denní limit %d příspěvků. Příspěvek byl odmítnut.",
+       3 => "Byl dosažen denní limit %d příspěvků. Příspěvek byl odmítnut.",
+];
+$a->strings["Weekly posting limit of %d post reached. The post was rejected."] = [
+       0 => "Byl dosažen týdenní limit %d příspěvku. Příspěvek byl odmítnut.",
+       1 => "Byl dosažen týdenní limit %d příspěvků. Příspěvek byl odmítnut.",
+       2 => "Byl dosažen týdenní limit %d příspěvků. Příspěvek byl odmítnut.",
+       3 => "Byl dosažen týdenní limit %d příspěvků. Příspěvek byl odmítnut.",
+];
+$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "Byl dosažen měsíční limit %d příspěvků. Příspěvek byl odmítnut.";
+$a->strings["Profile Photos"] = "Profilové fotky";
+$a->strings["event"] = "událost";
+$a->strings["status"] = "stav";
+$a->strings["photo"] = "fotka";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s se líbí %3\$s %2\$s";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s se nelíbí %3\$s %2\$s";
+$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s se účastní %3\$s %2\$s";
+$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s se neúčastní %3\$s %2\$s";
+$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s se možná účastní %3\$s %2\$s";
 $a->strings["%1\$s is now friends with %2\$s"] = "%1\$s je nyní přítel s %2\$s";
 $a->strings["%1\$s poked %2\$s"] = "%1\$s šťouchnul %2\$s";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s je právě %2\$s";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s označen uživatelem %2\$s %3\$s s %4\$s";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s označil %3\$s %2\$s s %4\$s";
 $a->strings["post/item"] = "příspěvek/položka";
-$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "uživatel %1\$s označil %2\$s's %3\$s jako oblíbeného";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "uživatel %1\$s označil %3\$s %2\$s jako oblíbené";
 $a->strings["Likes"] = "Libí se mi";
 $a->strings["Dislikes"] = "Nelibí se mi";
 $a->strings["Attending"] = [
-       0 => "",
-       1 => "",
-       2 => "",
+       0 => "Účastní se",
+       1 => "Účastní se",
+       2 => "Účastní se",
+       3 => "Účastní se",
 ];
-$a->strings["Not attending"] = "";
-$a->strings["Might attend"] = "";
+$a->strings["Not attending"] = "Neúčastní se";
+$a->strings["Might attend"] = "Mohl/a by se zúčastnit";
 $a->strings["Select"] = "Vybrat";
 $a->strings["Delete"] = "Odstranit";
 $a->strings["View %s's profile @ %s"] = "Zobrazit profil uživatele %s na %s";
 $a->strings["Categories:"] = "Kategorie:";
 $a->strings["Filed under:"] = "Vyplněn pod:";
 $a->strings["%s from %s"] = "%s od %s";
-$a->strings["View in context"] = "Pohled v kontextu";
+$a->strings["View in context"] = "Zobrazit v kontextu";
 $a->strings["Please wait"] = "Čekejte prosím";
 $a->strings["remove"] = "odstranit";
 $a->strings["Delete Selected Items"] = "Smazat vybrané položky";
 $a->strings["Follow Thread"] = "Následovat vlákno";
+$a->strings["View Status"] = "Zobrazit stav";
+$a->strings["View Profile"] = "Zobrazit profil";
+$a->strings["View Photos"] = "Zobrazit fotky";
+$a->strings["Network Posts"] = "Zobrazit Příspěvky sítě";
+$a->strings["View Contact"] = "Zobrazit kontakt";
+$a->strings["Send PM"] = "Poslat soukromou zprávu";
+$a->strings["Poke"] = "Šťouchnout";
+$a->strings["Connect/Follow"] = "Připojit / Následovat";
 $a->strings["%s likes this."] = "%s se to líbí.";
 $a->strings["%s doesn't like this."] = "%s se to nelíbí.";
-$a->strings["%s attends."] = "";
-$a->strings["%s doesn't attend."] = "";
-$a->strings["%s attends maybe."] = "";
+$a->strings["%s attends."] = "%s se účastní.";
+$a->strings["%s doesn't attend."] = "%s se neúčastní.";
+$a->strings["%s attends maybe."] = "%s se možná účastní.";
 $a->strings["and"] = "a";
-$a->strings[", and %d other people"] = ", a %d dalších lidí";
+$a->strings["and %d other people"] = "a dalších %d lidí";
 $a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d lidem</span> se to líbí";
-$a->strings["%s like this."] = "";
+$a->strings["%s like this."] = "%s se tohle líbí.";
 $a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d lidem</span> se to nelíbí";
-$a->strings["%s don't like this."] = "";
-$a->strings["<span  %1\$s>%2\$d people</span> attend"] = "";
-$a->strings["%s attend."] = "";
-$a->strings["<span  %1\$s>%2\$d people</span> don't attend"] = "";
-$a->strings["%s don't attend."] = "";
-$a->strings["<span  %1\$s>%2\$d people</span> attend maybe"] = "";
-$a->strings["%s anttend maybe."] = "";
+$a->strings["%s don't like this."] = "%s se tohle nelíbí.";
+$a->strings["<span  %1\$s>%2\$d people</span> attend"] = "<span  %1\$s>%2\$d lidí</span> se účastní";
+$a->strings["%s attend."] = "%s se účastní.";
+$a->strings["<span  %1\$s>%2\$d people</span> don't attend"] = "<span  %1\$s>%2\$d lidí</span> se neúčastní";
+$a->strings["%s don't attend."] = "%s se neúčastní";
+$a->strings["<span  %1\$s>%2\$d people</span> attend maybe"] = "<span  %1\$s>%2\$d lidí</span> se možná účastní";
+$a->strings["%s attend maybe."] = "%s se možná účastní";
 $a->strings["Visible to <strong>everybody</strong>"] = "Viditelné pro <strong>všechny</strong>";
 $a->strings["Please enter a link URL:"] = "Zadejte prosím URL odkaz:";
 $a->strings["Please enter a video link/URL:"] = "Prosím zadejte URL adresu videa:";
@@ -480,6 +146,7 @@ $a->strings["Tag term:"] = "Štítek:";
 $a->strings["Save to Folder:"] = "Uložit do složky:";
 $a->strings["Where are you right now?"] = "Kde právě jste?";
 $a->strings["Delete item(s)?"] = "Smazat položku(y)?";
+$a->strings["New Post"] = "Nový příspěvek";
 $a->strings["Share"] = "Sdílet";
 $a->strings["Upload photo"] = "Nahrát fotografii";
 $a->strings["upload photo"] = "nahrát fotky";
@@ -506,157 +173,48 @@ $a->strings["Post to Groups"] = "Zveřejnit na Groups";
 $a->strings["Post to Contacts"] = "Zveřejnit na Groups";
 $a->strings["Private post"] = "Soukromý příspěvek";
 $a->strings["Message"] = "Zpráva";
-$a->strings["Browser"] = "";
-$a->strings["View all"] = "";
+$a->strings["Browser"] = "Prohlížeč";
+$a->strings["View all"] = "Zobrazit vše";
 $a->strings["Like"] = [
-       0 => "",
-       1 => "",
-       2 => "",
+       0 => "Lajk",
+       1 => "Lajky",
+       2 => "Lajků",
+       3 => "Lajky",
 ];
 $a->strings["Dislike"] = [
-       0 => "",
-       1 => "",
-       2 => "",
+       0 => "Dislajk",
+       1 => "Dislajky",
+       2 => "Dislajků",
+       3 => "Dislajky",
 ];
 $a->strings["Not Attending"] = [
-       0 => "",
-       1 => "",
-       2 => "",
+       0 => "Neúčastní se",
+       1 => "Neúčastní se",
+       2 => "Neúčastní se",
+       3 => "Neúčastní se",
+];
+$a->strings["Undecided"] = [
+       0 => "Nerozhotnut",
+       1 => "Nerozhodnutí",
+       2 => "Nerozhodnutých",
+       3 => "Nerozhodnuti",
 ];
-$a->strings["%s\\'s birthday"] = "";
-$a->strings["General Features"] = "Obecné funkčnosti";
-$a->strings["Multiple Profiles"] = "Vícenásobné profily";
-$a->strings["Ability to create multiple profiles"] = "Schopnost vytvořit vícenásobné profily";
-$a->strings["Photo Location"] = "";
-$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"] = "";
-$a->strings["Ability for visitors to download the public calendar"] = "";
-$a->strings["Post Composition Features"] = "Nastavení vytváření příspěvků";
-$a->strings["Richtext Editor"] = "Richtext Editor";
-$a->strings["Enable richtext editor"] = "Povolit richtext editor";
-$a->strings["Post Preview"] = "Náhled příspěvku";
-$a->strings["Allow previewing posts and comments before publishing them"] = "Povolit náhledy příspěvků a komentářů před jejich zveřejněním";
-$a->strings["Auto-mention Forums"] = "Automaticky zmíněná Fóra";
-$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "";
-$a->strings["Network Sidebar Widgets"] = "Síťové postranní widgety";
-$a->strings["Search by Date"] = "Vyhledávat dle Data";
-$a->strings["Ability to select posts by date ranges"] = "Možnost označit příspěvky dle časového intervalu";
-$a->strings["List Forums"] = "";
-$a->strings["Enable widget to display the forums your are connected with"] = "";
-$a->strings["Group Filter"] = "Skupinový Filtr";
-$a->strings["Enable widget to display Network posts only from selected group"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny";
-$a->strings["Network Filter"] = "Síťový Filtr";
-$a->strings["Enable widget to display Network posts only from selected network"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě";
-$a->strings["Saved Searches"] = "Uložená hledání";
-$a->strings["Save search terms for re-use"] = "Uložit kritéria vyhledávání pro znovupoužití";
-$a->strings["Network Tabs"] = "Síťové záložky";
-$a->strings["Network Personal Tab"] = "Osobní síťový záložka ";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval ";
-$a->strings["Network New Tab"] = "Nová záložka síť";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)";
-$a->strings["Network Shared Links Tab"] = "záložka Síťové sdílené odkazy ";
-$a->strings["Enable tab to display only Network posts with links in them"] = "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně";
-$a->strings["Post/Comment Tools"] = "Nástroje Příspěvků/Komentářů";
-$a->strings["Multiple Deletion"] = "Násobné mazání";
-$a->strings["Select and delete multiple posts/comments at once"] = "Označit a smazat více ";
-$a->strings["Edit Sent Posts"] = "Editovat Odeslané příspěvky";
-$a->strings["Edit and correct posts and comments after sending"] = "Editovat a opravit příspěvky a komentáře po odeslání";
-$a->strings["Tagging"] = "Štítkování";
-$a->strings["Ability to tag existing posts"] = "Schopnost přidat štítky ke stávajícím příspvěkům";
-$a->strings["Post Categories"] = "Kategorie příspěvků";
-$a->strings["Add categories to your posts"] = "Přidat kategorie k Vašim příspěvkům";
-$a->strings["Ability to file posts under folders"] = "Možnost řadit příspěvky do složek";
-$a->strings["Dislike Posts"] = "Označit příspěvky jako neoblíbené";
-$a->strings["Ability to dislike posts/comments"] = "Možnost označit příspěvky/komentáře jako neoblíbené";
-$a->strings["Star Posts"] = "Příspěvky s hvězdou";
-$a->strings["Ability to mark special posts with a star indicator"] = "Možnost označit příspěvky s indikátorem hvězdy";
-$a->strings["Mute Post Notifications"] = "Utlumit upozornění na přísvěvky";
-$a->strings["Ability to mute notifications for a thread"] = "Možnost stlumit upozornění pro vlákno";
-$a->strings["Advanced Profile Settings"] = "";
-$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "";
-$a->strings["Disallowed profile URL."] = "Nepovolené URL profilu.";
-$a->strings["Connect URL missing."] = "Chybí URL adresa.";
-$a->strings["This site is not configured to allow communications with other networks."] = "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Nenalezen žádný kompatibilní komunikační protokol nebo kanál.";
-$a->strings["The profile address specified does not provide adequate information."] = "Uvedená adresa profilu neposkytuje dostatečné informace.";
-$a->strings["An author or name was not found."] = "Autor nebo jméno nenalezeno";
-$a->strings["No browser URL could be matched to this address."] = "Této adrese neodpovídá žádné URL prohlížeče.";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem.";
-$a->strings["Use mailto: in front of address to force email check."] = "Použite mailo: před adresou k vynucení emailové kontroly.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Zadaná adresa profilu patří do sítě, která  byla na tomto serveru zakázána.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé / osobní sdělení.";
-$a->strings["Unable to retrieve contact information."] = "Nepodařilo se získat kontaktní informace.";
-$a->strings["Requested account is not available."] = "Požadovaný účet není dostupný.";
-$a->strings["Requested profile is not available."] = "Požadovaný profil není k dispozici.";
-$a->strings["Edit profile"] = "Upravit profil";
-$a->strings["Atom feed"] = "";
-$a->strings["Manage/edit profiles"] = "Spravovat/upravit profily";
-$a->strings["Change profile photo"] = "Změnit profilovou fotografii";
-$a->strings["Create New Profile"] = "Vytvořit nový profil";
-$a->strings["Profile Image"] = "Profilový obrázek";
-$a->strings["visible to everybody"] = "viditelné pro všechny";
-$a->strings["Edit visibility"] = "Upravit viditelnost";
-$a->strings["Gender:"] = "Pohlaví:";
-$a->strings["Status:"] = "Status:";
-$a->strings["Homepage:"] = "Domácí stránka:";
-$a->strings["About:"] = "O mě:";
-$a->strings["XMPP:"] = "";
-$a->strings["Network:"] = "Síť:";
-$a->strings["g A l F d"] = "g A l F d";
-$a->strings["F d"] = "d. F";
-$a->strings["[today]"] = "[Dnes]";
-$a->strings["Birthday Reminders"] = "Připomínka narozenin";
-$a->strings["Birthdays this week:"] = "Narozeniny tento týden:";
-$a->strings["[No description]"] = "[Žádný popis]";
-$a->strings["Event Reminders"] = "Připomenutí událostí";
-$a->strings["Events this week:"] = "Události tohoto týdne:";
-$a->strings["Full Name:"] = "Celé jméno:";
-$a->strings["j F, Y"] = "j F, Y";
-$a->strings["j F"] = "j F";
-$a->strings["Age:"] = "Věk:";
-$a->strings["for %1\$d %2\$s"] = "pro %1\$d %2\$s";
-$a->strings["Sexual Preference:"] = "Sexuální preference:";
-$a->strings["Hometown:"] = "Rodné město";
-$a->strings["Tags:"] = "Štítky:";
-$a->strings["Political Views:"] = "Politické přesvědčení:";
-$a->strings["Religion:"] = "Náboženství:";
-$a->strings["Hobbies/Interests:"] = "Koníčky/zájmy:";
-$a->strings["Likes:"] = "Líbí se:";
-$a->strings["Dislikes:"] = "Nelibí se:";
-$a->strings["Contact information and Social Networks:"] = "Kontaktní informace a sociální sítě:";
-$a->strings["Musical interests:"] = "Hudební vkus:";
-$a->strings["Books, literature:"] = "Knihy, literatura:";
-$a->strings["Television:"] = "Televize:";
-$a->strings["Film/dance/culture/entertainment:"] = "Film/tanec/kultura/zábava:";
-$a->strings["Love/Romance:"] = "Láska/romance";
-$a->strings["Work/employment:"] = "Práce/zaměstnání:";
-$a->strings["School/education:"] = "Škola/vzdělávání:";
-$a->strings["Forums:"] = "";
-$a->strings["Basic"] = "";
-$a->strings["Advanced"] = "Pokročilé";
-$a->strings["Status Messages and Posts"] = "Statusové zprávy a příspěvky ";
-$a->strings["Profile Details"] = "Detaily profilu";
-$a->strings["Photo Albums"] = "Fotoalba";
-$a->strings["Personal Notes"] = "Osobní poznámky";
-$a->strings["Only You Can See This"] = "Toto můžete vidět jen Vy";
-$a->strings["[Name Withheld]"] = "[Jméno odepřeno]";
 $a->strings["Item not found."] = "Položka nenalezena.";
 $a->strings["Do you really want to delete this item?"] = "Opravdu chcete smazat tuto položku?";
 $a->strings["Yes"] = "Ano";
 $a->strings["Permission denied."] = "Přístup odmítnut.";
 $a->strings["Archives"] = "Archív";
-$a->strings["Embedded content"] = "vložený obsah";
-$a->strings["Embedding disabled"] = "Vkládání zakázáno";
-$a->strings["%s is now following %s."] = "";
-$a->strings["following"] = "následující";
-$a->strings["%s stopped following %s."] = "";
-$a->strings["stopped following"] = "následování zastaveno";
+$a->strings["show more"] = "zobrazit více";
+$a->strings["Welcome "] = "Vítejte ";
+$a->strings["Please upload a profile photo."] = "Prosím nahrejte profilovou fotografii";
+$a->strings["Welcome back "] = "Vítejte zpět ";
+$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."] = "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním.";
 $a->strings["newer"] = "novější";
 $a->strings["older"] = "starší";
-$a->strings["prev"] = "předchozí";
 $a->strings["first"] = "první";
-$a->strings["last"] = "poslední";
+$a->strings["prev"] = "předchozí";
 $a->strings["next"] = "další";
+$a->strings["last"] = "poslední";
 $a->strings["Loading more entries..."] = "Načítání více záznamů...";
 $a->strings["The end"] = "Konec";
 $a->strings["No contacts"] = "Žádné kontakty";
@@ -664,9 +222,17 @@ $a->strings["%d Contact"] = [
        0 => "%d kontakt",
        1 => "%d kontaktů",
        2 => "%d kontaktů",
+       3 => "%d kontaktů",
 ];
 $a->strings["View Contacts"] = "Zobrazit kontakty";
 $a->strings["Save"] = "Uložit";
+$a->strings["Follow"] = "Sledovat";
+$a->strings["Search"] = "Vyhledávání";
+$a->strings["@name, !forum, #tags, content"] = "@jméno, !fórum, #štítky, obsah";
+$a->strings["Full Text"] = "Celý text";
+$a->strings["Tags"] = "Štítky:";
+$a->strings["Contacts"] = "Kontakty";
+$a->strings["Forums"] = "Fóra";
 $a->strings["poke"] = "šťouchnout";
 $a->strings["poked"] = "šťouchnut";
 $a->strings["ping"] = "cinknout";
@@ -674,200 +240,104 @@ $a->strings["pinged"] = "cinkut";
 $a->strings["prod"] = "pobídnout";
 $a->strings["prodded"] = "pobídnut";
 $a->strings["slap"] = "dát facku";
-$a->strings["slapped"] = "být uhozen";
+$a->strings["slapped"] = "uhozen";
 $a->strings["finger"] = "osahávat";
 $a->strings["fingered"] = "osaháván";
 $a->strings["rebuff"] = "odmítnout";
 $a->strings["rebuffed"] = "odmítnut";
-$a->strings["happy"] = "šťasný";
-$a->strings["sad"] = "smutný";
-$a->strings["mellow"] = "jemný";
-$a->strings["tired"] = "unavený";
-$a->strings["perky"] = "emergický";
-$a->strings["angry"] = "nazlobený";
-$a->strings["stupified"] = "otupen";
-$a->strings["puzzled"] = "popletený";
-$a->strings["interested"] = "zajímavý";
-$a->strings["bitter"] = "hořký";
-$a->strings["cheerful"] = "radnostný";
-$a->strings["alive"] = "naživu";
-$a->strings["annoyed"] = "otráven";
-$a->strings["anxious"] = "znepokojený";
-$a->strings["cranky"] = "mrzutý";
-$a->strings["disturbed"] = "vyrušen";
-$a->strings["frustrated"] = "frustrovaný";
-$a->strings["motivated"] = "motivovaný";
-$a->strings["relaxed"] = "uvolněný";
-$a->strings["surprised"] = "překvapený";
+$a->strings["Monday"] = "Pondělí";
+$a->strings["Tuesday"] = "Úterý";
+$a->strings["Wednesday"] = "Středa";
+$a->strings["Thursday"] = "Čtvrtek";
+$a->strings["Friday"] = "Pátek";
+$a->strings["Saturday"] = "Sobota";
+$a->strings["Sunday"] = "Neděle";
+$a->strings["January"] = "Ledna";
+$a->strings["February"] = "Února";
+$a->strings["March"] = "Března";
+$a->strings["April"] = "Dubna";
+$a->strings["May"] = "Května";
+$a->strings["June"] = "Června";
+$a->strings["July"] = "Července";
+$a->strings["August"] = "Srpna";
+$a->strings["September"] = "Září";
+$a->strings["October"] = "Října";
+$a->strings["November"] = "Listopadu";
+$a->strings["December"] = "Prosinec";
+$a->strings["Mon"] = "Pon";
+$a->strings["Tue"] = "Úte";
+$a->strings["Wed"] = "Stř";
+$a->strings["Thu"] = "Čtv";
+$a->strings["Fri"] = "Pát";
+$a->strings["Sat"] = "Sob";
+$a->strings["Sun"] = "Ned";
+$a->strings["Jan"] = "Led";
+$a->strings["Feb"] = "Úno";
+$a->strings["Mar"] = "Bře";
+$a->strings["Apr"] = "Dub";
+$a->strings["Jul"] = "Čvc";
+$a->strings["Aug"] = "Srp";
+$a->strings["Sep"] = "Zář";
+$a->strings["Oct"] = "Říj";
+$a->strings["Nov"] = "Lis";
+$a->strings["Dec"] = "Pro";
+$a->strings["Content warning: %s"] = "Varování o obsahu: %s";
 $a->strings["View Video"] = "Zobrazit video";
 $a->strings["bytes"] = "bytů";
 $a->strings["Click to open/close"] = "Klikněte pro otevření/zavření";
 $a->strings["View on separate page"] = "Zobrazit na separátní stránce";
 $a->strings["view on separate page"] = "Zobrazit na separátní stránce";
+$a->strings["link to source"] = "odkaz na zdroj";
 $a->strings["activity"] = "aktivita";
 $a->strings["comment"] = [
        0 => "",
        1 => "",
        2 => "komentář",
+       3 => "komentář",
 ];
 $a->strings["post"] = "příspěvek";
 $a->strings["Item filed"] = "Položka vyplněna";
-$a->strings["Passwords do not match. Password unchanged."] = "Hesla se neshodují. Heslo nebylo změněno.";
-$a->strings["An invitation is required."] = "Pozvánka je vyžadována.";
-$a->strings["Invitation could not be verified."] = "Pozvánka nemohla být ověřena.";
-$a->strings["Invalid OpenID url"] = "Neplatný odkaz OpenID";
-$a->strings["Please enter the required information."] = "Zadejte prosím požadované informace.";
-$a->strings["Please use a shorter name."] = "Použijte prosím kratší jméno.";
-$a->strings["Name too short."] = "Jméno je příliš krátké.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení).";
-$a->strings["Your email domain is not among those allowed on this site."] = "Váš e-mailová doména není na tomto serveru mezi povolenými.";
-$a->strings["Not a valid email address."] = "Neplatná e-mailová adresa.";
-$a->strings["Cannot use that email."] = "Tento e-mail nelze použít.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", a \"_\".";
-$a->strings["Nickname is already registered. Please choose another."] = "Přezdívka je již registrována. Prosím vyberte jinou.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Tato přezdívka již zde byla použita a nemůže být využita znovu. Prosím vyberete si jinou.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo.";
-$a->strings["An error occurred during registration. Please try again."] = "Došlo k chybě při registraci. Zkuste to prosím znovu.";
-$a->strings["default"] = "standardní";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu.";
-$a->strings["Profile Photos"] = "Profilové fotografie";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "";
-$a->strings["Registration at %s"] = "";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tDrahý %1\$s,\n\t\t\tDěkujeme Vám za registraci na %2\$s. Váš účet byl vytvořen.\n\t";
-$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\n\t\tVaše přihlašovací údaje jsou následující:\n\t\t\tAdresa webu:\t%3\$s\n\t\t\tpřihlašovací jméno:\t%1\$s\n\t\t\theslo:\t%5\$s\n\n\t\tHeslo si můžete změnit na stránce \"Nastavení\" vašeho účtu poté, co se přihlásíte.\n\n\t\tProsím věnujte pár chvil revizi dalšího nastavení vašeho účtu na dané stránce.\n\n\t\tTaké su můžete přidat nějaké základní informace do svého výchozího profilu (na stránce \"Profily\"), takže ostatní lidé vás snáze najdou.\n\n\t\tDoporučujeme Vám uvést celé jméno a i foto. Přidáním nějakých \"klíčových slov\" (velmi užitečné pro hledání nových přátel) a možná také zemi, ve které žijete, pokud nechcete být více konkrétní.\n\n\t\tPlně resepktujeme vaše právo na soukromí a nic z výše uvedeného není povinné.\n\t\tPokud jste zde nový a neznáte zde nikoho, uvedením daných informací můžete získat nové přátele.\n\n\n\t\tDíky a vítejte na %2\$s.";
-$a->strings["Registration details for %s"] = "Registrační údaje pro %s";
-$a->strings["Post successful."] = "Příspěvek úspěšně odeslán";
-$a->strings["Access denied."] = "Přístup odmítnut";
-$a->strings["Welcome to %s"] = "Vítá Vás %s";
-$a->strings["No more system notifications."] = "Žádné další systémová upozornění.";
-$a->strings["System Notifications"] = "Systémová upozornění";
-$a->strings["Remove term"] = "Odstranit termín";
-$a->strings["Public access denied."] = "Veřejný přístup odepřen.";
-$a->strings["Only logged in users are permitted to perform a search."] = "";
-$a->strings["Too Many Requests"] = "";
-$a->strings["Only one search per minute is permitted for not logged in users."] = "";
-$a->strings["No results."] = "Žádné výsledky.";
-$a->strings["Items tagged with: %s"] = "Položky označené s: %s";
-$a->strings["Results for: %s"] = "";
-$a->strings["This is Friendica, version"] = "Toto je Friendica, verze";
-$a->strings["running at web location"] = "běžící na webu";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Pro získání dalších informací o projektu Friendica navštivte prosím <a href=\"http://friendica.com\">Friendica.com</a>.";
-$a->strings["Bug reports and issues: please visit"] = "Pro hlášení chyb a námětů na změny navštivte:";
-$a->strings["the bugtracker at github"] = "";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Návrhy, chválu, dary, apod. - prosím piště na \"info\" na Friendica - tečka com";
-$a->strings["Installed plugins/addons/apps:"] = "Instalované pluginy/doplňky/aplikace:";
-$a->strings["No installed plugins/addons/apps"] = "Nejsou žádné nainstalované doplňky/aplikace";
-$a->strings["No valid account found."] = "Nenalezen žádný platný účet.";
-$a->strings["Password reset request issued. Check your email."] = "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku.";
-$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.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tDrahý %1\$s,\n\t\t\tNa \"%2\$s\" jsme obdrželi  požadavek na obnovu vašeho hesla \n\t\tpassword. Pro potvrzení žádosti prosím klikněte na zaslaný verifikační odkaz níže nebo si ho zkopírujte do adresní řádky prohlížeče.\n\n\t\tPokud jste tuto žádost nezasílaliI prosím na uvedený odkaz neklikejte a tento email smažte.\n\n\t\tVaše heslo nebude změněno dokud nebudeme moci oveřit, že jste autorem této žádosti.";
-$a->strings["\n\t\tFollow this link 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"] = "\n\t\tKlikněte na následující odkaz pro potvrzení Vaší identity:\n\n\t\t%1\$s\n\n\t\tNásledně obdržíte zprávu obsahující nové heslo.\n\t\tHeslo si můžete si změnit na stránce nastavení účtu poté, co se přihlásíte.\n\n\t\tVaše přihlašovací údaje jsou následující:\n\n\t\tUmístění webu:\t%2\$s\n\t\tPřihlašovací jméno:\t%3\$s";
-$a->strings["Password reset requested at %s"] = "Na %s bylo zažádáno o resetování hesla";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení hesla se nezdařilo.";
-$a->strings["Password Reset"] = "Obnovení hesla";
-$a->strings["Your password has been reset as requested."] = "Vaše heslo bylo na Vaše přání resetováno.";
-$a->strings["Your new password is"] = "Někdo Vám napsal na Vaši profilovou stránku";
-$a->strings["Save or copy your new password - and then"] = "Uložte si nebo zkopírujte nové heslo - a pak";
-$a->strings["click here to login"] = "klikněte zde pro přihlášení";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení).";
-$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tDrahý %1\$s,\n⇥⇥⇥⇥⇥Vaše heslo bylo na požádání změněno. Prosím uchovejte si tuto informaci (nebo si změntě heslo ihned na něco, co si budete pamatovat).\t";
-$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\tVaše přihlašovací údaje jsou následující:\n\n\t\t\t\tUmístění webu:\t%1\$s\n\t\t\t\tPřihlašovací jméno:\t%2\$s\n\t\t\t\tHeslo:\t%3\$s\n\n\t\t\t\tHeslo si můžete si změnit na stránce  nastavení účtu poté, co se přihlásíte.\n\t\t\t";
-$a->strings["Your password has been changed at %s"] = "Vaše heslo bylo změněno na %s";
-$a->strings["Forgot your Password?"] = "Zapomněli jste heslo?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Zadejte svůj e-mailovou adresu a odešlete žádost o zaslání Vašeho nového hesla. Poté zkontrolujte svůj e-mail pro další instrukce.";
-$a->strings["Nickname or Email: "] = "Přezdívka nebo e-mail: ";
-$a->strings["Reset"] = "Reset";
-$a->strings["No profile"] = "Žádný profil";
-$a->strings["Help:"] = "Nápověda:";
+$a->strings["No friends to display."] = "Žádní přátelé k zobrazení";
+$a->strings["Connect"] = "Spojit";
+$a->strings["Authorize application connection"] = "Povolit připojení aplikacím";
+$a->strings["Return to your app and insert this Securty Code:"] = "Vraťte se do vaší aplikace a zadejte tento bezpečnostní kód:";
+$a->strings["Please login to continue."] = "Pro pokračování se prosím přihlaste.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?";
+$a->strings["No"] = "Ne";
+$a->strings["You must be logged in to use addons. "] = "Musíte být přihlášeni pro použití rozšíření.";
+$a->strings["Applications"] = "Aplikace";
+$a->strings["No installed applications."] = "Žádné nainstalované aplikace.";
+$a->strings["Item not available."] = "Položka není k dispozici.";
+$a->strings["Item was not found."] = "Položka nebyla nalezena.";
+$a->strings["No contacts in common."] = "Žádné společné kontakty.";
+$a->strings["Common Friends"] = "Společní přátelé";
+$a->strings["Credits"] = "Poděkování";
+$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 je komunitní projekt, který by nebyl možný bez pomoci mnoha lidí. Zde je seznam těch, kteří přispěli ke kódu nebo k překladu Friendica. Děkujeme všem!";
+$a->strings["Photos"] = "Fotografie";
+$a->strings["Contact Photos"] = "Fotogalerie kontaktu";
+$a->strings["Upload"] = "Nahrát";
+$a->strings["Files"] = "Soubory";
 $a->strings["Not Found"] = "Nenalezen";
-$a->strings["Page not found."] = "Stránka nenalezena";
+$a->strings["No profile"] = "Žádný profil";
+$a->strings["Welcome to %s"] = "Vítá Vás %s";
 $a->strings["Remote privacy information not available."] = "Vzdálené soukromé informace nejsou k dispozici.";
 $a->strings["Visible to:"] = "Viditelné pro:";
-$a->strings["OpenID protocol error. No ID returned."] = "Chyba OpenID protokolu. Navrátilo se žádné ID.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nenalezen účet a OpenID registrace na tomto serveru není dovolena.";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to  zítra znovu.";
-$a->strings["Import"] = "Import";
-$a->strings["Move account"] = "Přesunout účet";
-$a->strings["You can import an account from another Friendica server."] = "Můžete importovat účet z jiného Friendica serveru.";
-$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."] = "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali.";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "";
-$a->strings["Account file"] = "Soubor s účtem";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\"";
-$a->strings["Visit %s's profile [%s]"] = "Navštivte profil uživatele %s [%s]";
-$a->strings["Edit contact"] = "Editovat kontakt";
-$a->strings["Contacts who are not members of a group"] = "Kontakty, které nejsou členy skupiny";
-$a->strings["Export account"] = "Exportovat účet";
-$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."] = "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření  zálohy svého účtu a/nebo k přesunu na jiný server.";
-$a->strings["Export all"] = "Exportovat vše";
-$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)"] = "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)";
-$a->strings["Export personal data"] = "Export osobních údajů";
-$a->strings["Total invitation limit exceeded."] = "Celkový limit pozvánek byl překročen";
-$a->strings["%s : Not a valid email address."] = "%s : není platná e-mailová adresa.";
-$a->strings["Please join us on Friendica"] = "Prosím přidejte se k nám na Friendice";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu.";
-$a->strings["%s : Message delivery failed."] = "%s : Doručení zprávy se nezdařilo.";
-$a->strings["%d message sent."] = [
-       0 => "%d zpráva odeslána.",
-       1 => "%d zprávy odeslány.",
-       2 => "%d zprávy odeslány.",
-];
-$a->strings["You have no more invitations available"] = "Nemáte k dispozici žádné další pozvánky";
-$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."] = "Navštivte %s pro seznam veřejných serverů, na kterých se můžete přidat. Členové Friendica se mohou navzájem propojovat, stejně tak jako se mohou přiopojit se členy mnoha dalších sociálních sítí.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "K akceptaci této pozvánky prosím navštivte a registrujte se na %s nebo na kterékoliv jiném veřejném Friendica serveru.";
-$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."] = "Friendica servery jsou všechny propojené a vytváří tak rozsáhlou sociální síť s důrazem na soukromý a je pod kontrolou svých členů. Členové se mohou propojovat s mnoha dalšími tradičními sociálními sítěmi. Navštivte %s pro seznam alternativních Friendica serverů kde se můžete přidat.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy.";
-$a->strings["Send invitations"] = "Poslat pozvánky";
-$a->strings["Enter email addresses, one per line:"] = "Zadejte e-mailové adresy, jednu na řádek:";
-$a->strings["Your message:"] = "Vaše zpráva:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Jste srdečně pozván se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální síť.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Budete muset zadat kód této pozvánky: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navštivte http://friendica.com";
-$a->strings["Submit"] = "Odeslat";
-$a->strings["Files"] = "Soubory";
-$a->strings["Permission denied"] = "Nedostatečné oprávnění";
-$a->strings["Invalid profile identifier."] = "Neplatný identifikátor profilu.";
-$a->strings["Profile Visibility Editor"] = "Editor viditelnosti profilu ";
-$a->strings["Click on a contact to add or remove."] = "Klikněte na kontakt pro přidání nebo odebrání";
-$a->strings["Visible To"] = "Viditelný pro";
-$a->strings["All Contacts (with secure profile access)"] = "Všechny kontakty (se zabezpečeným přístupovým profilem )";
-$a->strings["Tag removed"] = "Štítek odstraněn";
-$a->strings["Remove Item Tag"] = "Odebrat štítek položky";
-$a->strings["Select a tag to remove: "] = "Vyberte štítek k odebrání: ";
-$a->strings["Remove"] = "Odstranit";
-$a->strings["Resubscribing to OStatus contacts"] = "";
-$a->strings["Error"] = "";
-$a->strings["Done"] = "";
-$a->strings["Keep this window open until done."] = "";
-$a->strings["No potential page delegates located."] = "Žádní potenciální delegáti stránky nenalezeni.";
-$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."] = "Delegáti jsou schopni řídit všechny aspekty tohoto účtu / stránky, kromě základních nastavení účtu. Prosím, nepředávejte svůj osobní účet nikomu, komu úplně nevěříte..";
-$a->strings["Existing Page Managers"] = "Stávající správci stránky";
-$a->strings["Existing Page Delegates"] = "Stávající delegáti stránky ";
-$a->strings["Potential Delegates"] = "Potenciální delegáti";
-$a->strings["Add"] = "Přidat";
-$a->strings["No entries."] = "Žádné záznamy.";
-$a->strings["Credits"] = "";
-$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["- select -"] = "- vyber -";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s následuje %3\$s uživatele %2\$s";
-$a->strings["Item not available."] = "Položka není k dispozici.";
-$a->strings["Item was not found."] = "Položka nebyla nalezena.";
-$a->strings["You must be logged in to use addons. "] = "Musíte být přihlášeni pro použití rozšíření.";
-$a->strings["Applications"] = "Aplikace";
-$a->strings["No installed applications."] = "Žádné nainstalované aplikace.";
-$a->strings["Not Extended"] = "Nerozšířeně";
+$a->strings["System down for maintenance"] = "Systém vypnut z důvodů údržby";
 $a->strings["Welcome to Friendica"] = "Vítejte na Friendica";
 $a->strings["New Member Checklist"] = "Seznam doporučení pro nového člena";
 $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."] = "Rádi bychom vám nabídli několik tipů a odkazů pro začátek. Klikněte na jakoukoliv položku pro zobrazení relevantní stránky. Odkaz na tuto stránku bude viditelný z Vaší domovské stránky po dobu dvou týdnů od Vaší první registrace.";
 $a->strings["Getting Started"] = "Začínáme";
 $a->strings["Friendica Walk-Through"] = "Prohlídka Friendica ";
-$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 Vaší stránce <em>Rychlý Start</em> - naleznete stručné představení k Vašemu profilu a záložce Síť, k vytvoření spojení s novými kontakty a nalezení skupin, ke kterým se můžete připojit.";
+$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 Vaší stránce <em>Rychlý Start</em> najděte stručné představení k Vašemu profilu a síťovým záložkám, spojte ses novými kontakty a jděte skupiny, ke kterým se můžete připojit.";
+$a->strings["Settings"] = "Nastavení";
 $a->strings["Go to Your Settings"] = "Navštivte své nastavení";
-$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 Vaší stránce <em>Nastavení</em> - si změňte Vaše první heslo.\nVěnujte také svou pozornost k adrese identity. Vypadá jako emailová adresa a bude Vám užitečná pro navazování přátelství na svobodné sociální síti.";
-$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."] = "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši potenciální přátelé věděli, jak vás přesně najít.";
+$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 Vaší stránce <em>Nastavení</em> si změňte Vaše první heslo.\nVěnujte také svou pozornost k adrese Identity. Vypadá jako emailová adresa a bude Vám užitečná pro navazování přátelství na svobodném sociálním webu.";
+$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."] = "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši přátelé a potenciální přátelé věděli, jak vás přesně najít.";
+$a->strings["Profile"] = "Profil";
 $a->strings["Upload Profile Photo"] = "Nahrát profilovou fotografii";
 $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."] = "Nahrajte si svou profilovou fotku, pokud jste tak již neučinili. Studie ukázaly, že lidé se skutečnými fotografiemi mají desetkrát častěji přátele než lidé, kteří nemají.";
 $a->strings["Edit Your Profile"] = "Editujte Váš 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."] = "Upravit <strong>výchozí</strong> profil podle vašich představ. Prověřte nastavení pro skrytí Vašeho  seznamu přátel a skrytí profilu před neznámými návštěvníky.";
+$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."] = "Upravte si <strong>výchozí</strong> profil podle vašich představ. Prověřte nastavení pro skrytí Vašeho seznamu přátel a skrytí profilu před neznámými návštěvníky.";
 $a->strings["Profile Keywords"] = "Profilová klíčová slova";
 $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."] = "Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují Vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a navrhnout přátelství.";
 $a->strings["Connecting"] = "Probíhá pokus o připojení";
@@ -879,6 +349,7 @@ $a->strings["Go to Your Site's Directory"] = "Navštivte lokální adresář Fri
 $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."] = "Stránka Adresář Vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Prostřednictvím odkazů <em>Připojení</em> nebo <em>Následovat</em> si prohlédněte jejich profilovou stránku. Uveďte svou vlastní adresu identity, je-li požadována.";
 $a->strings["Finding New People"] = "Nalezení nových lidí";
 $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 bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin.";
+$a->strings["Groups"] = "Skupiny";
 $a->strings["Group Your Contacts"] = "Seskupte si své 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."] = "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu Vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť.";
 $a->strings["Why Aren't My Posts Public?"] = "Proč nejsou mé příspěvky veřejné?";
@@ -886,30 +357,83 @@ $a->strings["Friendica respects your privacy. By default, your posts will only s
 $a->strings["Getting Help"] = "Získání nápovědy";
 $a->strings["Go to the Help Section"] = "Navštivte sekci nápovědy";
 $a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Na stránkách <strong>Nápověda</strong> naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací.";
-$a->strings["Remove My Account"] = "Odstranit můj účet";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit.";
-$a->strings["Please enter your password for verification:"] = "Prosím, zadejte své heslo pro ověření:";
-$a->strings["Item not found"] = "Položka nenalezena";
-$a->strings["Edit post"] = "Upravit příspěvek";
+$a->strings["Visit %s's profile [%s]"] = "Navštivte profil uživatele %s [%s]";
+$a->strings["Edit contact"] = "Editovat kontakt";
+$a->strings["Contacts who are not members of a group"] = "Kontakty, které nejsou členy skupiny";
+$a->strings["Not Extended"] = "Nerozšířeně";
+$a->strings["Resubscribing to OStatus contacts"] = "Znovu Vás registruji ke kontaktům OStatus";
+$a->strings["Error"] = "Chyba";
+$a->strings["Done"] = "Hotovo";
+$a->strings["Keep this window open until done."] = "Toto okno nechte otevřené až do konce.";
+$a->strings["Do you really want to delete this suggestion?"] = "Opravdu chcete smazat tento návrh?";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin.";
+$a->strings["Ignore/Hide"] = "Ignorovat / skrýt";
+$a->strings["Friend Suggestions"] = "Návrhy přátel";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to  zítra znovu.";
+$a->strings["Import"] = "Import";
+$a->strings["Move account"] = "Přesunout účet";
+$a->strings["You can import an account from another Friendica server."] = "Můžete importovat účet z jiného Friendica serveru.";
+$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."] = "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Tato vlastnost je experimentální. Nemůžeme importovat kontakty za sítě OStatus (GNU social/StatusNet) nebo z Diaspory.";
+$a->strings["Account file"] = "Soubor s účtem";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\"";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do Vašeho výchozího profilu.";
+$a->strings["is interested in:"] = "se zajímá o:";
+$a->strings["Profile Match"] = "Shoda profilu";
+$a->strings["No matches"] = "Žádné shody";
+$a->strings["Manage Identities and/or Pages"] = "Správa identit a/nebo stránek";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Přepínání mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí Vaše detaily účtu, nebo kterým jste přidělili oprávnění nastavovat přístupová práva.";
+$a->strings["Select an identity to manage: "] = "Vyberte identitu pro správu: ";
+$a->strings["Submit"] = "Odeslat";
+$a->strings["Invalid request."] = "Neplatný požadavek.";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP";
+$a->strings["Or - did you try to upload an empty file?"] = "Nebo - nenahrával/a jste prázdný soubor?";
+$a->strings["File exceeds size limit of %s"] = "Velikost souboru přesáhla limit %s";
+$a->strings["File upload failed."] = "Nahrání souboru se nezdařilo.";
+$a->strings["- select -"] = "- vyberte -";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
 $a->strings["Time Conversion"] = "Časová konverze";
 $a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přáteli v neznámých časových zónách";
 $a->strings["UTC time: %s"] = "UTC čas: %s";
 $a->strings["Current timezone: %s"] = "Aktuální časové pásmo: %s";
 $a->strings["Converted localtime: %s"] = "Převedený lokální čas : %s";
 $a->strings["Please select your timezone:"] = "Prosím, vyberte své časové pásmo:";
-$a->strings["The post was created"] = "Příspěvek byl vytvořen";
-$a->strings["Group created."] = "Skupina vytvořena.";
-$a->strings["Could not create group."] = "Nelze vytvořit skupinu.";
-$a->strings["Group not found."] = "Skupina nenalezena.";
-$a->strings["Group name changed."] = "Název skupiny byl změněn.";
-$a->strings["Save Group"] = "Uložit Skupinu";
-$a->strings["Create a group of contacts/friends."] = "Vytvořit skupinu kontaktů / přátel.";
-$a->strings["Group removed."] = "Skupina odstraněna. ";
-$a->strings["Unable to remove group."] = "Nelze odstranit skupinu.";
-$a->strings["Group Editor"] = "Editor skupin";
-$a->strings["Members"] = "Členové";
-$a->strings["All Contacts"] = "Všechny kontakty";
-$a->strings["Group is empty"] = "Skupina je prázdná";
+$a->strings["No more system notifications."] = "Žádné další systémová upozornění.";
+$a->strings["System Notifications"] = "Systémová upozornění";
+$a->strings["{0} wants to be your friend"] = "{0} chce být Vaším přítelem";
+$a->strings["{0} sent you a message"] = "{0} vám poslal zprávu";
+$a->strings["{0} requested registration"] = "{0} požaduje registraci";
+$a->strings["Poke/Prod"] = "Šťouchanec";
+$a->strings["poke, prod or do other things to somebody"] = "někoho šťouchnout nebo mu provést  jinou věc";
+$a->strings["Recipient"] = "Příjemce";
+$a->strings["Choose what you wish to do to recipient"] = "Vyberte, co si přejete příjemci udělat";
+$a->strings["Make this post private"] = "Změnit tento příspěvek na soukromý";
+$a->strings["Public access denied."] = "Veřejný přístup odepřen.";
+$a->strings["Only logged in users are permitted to perform a probing."] = "Pouze přihlášení uživatelé mohou zkoušet adresy.";
+$a->strings["Permission denied"] = "Nedostatečné oprávnění";
+$a->strings["Invalid profile identifier."] = "Neplatný identifikátor profilu.";
+$a->strings["Profile Visibility Editor"] = "Editor viditelnosti profilu ";
+$a->strings["Click on a contact to add or remove."] = "Klikněte na kontakt pro přidání nebo odebrání";
+$a->strings["Visible To"] = "Viditelný pro";
+$a->strings["All Contacts (with secure profile access)"] = "Všechny kontakty (se zabezpečeným přístupovým profilem )";
+$a->strings["Account approved."] = "Účet schválen.";
+$a->strings["Registration revoked for %s"] = "Registrace zrušena pro %s";
+$a->strings["Please login."] = "Přihlaste se, prosím.";
+$a->strings["Tag removed"] = "Štítek odstraněn";
+$a->strings["Remove Item Tag"] = "Odebrat štítek položky";
+$a->strings["Select a tag to remove: "] = "Vyberte štítek k odebrání: ";
+$a->strings["Remove"] = "Odstranit";
+$a->strings["Export account"] = "Exportovat účet";
+$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."] = "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření  zálohy svého účtu a/nebo k přesunu na jiný server.";
+$a->strings["Export all"] = "Exportovat vše";
+$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)"] = "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)";
+$a->strings["Export personal data"] = "Export osobních údajů";
+$a->strings["No contacts."] = "Žádné kontakty.";
+$a->strings["Access denied."] = "Přístup odmítnut";
+$a->strings["Image exceeds size limit of %s"] = "Velikost obrázku překročila limit %s";
+$a->strings["Unable to process image."] = "Obrázek není možné zprocesovat";
+$a->strings["Wall Photos"] = "Fotografie na zdi";
+$a->strings["Image upload failed."] = "Nahrání obrázku selhalo.";
 $a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena.";
 $a->strings["No recipient selected."] = "Nevybrán příjemce.";
 $a->strings["Unable to check your home location."] = "Nebylo možné zjistit Vaši domácí lokaci.";
@@ -921,599 +445,470 @@ $a->strings["Send Private Message"] = "Odeslat soukromou zprávu";
 $a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů.";
 $a->strings["To:"] = "Adresát:";
 $a->strings["Subject:"] = "Předmět:";
-$a->strings["link"] = "odkaz";
-$a->strings["Authorize application connection"] = "Povolit připojení aplikacím";
-$a->strings["Return to your app and insert this Securty Code:"] = "Vraťte se do vaší aplikace a zadejte tento bezpečnostní kód:";
-$a->strings["Please login to continue."] = "Pro pokračování se prosím přihlaste.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?";
-$a->strings["No"] = "Ne";
-$a->strings["Source (bbcode) text:"] = "Zdrojový text (bbcode):";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Zdrojový (Diaspora) text k převedení do BB kódování:";
-$a->strings["Source input: "] = "Zdrojový vstup: ";
-$a->strings["bb2html (raw HTML): "] = "bb2html (raw HTML): ";
-$a->strings["bb2html: "] = "bb2html: ";
-$a->strings["bb2html2bb: "] = "bb2html2bb: ";
-$a->strings["bb2md: "] = "bb2md: ";
-$a->strings["bb2md2html: "] = "bb2md2html: ";
-$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
-$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
-$a->strings["Source input (Diaspora format): "] = "Vstupní data (ve formátu Diaspora): ";
-$a->strings["diaspora2bb: "] = "diaspora2bb: ";
-$a->strings["Subscribing to OStatus contacts"] = "";
-$a->strings["No contact provided."] = "";
-$a->strings["Couldn't fetch information for contact."] = "";
-$a->strings["Couldn't fetch friends for contact."] = "";
-$a->strings["success"] = "";
-$a->strings["failed"] = "";
-$a->strings["ignored"] = "ignorován";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s vítá %2\$s";
-$a->strings["Unable to locate contact information."] = "Nepodařilo se najít kontaktní informace.";
-$a->strings["Do you really want to delete this message?"] = "Opravdu chcete smazat tuto zprávu?";
-$a->strings["Message deleted."] = "Zpráva odstraněna.";
-$a->strings["Conversation removed."] = "Konverzace odstraněna.";
-$a->strings["No messages."] = "Žádné zprávy.";
-$a->strings["Message not available."] = "Zpráva není k dispozici.";
-$a->strings["Delete message"] = "Smazat zprávu";
-$a->strings["Delete conversation"] = "Odstranit konverzaci";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Není k dispozici zabezpečená komunikace. <strong>Možná</strong> budete schopni reagovat z odesilatelovy profilové stránky.";
-$a->strings["Send Reply"] = "Poslat odpověď";
-$a->strings["Unknown sender - %s"] = "Neznámý odesilatel - %s";
-$a->strings["You and %s"] = "Vy a %s";
-$a->strings["%s and You"] = "%s a Vy";
-$a->strings["D, d M Y - g:i A"] = "D M R - g:i A";
-$a->strings["%d message"] = [
-       0 => "%d zpráva",
-       1 => "%d zprávy",
-       2 => "%d zpráv",
-];
-$a->strings["Manage Identities and/or Pages"] = "Správa identit a / nebo stránek";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Přepnutí mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí Vaše detaily účtu, nebo kterým jste přidělili oprávnění nastavovat přístupová práva.";
-$a->strings["Select an identity to manage: "] = "Vyberte identitu pro správu: ";
-$a->strings["Contact settings applied."] = "Nastavení kontaktu změněno";
-$a->strings["Contact update failed."] = "Aktualizace kontaktu selhala.";
+$a->strings["Your message:"] = "Vaše zpráva:";
+$a->strings["Login"] = "Přihlásit se";
+$a->strings["The post was created"] = "Příspěvek byl vytvořen";
+$a->strings["Item not found"] = "Položka nenalezena";
+$a->strings["Edit post"] = "Upravit příspěvek";
+$a->strings["CC: email addresses"] = "skrytá kopie: e-mailové adresy";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Příklad: bob@example.com, mary@example.com";
 $a->strings["Contact not found."] = "Kontakt nenalezen.";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>Varování: Toto je velmi pokročilé</strong> a pokud zadáte nesprávné informace, Vaše komunikace s tímto kontaktem může přestat fungovat.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Prosím použijte <strong>ihned</strong> v prohlížeči tlačítko \"zpět\" pokud si nejste jistí co dělat na této stránce.";
-$a->strings["No mirroring"] = "Žádné zrcadlení";
-$a->strings["Mirror as forwarded posting"] = "Zrcadlit pro přeposlané příspěvky";
-$a->strings["Mirror as my own posting"] = "Zrcadlit jako mé vlastní příspěvky";
-$a->strings["Return to contact editor"] = "Návrat k editoru kontaktu";
-$a->strings["Refetch contact data"] = "Znovu načíst data kontaktu";
-$a->strings["Remote Self"] = "Remote Self";
-$a->strings["Mirror postings from this contact"] = "Zrcadlení správ od tohoto kontaktu";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu.";
-$a->strings["Name"] = "Jméno";
-$a->strings["Account Nickname"] = "Přezdívka účtu";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - upřednostněno před Jménem/Přezdívkou";
-$a->strings["Account URL"] = "URL adresa účtu";
-$a->strings["Friend Request URL"] = "Žádost o přátelství URL";
-$a->strings["Friend Confirm URL"] = "URL adresa potvrzení přátelství";
-$a->strings["Notification Endpoint URL"] = "Notifikační URL adresa";
-$a->strings["Poll/Feed URL"] = "Poll/Feed URL adresa";
-$a->strings["New photo from this URL"] = "Nové foto z této URL adresy";
-$a->strings["No such group"] = "Žádná taková skupina";
-$a->strings["Group: %s"] = "Skupina: %s";
-$a->strings["This entry was edited"] = "Tento záznam byl editován";
-$a->strings["%d comment"] = [
-       0 => "%d komentář",
-       1 => "%d komentářů",
-       2 => "%d komentářů",
-];
-$a->strings["Private Message"] = "Soukromá zpráva";
-$a->strings["I like this (toggle)"] = "Líbí se mi to (přepínač)";
-$a->strings["like"] = "má rád";
-$a->strings["I don't like this (toggle)"] = "Nelíbí se mi to (přepínač)";
-$a->strings["dislike"] = "nemá rád";
-$a->strings["Share this"] = "Sdílet toto";
-$a->strings["share"] = "sdílí";
-$a->strings["This is you"] = "Nastavte Vaši polohu";
-$a->strings["Comment"] = "Okomentovat";
-$a->strings["Bold"] = "Tučné";
-$a->strings["Italic"] = "Kurzíva";
-$a->strings["Underline"] = "Podrtžené";
-$a->strings["Quote"] = "Citovat";
-$a->strings["Code"] = "Kód";
-$a->strings["Image"] = "Obrázek";
-$a->strings["Link"] = "Odkaz";
-$a->strings["Video"] = "Video";
-$a->strings["Edit"] = "Upravit";
-$a->strings["add star"] = "přidat hvězdu";
-$a->strings["remove star"] = "odebrat hvězdu";
-$a->strings["toggle star status"] = "přepnout hvězdu";
-$a->strings["starred"] = "označeno hvězdou";
-$a->strings["add tag"] = "přidat štítek";
-$a->strings["ignore thread"] = "ignorovat vlákno";
-$a->strings["unignore thread"] = "přestat ignorovat vlákno";
-$a->strings["toggle ignore status"] = "přepnout stav Ignorování";
-$a->strings["save to folder"] = "uložit do složky";
-$a->strings["I will attend"] = "";
-$a->strings["I will not attend"] = "";
-$a->strings["I might attend"] = "";
-$a->strings["to"] = "pro";
-$a->strings["Wall-to-Wall"] = "Zeď-na-Zeď";
-$a->strings["via Wall-To-Wall:"] = "přes Zeď-na-Zeď ";
 $a->strings["Friend suggestion sent."] = "Návrhy přátelství odeslány ";
 $a->strings["Suggest Friends"] = "Navrhněte přátelé";
 $a->strings["Suggest a friend for %s"] = "Navrhněte přátelé pro uživatele %s";
-$a->strings["Mood"] = "Nálada";
-$a->strings["Set your current mood and tell your friends"] = "Nastavte svou aktuální náladu a řekněte to Vašim přátelům";
-$a->strings["Poke/Prod"] = "Šťouchanec";
-$a->strings["poke, prod or do other things to somebody"] = "někoho šťouchnout nebo mu provést  jinou věc";
-$a->strings["Recipient"] = "Příjemce";
-$a->strings["Choose what you wish to do to recipient"] = "Vyberte, co si přejete příjemci udělat";
-$a->strings["Make this post private"] = "Změnit tento příspěvek na soukromý";
-$a->strings["Image uploaded but image cropping failed."] = "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo.";
-$a->strings["Image size reduction [%s] failed."] = "Nepodařilo se snížit velikost obrázku [%s].";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě.";
-$a->strings["Unable to process image"] = "Obrázek nelze zpracovat ";
-$a->strings["Image exceeds size limit of %s"] = "Obrázek překročil limit velikosti %s";
-$a->strings["Unable to process image."] = "Obrázek není možné zprocesovat";
-$a->strings["Upload File:"] = "Nahrát soubor:";
-$a->strings["Select a profile:"] = "Vybrat profil:";
-$a->strings["Upload"] = "Nahrát";
-$a->strings["or"] = "nebo";
-$a->strings["skip this step"] = "přeskočit tento krok ";
-$a->strings["select a photo from your photo albums"] = "Vybrat fotografii z Vašich fotoalb";
-$a->strings["Crop Image"] = "Oříznout obrázek";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Prosím, ořízněte tento obrázek pro optimální zobrazení.";
-$a->strings["Done Editing"] = "Editace dokončena";
-$a->strings["Image uploaded successfully."] = "Obrázek byl úspěšně nahrán.";
-$a->strings["Image upload failed."] = "Nahrání obrázku selhalo.";
-$a->strings["Account approved."] = "Účet schválen.";
-$a->strings["Registration revoked for %s"] = "Registrace zrušena pro %s";
-$a->strings["Please login."] = "Přihlaste se, prosím.";
-$a->strings["Invalid request identifier."] = "Neplatný identifikátor požadavku.";
-$a->strings["Discard"] = "Odstranit";
-$a->strings["Ignore"] = "Ignorovat";
-$a->strings["Network Notifications"] = "Upozornění Sítě";
-$a->strings["Personal Notifications"] = "Osobní upozornění";
-$a->strings["Home Notifications"] = "Upozornění na vstupní straně";
-$a->strings["Show Ignored Requests"] = "Zobrazit ignorované žádosti";
-$a->strings["Hide Ignored Requests"] = "Skrýt ignorované žádosti";
-$a->strings["Notification type: "] = "Typ oznámení: ";
-$a->strings["suggested by %s"] = "navrhl %s";
-$a->strings["Hide this contact from others"] = "Skrýt tento kontakt před ostatními";
-$a->strings["Post a new friend activity"] = "Zveřejnit aktivitu nového přítele.";
-$a->strings["if applicable"] = "je-li použitelné";
-$a->strings["Approve"] = "Schválit";
-$a->strings["Claims to be known to you: "] = "Vaši údajní známí: ";
-$a->strings["yes"] = "ano";
-$a->strings["no"] = "ne";
-$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Fan/Admirer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "Má být vaše propojení oboustanné nebo ne? \"Přítel\" implikuje, že dovolíte čtení a přihlašování se k jejich příspěvkům. \"Fanoušek/Obdivovatel\" znamená, že umožníte čtení, ale už nebudete číst jejich příspěvky: Odsouhlasit jako: ";
-$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Sharer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "Má být vaše propojení oboustanné nebo ne? \"Přítel\" implikuje, že dovolíte čtení a vy budete přihlášen k odebírání jejich příspěvků. \"Sdíleč\" znamená, že umožníte čtení, ale už nebudete číst jejich příspěvky: Odsouhlasit jako: ";
-$a->strings["Friend"] = "Přítel";
-$a->strings["Sharer"] = "Sdílené";
-$a->strings["Fan/Admirer"] = "Fanoušek / obdivovatel";
-$a->strings["Profile URL"] = "URL profilu";
-$a->strings["No introductions."] = "Žádné představení.";
-$a->strings["Show unread"] = "";
-$a->strings["Show all"] = "";
-$a->strings["No more %s notifications."] = "";
-$a->strings["Profile not found."] = "Profil nenalezen";
-$a->strings["Profile deleted."] = "Profil smazán.";
-$a->strings["Profile-"] = "Profil-";
-$a->strings["New profile created."] = "Nový profil vytvořen.";
-$a->strings["Profile unavailable to clone."] = "Profil není možné naklonovat.";
-$a->strings["Profile Name is required."] = "Jméno profilu je povinné.";
-$a->strings["Marital Status"] = "Rodinný Stav";
-$a->strings["Romantic Partner"] = "Romatický partner";
-$a->strings["Work/Employment"] = "Práce/Zaměstnání";
-$a->strings["Religion"] = "Náboženství";
-$a->strings["Political Views"] = "Politické přesvědčení";
-$a->strings["Gender"] = "Pohlaví";
-$a->strings["Sexual Preference"] = "Sexuální orientace";
-$a->strings["XMPP"] = "";
-$a->strings["Homepage"] = "Domácí stránka";
-$a->strings["Interests"] = "Zájmy";
-$a->strings["Address"] = "Adresa";
-$a->strings["Location"] = "Lokace";
-$a->strings["Profile updated."] = "Profil aktualizován.";
-$a->strings[" and "] = " a ";
-$a->strings["public profile"] = "veřejný profil";
-$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s změnil %2\$s na &ldquo;%3\$s&rdquo;";
-$a->strings[" - Visit %1\$s's %2\$s"] = " - Navštivte %2\$s uživatele %1\$s";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s aktualizoval %2\$s, změnou %3\$s.";
-$a->strings["Hide contacts and friends:"] = "Skrýt kontakty a přátele:";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Skrýt u tohoto profilu Vaše kontakty / seznam přátel před před dalšími uživateli zobrazující si tento profil?";
-$a->strings["Show more profile fields:"] = "";
-$a->strings["Profile Actions"] = "";
-$a->strings["Edit Profile Details"] = "Upravit podrobnosti profilu ";
-$a->strings["Change Profile Photo"] = "Změna Profilové fotky";
-$a->strings["View this profile"] = "Zobrazit tento profil";
-$a->strings["Create a new profile using these settings"] = "Vytvořit nový profil pomocí tohoto nastavení";
-$a->strings["Clone this profile"] = "Klonovat tento profil";
-$a->strings["Delete this profile"] = "Smazat tento profil";
-$a->strings["Basic information"] = "Základní informace";
-$a->strings["Profile picture"] = "Profilový obrázek";
-$a->strings["Preferences"] = "Nastavení";
-$a->strings["Status information"] = "Statusové informace";
-$a->strings["Additional information"] = "Dodatečné informace";
-$a->strings["Relation"] = "";
-$a->strings["Your Gender:"] = "Vaše pohlaví:";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Rodinný stav:";
-$a->strings["Example: fishing photography software"] = "Příklad: fishing photography software";
-$a->strings["Profile Name:"] = "Jméno profilu:";
-$a->strings["Required"] = "Vyžadováno";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Toto je váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu.";
-$a->strings["Your Full Name:"] = "Vaše celé jméno:";
-$a->strings["Title/Description:"] = "Název / Popis:";
-$a->strings["Street Address:"] = "Ulice:";
-$a->strings["Locality/City:"] = "Město:";
-$a->strings["Region/State:"] = "Region / stát:";
-$a->strings["Postal/Zip Code:"] = "PSČ:";
-$a->strings["Country:"] = "Země:";
-$a->strings["Who: (if applicable)"] = "Kdo: (pokud je možné)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Příklady: jan123, Jan Novák, jan@seznam.cz";
-$a->strings["Since [date]:"] = "Od [data]:";
-$a->strings["Tell us about yourself..."] = "Řekněte nám něco o sobě ...";
-$a->strings["XMPP (Jabber) address:"] = "";
-$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "";
-$a->strings["Homepage URL:"] = "Odkaz na domovskou stránku:";
-$a->strings["Religious Views:"] = "Náboženské přesvědčení:";
-$a->strings["Public Keywords:"] = "Veřejná klíčová slova:";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)";
-$a->strings["Private Keywords:"] = "Soukromá klíčová slova:";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)";
-$a->strings["Musical interests"] = "Hudební vkus";
-$a->strings["Books, literature"] = "Knihy, literatura";
-$a->strings["Television"] = "Televize";
-$a->strings["Film/dance/culture/entertainment"] = "Film/tanec/kultura/zábava";
-$a->strings["Hobbies/Interests"] = "Koníčky/zájmy";
-$a->strings["Love/romance"] = "Láska/romantika";
-$a->strings["Work/employment"] = "Práce/zaměstnání";
-$a->strings["School/education"] = "Škola/vzdělání";
-$a->strings["Contact information and Social Networks"] = "Kontaktní informace a sociální sítě";
-$a->strings["Edit/Manage Profiles"] = "Upravit / Spravovat profily";
-$a->strings["No friends to display."] = "Žádní přátelé k zobrazení";
 $a->strings["Access to this profile has been restricted."] = "Přístup na tento profil byl omezen.";
-$a->strings["View"] = "";
+$a->strings["Events"] = "Události";
+$a->strings["View"] = "Zobrazit";
 $a->strings["Previous"] = "Předchozí";
 $a->strings["Next"] = "Dále";
-$a->strings["list"] = "";
-$a->strings["User not found"] = "";
-$a->strings["This calendar format is not supported"] = "";
-$a->strings["No exportable data found"] = "";
-$a->strings["calendar"] = "";
-$a->strings["No contacts in common."] = "Žádné společné kontakty.";
-$a->strings["Common Friends"] = "Společní přátelé";
-$a->strings["Not available."] = "Není k dispozici.";
+$a->strings["today"] = "dnes";
+$a->strings["month"] = "měsíc";
+$a->strings["week"] = "týdnem";
+$a->strings["day"] = "den";
+$a->strings["list"] = "seznam";
+$a->strings["User not found"] = "Uživatel nenalezen.";
+$a->strings["This calendar format is not supported"] = "Tento formát kalendáře není podporován.";
+$a->strings["No exportable data found"] = "Nenalezena žádná data pro export";
+$a->strings["calendar"] = "kalendář";
+$a->strings["Network:"] = "Síť:";
+$a->strings["%d contact edited."] = [
+       0 => "%d kontakt upraven",
+       1 => "%d kontakty upraveny",
+       2 => "%d kontaktů upraveno",
+       3 => "%d kontaktů upraveno",
+];
+$a->strings["Could not access contact record."] = "Nelze získat přístup k záznamu kontaktu.";
+$a->strings["Could not locate selected profile."] = "Nelze nalézt vybraný profil.";
+$a->strings["Contact updated."] = "Kontakt aktualizován.";
+$a->strings["Failed to update contact record."] = "Nepodařilo se aktualizovat kontakt.";
+$a->strings["Contact has been blocked"] = "Kontakt byl zablokován";
+$a->strings["Contact has been unblocked"] = "Kontakt byl odblokován";
+$a->strings["Contact has been ignored"] = "Kontakt bude ignorován";
+$a->strings["Contact has been unignored"] = "Kontakt přestal být ignorován";
+$a->strings["Contact has been archived"] = "Kontakt byl archivován";
+$a->strings["Contact has been unarchived"] = "Kontakt byl vrácen z archívu.";
+$a->strings["Drop contact"] = "Zrušit kontakt";
+$a->strings["Do you really want to delete this contact?"] = "Opravdu chcete smazat tento kontakt?";
+$a->strings["Contact has been removed."] = "Kontakt byl odstraněn.";
+$a->strings["You are mutual friends with %s"] = "Jste vzájemní přátelé s uživatelem %s";
+$a->strings["You are sharing with %s"] = "Sdílíte s uživatelem %s";
+$a->strings["%s is sharing with you"] = "uživatel %s sdílí s vámi";
+$a->strings["Private communications are not available for this contact."] = "Soukromá komunikace není dostupná pro tento kontakt.";
+$a->strings["Never"] = "Nikdy";
+$a->strings["(Update was successful)"] = "(Aktualizace byla úspěšná)";
+$a->strings["(Update was not successful)"] = "(Aktualizace nebyla úspěšná)";
+$a->strings["Suggest friends"] = "Navrhněte přátelé";
+$a->strings["Network type: %s"] = "Typ sítě: %s";
+$a->strings["Communications lost with this contact!"] = "Komunikace s tímto kontaktem byla ztracena!";
+$a->strings["Fetch further information for feeds"] = "Načíst další informace pro kanál";
+$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."] = "Načíst informace jako obrázky náhledu, nadpis a popisek z položky kanálu. Toto můžete aktivovat pokud kanál neobsahuje moc textu. Klíčová slova jsou vzata z hlavičky meta v položce kanálu a jsou zveřejněna jako hashtagy.";
+$a->strings["Disabled"] = "Zakázáno";
+$a->strings["Fetch information"] = "Načíst informace";
+$a->strings["Fetch keywords"] = "Načíst klíčová slova";
+$a->strings["Fetch information and keywords"] = "Načíst informace a klíčová slova";
+$a->strings["Disconnect/Unfollow"] = "Odpojit/Zrušit sledování";
+$a->strings["Contact"] = "Kontakt";
+$a->strings["Profile Visibility"] = "Viditelnost profilu";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu.";
+$a->strings["Contact Information / Notes"] = "Kontaktní informace / poznámky";
+$a->strings["Their personal note"] = "Jejich osobní poznámka";
+$a->strings["Edit contact notes"] = "Editovat poznámky kontaktu";
+$a->strings["Block/Unblock contact"] = "Blokovat / Odblokovat kontakt";
+$a->strings["Ignore contact"] = "Ignorovat kontakt";
+$a->strings["Repair URL settings"] = "Opravit nastavení adresy URL ";
+$a->strings["View conversations"] = "Zobrazit konverzace";
+$a->strings["Last update:"] = "Poslední aktualizace:";
+$a->strings["Update public posts"] = "Aktualizovat veřejné příspěvky";
+$a->strings["Update now"] = "Aktualizovat";
+$a->strings["Unblock"] = "Odblokovat";
+$a->strings["Block"] = "Blokovat";
+$a->strings["Unignore"] = "Přestat ignorovat";
+$a->strings["Ignore"] = "Ignorovat";
+$a->strings["Currently blocked"] = "V současnosti zablokováno";
+$a->strings["Currently ignored"] = "V současnosti ignorováno";
+$a->strings["Currently archived"] = "Aktuálně archivován";
+$a->strings["Awaiting connection acknowledge"] = "Čekám na potrvzení spojení";
+$a->strings["Hide this contact from others"] = "Skrýt tento kontakt před ostatními";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Odpovědi/Libí se na Vaše veřejné příspěvky <strong>mohou být</strong> stále viditelné";
+$a->strings["Notification for new posts"] = "Upozornění na nové příspěvky";
+$a->strings["Send a notification of every new post of this contact"] = "Poslat upozornění při každém novém příspěvku tohoto kontaktu";
+$a->strings["Blacklisted keywords"] = "Zakázaná klíčová slova";
+$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Čárkou oddělený seznam klíčových slov, které by neměly být převáděna na hashtagy, když je zvoleno \"Načíst informace a klíčová slova\"";
+$a->strings["Profile URL"] = "URL profilu";
+$a->strings["Location:"] = "Místo:";
+$a->strings["XMPP:"] = "XMPP:";
+$a->strings["About:"] = "O mě:";
+$a->strings["Tags:"] = "Štítky:";
+$a->strings["Actions"] = "Akce";
+$a->strings["Status"] = "Stav";
+$a->strings["Contact Settings"] = "Nastavení kontaktů";
+$a->strings["Suggestions"] = "Doporučení";
+$a->strings["Suggest potential friends"] = "Navrhnout potenciální přátele";
+$a->strings["All Contacts"] = "Všechny kontakty";
+$a->strings["Show all contacts"] = "Zobrazit všechny kontakty";
+$a->strings["Unblocked"] = "Odblokován";
+$a->strings["Only show unblocked contacts"] = "Zobrazit pouze neblokované kontakty";
+$a->strings["Blocked"] = "Blokován";
+$a->strings["Only show blocked contacts"] = "Zobrazit pouze blokované kontakty";
+$a->strings["Ignored"] = "Ignorován";
+$a->strings["Only show ignored contacts"] = "Zobrazit pouze ignorované kontakty";
+$a->strings["Archived"] = "Archivován";
+$a->strings["Only show archived contacts"] = "Zobrazit pouze archivované kontakty";
+$a->strings["Hidden"] = "Skrytý";
+$a->strings["Only show hidden contacts"] = "Zobrazit pouze skryté kontakty";
+$a->strings["Search your contacts"] = "Prohledat Vaše kontakty";
+$a->strings["Results for: %s"] = "Výsledky pro: %s";
+$a->strings["Find"] = "Najít";
+$a->strings["Update"] = "Aktualizace";
+$a->strings["Archive"] = "Archivovat";
+$a->strings["Unarchive"] = "Vrátit z archívu";
+$a->strings["Batch Actions"] = "Dávkové (batch) akce";
+$a->strings["Status Messages and Posts"] = "Statusové zprávy a příspěvky ";
+$a->strings["Profile Details"] = "Detaily profilu";
+$a->strings["View all contacts"] = "Zobrazit všechny kontakty";
+$a->strings["View all common friends"] = "Zobrazit všechny společné přátele";
+$a->strings["Advanced"] = "Pokročilé";
+$a->strings["Advanced Contact Settings"] = "Pokročilé nastavení kontaktu";
+$a->strings["Mutual Friendship"] = "Vzájemné přátelství";
+$a->strings["is a fan of yours"] = "je Váš fanoušek";
+$a->strings["you are a fan of"] = "jste fanouškem";
+$a->strings["This is you"] = "Nastavte Vaši polohu";
+$a->strings["Toggle Blocked status"] = "Přepnout stav Blokováno";
+$a->strings["Toggle Ignored status"] = "Přepnout stav Ignorováno";
+$a->strings["Toggle Archive status"] = "Přepnout stav Archivováno";
+$a->strings["Delete contact"] = "Odstranit kontakt";
+$a->strings["Parent user not found."] = "Rodičovský uživatel nenalezen.";
+$a->strings["No parent user"] = "Žádný rodičovský uživatel";
+$a->strings["Parent Password:"] = "Rodičovské heslo:";
+$a->strings["Please enter the password of the parent account to legitimize your request."] = "Prosím vložte heslo rodičovského účtu k legitimizaci Vašeho požadavku.";
+$a->strings["Parent User"] = "Rodičovský uživatel";
+$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "Rodičovští uživatelé mají naprostou kontrolu nad tímto účtem, včetně nastavení účtu. Prosím překontrolujte, komu tento přístup dáváte.";
+$a->strings["Save Settings"] = "Uložit Nastavení";
+$a->strings["Delegate Page Management"] = "Správa delegátů stránky";
+$a->strings["Delegates"] = "Delegáti";
+$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."] = "Delegáti jsou schopni řídit všechny aspekty tohoto účtu / stránky, kromě základních nastavení účtu. Prosím, nepředávejte svůj osobní účet nikomu, komu úplně nevěříte..";
+$a->strings["Existing Page Delegates"] = "Stávající delegáti stránky ";
+$a->strings["Potential Delegates"] = "Potenciální delegáti";
+$a->strings["Add"] = "Přidat";
+$a->strings["No entries."] = "Žádné záznamy.";
+$a->strings["You must be logged in to use this module"] = "Pro používání tohoto modulu musíte být přihlášen/a";
+$a->strings["Source URL"] = "Zdrojová adresa URL";
+$a->strings["Post successful."] = "Příspěvek úspěšně odeslán";
+$a->strings["Subscribing to OStatus contacts"] = "Registruji Vás ke kontaktům OStatus";
+$a->strings["No contact provided."] = "Nebyl poskytnut žádný kontakt.";
+$a->strings["Couldn't fetch information for contact."] = "Nelze načíst informace pro kontakt.";
+$a->strings["Couldn't fetch friends for contact."] = "Nelze načíst přátele pro kontakt.";
+$a->strings["success"] = "úspěch";
+$a->strings["failed"] = "selhalo";
+$a->strings["ignored"] = "ignorován";
+$a->strings["Image uploaded but image cropping failed."] = "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo.";
+$a->strings["Image size reduction [%s] failed."] = "Nepodařilo se snížit velikost obrázku [%s].";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě.";
+$a->strings["Unable to process image"] = "Obrázek nelze zpracovat ";
+$a->strings["Upload File:"] = "Nahrát soubor:";
+$a->strings["Select a profile:"] = "Vybrat profil:";
+$a->strings["or"] = "nebo";
+$a->strings["skip this step"] = "přeskočit tento krok ";
+$a->strings["select a photo from your photo albums"] = "Vybrat fotografii z Vašich fotoalb";
+$a->strings["Crop Image"] = "Oříznout obrázek";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Prosím, ořízněte tento obrázek pro optimální zobrazení.";
+$a->strings["Done Editing"] = "Editace dokončena";
+$a->strings["Image uploaded successfully."] = "Obrázek byl úspěšně nahrán.";
+$a->strings["Contact wasn't found or can't be unfollowed."] = "Kontakt nebyl nalezen, nebo u něj nemůže být zrušeno sledování.";
+$a->strings["Contact unfollowed"] = "Zrušeno sledování kontaktu";
+$a->strings["Submit Request"] = "Odeslat žádost";
+$a->strings["You aren't a friend of this contact."] = "nejste přítelem tohoto kontaktu";
+$a->strings["Unfollowing is currently not supported by your network."] = "Zrušení sledování není aktuálně na Vaši síti podporováno.";
+$a->strings["Your Identity Address:"] = "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\".";
+$a->strings["Gender:"] = "Pohlaví:";
+$a->strings["Status:"] = "Status:";
+$a->strings["Homepage:"] = "Domácí stránka:";
 $a->strings["Global Directory"] = "Globální adresář";
 $a->strings["Find on this site"] = "Nalézt na tomto webu";
-$a->strings["Results for:"] = "";
+$a->strings["Results for:"] = "Výsledky pro:";
 $a->strings["Site Directory"] = "Adresář serveru";
 $a->strings["No entries (some entries may be hidden)."] = "Žádné záznamy (některé položky mohou být skryty).";
 $a->strings["People Search - %s"] = "Vyhledávání lidí - %s";
-$a->strings["Forum Search - %s"] = "";
-$a->strings["No matches"] = "Žádné shody";
-$a->strings["Item has been removed."] = "Položka byla odstraněna.";
-$a->strings["Event can not end before it has started."] = "Událost nemůže končit dříve, než začala.";
-$a->strings["Event title and start time are required."] = "Název události a datum začátku jsou vyžadovány.";
-$a->strings["Create New Event"] = "Vytvořit novou událost";
-$a->strings["Event details"] = "Detaily události";
-$a->strings["Starting date and Title are required."] = "Počáteční datum a Název jsou vyžadovány.";
-$a->strings["Event Starts:"] = "Událost začíná:";
-$a->strings["Finish date/time is not known or not relevant"] = "Datum/čas konce není zadán nebo není relevantní";
-$a->strings["Event Finishes:"] = "Akce končí:";
-$a->strings["Adjust for viewer timezone"] = "Nastavit časové pásmo pro uživatele s právem pro čtení";
-$a->strings["Description:"] = "Popis:";
-$a->strings["Title:"] = "Název:";
-$a->strings["Share this event"] = "Sdílet tuto událost";
-$a->strings["System down for maintenance"] = "Systém vypnut z důvodů údržby";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do Vašeho výchozího profilu.";
-$a->strings["is interested in:"] = "zajímá se o:";
-$a->strings["Profile Match"] = "Shoda profilu";
-$a->strings["Tips for New Members"] = "Tipy pro nové členy";
-$a->strings["Do you really want to delete this suggestion?"] = "Opravdu chcete smazat tento návrh?";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin.";
-$a->strings["Ignore/Hide"] = "Ignorovat / skrýt";
-$a->strings["[Embedded content - reload page to view]"] = "[Vložený obsah - obnovte stránku pro zobrazení]";
-$a->strings["Recent Photos"] = "Aktuální fotografie";
-$a->strings["Upload New Photos"] = "Nahrát nové fotografie";
-$a->strings["everybody"] = "Žádost o připojení selhala nebo byla zrušena.";
-$a->strings["Contact information unavailable"] = "Kontakt byl zablokován";
-$a->strings["Album not found."] = "Album nenalezeno.";
-$a->strings["Delete Album"] = "Smazat album";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Opravdu chcete smazat toto foto album a všechny jeho fotografie?";
-$a->strings["Delete Photo"] = "Smazat fotografii";
-$a->strings["Do you really want to delete this photo?"] = "Opravdu chcete smazat tuto fotografii?";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s byl označen v %2\$s uživatelem %3\$s";
-$a->strings["a photo"] = "fotografie";
-$a->strings["Image file is empty."] = "Soubor obrázku je prázdný.";
-$a->strings["No photos selected"] = "Není vybrána žádná fotografie";
-$a->strings["Access to this item is restricted."] = "Přístup k této položce je omezen.";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Použil jste %1$.2f Mbajtů z %2$.2f Mbajtů úložiště fotografií.";
-$a->strings["Upload Photos"] = "Nahrání fotografií ";
-$a->strings["New album name: "] = "Název nového alba: ";
-$a->strings["or existing album name: "] = "nebo stávající název alba: ";
-$a->strings["Do not show a status post for this upload"] = "Nezobrazovat stav pro tento upload";
-$a->strings["Show to Groups"] = "Zobrazit ve Skupinách";
-$a->strings["Show to Contacts"] = "Zobrazit v Kontaktech";
-$a->strings["Private Photo"] = "Soukromé Fotografie";
-$a->strings["Public Photo"] = "Veřejné Fotografie";
-$a->strings["Edit Album"] = "Edituj album";
-$a->strings["Show Newest First"] = "Zobrazit nejprve nejnovější:";
-$a->strings["Show Oldest First"] = "Zobrazit nejprve nejstarší:";
-$a->strings["View Photo"] = "Zobraz fotografii";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen.";
-$a->strings["Photo not available"] = "Fotografie není k dispozici";
-$a->strings["View photo"] = "Zobrazit obrázek";
-$a->strings["Edit photo"] = "Editovat fotografii";
-$a->strings["Use as profile photo"] = "Použít jako profilovou fotografii";
-$a->strings["View Full Size"] = "Zobrazit v plné velikosti";
-$a->strings["Tags: "] = "Štítky: ";
-$a->strings["[Remove any tag]"] = "[Odstranit všechny štítky]";
-$a->strings["New album name"] = "Nové jméno alba";
-$a->strings["Caption"] = "Titulek";
-$a->strings["Add a Tag"] = "Přidat štítek";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
-$a->strings["Do not rotate"] = "Neotáčet";
-$a->strings["Rotate CW (right)"] = "Rotovat po směru hodinových ručiček (doprava)";
-$a->strings["Rotate CCW (left)"] = "Rotovat proti směru hodinových ručiček (doleva)";
-$a->strings["Private photo"] = "Soukromé fotografie";
-$a->strings["Public photo"] = "Veřejné fotografie";
-$a->strings["Map"] = "";
-$a->strings["View Album"] = "Zobrazit album";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce.";
-$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."] = "Nepovedlo se odeslat emailovou zprávu. Zde jsou detaily Vašeho účtu:<br> login: %s<br> heslo: %s<br><br>Své heslo můžete změnit po přihlášení.";
-$a->strings["Registration successful."] = "";
-$a->strings["Your registration can not be processed."] = "Vaši registraci nelze zpracovat.";
-$a->strings["Your registration is pending approval by the site owner."] = "Vaše registrace čeká na schválení vlastníkem serveru.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknutete na tlačítko 'Zaregistrovat'.";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky.";
-$a->strings["Your OpenID (optional): "] = "Vaše OpenID (nepovinné): ";
-$a->strings["Include your profile in member directory?"] = "Toto je Váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu.";
-$a->strings["Note for the admin"] = "";
-$a->strings["Leave a message for the admin, why you want to join this node"] = "";
-$a->strings["Membership on this site is by invitation only."] = "Členství na tomto webu je pouze na pozvání.";
-$a->strings["Your invitation ID: "] = "Vaše pozvání ID:";
-$a->strings["Registration"] = "Registrace";
-$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "";
-$a->strings["Your Email Address: "] = "Vaše e-mailová adresa:";
-$a->strings["New Password:"] = "Nové heslo:";
-$a->strings["Leave empty for an auto generated password."] = "Ponechte prázdné pro automatické vygenerovaní hesla.";
-$a->strings["Confirm:"] = "Potvrďte:";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Vyberte přezdívku k profilu. Ta musí začít s textovým znakem. Vaše profilová adresa na tomto webu pak bude \"<strong>přezdívka@\$sitename</strong>\".";
-$a->strings["Choose a nickname: "] = "Vyberte přezdívku:";
-$a->strings["Import your profile to this friendica instance"] = "Import Vašeho profilu do této friendica instance";
-$a->strings["Account"] = "Účet";
-$a->strings["Additional features"] = "Další funkčnosti";
-$a->strings["Display"] = "Zobrazení";
-$a->strings["Social Networks"] = "Sociální sítě";
-$a->strings["Plugins"] = "Pluginy";
-$a->strings["Connected apps"] = "Propojené aplikace";
-$a->strings["Remove account"] = "Odstranit účet";
-$a->strings["Missing some important data!"] = "Chybí některé důležité údaje!";
-$a->strings["Update"] = "Aktualizace";
-$a->strings["Failed to connect with email account using the settings provided."] = "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení.";
-$a->strings["Email settings updated."] = "Nastavení e-mailu aktualizována.";
-$a->strings["Features updated"] = "Aktualizované funkčnosti";
-$a->strings["Relocate message has been send to your contacts"] = "Správa o změně umístění byla odeslána vašim kontaktům";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Prázdné hesla nejsou povolena. Heslo nebylo změněno.";
-$a->strings["Wrong password."] = "Špatné heslo.";
-$a->strings["Password changed."] = "Heslo bylo změněno.";
-$a->strings["Password update failed. Please try again."] = "Aktualizace hesla se nezdařila. Zkuste to prosím znovu.";
-$a->strings[" Please use a shorter name."] = "Prosím použijte kratší jméno.";
-$a->strings[" Name too short."] = "Jméno je příliš krátké.";
-$a->strings["Wrong Password"] = "Špatné heslo";
-$a->strings[" Not valid email."] = "Neplatný e-mail.";
-$a->strings[" Cannot change to that email."] = "Nelze provést změnu na tento e-mail.";
-$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Soukromé fórum nemá nastaveno zabezpečení. Používá se defaultní soukromá skupina.";
-$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Soukromé fórum nemá nastaveno zabezpečení a ani žádnou defaultní soukromou skupinu.";
-$a->strings["Settings updated."] = "Nastavení aktualizováno.";
-$a->strings["Add application"] = "Přidat aplikaci";
-$a->strings["Save Settings"] = "Uložit Nastavení";
-$a->strings["Consumer Key"] = "Consumer Key";
-$a->strings["Consumer Secret"] = "Consumer Secret";
-$a->strings["Redirect"] = "Přesměrování";
-$a->strings["Icon url"] = "URL ikony";
-$a->strings["You can't edit this application."] = "Nemůžete editovat tuto aplikaci.";
-$a->strings["Connected Apps"] = "Připojené aplikace";
-$a->strings["Client key starts with"] = "Klienský klíč začíná";
-$a->strings["No name"] = "Bez názvu";
-$a->strings["Remove authorization"] = "Odstranit oprávnění";
-$a->strings["No Plugin settings configured"] = "Žádný doplněk není nastaven";
-$a->strings["Plugin Settings"] = "Nastavení doplňku";
-$a->strings["Off"] = "Vypnuto";
-$a->strings["On"] = "Zapnuto";
-$a->strings["Additional Features"] = "Další Funkčnosti";
-$a->strings["General Social Media Settings"] = "General Social Media nastavení";
-$a->strings["Disable intelligent shortening"] = "Vypnout inteligentní zkracování";
-$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."] = "Normálně se systém snaží nalézt nejlepší link pro přidání zkrácených příspěvků. Pokud je tato volba aktivní, pak každý zkrácený příspěvek bude vždy ukazovat na originální friencika příspěvek";
-$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automaticky následovat jakékoliv GNU Social (OStatus) následníky/přispivatele";
-$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"] = "";
-$a->strings["Your legacy GNU Social account"] = "";
-$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"] = "";
-$a->strings["Built-in support for %s connectivity is %s"] = "Vestavěná podpora pro připojení s %s je %s";
-$a->strings["enabled"] = "povoleno";
-$a->strings["disabled"] = "zakázáno";
-$a->strings["GNU Social (OStatus)"] = "GNU Social (OStatus)";
-$a->strings["Email access is disabled on this site."] = "Přístup k elektronické poště je na tomto serveru zakázán.";
-$a->strings["Email/Mailbox Setup"] = "Nastavení e-mailu";
-$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Pokud chcete komunikovat pomocí této služby s Vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce.";
-$a->strings["Last successful email check:"] = "Poslední úspěšná kontrola e-mailu:";
-$a->strings["IMAP server name:"] = "jméno IMAP serveru:";
-$a->strings["IMAP port:"] = "IMAP port:";
-$a->strings["Security:"] = "Zabezpečení:";
-$a->strings["None"] = "Žádný";
-$a->strings["Email login name:"] = "přihlašovací jméno k e-mailu:";
-$a->strings["Email password:"] = "heslo k Vašemu e-mailu:";
-$a->strings["Reply-to address:"] = "Odpovědět na adresu:";
-$a->strings["Send public posts to all email contacts:"] = "Poslat veřejné příspěvky na všechny e-mailové kontakty:";
-$a->strings["Action after import:"] = "Akce po importu:";
-$a->strings["Move to folder"] = "Přesunout do složky";
-$a->strings["Move to folder:"] = "Přesunout do složky:";
-$a->strings["No special theme for mobile devices"] = "žádné speciální téma pro mobilní zařízení";
-$a->strings["Display Settings"] = "Nastavení Zobrazení";
-$a->strings["Display Theme:"] = "Vybrat grafickou šablonu:";
-$a->strings["Mobile Theme:"] = "Téma pro mobilní zařízení:";
-$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"] = "Aktualizovat prohlížeč každých xx sekund";
-$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "";
-$a->strings["Number of items to display per page:"] = "Počet položek zobrazených na stránce:";
-$a->strings["Maximum of 100 items"] = "Maximum 100 položek";
-$a->strings["Number of items to display per page when viewed from mobile device:"] = "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:";
-$a->strings["Don't show emoticons"] = "Nezobrazovat emotikony";
-$a->strings["Calendar"] = "";
-$a->strings["Beginning of week:"] = "";
-$a->strings["Don't show notices"] = "Nezobrazovat oznámění";
-$a->strings["Infinite scroll"] = "Nekonečné posouvání";
-$a->strings["Automatic updates only at the top of the network page"] = "Automatické aktualizace pouze na hlavní stránce Síť.";
-$a->strings["Bandwith Saver Mode"] = "";
-$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "";
-$a->strings["General Theme Settings"] = "";
-$a->strings["Custom Theme Settings"] = "";
-$a->strings["Content Settings"] = "";
-$a->strings["Theme settings"] = "Nastavení téma";
-$a->strings["Account Types"] = "";
-$a->strings["Personal Page Subtypes"] = "";
-$a->strings["Community Forum Subtypes"] = "";
-$a->strings["Personal Page"] = "";
-$a->strings["This account is a regular personal profile"] = "";
-$a->strings["Organisation Page"] = "";
-$a->strings["This account is a profile for an organisation"] = "";
-$a->strings["News Page"] = "";
-$a->strings["This account is a news account/reflector"] = "";
-$a->strings["Community Forum"] = "";
-$a->strings["This account is a community forum where people can discuss with each other"] = "";
-$a->strings["Normal Account Page"] = "Normální stránka účtu";
-$a->strings["This account is a normal personal profile"] = "Tento účet je běžný osobní profil";
-$a->strings["Soapbox Page"] = "Stránka \"Soapbox\"";
-$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Automaticky schválit všechna spojení / přátelství jako fanoušky s právem pouze ke čtení";
-$a->strings["Public Forum"] = "";
-$a->strings["Automatically approve all contact requests"] = "";
-$a->strings["Automatic Friend Page"] = "Automatická stránka přítele";
-$a->strings["Automatically approve all connection/friend requests as friends"] = "Automaticky schvalovat všechny žádosti o spojení / přátelství jako přátele";
-$a->strings["Private Forum [Experimental]"] = "Soukromé fórum [Experimentální]";
-$a->strings["Private forum - approved members only"] = "Soukromé fórum - pouze pro schválené členy";
-$a->strings["OpenID:"] = "OpenID:";
-$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu.";
-$a->strings["Publish your default profile in your local site directory?"] = "Publikovat Váš výchozí profil v místním adresáři webu?";
-$a->strings["Publish your default profile in the global social directory?"] = "Publikovat Váš výchozí profil v globální sociálním adresáři?";
-$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Skrýt Vaše kontaktní údaje a seznam přátel před návštěvníky ve Vašem výchozím profilu?";
-$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Pokud je povoleno, není možné zasílání veřejných příspěvků do Diaspory a dalších sítí.";
-$a->strings["Allow friends to post to your profile page?"] = "Povolit přátelům umisťování příspěvků na vaši profilovou stránku?";
-$a->strings["Allow friends to tag your posts?"] = "Povolit přátelům označovat Vaše příspěvky?";
-$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Chcete nám povolit abychom vás navrhovali jako přátelé pro nové členy?";
-$a->strings["Permit unknown people to send you private mail?"] = "Povolit neznámým lidem Vám zasílat soukromé zprávy?";
-$a->strings["Profile is <strong>not published</strong>."] = "Profil <strong>není zveřejněn</strong>.";
-$a->strings["Your Identity Address is <strong>'%s'</strong> or '%s'."] = "Vaše Identity adresa je <strong>\"%s\"</strong> nebo \"%s\".";
-$a->strings["Automatically expire posts after this many days:"] = "Automaticky expirovat příspěvky po zadaném počtu dní:";
-$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány";
-$a->strings["Advanced expiration settings"] = "Pokročilé nastavení expirací";
-$a->strings["Advanced Expiration"] = "Nastavení expirací";
-$a->strings["Expire posts:"] = "Expirovat příspěvky:";
-$a->strings["Expire personal notes:"] = "Expirovat osobní poznámky:";
-$a->strings["Expire starred posts:"] = "Expirovat příspěvky s hvězdou:";
-$a->strings["Expire photos:"] = "Expirovat fotografie:";
-$a->strings["Only expire posts by others:"] = "Přízpěvky expirovat pouze ostatními:";
-$a->strings["Account Settings"] = "Nastavení účtu";
-$a->strings["Password Settings"] = "Nastavení hesla";
-$a->strings["Leave password fields blank unless changing"] = "Pokud nechcete změnit heslo, položku hesla nevyplňujte";
-$a->strings["Current Password:"] = "Stávající heslo:";
-$a->strings["Your current password to confirm the changes"] = "Vaše stávající heslo k potvrzení změn";
-$a->strings["Password:"] = "Heslo: ";
-$a->strings["Basic Settings"] = "Základní nastavení";
-$a->strings["Email Address:"] = "E-mailová adresa:";
-$a->strings["Your Timezone:"] = "Vaše časové pásmo:";
-$a->strings["Your Language:"] = "";
-$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "";
-$a->strings["Default Post Location:"] = "Výchozí umístění příspěvků:";
-$a->strings["Use Browser Location:"] = "Používat umístění dle prohlížeče:";
-$a->strings["Security and Privacy Settings"] = "Nastavení zabezpečení a soukromí";
-$a->strings["Maximum Friend Requests/Day:"] = "Maximální počet žádostí o přátelství za den:";
-$a->strings["(to prevent spam abuse)"] = "(Aby se zabránilo spamu)";
-$a->strings["Default Post Permissions"] = "Výchozí oprávnění pro příspěvek";
-$a->strings["(click to open/close)"] = "(Klikněte pro otevření/zavření)";
-$a->strings["Default Private Post"] = "Výchozí Soukromý příspěvek";
-$a->strings["Default Public Post"] = "Výchozí Veřejný příspěvek";
-$a->strings["Default Permissions for New Posts"] = "Výchozí oprávnění pro nové příspěvky";
-$a->strings["Maximum private messages per day from unknown people:"] = "Maximum soukromých zpráv od neznámých lidí:";
-$a->strings["Notification Settings"] = "Nastavení notifikací";
-$a->strings["By default post a status message when:"] = "Defaultně posílat statusové zprávy když:";
-$a->strings["accepting a friend request"] = "akceptuji požadavek na přátelství";
-$a->strings["joining a forum/community"] = "připojující se k fóru/komunitě";
-$a->strings["making an <em>interesting</em> profile change"] = "provedení <em>zajímavé</em> profilové změny";
-$a->strings["Send a notification email when:"] = "Poslat notifikaci e-mailem, když";
-$a->strings["You receive an introduction"] = "obdržíte žádost o propojení";
-$a->strings["Your introductions are confirmed"] = "Vaše žádosti jsou potvrzeny";
-$a->strings["Someone writes on your profile wall"] = "někdo Vám napíše na Vaši profilovou stránku";
-$a->strings["Someone writes a followup comment"] = "někdo Vám napíše následný komentář";
-$a->strings["You receive a private message"] = "obdržíte soukromou zprávu";
-$a->strings["You receive a friend suggestion"] = "Obdržel jste návrh přátelství";
-$a->strings["You are tagged in a post"] = "Jste označen v příspěvku";
-$a->strings["You are poked/prodded/etc. in a post"] = "Byl Jste šťouchnout v příspěvku";
-$a->strings["Activate desktop notifications"] = "Aktivovat upozornění na desktopu";
-$a->strings["Show desktop popup on new notifications"] = "Zobrazit dektopové zprávy nových upozornění.";
-$a->strings["Text-only notification emails"] = "Pouze textové notifikační e-maily";
-$a->strings["Send text only notification emails, without the html part"] = "Posílat pouze textové notifikační e-maily, bez html části.";
-$a->strings["Advanced Account/Page Type Settings"] = "Pokročilé nastavení účtu/stránky";
-$a->strings["Change the behaviour of this account for special situations"] = "Změnit chování tohoto účtu ve speciálních situacích";
-$a->strings["Relocate"] = "Změna umístění";
-$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."] = "Pokud jste přemístil tento profil z jiného serveru a nějaký z vašich kontaktů nedostává Vaše aktualizace, zkuste stisknout toto tlačítko.";
-$a->strings["Resend relocate message to contacts"] = "Znovu odeslat správu o změně umístění Vašim kontaktům";
-$a->strings["Do you really want to delete this video?"] = "Opravdu chcete smazat toto video?";
-$a->strings["Delete Video"] = "Odstranit video";
-$a->strings["No videos selected"] = "Není vybráno žádné video";
-$a->strings["Recent Videos"] = "Aktuální Videa";
-$a->strings["Upload New Videos"] = "Nahrát nová videa";
-$a->strings["Invalid request."] = "Neplatný požadavek.";
-$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP";
-$a->strings["Or - did you try to upload an empty file?"] = "Nebo - nenahrával jste prázdný soubor?";
-$a->strings["File exceeds size limit of %s"] = "Velikost souboru přesáhla limit %s";
-$a->strings["File upload failed."] = "Nahrání souboru se nezdařilo.";
-$a->strings["Theme settings updated."] = "Nastavení téma zobrazení bylo aktualizováno.";
+$a->strings["Forum Search - %s"] = "Vyhledávání ve fóru - %s";
+$a->strings["The contact could not be added."] = "Kontakt nemohl být přidán.";
+$a->strings["You already added this contact."] = "Již jste si tento kontakt přidali.";
+$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Podpora pro Diasporu není zapnuta. Kontakt nemůže být přidán.";
+$a->strings["OStatus support is disabled. Contact can't be added."] = "Podpora pro OStatus je vypnnuta. Kontakt nemůže být přidán.";
+$a->strings["The network type couldn't be detected. Contact can't be added."] = "Typ sítě nemohl být detekován. Kontakt nemůže být přidán.";
+$a->strings["Please answer the following:"] = "Odpovězte, prosím, následující:";
+$a->strings["Does %s know you?"] = "Zná Vás uživatel %s ?";
+$a->strings["Add a personal note:"] = "Přidat osobní poznámku:";
+$a->strings["No valid account found."] = "Nenalezen žádný platný účet.";
+$a->strings["Password reset request issued. Check your email."] = "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku.";
+$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\tVážený/á %1\$s,\n\t\t\tPřed nedávnem jsme obdrželi na \"%2\$s\" požadavek pro resetování\n\t\thesla k Vašemu účtu. Pro potvrzení tohoto požadavku, prosím klikněte na odkaz\n\t\tpro ověření dole, nebo ho zkopírujte do adresního řádku Vašeho prohlížeče.\n\n\t\tPokud jste o tuto změnu NEPOŽÁDAL/A, prosím NEKLIKEJTE na tento odkaz\n\t\ta ignorujte a/nebo smažte tento e-mail. Platnost požadavku brzy vyprší.\n\n\t\tVaše heslo nebude změněno, dokud nedokážeme ověřit, že jste tento\n\t\tpožadavek nevydal/a Vy.";
+$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"] = "\n\t\tKlikněte na tento odkaz brzy pro ověření vaší identity:\n\n\t\t%1\$s\n\n\t\tObdržíte poté následnou zprávu obsahující nové heslo.\n\t\tPo přihlášení můžete toto heslo změnit na stránce nastavení Vašeho účtu.\n\n\t\tZde jsou vaše přihlašovací detaily:\n\n\t\tAdresa stránky:\t\t%2\$s\n\t\tPřihlašovací jméno:\t%3\$s";
+$a->strings["Password reset requested at %s"] = "Na %s bylo zažádáno o resetování hesla";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení hesla se nezdařilo.";
+$a->strings["Request has expired, please make a new one."] = "Platnost požadavku vypršela, prosím vytvořte nový.";
+$a->strings["Forgot your Password?"] = "Zapomněli jste heslo?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Zadejte svůj e-mailovou adresu a odešlete žádost o zaslání Vašeho nového hesla. Poté zkontrolujte svůj e-mail pro další instrukce.";
+$a->strings["Nickname or Email: "] = "Přezdívka nebo e-mail: ";
+$a->strings["Reset"] = "Reset";
+$a->strings["Password Reset"] = "Obnovení hesla";
+$a->strings["Your password has been reset as requested."] = "Vaše heslo bylo na Vaše přání resetováno.";
+$a->strings["Your new password is"] = "Někdo Vám napsal na Vaši profilovou stránku";
+$a->strings["Save or copy your new password - and then"] = "Uložte si nebo zkopírujte nové heslo - a pak";
+$a->strings["click here to login"] = "klikněte zde pro přihlášení";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení).";
+$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\tVážený/á %1\$s,\n\t\t\t\tVaše heslo se před nedávnem změnilo, jak jste požádal/a. Prosím uchovejte\n\t\t\ttyto informace pro vaše záznamy (nebo si ihned změňte heslo na něco,\n\t\t\tco si zapamatujete).\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\tZde jsou vaše přihlašovací detaily:\n\n\t\t\tAdresa stránky:\t\t%1\$s\n\t\t\tPřihlašovací jméno:\t%2\$s\n\t\t\tHeslo:\t\t\t%3\$s\n\n\t\t\tSvé heslo si po přihlášení můžete změnit na stránce nastavení Vašeho účtu\n\t\t";
+$a->strings["Your password has been changed at %s"] = "Vaše heslo bylo změněno na %s";
+$a->strings["Source input"] = "Zdrojový vstup";
+$a->strings["BBCode::toPlaintext"] = "BBCode::toPlaintext";
+$a->strings["BBCode::convert (raw HTML)"] = "BBCode::convert (raw 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"] = "Zdrojový vstup \\x28Formát Diaspora\\x29";
+$a->strings["Markdown::toBBCode"] = "Markdown::toBBCode";
+$a->strings["Raw HTML input"] = "Hrubý HTML vstup";
+$a->strings["HTML Input"] = "HTML vstup";
+$a->strings["HTML::toBBCode"] = "HTML::toBBCode";
+$a->strings["HTML::toPlaintext"] = "HTML::toPlaintext";
+$a->strings["Source text"] = "Zdrojový text";
+$a->strings["BBCode"] = "BBCode";
+$a->strings["Markdown"] = "Markdown";
+$a->strings["HTML"] = "HTML";
+$a->strings["This is Friendica, version"] = "Toto je Friendica, verze";
+$a->strings["running at web location"] = "běžící na webu";
+$a->strings["Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more about the Friendica project."] = "Pro více informací o projektu Friendica, prosím, navštivte stránku <a href=\"https://friendi.ca\">Friendi.ca</a>";
+$a->strings["Bug reports and issues: please visit"] = "Pro hlášení chyb a námětů na změny navštivte";
+$a->strings["the bugtracker at github"] = "sledování chyb na GitHubu";
+$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Návrhy, pochvaly atd., prosím, posílejte na adresu \"info\" zavináč \"friendi\"-tečka-\"ca\"";
+$a->strings["Installed addons/apps:"] = "Nainstalované doplňky/aplikace:";
+$a->strings["No installed addons/apps"] = "Žádne nainstalované doplňky/aplikace";
+$a->strings["Read about the <a href=\"%1\$s/tos\">Terms of Service</a> of this node."] = "Přečtěte si o <a href=\"%1\$s/tos\">Podmínkách používání</a> tohoto serveru.";
+$a->strings["On this server the following remote servers are blocked."] = "Na tomto serveru jsou zablokovány následující vzdálené servery.";
+$a->strings["Blocked domain"] = "Zablokovaná doména";
+$a->strings["Reason for the block"] = "Důvody pro zablokování";
+$a->strings["Total invitation limit exceeded."] = "Celkový limit pozvánek byl překročen";
+$a->strings["%s : Not a valid email address."] = "%s : není platná e-mailová adresa.";
+$a->strings["Please join us on Friendica"] = "Prosím přidejte se k nám na Friendice";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit pozvánek byl překročen. Prosím kontaktujte administrátora Vaší stránky.";
+$a->strings["%s : Message delivery failed."] = "%s : Doručení zprávy se nezdařilo.";
+$a->strings["%d message sent."] = [
+       0 => "%d zpráva odeslána.",
+       1 => "%d zprávy odeslány.",
+       2 => "%d zpráv odesláno.",
+       3 => "%d zprávy odeslány.",
+];
+$a->strings["You have no more invitations available"] = "Nemáte k dispozici žádné další pozvánky";
+$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."] = "Navštivte %s pro seznam veřejných serverů, na kterých se můžete přidat. Členové Friendica na jiných serverech se mohou spojit mezi sebou, jakožto i se členy mnoha dalších sociálních sítí.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "K přijetí této pozvánky prosím navštivte a registrujte se na %s nebo na kterékoliv jiném veřejném Friendica serveru.";
+$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."] = "Stránky Friendica jsou navzájem propojené a vytváří tak obrovský sociální web s dúrazem na soukromí, kterou vlastní a kontrojují její členové, Mohou se také připojit k mnoha tradičním socilním sítím. Navštivte %s pro seznam alternativních serverů Friendica, ke kterým se můžete přidat.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy.";
+$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."] = "Stránky Friendica jsou navzájem propojené a vytváří tak obrovský sociální web s dúrazem na soukromí, kterou vlastní a kontrojují její členové, Mohou se také připojit k mnoha tradičním socilním sítím.";
+$a->strings["To accept this invitation, please visit and register at %s."] = "Pokud chcete tuto pozvánku přijmout, prosím navštivte %s a registrujte se tam.";
+$a->strings["Send invitations"] = "Poslat pozvánky";
+$a->strings["Enter email addresses, one per line:"] = "Zadejte e-mailové adresy, jednu na řádek:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Jste srdečně pozván/a se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální web.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Budete muset zadat kód této pozvánky: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "Pro více informací o projektu Friendica a proč si myslíme, že je důležitý, prosím navštivte http://friendi.ca";
+$a->strings["Contact settings applied."] = "Nastavení kontaktu změněno";
+$a->strings["Contact update failed."] = "Aktualizace kontaktu selhala.";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>VAROVÁNÍ: Toto je velmi pokročilé</strong> a pokud zadáte nesprávné informace, Vaše komunikace s tímto kontaktem může přestat fungovat.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Prosím použijte <strong>ihned</strong> v prohlížeči tlačítko \"zpět\" pokud si nejste jisti, co dělat na této stránce.";
+$a->strings["No mirroring"] = "Žádné zrcadlení";
+$a->strings["Mirror as forwarded posting"] = "Zrcadlit pro přeposlané příspěvky";
+$a->strings["Mirror as my own posting"] = "Zrcadlit jako mé vlastní příspěvky";
+$a->strings["Return to contact editor"] = "Návrat k editoru kontaktu";
+$a->strings["Refetch contact data"] = "Znovu načíst data kontaktu";
+$a->strings["Remote Self"] = "Remote Self";
+$a->strings["Mirror postings from this contact"] = "Zrcadlení příspěvků od tohoto kontaktu";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Označit tento kontakt jako \"remote_self\", s tímto nastavením bude friendica přeposílat všechny nové příspěvky od tohoto kontaktu.";
+$a->strings["Name"] = "Jméno";
+$a->strings["Account Nickname"] = "Přezdívka účtu";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - upřednostněno před Jménem/Přezdívkou";
+$a->strings["Account URL"] = "URL adresa účtu";
+$a->strings["Friend Request URL"] = "Žádost o přátelství URL";
+$a->strings["Friend Confirm URL"] = "URL adresa potvrzení přátelství";
+$a->strings["Notification Endpoint URL"] = "Notifikační URL adresa";
+$a->strings["Poll/Feed URL"] = "Poll/Feed URL adresa";
+$a->strings["New photo from this URL"] = "Nové foto z této URL adresy";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s vítá %2\$s";
+$a->strings["Help:"] = "Nápověda:";
+$a->strings["Help"] = "Nápověda";
+$a->strings["Page not found."] = "Stránka nenalezena";
+$a->strings["Friendica Communications Server - Setup"] = "Friendica Komunikační server - Nastavení";
+$a->strings["Could not connect to database."] = "Nelze se připojit k databázi.";
+$a->strings["Could not create table."] = "Nelze vytvořit tabulku.";
+$a->strings["Your Friendica site database has been installed."] = "Vaše databáze Friendica  byla nainstalována.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Pravděpodobně budete muset manuálně importovat soubor \"database.sql\" pomocí phpMyAdmin či MySQL.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Přečtěte si prosím informace v souboru \"INSTALL.txt\".";
+$a->strings["Database already in use."] = "Databáze se již používá.";
+$a->strings["System check"] = "Testování systému";
+$a->strings["Check again"] = "Otestovat znovu";
+$a->strings["Database connection"] = "Databázové spojení";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru, ";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním.";
+$a->strings["Database Server Name"] = "Jméno databázového serveru";
+$a->strings["Database Login Name"] = "Přihlašovací jméno k databázi";
+$a->strings["Database Login Password"] = "Heslo k databázovému účtu ";
+$a->strings["For security reasons the password must not be empty"] = "Z bezpečnostních důvodů nesmí být heslo prázdné.";
+$a->strings["Database Name"] = "Jméno databáze";
+$a->strings["Site administrator email address"] = "Emailová adresa administrátora webu";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní.";
+$a->strings["Please select a default timezone for your website"] = "Prosím, vyberte výchozí časové pásmo pro váš server";
+$a->strings["Site settings"] = "Nastavení webu";
+$a->strings["System Language:"] = "Systémový jazyk";
+$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Nastavte si výchozí jazyk pro vaše instalační rozhraní Friendica a pro odesílání e-mailů.";
+$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."] = "Databázový konfigurační soubor \".htconfig.php\" nemohl být uložen. Prosím, použijte přiložený text k vytvoření konfiguračního souboru ve vašem kořenovém adresáři webového serveru.";
+$a->strings["<h1>What next</h1>"] = "<h1>Co dál<h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "DŮLEŽITÉ: Budete si muset [manuálně] nastavit naplánovaný úkol pro pracovníka.";
+$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."] = "Přejděte k <a href=\"%s/register\">registrační stránce</a> Vašeho nového serveru Friendica a zaregistrujte se jako nový uživatel. Nezapomeňte použít stejný e-mail, který jste zadal/a jako administrátorský e-mail. To Vám umožní navštívit panel pro administraci stránky.";
+$a->strings["New Message"] = "Nová zpráva";
+$a->strings["Unable to locate contact information."] = "Nepodařilo se najít kontaktní informace.";
+$a->strings["Messages"] = "Zprávy";
+$a->strings["Do you really want to delete this message?"] = "Opravdu chcete smazat tuto zprávu?";
+$a->strings["Message deleted."] = "Zpráva odstraněna.";
+$a->strings["Conversation removed."] = "Konverzace odstraněna.";
+$a->strings["No messages."] = "Žádné zprávy.";
+$a->strings["Message not available."] = "Zpráva není k dispozici.";
+$a->strings["Delete message"] = "Smazat zprávu";
+$a->strings["D, d M Y - g:i A"] = "D M R - g:i A";
+$a->strings["Delete conversation"] = "Odstranit konverzaci";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Není k dispozici zabezpečená komunikace. <strong>Možná</strong> budete schopni reagovat z odesilatelovy profilové stránky.";
+$a->strings["Send Reply"] = "Poslat odpověď";
+$a->strings["Unknown sender - %s"] = "Neznámý odesilatel - %s";
+$a->strings["You and %s"] = "Vy a %s";
+$a->strings["%s and You"] = "%s a Vy";
+$a->strings["%d message"] = [
+       0 => "%d zpráva",
+       1 => "%d zprávy",
+       2 => "%d zpráv",
+       3 => "%d zpráv",
+];
+$a->strings["Theme settings updated."] = "Nastavení motivu bylo aktualizováno.";
+$a->strings["Information"] = "Informace";
+$a->strings["Overview"] = "Přehled";
+$a->strings["Federation Statistics"] = "Statistiky Federation";
+$a->strings["Configuration"] = "Konfigurace";
 $a->strings["Site"] = "Web";
 $a->strings["Users"] = "Uživatelé";
-$a->strings["Themes"] = "Témata";
+$a->strings["Addons"] = "Doplňky";
+$a->strings["Themes"] = "Motivy";
+$a->strings["Additional features"] = "Další funkčnosti";
+$a->strings["Terms of Service"] = "Podmínky používání";
+$a->strings["Database"] = "Databáze";
 $a->strings["DB updates"] = "Aktualizace databáze";
 $a->strings["Inspect Queue"] = "Proskoumat frontu";
-$a->strings["Federation Statistics"] = "";
+$a->strings["Tools"] = "Nástroje";
+$a->strings["Contact Blocklist"] = "Blokované kontakty";
+$a->strings["Server Blocklist"] = "Blokované servery";
+$a->strings["Delete Item"] = "Smazat položku";
 $a->strings["Logs"] = "Logy";
-$a->strings["View Logs"] = "";
+$a->strings["View Logs"] = "Zobrazit záznamy";
+$a->strings["Diagnostics"] = "Diagnostica";
+$a->strings["PHP Info"] = "Info o PHP";
 $a->strings["probe address"] = "vyzkoušet adresu";
 $a->strings["check webfinger"] = "vyzkoušet webfinger";
-$a->strings["Plugin Features"] = "Funkčnosti rozšíření";
-$a->strings["diagnostics"] = "diagnostika";
+$a->strings["Admin"] = "Administrace";
+$a->strings["Addon Features"] = "Vlastnosti doplňků";
 $a->strings["User registrations waiting for confirmation"] = "Registrace uživatele čeká na potvrzení";
-$a->strings["unknown"] = "";
-$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["Administration"] = "Administrace";
-$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = "";
+$a->strings["Display Terms of Service"] = "Ukázat Podmínky používání";
+$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."] = "Povolte stránku Podmínky používání. Pokud je toto povoleno, bude na formulář pro registrací a stránku s obecnými informacemi přidán odkaz k podmínkám.";
+$a->strings["Display Privacy Statement"] = "Zobrazit Prohlášení o ochraně soukromí";
+$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>."] = "Ukázat některé informace ohledně potřebných informací k provozování serveru podle například <a href=\"%s\" target=\"_blank\">GDPR EU</a>";
+$a->strings["Privacy Statement Preview"] = "Náhled Prohlášení o ochraně soukromí";
+$a->strings["The Terms of Service"] = "Podmínky používání";
+$a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = "Zde zadejte Podmínky používání Vašeho serveru. Můžete používat BBCode. Záhlaví sekcí by měly být označeny [h2] a níže.";
+$a->strings["The blocked domain"] = "Zablokovaná doména";
+$a->strings["The reason why you blocked this domain."] = "Důvod, proč jste doménu zablokoval/a";
+$a->strings["Delete domain"] = "Smazat doménu";
+$a->strings["Check to delete this entry from the blocklist"] = "Zaškrtnutím odstraníte tuto položku z blokovacího seznamu";
+$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."] = "Tato stránka může být použita k definici \"černé listiny\" serverů z federované sítě, kterým není dovoleno interagovat s vaším serverem. Měl/a byste také pro všechny zadané domény uvést důvod, proč jste vzdálený server zablokoval/a.";
+$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."] = "Seznam zablokovaných server bude zveřejněn na stránce /friendica, takže vaši uživatelé a lidé vyšetřující probém s komunikací mohou důvod najít snadno.";
+$a->strings["Add new entry to block list"] = "Přidat na blokovací seznam novou položku";
+$a->strings["Server Domain"] = "Serverová doména";
+$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = "Doména serveru, který má být přidán na blokovací seznam. Vynechejte protokol (\"http://\").";
+$a->strings["Block reason"] = "Důvod zablokování";
+$a->strings["Add Entry"] = "Přidat položku";
+$a->strings["Save changes to the blocklist"] = "Uložit změny do blokovacího seznamu";
+$a->strings["Current Entries in the Blocklist"] = "Aktuální položky v bokovacím seznamu";
+$a->strings["Delete entry from blocklist"] = "Odstranit položku z blokovacího seznamu";
+$a->strings["Delete entry from blocklist?"] = "Odstranit položku z blokovacího seznamu?";
+$a->strings["Server added to blocklist."] = "Server přidán do blokovacího seznamu";
+$a->strings["Site blocklist updated."] = "Blokovací seznam stránky aktualizován";
+$a->strings["The contact has been blocked from the node"] = "Kontakt byl na serveru zablokován";
+$a->strings["Could not find any contact entry for this URL (%s)"] = "Nelze nalézt žádnou položku v kontaktech pro tuto URL adresu (%s)";
+$a->strings["%s contact unblocked"] = [
+       0 => "%s kontakt odblokován",
+       1 => "%skontakty odblokovány",
+       2 => "%s kontaktů odblokováno",
+       3 => "%s kontaktů odblokováno",
+];
+$a->strings["Remote Contact Blocklist"] = "Blokované vzdálené kontakty";
+$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "Tato stránka Vám umožňuje zabránit jakýmkoliv zprávám ze vzdáleného kontaktu, aby se k vašemu serveru dostaly.";
+$a->strings["Block Remote Contact"] = "Zablokovat vzdálený kontakt";
+$a->strings["select all"] = "Vybrat vše";
+$a->strings["select none"] = "nevybrat žádný";
+$a->strings["No remote contact is blocked from this node."] = "Žádný vzdálený kontakt není na tomto serveru zablokován.";
+$a->strings["Blocked Remote Contacts"] = "Zablokovat vzdálené kontakty";
+$a->strings["Block New Remote Contact"] = "Zablokovat nový vzdálený kontakt";
+$a->strings["Photo"] = "Fotka";
+$a->strings["Address"] = "Adresa";
+$a->strings["%s total blocked contact"] = [
+       0 => "Celkem %s zablokovaný kontakt",
+       1 => "Celkem %s zablokované kontakty",
+       2 => "Celkem %s zablokovaných kontaktů",
+       3 => "Celkem %s zablokovaných kontaktů",
+];
+$a->strings["URL of the remote contact to block."] = "Adresa URL vzdáleného kontaktu k zablokování.";
+$a->strings["Delete this Item"] = "Smazat tuto položku";
+$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 této stránce můžete smazat pološku z Vašeho serveru. Pokud je položkou příspěvek nejvyššího stupně, bude smazáno celé vlákno.";
+$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."] = "Budete muset znát číslo GUID položky. Můžete jej najít např. v adrese URL. Poslední část adresy http://example.com/display/123456 je GUID, v tomto případě 123456";
+$a->strings["GUID"] = "GUID";
+$a->strings["The GUID of the item you want to delete."] = "Číslo GUID položky, kterou chcete smazat";
+$a->strings["Item marked for deletion."] = "Položka označená ke smazání";
+$a->strings["unknown"] = "neznámé";
+$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."] = "Tato stránka vám nabízí pár čísel pro známou část federované sociální sítě, které je Váš server Friendica součástí. Tato čísla nejsou kompletní, ale pouze odrážejí část sítě, které si je Váš server vědom.";
+$a->strings["The <em>Auto Discovered Contact Directory</em> feature is not enabled, it will improve the data displayed here."] = "Funkce <em>Adresář automaticky objevených kontaktů</em> není zapnuta, zlepší zde zobrazená data.";
+$a->strings["Currently this node is aware of %d nodes with %d registered users from the following platforms:"] = "Aktuálně si je tento server vědom %d serverů s %d registrovanými uživateli z těchto platforem:";
 $a->strings["ID"] = "Identifikátor";
 $a->strings["Recipient Name"] = "Jméno příjemce";
 $a->strings["Recipient Profile"] = "Profil píjemce";
+$a->strings["Network"] = "Síť";
 $a->strings["Created"] = "Vytvořeno";
 $a->strings["Last Tried"] = "Naposled vyzkoušeno";
-$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 <tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your Friendica installation.<br />"] = "";
-$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = "";
+$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 této stránce najdete obsah fronty odchozích příspěvků. Toto jsou příspěvky, u kterých počáteční doručení selhalo. Budou znovu poslány později, a pokud doručení selže trvale, budou nakonec smazány.";
+$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 />"] = "Vaše databáze stále běží s tabulkami MyISAM. Měl/a byste změnit typ datového úložiště na InnoDB. Protože Friendica bude v budoucnu používat pouze funkce InnoDB, měl/a byste to změnit! <a href=\"%s\">Zde</a> naleznete návod, který by pro vás mohl být užitečný při konverzi úložišť. Můžete také použít příkaz <tt>php bin/console.php dbstructure toinnodb</tt> na Vaší instalaci Friendica pro automatickou konverzi.<br />";
+$a->strings["There is a new version of Friendica available for download. Your current version is %1\$s, upstream version is %2\$s"] = "Je dostupná ke stažení nová verze Friendica. Vaše aktuální verze je %1\$s, upstreamová verze je%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."] = "Aktualizace databáze selhala. Prosím, spusťte příkaz \"php bin/console.php dbstructure update\" z příkazového řádku a podívejte se na chyby, které by se mohly vyskytnout.";
+$a->strings["The worker was never executed. Please check your database structure!"] = "Pracovník nebyl nikdy spuštěn. Prosím zkontrolujte strukturu Vaší databáze!";
+$a->strings["The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings."] = "Pracovník byl naposledy spuštěn v %s UTC. Toto je více než jedna hodina. Prosím zkontrolujte si nastavení crontab.";
 $a->strings["Normal Account"] = "Normální účet";
-$a->strings["Soapbox Account"] = "Soapbox účet";
-$a->strings["Community/Celebrity Account"] = "Komunitní účet / Účet celebrity";
+$a->strings["Automatic Follower Account"] = "Automatický účet následovníka";
+$a->strings["Public Forum Account"] = "Veřejný účet na fóru";
 $a->strings["Automatic Friend Account"] = "Účet s automatickým schvalováním přátel";
 $a->strings["Blog Account"] = "Účet Blogu";
-$a->strings["Private Forum"] = "Soukromé fórum";
+$a->strings["Private Forum Account"] = "Soukromá účet na fóru";
 $a->strings["Message queues"] = "Fronty zpráv";
 $a->strings["Summary"] = "Shrnutí";
 $a->strings["Registered users"] = "Registrovaní uživatelé";
 $a->strings["Pending registrations"] = "Čekající registrace";
 $a->strings["Version"] = "Verze";
-$a->strings["Active plugins"] = "Aktivní pluginy";
+$a->strings["Active addons"] = "Aktivní doplňky";
 $a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň <schéma>://<doméma>";
-$a->strings["RINO2 needs mcrypt php extension to work."] = "";
 $a->strings["Site settings updated."] = "Nastavení webu aktualizováno.";
+$a->strings["No special theme for mobile devices"] = "Žádný speciální motiv pro mobilní zařízení";
+$a->strings["No community page for local users"] = "Žádná komunitní stránka pro lokální uživatele";
 $a->strings["No community page"] = "Komunitní stránka neexistuje";
 $a->strings["Public postings from users of this site"] = "Počet veřejných příspěvků od uživatele na této stránce";
-$a->strings["Global community page"] = "Globální komunitní stránka";
-$a->strings["Never"] = "Nikdy";
-$a->strings["At post arrival"] = "Při obdržení příspěvku";
-$a->strings["Disabled"] = "Zakázáno";
+$a->strings["Public postings from the federated network"] = "Veřejné příspěvky z federované sítě";
+$a->strings["Public postings from local users and the federated network"] = "Veřejné příspěvky od lokálních uživatelů a z federované sítě";
 $a->strings["Users, Global Contacts"] = "Uživatelé, Všechny kontakty";
-$a->strings["Users, Global Contacts/fallback"] = "";
+$a->strings["Users, Global Contacts/fallback"] = "Uživatelé, globální kontakty/fallback";
 $a->strings["One month"] = "Jeden měsíc";
 $a->strings["Three months"] = "Tři měsíce";
 $a->strings["Half a year"] = "Půl roku";
@@ -1525,11 +920,17 @@ $a->strings["Open"] = "Otevřená";
 $a->strings["No SSL policy, links will track page SSL state"] = "Žádná SSL politika, odkazy budou následovat stránky SSL stav";
 $a->strings["Force all links to use SSL"] = "Vyžadovat u všech odkazů použití SSL";
 $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certifikát podepsaný sám sebou, použít SSL pouze pro lokální odkazy (nedoporučeno)";
+$a->strings["Don't check"] = "Nezkontrolovat";
+$a->strings["check the stable version"] = "zkontrolovat stabilní verzi";
+$a->strings["check the development version"] = "zkontrolovat verzi ve vývoji";
+$a->strings["Republish users to directory"] = "";
+$a->strings["Registration"] = "Registrace";
 $a->strings["File upload"] = "Nahrání souborů";
 $a->strings["Policies"] = "Politiky";
 $a->strings["Auto Discovered Contact Directory"] = "";
 $a->strings["Performance"] = "Výkonnost";
-$a->strings["Worker"] = "";
+$a->strings["Worker"] = "Pracovník";
+$a->strings["Message Relay"] = "";
 $a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Změna umístění - Varování: pokročilá funkčnost. Tímto můžete znepřístupnit server.";
 $a->strings["Site name"] = "Název webu";
 $a->strings["Host name"] = "Jméno hostitele (host name)";
@@ -1537,51 +938,52 @@ $a->strings["Sender Email"] = "Email ddesílatele";
 $a->strings["The email address your server shall use to send notification emails from."] = "";
 $a->strings["Banner/Logo"] = "Banner/logo";
 $a->strings["Shortcut icon"] = "Ikona zkratky";
-$a->strings["Link to an icon that will be used for browsers."] = "";
+$a->strings["Link to an icon that will be used for browsers."] = "Odkaz k ikoně, která bude použita pro prohlížeče.";
 $a->strings["Touch icon"] = "Dotyková ikona";
-$a->strings["Link to an icon that will be used for tablets and mobiles."] = "";
+$a->strings["Link to an icon that will be used for tablets and mobiles."] = "Odkaz k ikoně, která bude použita pro tablety a mobilní zařízení.";
 $a->strings["Additional Info"] = "Dodatečné informace";
-$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "";
+$a->strings["For public servers: you can add additional information here that will be listed at %s/servers."] = "Pro veřejné servery: zde můžete přidat dodatečné informace, které budou vypsané na stránce %s/servers.";
 $a->strings["System language"] = "Systémový jazyk";
 $a->strings["System theme"] = "Grafická šablona systému ";
-$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Defaultní systémové téma - může být změněno v uživatelských profilech - <a href='#' id='cnftheme'> změnit  theme settings</a>";
-$a->strings["Mobile system theme"] = "Systémové téma zobrazení pro mobilní zařízení";
-$a->strings["Theme for mobile devices"] = "Téma zobrazení pro mobilní zařízení";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Výchozí systémový motiv - může být změněn v uživatelských profilech - <a href='#' id='cnftheme'> změnit nastavení motivu</a>";
+$a->strings["Mobile system theme"] = "Mobilní systémový motiv";
+$a->strings["Theme for mobile devices"] = "Motiv pro mobilní zařízení";
 $a->strings["SSL link policy"] = "Politika SSL odkazů";
 $a->strings["Determines whether generated links should be forced to use SSL"] = "Určuje, zda-li budou generované odkazy používat SSL";
 $a->strings["Force SSL"] = "Vynutit SSL";
 $a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Vynutit SSL pro všechny ne-SSL žádosti - Upozornění: na některých systémech může dojít k nekonečnému zacyklení.";
-$a->strings["Old style 'Share'"] = "Sdílení \"postaru\"";
-$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Deaktivovat bbcode element \"share\" pro opakující se položky.";
 $a->strings["Hide help entry from navigation menu"] = "skrýt nápovědu z navigačního menu";
 $a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Skryje menu ze stránek Nápověda z navigačního menu. Nápovědu můžete stále zobrazit přímo zadáním /help.";
 $a->strings["Single user instance"] = "Jednouživatelská instance";
 $a->strings["Make this instance multi-user or single-user for the named user"] = "Nastavit tuto instanci víceuživatelskou nebo jednouživatelskou pro pojmenovaného uživatele";
 $a->strings["Maximum image size"] = "Maximální velikost obrázků";
-$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximální velikost v bajtech nahraných obrázků. Defaultní je 0, což znamená neomezeno.";
+$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximální velikost nahraných obrázků v bajtech. Výchozí hodnota je 0, což znamená bez omezení.";
 $a->strings["Maximum image length"] = "Maximální velikost obrázků";
-$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maximální délka v pixelech delší stránky nahrávaných obrázků. Defaultně je -1, což označuje bez limitu";
+$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maximální délka delší stránky nahrávaných obrázků v pixelech. Výchozí hodnota je -1, což znamená bez omezení.";
 $a->strings["JPEG image quality"] = "JPEG kvalita obrázku";
 $a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Nahrávaný JPEG bude uložen se zadanou kvalitou v rozmezí [0-100]. Defaultní je 100, což znamená plnou kvalitu.";
 $a->strings["Register policy"] = "Politika registrace";
 $a->strings["Maximum Daily Registrations"] = "Maximální počet denních registrací";
 $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."] = "Pokud je registrace výše povolena, zde se nastaví maximální počet registrací nových uživatelů za den.\nPokud je registrace zakázána, toto nastavení nemá žádný efekt.";
 $a->strings["Register text"] = "Registrace textu";
-$a->strings["Will be displayed prominently on the registration page."] = "Bude zřetelně zobrazeno na registrační stránce.";
+$a->strings["Will be displayed prominently on the registration page. You can use BBCode here."] = "Bude zobrazeno viditelně na stránce registrace. Zde můžete používat BBCode.";
 $a->strings["Accounts abandoned after x days"] = "Účet je opuštěn po x dnech";
-$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Neztrácejte systémové zdroje kontaktováním externích webů s opuštěnými účty. Zadejte 0 pro žádný časový limit.";
+$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Nebude se plýtvat systémovými zdroji kontaktováním externích webů s opuštěnými účty. Zadejte 0 pro žádný časový limit.";
 $a->strings["Allowed friend domains"] = "Povolené domény přátel";
 $a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Čárkou oddělený seznam domén, kterým je povoleno navazovat přátelství s tímto webem. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu.";
 $a->strings["Allowed email domains"] = "Povolené e-mailové domény";
 $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"] = "Čárkou oddělený seznam domén emalových adres, kterým je povoleno provádět registraci na tomto webu. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu.";
-$a->strings["Block public"] = "Blokovat veřejnost";
-$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Označemím přepínače zablokujete veřejný přístup ke všem jinak veřejně přístupným soukromým stránkám uživatelům, kteří nebudou přihlášeni.";
-$a->strings["Force publish"] = "Publikovat";
-$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Označením přepínače budou včechny profily na tomto webu uvedeny v adresáři webu.";
-$a->strings["Global directory URL"] = "";
-$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
-$a->strings["Allow threaded items"] = "Povolit vícevláknové zpracování obsahu";
-$a->strings["Allow infinite level threading for items on this site."] = "Povolit zpracování obsahu tohoto webu neomezeným počtem paralelních vláken.";
+$a->strings["No OEmbed rich content"] = "Žádný obohacený obsah oEmbed";
+$a->strings["Don't show the rich content (e.g. embedded PDF), except from the domains listed below."] = "Neukazovat obohacený obsah (např. vložené PDF dokumenty), kromě toho z domén vypsaných níže.";
+$a->strings["Allowed OEmbed domains"] = "Povolené domény pro oEmbed";
+$a->strings["Comma separated list of domains which oembed content is allowed to be displayed. Wildcards are accepted."] = "Výpis domén, u nichž je povoleno zobrazit obsah oEmbed, oddělených čárkami. Zástupné znaky jsou povoleny.";
+$a->strings["Block public"] = "Blokovat veřejný přístup";
+$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Označením zablokujete veřejný přístup ke všem jinak veřejně přístupným osobním stránkám nepřihlášeným uživatelům.";
+$a->strings["Force publish"] = "Vynutit publikaci";
+$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Označením budou všechny profily na tomto serveru uvedeny v adresáři stránky.";
+$a->strings["Enabling this may violate privacy laws like the GDPR"] = "Povolení této funkce může porušit zákony o ochraně soukromí, jako je Obecné nařízení o ochraně osobních údajů (GDPR)";
+$a->strings["Global directory URL"] = "Adresa URL globálního adresáře";
+$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "Adresa URL globálního adresáře. Pokud toto není nastaveno, globální adresář bude aplikaci naprosto nedostupný.";
 $a->strings["Private posts by default for new users"] = "Nastavit pro nové uživatele příspěvky jako soukromé";
 $a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Nastavit defaultní práva pro příspěvky od všech nových členů na výchozí soukromou skupinu raději než jako veřejné.";
 $a->strings["Don't include post content in email notifications"] = "Nezahrnovat obsah příspěvků v emailových upozorněních";
@@ -1594,24 +996,20 @@ $a->strings["Allow Users to set remote_self"] = "Umožnit uživatelům nastavit
 $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."] = "S tímto označením má každý uživatel možnost označit jakékoliv ze svých kontakt jako \"remote_self\" v nastavení v dialogu opravit kontakt. Tímto označením se budou zrcadlit všechny správy tohoto kontaktu v uživatelově proudu.";
 $a->strings["Block multiple registrations"] = "Blokovat více registrací";
 $a->strings["Disallow users to register additional accounts for use as pages."] = "Znemožnit uživatelům registraci dodatečných účtů k použití jako stránky.";
-$a->strings["OpenID support"] = "podpora OpenID";
+$a->strings["OpenID support"] = "Podpora OpenID";
 $a->strings["OpenID support for registration and logins."] = "Podpora OpenID pro registraci a přihlašování.";
 $a->strings["Fullname check"] = "kontrola úplného jména";
 $a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Přimět uživatele k registraci s mezerou mezi jménu a příjmením v poli Celé jméno, jako antispamové opatření.";
-$a->strings["UTF-8 Regular expressions"] = "UTF-8 Regulární výrazy";
-$a->strings["Use PHP UTF8 regular expressions"] = "Použít PHP UTF8 regulární výrazy.";
-$a->strings["Community Page Style"] = "Styl komunitní stránky";
-$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "Typ komunitní stránky k zobrazení. 'Glogální komunita' zobrazuje každý veřejný příspěvek z otevřené distribuované sítě, která dorazí na tento server.";
+$a->strings["Community pages for visitors"] = "Komunitní stránky pro návštěvníky";
+$a->strings["Which community pages should be available for visitors. Local users always see both pages."] = "Které komunitní stránky by měly být viditelné pro návštěvníky. Lokální uživatelé vždy vidí obě stránky.";
 $a->strings["Posts per user on community page"] = "Počet příspěvků na komunitní stránce";
 $a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "Maximální počet příspěvků na uživatele na komunitní sptránce. (neplatí pro 'Globální komunitu')";
 $a->strings["Enable OStatus support"] = "Zapnout podporu 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."] = "Poskytnout zabudouvanou kompatibilitu s OStatus (StatusNet, GNU Social apod.). Veškerá komunikace s OStatus je veřejná, proto bude občas zobrazeno upozornění.";
-$a->strings["OStatus conversation completion interval"] = "Interval dokončení konverzace OStatus";
-$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Jak často by mělo probíhat ověřování pro nové přísvěvky v konverzacích OStatus? Toto může být velmi výkonově náročný úkol.";
-$a->strings["Only import OStatus threads from our contacts"] = "";
-$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."] = "";
-$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "";
+$a->strings["Only import OStatus threads from our contacts"] = "Pouze importovat vlákna z OStatus z našich kontaktů";
+$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."] = "Běžně importujeme všechen obsah z našich kontaktů na OStatus. S touto volbou uchováváme vlákna počatá kontaktem, který je na našem systému známý.";
+$a->strings["OStatus support can only be enabled if threading is enabled."] = "Podpora pro OStatus může být zapnuta pouze, je-li povolen threading.";
+$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "Podpora pro Diasporu nemůže být zapnuta, protože Friendica byla nainstalována do podadresáře.";
 $a->strings["Enable Diaspora support"] = "Povolit podporu Diaspora";
 $a->strings["Provide built-in Diaspora network compatibility."] = "Poskytnout zabudovanou kompatibilitu sitě Diaspora.";
 $a->strings["Only allow Friendica contacts"] = "Povolit pouze Friendica kontakty";
@@ -1620,72 +1018,81 @@ $a->strings["Verify SSL"] = "Ověřit 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."] = "Pokud si přejete, můžete vynutit striktní ověřování certifikátů. To znamená že se nebudete moci připojit k žádnému serveru s vlastním SSL certifikátem.";
 $a->strings["Proxy user"] = "Proxy uživatel";
 $a->strings["Proxy URL"] = "Proxy URL adresa";
-$a->strings["Network timeout"] = "Ä\8das síťového spojení vyprÅ¡elo (timeout)";
+$a->strings["Network timeout"] = "Ä\8cas síťového spojení vyprÅ¡el (timeout)";
 $a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Hodnota ve vteřinách. Nastavte 0 pro neomezeno (není doporučeno).";
-$a->strings["Delivery interval"] = "Interval doručování";
-$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Prodleva mezi doručovacími procesy běžícími na pozadí snižuje zátěž systému. Doporučené nastavení: 4-5 pro sdílené instalace, 2-3 pro virtuální soukromé servery, 0-1 pro velké dedikované servery.";
-$a->strings["Poll interval"] = "Dotazovací interval";
-$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Tímto nastavením ovlivníte prodlení mezi aktualizačními procesy běžícími na pozadí, čímž můžete snížit systémovou zátěž. Pokud 0, použijte doručovací interval.";
 $a->strings["Maximum Load Average"] = "Maximální průměrné zatížení";
 $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximální zatížení systému před pozastavením procesů zajišťujících doručování aktualizací - defaultně 50";
 $a->strings["Maximum Load Average (Frontend)"] = "Maximální průměrné zatížení (Frontend)";
 $a->strings["Maximum system load before the frontend quits service - default 50."] = "Maximální zatížení systému předtím, než frontend ukončí službu - defaultně 50";
-$a->strings["Maximum table size for optimization"] = "";
-$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = "";
-$a->strings["Minimum level of fragmentation"] = "";
-$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "";
+$a->strings["Minimal Memory"] = "Minimální paměť";
+$a->strings["Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."] = "Minimální volná paměť v MB pro pracovníka. Potřebuje přístup do /proc/meminfo - výchozí hodnota 0 (deaktivováno)";
+$a->strings["Maximum table size for optimization"] = "Maximální velikost tabulky pro optimalizaci";
+$a->strings["Maximum table size (in MB) for the automatic optimization. Enter -1 to disable it."] = "Maximální velikost tabulky (v MB) pro automatickou optimalizaci. Zadáním -1 ji vypnete.";
+$a->strings["Minimum level of fragmentation"] = "Minimální úroveň fragmentace";
+$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "Minimální úroveň fragmentace pro spuštění automatické optimalizace - výchozí hodnota je 30%.";
 $a->strings["Periodical check of global contacts"] = "Pravidelně ověřování globálních kontaktů";
-$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["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "Pokud je toto povoleno, budou globální kontakty pravidelně kontrolovány pro zastaralá data a životnost kontaktů a serverů.";
+$a->strings["Days between requery"] = "Dny mezi dotazy";
+$a->strings["Number of days after which a server is requeried for his contacts."] = "Počet dnů, po kterých je server znovu dotázán na své kontakty";
 $a->strings["Discover contacts from other servers"] = "Objevit kontakty z ostatních serverů";
-$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["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'."] = "Periodicky dotazovat ostatní servery pro kontakty. Můžete si vybrat mezi možnostmi: \"uživatelé\" - uživatelé na vzdáleném systému, a \"globální kontakty\" - aktivní kontakty, které jsou známy na systému. Funkce fallback je určena pro servery Redmatrix a starší servery Friendica, kde globální kontakty nejsou dostupné. Fallback zvyšuje serverovou zátěž, doporučené nastavení je proto \"Uživatelé, globální kontakty\".";
+$a->strings["Timeframe for fetching global contacts"] = "Časový rámec pro načítání globálních kontaktů";
+$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."] = "Pokud je aktivováno objevování, tato hodnota definuje časový rámec pro aktivitu globálních kontaktů, které jsou načteny z jiných serverů.";
 $a->strings["Search the local directory"] = "Hledat  v lokálním adresáři";
-$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["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."] = "Prohledat lokální adresář místo globálního adresáře. Při lokálním prohledávání bude každé hledání provedeno v globálním adresáři na pozadí. To vylepšuje výsledky při zopakování hledání.";
 $a->strings["Publish server information"] = "Zveřejnit informace o serveru";
-$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["Use MySQL full text engine"] = "Použít fulltextový vyhledávací stroj MySQL";
-$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Aktivuje fulltextový vyhledávací stroj. Zrychluje vyhledávání ale pouze pro vyhledávání čtyř a více znaků";
-$a->strings["Suppress Language"] = "Potlačit Jazyk";
-$a->strings["Suppress language information in meta information about a posting."] = "Potlačit jazykové informace v meta informacích o příspěvcích";
+$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."] = "Pokud je toto povoleno, budou zveřejněna obecná data o serveru a jeho používání. Data obsahují jméno a verzi serveru, počet uživatelů s vřejnými profily, počet příspěvků a aktivované protokoly a konektory. Pro více informací navštivte <a href='http://the-federation.info/'>the-federation.info</a>.";
+$a->strings["Check upstream version"] = "Zkontrolovat upstreamovou verzi";
+$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žní kontrolovat nové verze Friendica na GitHubu. Pokud existuje nová verze, budete informován/a na přehledu administračního panelu.";
 $a->strings["Suppress Tags"] = "Potlačit štítky";
-$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Potlačit zobrazení listu hastagů na konci zprávy.";
-$a->strings["Path to item cache"] = "Cesta k položkám vyrovnávací paměti";
+$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Potlačit zobrazení seznamu hastagů na konci příspěvků.";
+$a->strings["Clean database"] = "Vyčistit databázi";
+$a->strings["Remove old remote items, orphaned database records and old content from some other helper tables."] = "Odstranit staré vzdálené položky, osiřelé záznamy v databázi a starý obsah z některých dalších pomocných tabulek.";
+$a->strings["Lifespan of remote items"] = "Životnost vzdálených položek";
+$a->strings["When the database cleanup is enabled, this defines the days after which remote items will be deleted. Own items, and marked or filed items are always kept. 0 disables this behaviour."] = "Pokud je zapnuto čištění databáze, tato funkce definuje dny, po kterých budou vzdálené položky smazány. Vlastní položky a označené či vyplněné položky jsou vždy ponechány. Hodnota 0 tuto funkci vypíná.";
+$a->strings["Lifespan of unclaimed items"] = "";
+$a->strings["When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0."] = "";
+$a->strings["Path to item cache"] = "Cesta k položkám v mezipaměti";
 $a->strings["The item caches buffers generated bbcode and external images."] = "";
 $a->strings["Cache duration in seconds"] = "Doba platnosti vyrovnávací paměti v sekundách";
 $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 dlouho by měla vyrovnávací paměť držet data? Výchozí hodnota je 86400 sekund (Jeden den). Pro vypnutí funkce vyrovnávací paměti nastavte hodnotu na -1.";
 $a->strings["Maximum numbers of comments per post"] = "Maximální počet komentářů k příspěvku";
 $a->strings["How much comments should be shown for each post? Default value is 100."] = "Kolik komentářů by mělo být zobrazeno k každému příspěvku? Defaultní hodnota je 100.";
-$a->strings["Path for lock file"] = "Cesta k souboru zámku";
-$a->strings["The lock file is used to avoid multiple pollers at one time. Only define a folder here."] = "";
 $a->strings["Temp path"] = "Cesta k dočasným souborům";
 $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"] = "Základní cesta k instalaci";
 $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"] = "Vypnutí obrázkové proxy";
-$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Obrázková proxi zvyšuje výkonnost a soukromí. Neměla by být použita na systémech s pomalým připojením k síti.";
-$a->strings["Enable old style pager"] = "Aktivovat \"old style\" stránkování ";
-$a->strings["The old style pager has page numbers but slows down massively the page speed."] = " \"old style\" stránkování zobrazuje čísla stránek ale značně zpomaluje rychlost stránky.";
+$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "";
 $a->strings["Only search in tags"] = "Hledat pouze ve štítkách";
 $a->strings["On large systems the text search can slow down the system extremely."] = "Textové vyhledávání může u rozsáhlých systémů znamenat velmi citelné zpomalení systému.";
 $a->strings["New base url"] = "Nová výchozí url adresa";
-$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "";
+$a->strings["Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users."] = "";
 $a->strings["RINO Encryption"] = "RINO Šifrování";
 $a->strings["Encryption layer between nodes."] = "Šifrovací vrstva mezi nódy.";
-$a->strings["Embedly API key"] = "";
-$a->strings["<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for web pages. This is an optional parameter."] = "";
-$a->strings["Enable 'worker' background processing"] = "";
-$a->strings["The worker background processing limits the number of parallel background jobs to a maximum number and respects the system load."] = "";
+$a->strings["Enabled"] = "Povoleno";
 $a->strings["Maximum number of parallel workers"] = "";
 $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 poller calls in your crontab."] = "";
+$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"] = "";
 $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"] = "";
-$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/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. The worker background process needs to be activated for this."] = "";
+$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"] = "";
+$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"] = "";
+$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"] = "";
+$a->strings["Enables the direct transfer to other servers without using the relay servers"] = "";
+$a->strings["Relay scope"] = "";
+$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"] = "";
+$a->strings["tags"] = "";
+$a->strings["Server tags"] = "Serverové štítky";
+$a->strings["Comma separated list of tags for the 'tags' subscription."] = "Seznam štítků pro odběr \"tags\", oddělených čárkami.";
+$a->strings["Allow user tags"] = "Povolit uživatelské štítky";
+$a->strings["If enabled, the tags from the saved searches will used for the 'tags' subscription in addition to the 'relay_server_tags'."] = "Pokud je toto povoleno, budou štítky z uložených hledání vedle odběru \"relay_server_tags\" použity i pro odběr \"tags\".";
 $a->strings["Update has been marked successful"] = "Aktualizace byla označena jako úspěšná.";
 $a->strings["Database structure update %s was successfully applied."] = "Aktualizace struktury databáze %s byla úspěšně aplikována.";
 $a->strings["Executing of database structure update %s failed with error: %s"] = "Provádění aktualizace databáze %s skončilo chybou: %s";
@@ -1699,34 +1106,46 @@ $a->strings["Failed Updates"] = "Neúspěšné aktualizace";
 $a->strings["This does not include updates prior to 1139, which did not return a status."] = "To nezahrnuje aktualizace do verze 1139, které nevracejí žádný status.";
 $a->strings["Mark success (if update was manually applied)"] = "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)";
 $a->strings["Attempt to execute this update step automatically"] = "Pokusit se provést tuto aktualizaci automaticky.";
-$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\tDrahý %1\$s,\n\t\t\t\tadministrátor webu %2\$s pro Vás vytvořil uživatelský účet.";
-$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\tThank you and welcome to %4\$s."] = "\n\t\t\tVaše přihlašovací údaje jsou následující:\n\n\t\t\tAdresa webu: \t%1\$s\n\t\t\tpřihlašovací jméno:\t\t%2\$s\n\t\t\theslo:\t\t%3\$s\n\n\t\t\tHeslo si můžete změnit na stránce \"Nastavení\" vašeho účtu poté, co se přihlásíte.\n\n\t\t\tProsím věnujte pár chvil revizi dalšího nastavení vašeho účtu na dané stránce.\n\n\t\t\tTaké su můžete přidat nějaké základní informace do svého výchozího profilu (na stránce \"Profily\"), takže ostatní lidé vás snáze najdou. \n\n\t\t\tDoporučujeme Vám uvést celé jméno a i foto. Přidáním nějakých \"klíčových slov\" (velmi užitečné pro hledání nových přátel) a možná také zemi, ve které žijete, pokud nechcete být více konkrétní.\n\n\t\t\tPlně resepktujeme vaše právo na soukromí a nic z výše uvedeného není povinné. Pokud jste zde nový a neznáte zde nikoho, uvedením daných informací můžete získat nové přátele.\n\n\t\t\tDíky a vítejte na %4\$s.";
+$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\tVážený/á%1\$s,\n\t\t\t\tadministrátor %2\$s pro Vás vytvořil/a uživatelský účet.";
+$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\tZde jsou vaše přihlašovací detaily:\n\n\t\t\tAdresa stránky:\t\t%1\$s\n\t\t\tPřihlašovací jméno:\t%2\$s\n\t\t\tHeslo:\t\t\t%3\$s\n\n\t\t\tSvé heslo si po přihlášení můžete změnit na stránce \"Nastavení\" vašeho\n\t\t\túčtu.\n\n\t\t\tProsím, prohlédněte si na chvilku ostatní nastavení účtu na té stránce.\n\n\t\t\tMožná byste si také přáli přidat pár základních informací na svůj výchozí\n\t\t\tprofil (na stránce \"Profily\") aby vás další lidé mohli snadno najít.\n\t\t\tDoporučujeme nastavit si vaše celé jméno, přidat profilovou fotku,\n\t\t\tpřidat pár \"klíčových slov\" k profilu (velmi užitečné při získávání nových\n\t\t\tpřátel) - a možná v jaké zemi žijete; pokud nechcete být konkrétnější.\n\n\t\t\tZcela respektujeme vaše právo na soukromí a žádnou z těchto položek\n\t\t\tnení potřeba vyplňovat. Pokud jste zde nový/á a nikoho zde neznáte, mohou vám\n\t\t\tpomoci si získat nové a zajímavé přátele.\n\t\t\tPokud byste si někdy přál/a smazat účet, může tak učinit na stránce\n\t\t\t%1\$s/removeme.\n\n\t\t\tDěkujeme vám a vítáme vás na %4\$s.";
+$a->strings["Registration details for %s"] = "Registrační údaje pro %s";
 $a->strings["%s user blocked/unblocked"] = [
        0 => "%s uživatel blokován/odblokován",
        1 => "%s uživatelů blokováno/odblokováno",
        2 => "%s uživatelů blokováno/odblokováno",
+       3 => "%s uživatelů blokováno/odblokováno",
 ];
 $a->strings["%s user deleted"] = [
        0 => "%s uživatel smazán",
        1 => "%s uživatelů smazáno",
        2 => "%s uživatelů smazáno",
+       3 => "%s uživatelů smazáno",
 ];
 $a->strings["User '%s' deleted"] = "Uživatel '%s' smazán";
 $a->strings["User '%s' unblocked"] = "Uživatel '%s' odblokován";
 $a->strings["User '%s' blocked"] = "Uživatel '%s' blokován";
-$a->strings["Register date"] = "Datum registrace";
-$a->strings["Last login"] = "Datum posledního přihlášení";
+$a->strings["Normal Account Page"] = "Normální stránka účtu";
+$a->strings["Soapbox Page"] = "Stránka \"Soapbox\"";
+$a->strings["Public Forum"] = "Veřejné fórum";
+$a->strings["Automatic Friend Page"] = "Automatická stránka přítele";
+$a->strings["Private Forum"] = "Soukromé fórum";
+$a->strings["Personal Page"] = "Osobní stránka";
+$a->strings["Organisation Page"] = "Stránka organizace";
+$a->strings["News Page"] = "Zpravodajská stránka";
+$a->strings["Community Forum"] = "Komunitní fórum";
+$a->strings["Email"] = "E-mail";
+$a->strings["Register date"] = "Datum registrace";
+$a->strings["Last login"] = "Datum posledního přihlášení";
 $a->strings["Last item"] = "Poslední položka";
+$a->strings["Type"] = "Typ";
 $a->strings["Add User"] = "Přidat Uživatele";
-$a->strings["select all"] = "Vybrat vše";
 $a->strings["User registrations waiting for confirm"] = "Registrace uživatele čeká na potvrzení";
 $a->strings["User waiting for permanent deletion"] = "Uživatel čeká na trvalé smazání";
 $a->strings["Request date"] = "Datum žádosti";
 $a->strings["No registrations."] = "Žádné registrace.";
-$a->strings["Note from the user"] = "";
+$a->strings["Note from the user"] = "Poznámka od uživatele";
+$a->strings["Approve"] = "Schválit";
 $a->strings["Deny"] = "Odmítnout";
-$a->strings["Block"] = "Blokovat";
-$a->strings["Unblock"] = "Odblokovat";
 $a->strings["Site admin"] = "Site administrátor";
 $a->strings["Account expired"] = "Účtu vypršela platnost";
 $a->strings["New User"] = "Nový uživatel";
@@ -1737,120 +1156,53 @@ $a->strings["Name of the new user."] = "Jméno nového uživatele";
 $a->strings["Nickname"] = "Přezdívka";
 $a->strings["Nickname of the new user."] = "Přezdívka nového uživatele.";
 $a->strings["Email address of the new user."] = "Emailová adresa nového uživatele.";
-$a->strings["Plugin %s disabled."] = "Plugin %s zakázán.";
-$a->strings["Plugin %s enabled."] = "Plugin %s povolen.";
+$a->strings["Addon %s disabled."] = "Doplněk %s zakázán.";
+$a->strings["Addon %s enabled."] = "Doplněk %s povolen.";
 $a->strings["Disable"] = "Zakázat";
 $a->strings["Enable"] = "Povolit";
 $a->strings["Toggle"] = "Přepnout";
 $a->strings["Author: "] = "Autor: ";
 $a->strings["Maintainer: "] = "Správce: ";
-$a->strings["Reload active plugins"] = "";
-$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = "";
-$a->strings["No themes found."] = "Nenalezeny Å¾Ã¡dná témata.";
+$a->strings["Reload active addons"] = "Znovu načíst aktivní doplňky";
+$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"] = "Aktuálně nejsou na Vašem serveru k dispozici žádné doplňky. Oficiální repozitář doplňků najdete na %1\$s a další zajímavé doplňky můžete najít v otevřeném registru doplňků na %2\$s";
+$a->strings["No themes found."] = "Nenalezeny Å¾Ã¡dné motivy.";
 $a->strings["Screenshot"] = "Snímek obrazovky";
-$a->strings["Reload active themes"] = "";
-$a->strings["No themes found on the system. They should be paced in %1\$s"] = "";
+$a->strings["Reload active themes"] = "Znovu načíst aktivní motivy";
+$a->strings["No themes found on the system. They should be placed in %1\$s"] = "V systému nebyly nalezeny žádné motivy. Měly by být uloženy v %1\$s";
 $a->strings["[Experimental]"] = "[Experimentální]";
 $a->strings["[Unsupported]"] = "[Nepodporováno]";
 $a->strings["Log settings updated."] = "Nastavení protokolu aktualizováno.";
-$a->strings["PHP log currently enabled."] = "";
-$a->strings["PHP log currently disabled."] = "";
+$a->strings["PHP log currently enabled."] = "PHP záznamy jsou aktuálně povolené.";
+$a->strings["PHP log currently disabled."] = "PHP záznamy jsou aktuálně povolené.";
 $a->strings["Clear"] = "Vyčistit";
 $a->strings["Enable Debugging"] = "Povolit ladění";
 $a->strings["Log file"] = "Soubor s logem";
 $a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Musí být editovatelné web serverem. Relativní cesta k vašemu kořenovému adresáři Friendica";
 $a->strings["Log level"] = "Úroveň auditu";
-$a->strings["PHP logging"] = "";
-$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["PHP logging"] = "Záznamování 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."] = "Pro umožnění zaznamenávání PHP chyb a varování, můžete přidat do souboru .htconfig.php na vaší instalaci následující: Název souboru nastavený v řádku \"error_log\" je relativní ke kořenovému adresáři Friendica a webový server musí mít povolení na něj zapisovat. Možnost \"1\" pro \"log_errors\" a \"display_errors\" tyto funkce povoluje, nastavením hodnoty na \"0\" je zakážete.";
+$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."] = "Chyba při otevírání záznamu <strong>%1\$s</strong>.\\r\\n<br/>Zkontrolujte, jestli soubor %1\$s existuje a může se číst.";
+$a->strings["Couldn't open <strong>%1\$s</strong> log file.\\r\\n<br/>Check to see if file %1\$s is readable."] = "Nelze otevřít záznam <strong>%1\$s</strong>.\\r\\n<br/>Zkontrolujte, jestli se soubor %1\$s může číst.";
+$a->strings["Off"] = "Vypnuto";
+$a->strings["On"] = "Zapnuto";
 $a->strings["Lock feature %s"] = "";
 $a->strings["Manage Additional Features"] = "";
-$a->strings["%d contact edited."] = [
-       0 => "",
-       1 => "",
-       2 => "",
-];
-$a->strings["Could not access contact record."] = "Nelze získat přístup k záznamu kontaktu.";
-$a->strings["Could not locate selected profile."] = "Nelze nalézt vybraný profil.";
-$a->strings["Contact updated."] = "Kontakt aktualizován.";
-$a->strings["Failed to update contact record."] = "Nepodařilo se aktualizovat kontakt.";
-$a->strings["Contact has been blocked"] = "Kontakt byl zablokován";
-$a->strings["Contact has been unblocked"] = "Kontakt byl odblokován";
-$a->strings["Contact has been ignored"] = "Kontakt bude ignorován";
-$a->strings["Contact has been unignored"] = "Kontakt přestal být ignorován";
-$a->strings["Contact has been archived"] = "Kontakt byl archivován";
-$a->strings["Contact has been unarchived"] = "Kontakt byl vrácen z archívu.";
-$a->strings["Drop contact"] = "";
-$a->strings["Do you really want to delete this contact?"] = "Opravdu chcete smazat tento kontakt?";
-$a->strings["Contact has been removed."] = "Kontakt byl odstraněn.";
-$a->strings["You are mutual friends with %s"] = "Jste vzájemní přátelé s uživatelem %s";
-$a->strings["You are sharing with %s"] = "Sdílíte s uživatelem %s";
-$a->strings["%s is sharing with you"] = "uživatel %s sdílí s vámi";
-$a->strings["Private communications are not available for this contact."] = "Soukromá komunikace není dostupná pro tento kontakt.";
-$a->strings["(Update was successful)"] = "(Aktualizace byla úspěšná)";
-$a->strings["(Update was not successful)"] = "(Aktualizace nebyla úspěšná)";
-$a->strings["Suggest friends"] = "Navrhněte přátelé";
-$a->strings["Network type: %s"] = "Typ sítě: %s";
-$a->strings["Communications lost with this contact!"] = "Komunikace s tímto kontaktem byla ztracena!";
-$a->strings["Fetch further information for feeds"] = "Načítat další informace pro kanál";
-$a->strings["Fetch information"] = "Načítat informace";
-$a->strings["Fetch information and keywords"] = "Načítat informace a klíčová slova";
-$a->strings["Contact"] = "";
-$a->strings["Profile Visibility"] = "Viditelnost profilu";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu.";
-$a->strings["Contact Information / Notes"] = "Kontaktní informace / poznámky";
-$a->strings["Edit contact notes"] = "Editovat poznámky kontaktu";
-$a->strings["Block/Unblock contact"] = "Blokovat / Odblokovat kontakt";
-$a->strings["Ignore contact"] = "Ignorovat kontakt";
-$a->strings["Repair URL settings"] = "Opravit nastavení adresy URL ";
-$a->strings["View conversations"] = "Zobrazit konverzace";
-$a->strings["Last update:"] = "Poslední aktualizace:";
-$a->strings["Update public posts"] = "Aktualizovat veřejné příspěvky";
-$a->strings["Update now"] = "Aktualizovat";
-$a->strings["Unignore"] = "Přestat ignorovat";
-$a->strings["Currently blocked"] = "V současnosti zablokováno";
-$a->strings["Currently ignored"] = "V současnosti ignorováno";
-$a->strings["Currently archived"] = "Aktuálně archivován";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Odpovědi/Libí se na Vaše veřejné příspěvky <strong>mohou být</strong> stále viditelné";
-$a->strings["Notification for new posts"] = "Upozornění na nové příspěvky";
-$a->strings["Send a notification of every new post of this contact"] = "Poslat upozornění při každém novém příspěvku tohoto kontaktu";
-$a->strings["Blacklisted keywords"] = "Zakázaná klíčová slova";
-$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Čárkou oddělený seznam klíčových slov, které by neměly být převáděna na hashtagy, když je zvoleno \"Načítat informace a klíčová slova\"";
-$a->strings["Actions"] = "";
-$a->strings["Contact Settings"] = "";
-$a->strings["Suggestions"] = "Doporučení";
-$a->strings["Suggest potential friends"] = "Navrhnout potenciální přátele";
-$a->strings["Show all contacts"] = "Zobrazit všechny kontakty";
-$a->strings["Unblocked"] = "Odblokován";
-$a->strings["Only show unblocked contacts"] = "Zobrazit pouze neblokované kontakty";
-$a->strings["Blocked"] = "Blokován";
-$a->strings["Only show blocked contacts"] = "Zobrazit pouze blokované kontakty";
-$a->strings["Ignored"] = "Ignorován";
-$a->strings["Only show ignored contacts"] = "Zobrazit pouze ignorované kontakty";
-$a->strings["Archived"] = "Archivován";
-$a->strings["Only show archived contacts"] = "Zobrazit pouze archivované kontakty";
-$a->strings["Hidden"] = "Skrytý";
-$a->strings["Only show hidden contacts"] = "Zobrazit pouze skryté kontakty";
-$a->strings["Search your contacts"] = "Prohledat Vaše kontakty";
-$a->strings["Archive"] = "Archivovat";
-$a->strings["Unarchive"] = "Vrátit z archívu";
-$a->strings["Batch Actions"] = "";
-$a->strings["View all contacts"] = "Zobrazit všechny kontakty";
-$a->strings["View all common friends"] = "";
-$a->strings["Advanced Contact Settings"] = "Pokročilé nastavení kontaktu";
-$a->strings["Mutual Friendship"] = "Vzájemné přátelství";
-$a->strings["is a fan of yours"] = "je Váš fanoušek";
-$a->strings["you are a fan of"] = "jste fanouškem";
-$a->strings["Toggle Blocked status"] = "Přepnout stav Blokováno";
-$a->strings["Toggle Ignored status"] = "Přepnout stav Ignorováno";
-$a->strings["Toggle Archive status"] = "Přepnout stav Archivováno";
-$a->strings["Delete contact"] = "Odstranit kontakt";
+$a->strings["Community option not available."] = "";
+$a->strings["Not available."] = "Není k dispozici.";
+$a->strings["Local Community"] = "Lokální komunita";
+$a->strings["Posts from local users on this server"] = "";
+$a->strings["Global Community"] = "Globální komunita";
+$a->strings["Posts from users of the whole federated network"] = "Příspěvky od uživatelů z celé federované sítě";
+$a->strings["No results."] = "Žádné výsledky.";
+$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "Tento komunitní proud ukazuje všechny veřejné příspěvky, které tento server přijme. Nemusí odrážet názory uživatelů serveru.";
+$a->strings["Profile not found."] = "Profil nenalezen";
 $a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "To se může občas stát pokud kontakt byl zažádán oběma osobami a již byl schválen.";
 $a->strings["Response from remote site was not understood."] = "Odpověď ze vzdáleného serveru nebyla srozumitelná.";
 $a->strings["Unexpected response from remote site: "] = "Neočekávaná odpověď od vzdáleného serveru:";
 $a->strings["Confirmation completed successfully."] = "Potvrzení úspěšně dokončena.";
-$a->strings["Remote site reported: "] = "Vzdálený server oznámil:";
 $a->strings["Temporary failure. Please wait and try again."] = "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu.";
 $a->strings["Introduction failed or was revoked."] = "Žádost o propojení selhala nebo byla zrušena.";
+$a->strings["Remote site reported: "] = "Vzdálený server oznámil:";
 $a->strings["Unable to set contact photo."] = "Nelze nastavit fotografii kontaktu.";
 $a->strings["No user record found for '%s' "] = "Pro '%s' nenalezen žádný uživatelský záznam ";
 $a->strings["Our site encryption key is apparently messed up."] = "Náš šifrovací klíč zřejmě přestal správně fungovat.";
@@ -1860,7 +1212,7 @@ $a->strings["Site public key not available in contact record for URL %s."] = "V
 $a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci zopakovat.";
 $a->strings["Unable to set your contact credentials on our system."] = "Nelze nastavit Vaše přihlašovací údaje v našem systému.";
 $a->strings["Unable to update your contact profile details on our system"] = "Nelze aktualizovat Váš profil v našem systému";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s se připojil k %2\$s";
+$a->strings["[Name Withheld]"] = "[Jméno odepřeno]";
 $a->strings["This introduction has already been accepted."] = "Toto pozvání již bylo přijato.";
 $a->strings["Profile location is not valid or does not contain profile information."] = "Adresa profilu není platná nebo neobsahuje profilové informace";
 $a->strings["Warning: profile location has no identifiable owner name."] = "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka";
@@ -1869,6 +1221,7 @@ $a->strings["%d required parameter was not found at the given location"] = [
        0 => "%d požadovaný parametr nebyl nalezen na daném místě",
        1 => "%d požadované parametry nebyly nalezeny na daném místě",
        2 => "%d požadované parametry nebyly nalezeny na daném místě",
+       3 => "%d požadované parametry nebyly nalezeny na daném místě",
 ];
 $a->strings["Introduction complete."] = "Představení dokončeno.";
 $a->strings["Unrecoverable protocol error."] = "Neopravitelná chyba protokolu";
@@ -1877,13 +1230,12 @@ $a->strings["%s has received too many connection requests today."] = "%s dnes ob
 $a->strings["Spam protection measures have been invoked."] = "Ochrana proti spamu byla aktivována";
 $a->strings["Friends are advised to please try again in 24 hours."] = "Přátelům se doporučuje to zkusit znovu za 24 hodin.";
 $a->strings["Invalid locator"] = "Neplatný odkaz";
-$a->strings["Invalid email address."] = "Neplatná emailová adresa";
-$a->strings["This account has not been configured for email. Request failed."] = "Tento účet nebyl nastaven pro email. Požadavek nesplněn.";
 $a->strings["You have already introduced yourself here."] = "Již jste se zde zavedli.";
 $a->strings["Apparently you are already friends with %s."] = "Zřejmě jste již přátelé se %s.";
 $a->strings["Invalid profile URL."] = "Neplatné URL profilu.";
+$a->strings["Disallowed profile URL."] = "Nepovolené URL profilu.";
 $a->strings["Your introduction has been sent."] = "Vaše žádost o propojení byla odeslána.";
-$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "";
+$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Vzdálený odběr nemůže být na Vaší síti proveden. Prosím, přihlaste se k odběru přímo na Vašem systému.";
 $a->strings["Please login to confirm introduction."] = "Prosím přihlašte se k potvrzení žádosti o propojení.";
 $a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Jste přihlášeni pod nesprávnou identitou  Prosím, přihlaste se do <strong>tohoto</strong> profilu.";
 $a->strings["Confirm"] = "Potvrdit";
@@ -1891,116 +1243,71 @@ $a->strings["Hide this contact"] = "Skrýt tento kontakt";
 $a->strings["Welcome home %s."] = "Vítejte doma %s.";
 $a->strings["Please confirm your introduction/connection request to %s."] = "Prosím potvrďte Vaši žádost o propojení %s.";
 $a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Prosím zadejte Vaši adresu identity jedné z následujících podporovaných komunikačních sítí:";
-$a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "";
+$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>."] = "Pokud ještě nejste členem svobodného sociálního webu, <a href=\"%s\">klikněte na tento odkaz, najděte si veřejný server Friendica a připojte se k nám ještě dnes</a>.";
 $a->strings["Friend/Connection Request"] = "Požadavek o přátelství / kontaktování";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Odpovězte, prosím, následující:";
-$a->strings["Does %s know you?"] = "Zná Vás uživatel %s ?";
-$a->strings["Add a personal note:"] = "Přidat osobní poznámku:";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet / Federativní Sociální Web";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"] = "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de";
+$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."] = " - prosím nepoužívejte tento formulář.  Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole.";
-$a->strings["Your Identity Address:"] = "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\".";
-$a->strings["Submit Request"] = "Odeslat žádost";
-$a->strings["You already added this contact."] = "Již jste si tento kontakt přidali.";
-$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "";
-$a->strings["OStatus support is disabled. Contact can't be added."] = "";
-$a->strings["The network type couldn't be detected. Contact can't be added."] = "";
-$a->strings["Contact added"] = "Kontakt přidán";
-$a->strings["Friendica Communications Server - Setup"] = "Friendica Komunikační server - Nastavení";
-$a->strings["Could not connect to database."] = "Nelze se připojit k databázi.";
-$a->strings["Could not create table."] = "Nelze vytvořit tabulku.";
-$a->strings["Your Friendica site database has been installed."] = "Vaše databáze Friendica  byla nainstalována.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do Vašeho adresáře - i když Vy můžete.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Přečtěte si prosím informace v souboru \"INSTALL.txt\".";
-$a->strings["Database already in use."] = "Databáze se již používá.";
-$a->strings["System check"] = "Testování systému";
-$a->strings["Check again"] = "Otestovat znovu";
-$a->strings["Database connection"] = "Databázové spojení";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru, ";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním.";
-$a->strings["Database Server Name"] = "Jméno databázového serveru";
-$a->strings["Database Login Name"] = "Přihlašovací jméno k databázi";
-$a->strings["Database Login Password"] = "Heslo k databázovému účtu ";
-$a->strings["Database Name"] = "Jméno databáze";
-$a->strings["Site administrator email address"] = "Emailová adresa administrátora webu";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní.";
-$a->strings["Please select a default timezone for your website"] = "Prosím, vyberte výchozí časové pásmo pro váš server";
-$a->strings["Site settings"] = "Nastavení webu";
-$a->strings["System Language:"] = "";
-$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru.";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "";
-$a->strings["PHP executable path"] = "Cesta k \"PHP executable\"";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Zadejte plnou cestu k spustitelnému souboru php. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci.";
-$a->strings["Command line PHP"] = "Příkazový řádek PHP";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP executable není php cli binary (může být verze cgi-fgci)";
-$a->strings["Found PHP version: "] = "Nalezena PHP verze:";
-$a->strings["PHP cli binary"] = "PHP cli binary";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu.";
-$a->strings["This is required for message delivery to work."] = "Toto je nutné pro fungování doručování zpráv.";
-$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"] = "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Pokud systém běží na Windows, seznamte se s \"http://www.php.net/manual/en/openssl.installation.php\".";
-$a->strings["Generate encryption keys"] = "Generovat kriptovací klíče";
-$a->strings["libCurl PHP module"] = "libCurl PHP modul";
-$a->strings["GD graphics PHP module"] = "GD graphics PHP modul";
-$a->strings["OpenSSL PHP module"] = "OpenSSL PHP modul";
-$a->strings["mysqli PHP module"] = "mysqli PHP modul";
-$a->strings["mb_string PHP module"] = "mb_string PHP modul";
-$a->strings["mcrypt PHP module"] = "";
-$a->strings["XML PHP module"] = "";
-$a->strings["iconv module"] = "";
-$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite modul";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Chyba: požadovaný libcurl PHP modul není nainstalován.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Chyba: požadovaný GD graphics PHP modul není nainstalován.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Chyba: požadovaný openssl PHP modul není nainstalován.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Chyba: požadovaný mysqli PHP modul není nainstalován.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Chyba: PHP modul mb_string  je vyžadován, ale není nainstalován.";
-$a->strings["Error: mcrypt PHP module required but not installed."] = "";
-$a->strings["Error: iconv PHP module required but not installed."] = "";
-$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = "";
-$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "";
-$a->strings["mcrypt_create_iv() function"] = "";
-$a->strings["Error, XML PHP module required but not installed."] = "";
-$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."] = "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři vašeho webového serveru ale nyní mu to není umožněno.";
-$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."] = "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když Vy můžete.";
-$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."] = "Na konci této procedury obd nás obdržíte text k uložení v souboru pojmenovaném .htconfig.php ve Vašem Friendica kořenovém adresáři.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor \"INSTALL.txt\" pro další instrukce.";
-$a->strings[".htconfig.php is writable"] = ".htconfig.php je editovatelné";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování.";
-$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."] = "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře";
-$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."] = "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 je nastaven pro zápis";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Url rewrite v .htconfig nefunguje. Prověřte prosím Vaše nastavení serveru.";
-$a->strings["Url rewrite is working"] = "Url rewrite je funkční.";
-$a->strings["ImageMagick PHP extension is not installed"] = "";
-$a->strings["ImageMagick PHP extension is installed"] = "";
-$a->strings["ImageMagick supports 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."] = "Databázový konfigurační soubor \".htconfig.php\" nemohl být uložen. Prosím, použijte přiložený text k vytvoření konfiguračního souboru ve vašem kořenovém adresáři webového serveru.";
-$a->strings["<h1>What next</h1>"] = "<h1>Co dál<h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři Vašeho webového serveru ale nyní mu to není umožněno.";
+$a->strings["Event can not end before it has started."] = "Událost nemůže končit dříve, než začala.";
+$a->strings["Event title and start time are required."] = "Název události a datum začátku jsou vyžadovány.";
+$a->strings["Create New Event"] = "Vytvořit novou událost";
+$a->strings["Event details"] = "Detaily události";
+$a->strings["Starting date and Title are required."] = "Počáteční datum a Název jsou vyžadovány.";
+$a->strings["Event Starts:"] = "Událost začíná:";
+$a->strings["Required"] = "Vyžadováno";
+$a->strings["Finish date/time is not known or not relevant"] = "Datum/čas konce není zadán nebo není relevantní";
+$a->strings["Event Finishes:"] = "Akce končí:";
+$a->strings["Adjust for viewer timezone"] = "Nastavit časové pásmo pro uživatele s právem pro čtení";
+$a->strings["Description:"] = "Popis:";
+$a->strings["Title:"] = "Název:";
+$a->strings["Share this event"] = "Sdílet tuto událost";
+$a->strings["Basic"] = "Základní";
+$a->strings["Permissions"] = "Oprávnění:";
+$a->strings["Failed to remove event"] = "Odstranění události selhalo";
+$a->strings["Event removed"] = "Událost odstraněna";
+$a->strings["Group created."] = "Skupina vytvořena.";
+$a->strings["Could not create group."] = "Nelze vytvořit skupinu.";
+$a->strings["Group not found."] = "Skupina nenalezena.";
+$a->strings["Group name changed."] = "Název skupiny byl změněn.";
+$a->strings["Save Group"] = "Uložit Skupinu";
+$a->strings["Create a group of contacts/friends."] = "Vytvořit skupinu kontaktů / přátel.";
+$a->strings["Group Name: "] = "Název skupiny: ";
+$a->strings["Group removed."] = "Skupina odstraněna. ";
+$a->strings["Unable to remove group."] = "Nelze odstranit skupinu.";
+$a->strings["Delete Group"] = "Odstranit skupinu";
+$a->strings["Group Editor"] = "Editor skupin";
+$a->strings["Edit Group Name"] = "Upravit název skupiny";
+$a->strings["Members"] = "Členové";
+$a->strings["Group is empty"] = "Skupina je prázdná";
+$a->strings["Remove contact from group"] = "Odebrat kontakt ze skupiny";
+$a->strings["Add contact to group"] = "Přidat kontakt ke skupině";
 $a->strings["Unable to locate original post."] = "Nelze nalézt původní příspěvek.";
 $a->strings["Empty post discarded."] = "Prázdný příspěvek odstraněn.";
-$a->strings["System error. Post not saved."] = "Chyba systému. Příspěvek nebyl uložen.";
 $a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Tato zpráva vám byla zaslána od %s, člena sociální sítě Friendica.";
 $a->strings["You may visit them online at %s"] = "Můžete je navštívit online na adrese %s";
 $a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam.";
 $a->strings["%s posted an update."] = "%s poslal aktualizaci.";
+$a->strings["Remove term"] = "Odstranit termín";
+$a->strings["Saved Searches"] = "Uložená hledání";
+$a->strings["add"] = "přidat";
 $a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [
-       0 => "",
-       1 => "",
-       2 => "",
+       0 => "Varování: Tato skupina obsahuje %s člena ze sítě, která nepovoluje posílání soukromých zpráv.",
+       1 => "Varování: Tato skupina obsahuje %s členy ze sítě, která nepovoluje posílání soukromých zpráv.",
+       2 => "Varování: Tato skupina obsahuje %s členů ze sítě, která nepovoluje posílání soukromých zpráv.",
+       3 => "Varování: Tato skupina obsahuje %s členů ze sítě, která nepovoluje posílání soukromých zpráv.",
 ];
-$a->strings["Messages in this group won't be send to these receivers."] = "";
+$a->strings["Messages in this group won't be send to these receivers."] = "Zprávy v této skupině nebudou těmto příjemcům doručeny.";
+$a->strings["No such group"] = "Žádná taková skupina";
+$a->strings["Group: %s"] = "Skupina: %s";
 $a->strings["Private messages to this person are at risk of public disclosure."] = "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení.";
 $a->strings["Invalid contact."] = "Neplatný kontakt.";
 $a->strings["Commented Order"] = "Dle komentářů";
 $a->strings["Sort by Comment Date"] = "Řadit podle data komentáře";
 $a->strings["Posted Order"] = "Dle data";
 $a->strings["Sort by Post Date"] = "Řadit podle data příspěvku";
+$a->strings["Personal"] = "Osobní";
 $a->strings["Posts that mention or involve you"] = "Příspěvky, které Vás zmiňují nebo zahrnují";
 $a->strings["New"] = "Nové";
 $a->strings["Activity Stream - by date"] = "Proud aktivit - dle data";
@@ -2008,64 +1315,917 @@ $a->strings["Shared Links"] = "Sdílené odkazy";
 $a->strings["Interesting Links"] = "Zajímavé odkazy";
 $a->strings["Starred"] = "S hvězdičkou";
 $a->strings["Favourite Posts"] = "Oblíbené přízpěvky";
-$a->strings["{0} wants to be your friend"] = "{0} chce být Vaším přítelem";
-$a->strings["{0} sent you a message"] = "{0} vám poslal zprávu";
-$a->strings["{0} requested registration"] = "{0} požaduje registraci";
-$a->strings["No contacts."] = "Žádné kontakty.";
-$a->strings["via"] = "přes";
-$a->strings["Repeat the image"] = "";
-$a->strings["Will repeat your image to fill the background."] = "";
-$a->strings["Stretch"] = "";
-$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"] = "";
-$a->strings["Note: "] = "";
-$a->strings["Check image permissions if all users are allowed to visit the image"] = "";
-$a->strings["Select scheme"] = "";
-$a->strings["Navigation bar background color"] = "";
-$a->strings["Navigation bar icon color "] = "";
-$a->strings["Link color"] = "";
-$a->strings["Set the background color"] = "";
-$a->strings["Content background transparency"] = "";
-$a->strings["Set the background image"] = "";
-$a->strings["Guest"] = "";
-$a->strings["Visitor"] = "";
-$a->strings["Alignment"] = "Zarovnání";
-$a->strings["Left"] = "Vlevo";
-$a->strings["Center"] = "Uprostřed";
-$a->strings["Color scheme"] = "Barevné schéma";
-$a->strings["Posts font size"] = "Velikost písma u příspěvků";
-$a->strings["Textareas font size"] = "Velikost písma textů";
-$a->strings["Community Profiles"] = "Komunitní profily";
-$a->strings["Last users"] = "Poslední uživatelé";
-$a->strings["Find Friends"] = "Nalézt Přátele";
-$a->strings["Local Directory"] = "Lokální Adresář";
-$a->strings["Quick Start"] = "";
-$a->strings["Connect Services"] = "Propojené služby";
-$a->strings["Comma separated list of helper forums"] = "";
-$a->strings["Set style"] = "Nastavit styl";
-$a->strings["Community Pages"] = "Komunitní stránky";
-$a->strings["Help or @NewHere ?"] = "Pomoc nebo @ProNováčky ?";
-$a->strings["greenzero"] = "zelená nula";
-$a->strings["purplezero"] = "fialová nula";
-$a->strings["easterbunny"] = "velikonoční zajíček";
-$a->strings["darkzero"] = "tmavá nula";
-$a->strings["comix"] = "komiksová";
-$a->strings["slackr"] = "flákač";
-$a->strings["Variations"] = "Variace";
-$a->strings["Delete this item?"] = "Odstranit tuto položku?";
-$a->strings["show fewer"] = "zobrazit méně";
-$a->strings["Update %s failed. See error logs."] = "Aktualizace %s selhala. Zkontrolujte protokol chyb.";
-$a->strings["Create a New Account"] = "Vytvořit nový účet";
-$a->strings["Password: "] = "Heslo: ";
-$a->strings["Remember me"] = "Pamatuj si mne";
-$a->strings["Or login using OpenID: "] = "Nebo přihlášení pomocí OpenID: ";
-$a->strings["Forgot your password?"] = "Zapomněli jste své heslo?";
-$a->strings["Website Terms of Service"] = "Podmínky použití serveru";
-$a->strings["terms of service"] = "podmínky použití";
-$a->strings["Website Privacy Policy"] = "Pravidla ochrany soukromí serveru";
-$a->strings["privacy policy"] = "Ochrana soukromí";
-$a->strings["toggle mobile"] = "přepnout mobil";
+$a->strings["Personal Notes"] = "Osobní poznámky";
+$a->strings["Invalid request identifier."] = "Neplatný identifikátor požadavku.";
+$a->strings["Discard"] = "Odstranit";
+$a->strings["Notifications"] = "Upozornění";
+$a->strings["Network Notifications"] = "Upozornění Sítě";
+$a->strings["Personal Notifications"] = "Osobní upozornění";
+$a->strings["Home Notifications"] = "Upozornění na vstupní straně";
+$a->strings["Show Ignored Requests"] = "Zobrazit ignorované žádosti";
+$a->strings["Hide Ignored Requests"] = "Skrýt ignorované žádosti";
+$a->strings["Notification type: "] = "Typ oznámení: ";
+$a->strings["suggested by %s"] = "navrhl %s";
+$a->strings["Claims to be known to you: "] = "Vaši údajní známí: ";
+$a->strings["yes"] = "ano";
+$a->strings["no"] = "ne";
+$a->strings["Shall your connection be bidirectional or not?"] = "Má Vaše spojení být obousměrné, nebo ne?";
+$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"] = "Přítel";
+$a->strings["Sharer"] = "Sdílející";
+$a->strings["Subscriber"] = "Odběratel";
+$a->strings["No introductions."] = "Žádné představení.";
+$a->strings["Show unread"] = "Zobrazit nepřečtené";
+$a->strings["Show all"] = "Zobrazit vše";
+$a->strings["No more %s notifications."] = "Žádná další %s oznámení";
+$a->strings["OpenID protocol error. No ID returned."] = "Chyba OpenID protokolu. Nebylo navráceno žádné ID.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nenalezen účet a OpenID registrace na tomto serveru není dovolena.";
+$a->strings["Login failed."] = "Přihlášení se nezdařilo.";
+$a->strings["Photo Albums"] = "Fotoalba";
+$a->strings["Recent Photos"] = "Aktuální fotografie";
+$a->strings["Upload New Photos"] = "Nahrát nové fotografie";
+$a->strings["everybody"] = "Žádost o připojení selhala nebo byla zrušena.";
+$a->strings["Contact information unavailable"] = "Kontakt byl zablokován";
+$a->strings["Album not found."] = "Album nenalezeno.";
+$a->strings["Delete Album"] = "Smazat album";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Opravdu chcete smazat toto foto album a všechny jeho fotografie?";
+$a->strings["Delete Photo"] = "Smazat fotografii";
+$a->strings["Do you really want to delete this photo?"] = "Opravdu chcete smazat tuto fotografii?";
+$a->strings["a photo"] = "fotografie";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s byl označen v %2\$s uživatelem %3\$s";
+$a->strings["Image upload didn't complete, please try again"] = "Nahrávání obrázku nebylo dokončeno, zkuste to prosím znovu";
+$a->strings["Image file is missing"] = "Chybí soubor obrázku";
+$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "Server v tuto chvíli nemůže akceptovat nové nahrané soubory, prosím kontaktujte Vašeho administrátora";
+$a->strings["Image file is empty."] = "Soubor obrázku je prázdný.";
+$a->strings["No photos selected"] = "Není vybrána žádná fotografie";
+$a->strings["Access to this item is restricted."] = "Přístup k této položce je omezen.";
+$a->strings["Upload Photos"] = "Nahrání fotografií ";
+$a->strings["New album name: "] = "Název nového alba: ";
+$a->strings["or existing album name: "] = "nebo stávající název alba: ";
+$a->strings["Do not show a status post for this upload"] = "Nezobrazovat stav pro tento upload";
+$a->strings["Show to Groups"] = "Zobrazit ve Skupinách";
+$a->strings["Show to Contacts"] = "Zobrazit v Kontaktech";
+$a->strings["Edit Album"] = "Edituj album";
+$a->strings["Show Newest First"] = "Zobrazit nejprve nejnovější:";
+$a->strings["Show Oldest First"] = "Zobrazit nejprve nejstarší:";
+$a->strings["View Photo"] = "Zobraz fotografii";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen.";
+$a->strings["Photo not available"] = "Fotografie není k dispozici";
+$a->strings["View photo"] = "Zobrazit obrázek";
+$a->strings["Edit photo"] = "Editovat fotografii";
+$a->strings["Use as profile photo"] = "Použít jako profilovou fotografii";
+$a->strings["Private Message"] = "Soukromá zpráva";
+$a->strings["View Full Size"] = "Zobrazit v plné velikosti";
+$a->strings["Tags: "] = "Štítky: ";
+$a->strings["[Remove any tag]"] = "[Odstranit všechny štítky]";
+$a->strings["New album name"] = "Nové jméno alba";
+$a->strings["Caption"] = "Titulek";
+$a->strings["Add a Tag"] = "Přidat štítek";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
+$a->strings["Do not rotate"] = "Neotáčet";
+$a->strings["Rotate CW (right)"] = "Rotovat po směru hodinových ručiček (doprava)";
+$a->strings["Rotate CCW (left)"] = "Rotovat proti směru hodinových ručiček (doleva)";
+$a->strings["I like this (toggle)"] = "Líbí se mi to (přepínač)";
+$a->strings["I don't like this (toggle)"] = "Nelíbí se mi to (přepínač)";
+$a->strings["Comment"] = "Okomentovat";
+$a->strings["Map"] = "Mapa";
+$a->strings["View Album"] = "Zobrazit album";
+$a->strings["Requested profile is not available."] = "Požadovaný profil není k dispozici.";
+$a->strings["%s's timeline"] = "Časová osa %s";
+$a->strings["%s's posts"] = "Příspěvky %s";
+$a->strings["%s's comments"] = "Komentáře %s";
+$a->strings["Tips for New Members"] = "Tipy pro nové členy";
+$a->strings["Profile deleted."] = "Profil smazán.";
+$a->strings["Profile-"] = "Profil-";
+$a->strings["New profile created."] = "Nový profil vytvořen.";
+$a->strings["Profile unavailable to clone."] = "Profil není možné naklonovat.";
+$a->strings["Profile Name is required."] = "Jméno profilu je povinné.";
+$a->strings["Marital Status"] = "Rodinný Stav";
+$a->strings["Romantic Partner"] = "Romatický partner";
+$a->strings["Work/Employment"] = "Práce/Zaměstnání";
+$a->strings["Religion"] = "Náboženství";
+$a->strings["Political Views"] = "Politické přesvědčení";
+$a->strings["Gender"] = "Pohlaví";
+$a->strings["Sexual Preference"] = "Sexuální orientace";
+$a->strings["XMPP"] = "XMPP";
+$a->strings["Homepage"] = "Domácí stránka";
+$a->strings["Interests"] = "Zájmy";
+$a->strings["Location"] = "Umístění";
+$a->strings["Profile updated."] = "Profil aktualizován.";
+$a->strings["Hide contacts and friends:"] = "Skrýt kontakty a přátele:";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Skrýt u tohoto profilu Vaše kontakty / seznam přátel před před dalšími uživateli zobrazující si tento profil?";
+$a->strings["Show more profile fields:"] = "";
+$a->strings["Profile Actions"] = "Akce profilu";
+$a->strings["Edit Profile Details"] = "Upravit podrobnosti profilu ";
+$a->strings["Change Profile Photo"] = "Změna Profilové fotky";
+$a->strings["View this profile"] = "Zobrazit tento profil";
+$a->strings["Edit visibility"] = "Upravit viditelnost";
+$a->strings["Create a new profile using these settings"] = "Vytvořit nový profil pomocí tohoto nastavení";
+$a->strings["Clone this profile"] = "Klonovat tento profil";
+$a->strings["Delete this profile"] = "Smazat tento profil";
+$a->strings["Basic information"] = "Základní informace";
+$a->strings["Profile picture"] = "Profilový obrázek";
+$a->strings["Preferences"] = "Nastavení";
+$a->strings["Status information"] = "Statusové informace";
+$a->strings["Additional information"] = "Dodatečné informace";
+$a->strings["Relation"] = "Vztah";
+$a->strings["Miscellaneous"] = "Různé";
+$a->strings["Your Gender:"] = "Vaše pohlaví:";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Rodinný stav:";
+$a->strings["Sexual Preference:"] = "Sexuální preference:";
+$a->strings["Example: fishing photography software"] = "Příklad: fishing photography software";
+$a->strings["Profile Name:"] = "Jméno profilu:";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Toto je váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu.";
+$a->strings["Your Full Name:"] = "Vaše celé jméno:";
+$a->strings["Title/Description:"] = "Název / Popis:";
+$a->strings["Street Address:"] = "Ulice:";
+$a->strings["Locality/City:"] = "Lokalita/Město:";
+$a->strings["Region/State:"] = "Region / stát:";
+$a->strings["Postal/Zip Code:"] = "PSČ:";
+$a->strings["Country:"] = "Země:";
+$a->strings["Age: "] = "Věk: ";
+$a->strings["Who: (if applicable)"] = "Kdo: (pokud je možné)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Příklady: jan123, Jan Novák, jan@seznam.cz";
+$a->strings["Since [date]:"] = "Od [data]:";
+$a->strings["Tell us about yourself..."] = "Řekněte nám něco o sobě ...";
+$a->strings["XMPP (Jabber) address:"] = "Adresa pro XMPP (Jabber)";
+$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "Adresa XMPP bude rozšířena mezi Vašimi kontakty, aby vás mohly sledovat.";
+$a->strings["Homepage URL:"] = "Odkaz na domovskou stránku:";
+$a->strings["Hometown:"] = "Rodné město";
+$a->strings["Political Views:"] = "Politické přesvědčení:";
+$a->strings["Religious Views:"] = "Náboženské přesvědčení:";
+$a->strings["Public Keywords:"] = "Veřejná klíčová slova:";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)";
+$a->strings["Private Keywords:"] = "Soukromá klíčová slova:";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)";
+$a->strings["Likes:"] = "Líbí se:";
+$a->strings["Dislikes:"] = "Nelibí se:";
+$a->strings["Musical interests"] = "Hudební vkus";
+$a->strings["Books, literature"] = "Knihy, literatura";
+$a->strings["Television"] = "Televize";
+$a->strings["Film/dance/culture/entertainment"] = "Film/tanec/kultura/zábava";
+$a->strings["Hobbies/Interests"] = "Koníčky/zájmy";
+$a->strings["Love/romance"] = "Láska/romance";
+$a->strings["Work/employment"] = "Práce/zaměstnání";
+$a->strings["School/education"] = "Škola/vzdělání";
+$a->strings["Contact information and Social Networks"] = "Kontaktní informace a sociální sítě";
+$a->strings["Profile Image"] = "Profilový obrázek";
+$a->strings["visible to everybody"] = "viditelné pro všechny";
+$a->strings["Edit/Manage Profiles"] = "Upravit/Spravovat profily";
+$a->strings["Change profile photo"] = "Změnit profilovou fotografii";
+$a->strings["Create New Profile"] = "Vytvořit nový profil";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce.";
+$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."] = "Nepovedlo se odeslat emailovou zprávu. Zde jsou detaily Vašeho účtu:<br> přihlášení: %s<br> heslo: %s<br><br>Své heslo si můžete změnit po přihlášení.";
+$a->strings["Registration successful."] = "Registrace byla úspěšná.";
+$a->strings["Your registration can not be processed."] = "Vaši registraci nelze zpracovat.";
+$a->strings["Your registration is pending approval by the site owner."] = "Vaše registrace čeká na schválení vlastníkem serveru.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknutete na tlačítko \"Zaregistrovat\".";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky.";
+$a->strings["Your OpenID (optional): "] = "Vaše OpenID (nepovinné): ";
+$a->strings["Include your profile in member directory?"] = "Toto je Váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu.";
+$a->strings["Note for the admin"] = "Poznámka pro administrátora";
+$a->strings["Leave a message for the admin, why you want to join this node"] = "";
+$a->strings["Membership on this site is by invitation only."] = "Členství na tomto webu je pouze na pozvání.";
+$a->strings["Your invitation code: "] = "";
+$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "";
+$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "";
+$a->strings["New Password:"] = "Nové heslo:";
+$a->strings["Leave empty for an auto generated password."] = "Ponechte prázdné pro automatické vygenerovaní hesla.";
+$a->strings["Confirm:"] = "Potvrďte:";
+$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: "] = "Vyberte přezdívku:";
+$a->strings["Register"] = "Registrovat";
+$a->strings["Import your profile to this friendica instance"] = "Import Vašeho profilu do této friendica instance";
+$a->strings["User deleted their account"] = "Uživatel si smazal účet";
+$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "Uživatel na vašem serveru Friendica smazal svůj účet. Prosím ujistěte se, ře jsou jeho data odstraněna ze záloh dat.";
+$a->strings["The user id is %d"] = "Uživatelské ID je %d";
+$a->strings["Remove My Account"] = "Odstranit můj účet";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit.";
+$a->strings["Please enter your password for verification:"] = "Prosím, zadejte své heslo pro ověření:";
+$a->strings["Only logged in users are permitted to perform a search."] = "Pouze přihlášení uživatelé mohou prohledávat tento server.";
+$a->strings["Too Many Requests"] = "Příliš mnoho požadavků";
+$a->strings["Only one search per minute is permitted for not logged in users."] = "Nepřihlášení uživatelé mohou vyhledávat pouze jednou za minutu.";
+$a->strings["Items tagged with: %s"] = "Položky označené s: %s";
+$a->strings["Account"] = "Účet";
+$a->strings["Display"] = "Zobrazení";
+$a->strings["Social Networks"] = "Sociální sítě";
+$a->strings["Delegations"] = "Delegace";
+$a->strings["Connected apps"] = "Propojené aplikace";
+$a->strings["Remove account"] = "Odstranit účet";
+$a->strings["Missing some important data!"] = "Chybí některé důležité údaje!";
+$a->strings["Failed to connect with email account using the settings provided."] = "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení.";
+$a->strings["Email settings updated."] = "Nastavení e-mailu aktualizována.";
+$a->strings["Features updated"] = "Aktualizované funkčnosti";
+$a->strings["Relocate message has been send to your contacts"] = "Správa o změně umístění byla odeslána vašim kontaktům";
+$a->strings["Passwords do not match. Password unchanged."] = "Hesla se neshodují. Heslo nebylo změněno.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Prázdné hesla nejsou povolena. Heslo nebylo změněno.";
+$a->strings["The new password has been exposed in a public data dump, please choose another."] = "";
+$a->strings["Wrong password."] = "Špatné heslo.";
+$a->strings["Password changed."] = "Heslo bylo změněno.";
+$a->strings["Password update failed. Please try again."] = "Aktualizace hesla se nezdařila. Zkuste to prosím znovu.";
+$a->strings[" Please use a shorter name."] = "Prosím použijte kratší jméno.";
+$a->strings[" Name too short."] = "Jméno je příliš krátké.";
+$a->strings["Wrong Password"] = "Špatné heslo";
+$a->strings["Invalid email."] = "";
+$a->strings["Cannot change to that email."] = "";
+$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Soukromé fórum nemá nastaveno zabezpečení. Používá se defaultní soukromá skupina.";
+$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Soukromé fórum nemá nastaveno zabezpečení a ani žádnou defaultní soukromou skupinu.";
+$a->strings["Settings updated."] = "Nastavení aktualizováno.";
+$a->strings["Add application"] = "Přidat aplikaci";
+$a->strings["Consumer Key"] = "Consumer Key";
+$a->strings["Consumer Secret"] = "Consumer Secret";
+$a->strings["Redirect"] = "Přesměrování";
+$a->strings["Icon url"] = "URL ikony";
+$a->strings["You can't edit this application."] = "Nemůžete editovat tuto aplikaci.";
+$a->strings["Connected Apps"] = "Připojené aplikace";
+$a->strings["Edit"] = "Upravit";
+$a->strings["Client key starts with"] = "Klienský klíč začíná";
+$a->strings["No name"] = "Bez názvu";
+$a->strings["Remove authorization"] = "Odstranit oprávnění";
+$a->strings["No Addon settings configured"] = "";
+$a->strings["Addon Settings"] = "";
+$a->strings["Additional Features"] = "Další Funkčnosti";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings["enabled"] = "povoleno";
+$a->strings["disabled"] = "zakázáno";
+$a->strings["Built-in support for %s connectivity is %s"] = "Vestavěná podpora pro připojení s %s je %s";
+$a->strings["GNU Social (OStatus)"] = "GNU Social (OStatus)";
+$a->strings["Email access is disabled on this site."] = "Přístup k elektronické poště je na tomto serveru zakázán.";
+$a->strings["General Social Media Settings"] = "General Social Media nastavení";
+$a->strings["Disable Content Warning"] = "";
+$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"] = "Vypnout inteligentní zkracování";
+$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."] = "Normálně se systém snaží nalézt nejlepší link pro přidání zkrácených příspěvků. Pokud je tato volba aktivní, pak každý zkrácený příspěvek bude vždy ukazovat na originální friencika příspěvek";
+$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automaticky následovat jakékoliv GNU Social (OStatus) následníky/zmiňovatele";
+$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"] = "";
+$a->strings["Your legacy GNU Social account"] = "";
+$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"] = "";
+$a->strings["Email/Mailbox Setup"] = "Nastavení e-mailu";
+$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Pokud chcete komunikovat pomocí této služby s Vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce.";
+$a->strings["Last successful email check:"] = "Poslední úspěšná kontrola e-mailu:";
+$a->strings["IMAP server name:"] = "jméno IMAP serveru:";
+$a->strings["IMAP port:"] = "IMAP port:";
+$a->strings["Security:"] = "Zabezpečení:";
+$a->strings["None"] = "Žádný";
+$a->strings["Email login name:"] = "přihlašovací jméno k e-mailu:";
+$a->strings["Email password:"] = "heslo k Vašemu e-mailu:";
+$a->strings["Reply-to address:"] = "Odpovědět na adresu:";
+$a->strings["Send public posts to all email contacts:"] = "Poslat veřejné příspěvky na všechny e-mailové kontakty:";
+$a->strings["Action after import:"] = "Akce po importu:";
+$a->strings["Mark as seen"] = "Označit jako přečtené";
+$a->strings["Move to folder"] = "Přesunout do složky";
+$a->strings["Move to folder:"] = "Přesunout do složky:";
+$a->strings["%s - (Unsupported)"] = "";
+$a->strings["%s - (Experimental)"] = "%s - (Experimentální)";
+$a->strings["Display Settings"] = "Nastavení Zobrazení";
+$a->strings["Display Theme:"] = "Vybrat motiv:";
+$a->strings["Mobile Theme:"] = "Mobilní motiv:";
+$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"] = "Aktualizovat prohlížeč každých xx sekund";
+$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "";
+$a->strings["Number of items to display per page:"] = "Počet položek zobrazených na stránce:";
+$a->strings["Maximum of 100 items"] = "Maximum 100 položek";
+$a->strings["Number of items to display per page when viewed from mobile device:"] = "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:";
+$a->strings["Don't show emoticons"] = "Nezobrazovat emotikony";
+$a->strings["Calendar"] = "";
+$a->strings["Beginning of week:"] = "";
+$a->strings["Don't show notices"] = "Nezobrazovat oznámění";
+$a->strings["Infinite scroll"] = "Nekonečné posouvání";
+$a->strings["Automatic updates only at the top of the network page"] = "Automatické aktualizace pouze na hlavní stránce Síť.";
+$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "";
+$a->strings["Bandwidth Saver Mode"] = "";
+$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"] = "Obecná nastavení motivu";
+$a->strings["Custom Theme Settings"] = "Vlastní nastavení motivu";
+$a->strings["Content Settings"] = "";
+$a->strings["Theme settings"] = "Nastavení motivu";
+$a->strings["Unable to find your profile. Please contact your admin."] = "";
+$a->strings["Account Types"] = "";
+$a->strings["Personal Page Subtypes"] = "";
+$a->strings["Community Forum Subtypes"] = "";
+$a->strings["Account for a personal profile."] = "";
+$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."] = "";
+$a->strings["Account for a popular profile that automatically approves contact requests as \"Friends\"."] = "";
+$a->strings["Private Forum [Experimental]"] = "Soukromé fórum [Experimentální]";
+$a->strings["Requires manual approval of contact requests."] = "";
+$a->strings["OpenID:"] = "OpenID:";
+$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu.";
+$a->strings["Publish your default profile in your local site directory?"] = "Publikovat Váš výchozí profil v místním adresáři webu?";
+$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["Publish your default profile in the global social directory?"] = "Publikovat Váš výchozí profil v globální sociálním adresáři?";
+$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["Hide your contact/friend list from viewers of your default profile?"] = "Skrýt Vaše kontaktní údaje a seznam přátel před návštěvníky ve Vašem výchozím profilu?";
+$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. Your public posts and replies will still be accessible by other means."] = "";
+$a->strings["Allow friends to post to your profile page?"] = "Povolit přátelům umisťování příspěvků na vaši profilovou stránku?";
+$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?"] = "Povolit přátelům označovat Vaše příspěvky?";
+$a->strings["Your contacts can add additional tags to your posts."] = "";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Chcete nám povolit abychom vás navrhovali jako přátelé pro nové členy?";
+$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?"] = "Povolit neznámým lidem Vám zasílat soukromé zprávy?";
+$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>."] = "Profil <strong>není zveřejněn</strong>.";
+$a->strings["Your Identity Address is <strong>'%s'</strong> or '%s'."] = "Vaše Identity adresa je <strong>\"%s\"</strong> nebo \"%s\".";
+$a->strings["Automatically expire posts after this many days:"] = "Automaticky expirovat příspěvky po zadaném počtu dní:";
+$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány";
+$a->strings["Advanced expiration settings"] = "Pokročilé nastavení expirací";
+$a->strings["Advanced Expiration"] = "Nastavení expirací";
+$a->strings["Expire posts:"] = "Expirovat příspěvky:";
+$a->strings["Expire personal notes:"] = "Expirovat osobní poznámky:";
+$a->strings["Expire starred posts:"] = "Expirovat příspěvky s hvězdou:";
+$a->strings["Expire photos:"] = "Expirovat fotografie:";
+$a->strings["Only expire posts by others:"] = "Příspěvky expirovat pouze ostatními:";
+$a->strings["Account Settings"] = "Nastavení účtu";
+$a->strings["Password Settings"] = "Nastavení hesla";
+$a->strings["Leave password fields blank unless changing"] = "Pokud nechcete změnit heslo, položku hesla nevyplňujte";
+$a->strings["Current Password:"] = "Stávající heslo:";
+$a->strings["Your current password to confirm the changes"] = "Vaše stávající heslo k potvrzení změn";
+$a->strings["Password:"] = "Heslo: ";
+$a->strings["Basic Settings"] = "Základní nastavení";
+$a->strings["Full Name:"] = "Celé jméno:";
+$a->strings["Email Address:"] = "E-mailová adresa:";
+$a->strings["Your Timezone:"] = "Vaše časové pásmo:";
+$a->strings["Your Language:"] = "Váš jazyk:";
+$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "";
+$a->strings["Default Post Location:"] = "Výchozí umístění příspěvků:";
+$a->strings["Use Browser Location:"] = "Používat umístění dle prohlížeče:";
+$a->strings["Security and Privacy Settings"] = "Nastavení zabezpečení a soukromí";
+$a->strings["Maximum Friend Requests/Day:"] = "Maximální počet žádostí o přátelství za den:";
+$a->strings["(to prevent spam abuse)"] = "(Aby se zabránilo spamu)";
+$a->strings["Default Post Permissions"] = "Výchozí oprávnění pro příspěvek";
+$a->strings["(click to open/close)"] = "(Klikněte pro otevření/zavření)";
+$a->strings["Default Private Post"] = "Výchozí Soukromý příspěvek";
+$a->strings["Default Public Post"] = "Výchozí Veřejný příspěvek";
+$a->strings["Default Permissions for New Posts"] = "Výchozí oprávnění pro nové příspěvky";
+$a->strings["Maximum private messages per day from unknown people:"] = "Maximum soukromých zpráv od neznámých lidí:";
+$a->strings["Notification Settings"] = "Nastavení notifikací";
+$a->strings["Send a notification email when:"] = "Poslat notifikaci e-mailem, když";
+$a->strings["You receive an introduction"] = "obdržíte žádost o propojení";
+$a->strings["Your introductions are confirmed"] = "Vaše žádosti jsou potvrzeny";
+$a->strings["Someone writes on your profile wall"] = "někdo Vám napíše na Vaši profilovou stránku";
+$a->strings["Someone writes a followup comment"] = "někdo Vám napíše následný komentář";
+$a->strings["You receive a private message"] = "obdržíte soukromou zprávu";
+$a->strings["You receive a friend suggestion"] = "Obdržel jste návrh přátelství";
+$a->strings["You are tagged in a post"] = "Jste označen v příspěvku";
+$a->strings["You are poked/prodded/etc. in a post"] = "Byl Jste šťouchnout v příspěvku";
+$a->strings["Activate desktop notifications"] = "Aktivovat upozornění na desktopu";
+$a->strings["Show desktop popup on new notifications"] = "Zobrazit dektopové zprávy nových upozornění.";
+$a->strings["Text-only notification emails"] = "Pouze textové notifikační e-maily";
+$a->strings["Send text only notification emails, without the html part"] = "Posílat pouze textové notifikační e-maily, bez html části.";
+$a->strings["Show detailled notifications"] = "";
+$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"] = "Pokročilé nastavení účtu/stránky";
+$a->strings["Change the behaviour of this account for special situations"] = "Změnit chování tohoto účtu ve speciálních situacích";
+$a->strings["Relocate"] = "Změna umístění";
+$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."] = "Pokud jste přemístil tento profil z jiného serveru a nějaký z vašich kontaktů nedostává Vaše aktualizace, zkuste stisknout toto tlačítko.";
+$a->strings["Resend relocate message to contacts"] = "Znovu odeslat správu o změně umístění Vašim kontaktům";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s následuje %3\$s uživatele %2\$s";
+$a->strings["[Embedded content - reload page to view]"] = "[Vložený obsah - obnovte stránku pro zobrazení]";
+$a->strings["Do you really want to delete this video?"] = "Opravdu chcete smazat toto video?";
+$a->strings["Delete Video"] = "Odstranit video";
+$a->strings["No videos selected"] = "Není vybráno žádné video";
+$a->strings["Recent Videos"] = "Aktuální Videa";
+$a->strings["Upload New Videos"] = "Nahrát nová videa";
+$a->strings["default"] = "standardní";
+$a->strings["greenzero"] = "zelená nula";
+$a->strings["purplezero"] = "fialová nula";
+$a->strings["easterbunny"] = "velikonoční zajíček";
+$a->strings["darkzero"] = "tmavá nula";
+$a->strings["comix"] = "komiksová";
+$a->strings["slackr"] = "flákač";
+$a->strings["Variations"] = "Variace";
+$a->strings["Top Banner"] = "";
+$a->strings["Resize image to the width of the screen and show background color below on long pages."] = "Změnit velikost obrázku na šířku obrazovky a ukázat pod ním barvu pozadí na dlouhých stránkách.";
+$a->strings["Full screen"] = "Celá obrazovka";
+$a->strings["Resize image to fill entire screen, clipping either the right or the bottom."] = "Změnit velikost obrázku, aby zaplnil celou obrazovku, a odštěpit buď pravou, nebo dolní část";
+$a->strings["Single row mosaic"] = "Mozaika s jedinou řadou";
+$a->strings["Resize image to repeat it on a single row, either vertical or horizontal."] = "Změnit velikost obrázku a opakovat jej v jediné řadě, buď svislé, nebo vodorovné";
+$a->strings["Mosaic"] = "Mozaika";
+$a->strings["Repeat image to fill the screen."] = "Opakovat obrázek, aby zaplnil obrazovku";
+$a->strings["Custom"] = "Vlastní";
+$a->strings["Note"] = "Poznámka";
+$a->strings["Check image permissions if all users are allowed to see the image"] = "Zkontrolovat povolení u obrázku, jestli všichni uživatelé mají povolení obrázek vidět";
+$a->strings["Select color scheme"] = "Vybrat barevné schéma";
+$a->strings["Navigation bar background color"] = "Barva pozadí navigační lišty";
+$a->strings["Navigation bar icon color "] = "Barva ikon navigační lišty";
+$a->strings["Link color"] = "Barva odkazů";
+$a->strings["Set the background color"] = "Nastavit barvu pozadí";
+$a->strings["Content background opacity"] = "Průhlednost pozadí obsahu";
+$a->strings["Set the background image"] = "Nastavit obrázek na pozadí";
+$a->strings["Background image style"] = "Styl obrázku na pozadí";
+$a->strings["Login page background image"] = "Obrázek na pozadí přihlašovací stránky";
+$a->strings["Login page background color"] = "Barva pozadí přihlašovací stránky";
+$a->strings["Leave background image and color empty for theme defaults"] = "Nechat obrázek a barvu pozadí prázdnou pro výchozí nastavení motivů";
+$a->strings["Guest"] = "Host";
+$a->strings["Visitor"] = "Návštěvník";
+$a->strings["Logout"] = "Odhlásit se";
+$a->strings["End this session"] = "Konec této relace";
+$a->strings["Your posts and conversations"] = "Vaše příspěvky a konverzace";
+$a->strings["Your profile page"] = "Vaše profilová stránka";
+$a->strings["Your photos"] = "Vaše fotky";
+$a->strings["Videos"] = "Videa";
+$a->strings["Your videos"] = "Vaše videa";
+$a->strings["Your events"] = "Vaše události";
+$a->strings["Conversations from your friends"] = "Konverzace od Vašich přátel";
+$a->strings["Events and Calendar"] = "Události a kalendář";
+$a->strings["Private mail"] = "Soukromá pošta";
+$a->strings["Account settings"] = "Nastavení účtu";
+$a->strings["Manage/edit friends and contacts"] = "Spravovat/upravit přátelé a kontakty";
+$a->strings["Alignment"] = "Zarovnání";
+$a->strings["Left"] = "Vlevo";
+$a->strings["Center"] = "Uprostřed";
+$a->strings["Color scheme"] = "Barevné schéma";
+$a->strings["Posts font size"] = "Velikost písma u příspěvků";
+$a->strings["Textareas font size"] = "Velikost písma textů";
+$a->strings["Comma separated list of helper forums"] = "";
+$a->strings["don't show"] = "nikdy nezobrazit";
+$a->strings["show"] = "zobrazit";
+$a->strings["Set style"] = "Nastavit styl";
+$a->strings["Community Pages"] = "Komunitní stránky";
+$a->strings["Community Profiles"] = "Komunitní profily";
+$a->strings["Help or @NewHere ?"] = "Pomoc nebo @ProNováčky ?";
+$a->strings["Connect Services"] = "Propojené služby";
+$a->strings["Find Friends"] = "Nalézt Přátele";
+$a->strings["Last users"] = "Poslední uživatelé";
+$a->strings["Find People"] = "Nalézt lidi";
+$a->strings["Enter name or interest"] = "Zadejte jméno nebo zájmy";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Příklady: Robert Morgenstein, rybaření";
+$a->strings["Similar Interests"] = "Podobné zájmy";
+$a->strings["Random Profile"] = "Náhodný Profil";
+$a->strings["Invite Friends"] = "Pozvat přátele";
+$a->strings["Local Directory"] = "Lokální Adresář";
+$a->strings["External link to forum"] = "";
+$a->strings["Quick Start"] = "Rychlý start";
+$a->strings["Error decoding account file"] = "Chyba dekódování uživatelského účtu";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?";
+$a->strings["User '%s' already exists on this server!"] = "Uživatel '%s' již na tomto serveru existuje!";
+$a->strings["User creation error"] = "Chyba vytváření uživatele";
+$a->strings["User profile creation error"] = "Chyba vytváření uživatelského účtu";
+$a->strings["%d contact not imported"] = [
+       0 => "%d kontakt nenaimporován",
+       1 => "%d kontaktů nenaimporováno",
+       2 => "%d kontakty nenaimporovány",
+       3 => "%d kontakty nenaimporovány",
+];
+$a->strings["Done. You can now login with your username and password"] = "Hotovo. Nyní  se můžete přihlásit se svými uživatelským účtem a heslem";
+$a->strings["Post to Email"] = "Poslat příspěvek na e-mail";
+$a->strings["Hide your profile details from unknown viewers?"] = "Skrýt Vaše profilové detaily před neznámými uživateli?";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Kontektory deaktivovány, od \"%s\" je aktivován.";
+$a->strings["Visible to everybody"] = "Viditelné pro všechny";
+$a->strings["Close"] = "Zavřít";
+$a->strings["Enter new password: "] = "Zadejte nové heslo";
+$a->strings["Password can't be empty"] = "Heslo nemůže být prázdné";
+$a->strings["Could not find any unarchived contact entry for this URL (%s)"] = "";
+$a->strings["The contact entries have been archived"] = "";
+$a->strings["System"] = "Systém";
+$a->strings["Home"] = "Domů";
+$a->strings["Introductions"] = "Představení";
+$a->strings["%s commented on %s's post"] = "%s okomentoval příspěvek uživatele %s'";
+$a->strings["%s created a new post"] = "%s vytvořil nový příspěvek";
+$a->strings["%s liked %s's post"] = "Uživateli %s se líbí příspěvek uživatele %s";
+$a->strings["%s disliked %s's post"] = "Uživateli %s se nelíbí příspěvek uživatele %s";
+$a->strings["%s is attending %s's event"] = "%s se zúčastní události %s";
+$a->strings["%s is not attending %s's event"] = "%s se nezúčastní události %s";
+$a->strings["%s may attend %s's event"] = "%s by se mohl/a zúčastnit události %s";
+$a->strings["%s is now friends with %s"] = "%s se nyní přátelí s %s";
+$a->strings["Friend Suggestion"] = "Návrh přátelství";
+$a->strings["Friend/Connect Request"] = "Přítel / žádost o připojení";
+$a->strings["New Follower"] = "Nový následovník";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru.";
+$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"] = "Cesta k \"PHP executable\"";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Zadejte plnou cestu k spustitelnému souboru php. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci.";
+$a->strings["Command line PHP"] = "Příkazový řádek PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP executable není php cli binary (může být verze cgi-fgci)";
+$a->strings["Found PHP version: "] = "Nalezena PHP verze:";
+$a->strings["PHP cli binary"] = "PHP cli binary";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu.";
+$a->strings["This is required for message delivery to work."] = "Toto je nutné pro fungování doručování zpráv.";
+$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"] = "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Pokud systém běží na Windows, seznamte se s \"http://www.php.net/manual/en/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Generovat kriptovací klíče";
+$a->strings["libCurl PHP module"] = "libCurl PHP modul";
+$a->strings["GD graphics PHP module"] = "GD graphics PHP modul";
+$a->strings["OpenSSL PHP module"] = "OpenSSL PHP modul";
+$a->strings["PDO or MySQLi PHP module"] = "PHP modul PDO nebo MySQLi";
+$a->strings["mb_string PHP module"] = "mb_string PHP modul";
+$a->strings["XML PHP module"] = "PHP modul XML";
+$a->strings["iconv PHP module"] = "PHP modul iconv";
+$a->strings["POSIX PHP module"] = "PHP modul POSIX";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite modul";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Chyba: požadovaný libcurl PHP modul není nainstalován.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Chyba: požadovaný GD graphics PHP modul není nainstalován.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Chyba: požadovaný openssl PHP modul není nainstalován.";
+$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Chyba: PHP modul PDO nebo MySQLi je vyžadován ale není nainstalován.";
+$a->strings["Error: The MySQL driver for PDO is not installed."] = "Chyba: Ovladač MySQL pro PDO není nainstalován";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Chyba: PHP modul mb_string  je vyžadován, ale není nainstalován.";
+$a->strings["Error: iconv PHP module required but not installed."] = "Chyba: PHP modul iconv je vyžadován ale není nainstalován";
+$a->strings["Error: POSIX PHP module required but not installed."] = "Chyba: PHP modul POSIX je vyžadován ale není nainstalován.";
+$a->strings["Error, XML PHP module required but not installed."] = "Chyba: PHP modul XML je vyžadován ale není nainstalován";
+$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."] = "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři vašeho webového serveru ale nyní mu to není umožněno.";
+$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."] = "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když Vy můžete.";
+$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."] = "Na konci této procedury obd nás obdržíte text k uložení v souboru pojmenovaném .htconfig.php ve Vašem Friendica kořenovém adresáři.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor \"INSTALL.txt\" pro další instrukce.";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php je editovatelné";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování.";
+$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."] = "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře";
+$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."] = "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 je nastaven pro zápis";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Url rewrite v .htconfig nefunguje. Prověřte prosím Vaše nastavení serveru.";
+$a->strings["Error message from Curl when fetching"] = "Chybová zpráva od Curl při načítání";
+$a->strings["Url rewrite is working"] = "Url rewrite je funkční.";
+$a->strings["ImageMagick PHP extension is not installed"] = "PHP rozšíření ImageMagick není nainstalováno";
+$a->strings["ImageMagick PHP extension is installed"] = "PHP rozšíření ImageMagick je nainstalováno";
+$a->strings["ImageMagick supports GIF"] = "ImageMagick podporuje GIF";
+$a->strings["Birthday:"] = "Narozeniny:";
+$a->strings["YYYY-MM-DD or MM-DD"] = "RRRR-MM-DD nebo MM-DD";
+$a->strings["never"] = "nikdy";
+$a->strings["less than a second ago"] = "méně než před sekundou";
+$a->strings["year"] = "rok";
+$a->strings["years"] = "let";
+$a->strings["months"] = "měsíců";
+$a->strings["weeks"] = "týdny";
+$a->strings["days"] = "dnů";
+$a->strings["hour"] = "hodina";
+$a->strings["hours"] = "hodin";
+$a->strings["minute"] = "minuta";
+$a->strings["minutes"] = "minut";
+$a->strings["second"] = "sekunda";
+$a->strings["seconds"] = "sekund";
+$a->strings["%1\$d %2\$s ago"] = "před %1\$d %2\$s";
+$a->strings["view full size"] = "zobrazit v plné velikosti";
+$a->strings["Image/photo"] = "Obrázek/fotografie";
+$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 napsal:";
+$a->strings["Encrypted content"] = "Šifrovaný obsah";
+$a->strings["Invalid source protocol"] = "Neplatný zdrojový protocol";
+$a->strings["Invalid link protocol"] = "Neplatný linkový protokol";
+$a->strings["Embedding disabled"] = "Vkládání zakázáno";
+$a->strings["Embedded content"] = "vložený obsah";
+$a->strings["Export"] = "Exportovat";
+$a->strings["Export calendar as ical"] = "Exportovat kalendář jako ical";
+$a->strings["Export calendar as csv"] = "Exportovat kalendář jako csv";
+$a->strings["Frequently"] = "Často";
+$a->strings["Hourly"] = "Hodinově";
+$a->strings["Twice daily"] = "Dvakrát denně";
+$a->strings["Daily"] = "Denně";
+$a->strings["Weekly"] = "Týdně";
+$a->strings["Monthly"] = "Měsíčně";
+$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 Connector";
+$a->strings["GNU Social Connector"] = "GNU Social Connector";
+$a->strings["pnut"] = "pnut";
+$a->strings["App.net"] = "App.net";
+$a->strings["Male"] = "Muž";
+$a->strings["Female"] = "Žena";
+$a->strings["Currently Male"] = "V současné době muž";
+$a->strings["Currently Female"] = "V současné době žena";
+$a->strings["Mostly Male"] = "Z větší části muž";
+$a->strings["Mostly Female"] = "Z větší části žena";
+$a->strings["Transgender"] = "Transgender";
+$a->strings["Intersex"] = "Intersexuál";
+$a->strings["Transsexual"] = "Transsexuál";
+$a->strings["Hermaphrodite"] = "Hermafrodit";
+$a->strings["Neuter"] = "Neutrální";
+$a->strings["Non-specific"] = "Nespecifikováno";
+$a->strings["Other"] = "Jiné";
+$a->strings["Males"] = "Muži";
+$a->strings["Females"] = "Ženy";
+$a->strings["Gay"] = "Gay";
+$a->strings["Lesbian"] = "Lesbička";
+$a->strings["No Preference"] = "Bez preferencí";
+$a->strings["Bisexual"] = "Bisexuál";
+$a->strings["Autosexual"] = "Autosexuál";
+$a->strings["Abstinent"] = "Abstinent";
+$a->strings["Virgin"] = "panic/panna";
+$a->strings["Deviant"] = "Deviant";
+$a->strings["Fetish"] = "Fetišista";
+$a->strings["Oodles"] = "Hodně";
+$a->strings["Nonsexual"] = "Nesexuální";
+$a->strings["Single"] = "Svobodný";
+$a->strings["Lonely"] = "Osamnělý";
+$a->strings["Available"] = "Dostupný";
+$a->strings["Unavailable"] = "Nedostupný";
+$a->strings["Has crush"] = "Zamilovaný";
+$a->strings["Infatuated"] = "Zabouchnutý";
+$a->strings["Dating"] = "Seznamující se";
+$a->strings["Unfaithful"] = "Nevěrný";
+$a->strings["Sex Addict"] = "Závislý na sexu";
+$a->strings["Friends"] = "Přátelé";
+$a->strings["Friends/Benefits"] = "Přátelé / výhody";
+$a->strings["Casual"] = "Ležérní";
+$a->strings["Engaged"] = "Zadaný";
+$a->strings["Married"] = "Ženatý/vdaná";
+$a->strings["Imaginarily married"] = "Pomyslně ženatý/vdaná";
+$a->strings["Partners"] = "Partneři";
+$a->strings["Cohabiting"] = "Žijící ve společné domácnosti";
+$a->strings["Common law"] = "Zvykové právo";
+$a->strings["Happy"] = "Šťastný";
+$a->strings["Not looking"] = "Nehledající";
+$a->strings["Swinger"] = "Swinger";
+$a->strings["Betrayed"] = "Zrazen";
+$a->strings["Separated"] = "Odloučený";
+$a->strings["Unstable"] = "Nestálý";
+$a->strings["Divorced"] = "Rozvedený(á)";
+$a->strings["Imaginarily divorced"] = "Pomyslně rozvedený";
+$a->strings["Widowed"] = "Ovdovělý(á)";
+$a->strings["Uncertain"] = "Nejistý";
+$a->strings["It's complicated"] = "Je to složité";
+$a->strings["Don't care"] = "Nezajímá";
+$a->strings["Ask me"] = "Zeptej se mě";
+$a->strings["Add New Contact"] = "Přidat nový kontakt";
+$a->strings["Enter address or web location"] = "Zadejte adresu nebo umístění webu";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Příklad: jan@příklad.cz, http://příklad.cz/jana";
+$a->strings["%d invitation available"] = [
+       0 => "Pozvánka %d k dispozici",
+       1 => "Pozvánky %d k dispozici",
+       2 => "Pozvánky %d k dispozici",
+       3 => "Pozvánky %d k dispozici",
+];
+$a->strings["Networks"] = "Sítě";
+$a->strings["All Networks"] = "Všechny sítě";
+$a->strings["Saved Folders"] = "Uložené složky";
+$a->strings["Everything"] = "Všechno";
+$a->strings["Categories"] = "Kategorie";
+$a->strings["%d contact in common"] = [
+       0 => "%d sdílený kontakt",
+       1 => "%d sdílených kontaktů",
+       2 => "%d sdílených kontaktů",
+       3 => "%d sdílených kontaktů",
+];
+$a->strings["General Features"] = "Obecné funkčnosti";
+$a->strings["Multiple Profiles"] = "Vícenásobné profily";
+$a->strings["Ability to create multiple profiles"] = "Schopnost vytvořit vícenásobné profily";
+$a->strings["Photo Location"] = "Umístění fotky";
+$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"] = "";
+$a->strings["Ability for visitors to download the public calendar"] = "";
+$a->strings["Post Composition Features"] = "Nastavení vytváření příspěvků";
+$a->strings["Post Preview"] = "Náhled příspěvku";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Povolit náhledy příspěvků a komentářů před jejich zveřejněním";
+$a->strings["Auto-mention Forums"] = "Automaticky zmínit fóra";
+$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Přidat/odstranit zmínku, když je stránka na fóru označena/odznačena v okně ACL.";
+$a->strings["Network Sidebar"] = "";
+$a->strings["Ability to select posts by date ranges"] = "Možnost označit příspěvky dle časového intervalu";
+$a->strings["List Forums"] = "";
+$a->strings["Enable widget to display the forums your are connected with"] = "";
+$a->strings["Group Filter"] = "Skupinový Filtr";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny";
+$a->strings["Network Filter"] = "Síťový Filtr";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě";
+$a->strings["Save search terms for re-use"] = "Uložit kritéria vyhledávání pro znovupoužití";
+$a->strings["Network Tabs"] = "Síťové záložky";
+$a->strings["Network Personal Tab"] = "Osobní síťový záložka ";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval ";
+$a->strings["Network New Tab"] = "Nová záložka síť";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)";
+$a->strings["Network Shared Links Tab"] = "záložka Síťové sdílené odkazy ";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně";
+$a->strings["Post/Comment Tools"] = "Nástroje Příspěvků/Komentářů";
+$a->strings["Multiple Deletion"] = "Násobné mazání";
+$a->strings["Select and delete multiple posts/comments at once"] = "Označit a smazat více ";
+$a->strings["Edit Sent Posts"] = "Editovat Odeslané příspěvky";
+$a->strings["Edit and correct posts and comments after sending"] = "Editovat a opravit příspěvky a komentáře po odeslání";
+$a->strings["Tagging"] = "Štítkování";
+$a->strings["Ability to tag existing posts"] = "Schopnost přidat štítky ke stávajícím příspvěkům";
+$a->strings["Post Categories"] = "Kategorie příspěvků";
+$a->strings["Add categories to your posts"] = "Přidat kategorie k Vašim příspěvkům";
+$a->strings["Ability to file posts under folders"] = "Možnost řadit příspěvky do složek";
+$a->strings["Dislike Posts"] = "Označit příspěvky jako neoblíbené";
+$a->strings["Ability to dislike posts/comments"] = "Možnost označit příspěvky/komentáře jako neoblíbené";
+$a->strings["Star Posts"] = "Příspěvky s hvězdou";
+$a->strings["Ability to mark special posts with a star indicator"] = "Možnost označit příspěvky s indikátorem hvězdy";
+$a->strings["Mute Post Notifications"] = "Utlumit upozornění na přísvěvky";
+$a->strings["Ability to mute notifications for a thread"] = "Možnost stlumit upozornění pro vlákno";
+$a->strings["Advanced Profile Settings"] = "Pokročilá nastavení profilu";
+$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Ukázat návštěvníkům veřejná komunitní fóra na stránce pokročilého profilu";
+$a->strings["Tag Cloud"] = "";
+$a->strings["Provide a personal tag cloud on your profile page"] = "";
+$a->strings["Display Membership Date"] = "Zobrazit datum členství";
+$a->strings["Display membership date in profile"] = "Zobrazit v profilu datum připojení";
+$a->strings["Nothing new here"] = "Zde není nic nového";
+$a->strings["Clear notifications"] = "Smazat notifikace";
+$a->strings["Personal notes"] = "Osobní poznámky";
+$a->strings["Your personal notes"] = "Vaše osobní poznámky";
+$a->strings["Sign in"] = "Přihlásit se";
+$a->strings["Home Page"] = "Domovská stránka";
+$a->strings["Create an account"] = "Vytvořit účet";
+$a->strings["Help and documentation"] = "Nápověda a dokumentace";
+$a->strings["Apps"] = "Aplikace";
+$a->strings["Addon applications, utilities, games"] = "Doplňkové aplikace, nástroje, hry";
+$a->strings["Search site content"] = "Hledání na stránkách tohoto webu";
+$a->strings["Community"] = "Komunita";
+$a->strings["Conversations on this and other servers"] = "Konverzace na tomto a jiných serverech";
+$a->strings["Directory"] = "Adresář";
+$a->strings["People directory"] = "Adresář";
+$a->strings["Information about this friendica instance"] = "Informace o této instanci Friendica";
+$a->strings["Terms of Service of this Friendica instance"] = "Podmínky používání této instance Friendica";
+$a->strings["Network Reset"] = "Reset sítě";
+$a->strings["Load Network page with no filters"] = "Načíst stránku Síť bez filtrů";
+$a->strings["Friend Requests"] = "Žádosti přátel";
+$a->strings["See all notifications"] = "Zobrazit všechny upozornění";
+$a->strings["Mark all system notifications seen"] = "Označit všechny upozornění systému jako přečtené";
+$a->strings["Inbox"] = "Doručená pošta";
+$a->strings["Outbox"] = "Odeslaná pošta";
+$a->strings["Manage"] = "Spravovat";
+$a->strings["Manage other pages"] = "Spravovat jiné stránky";
+$a->strings["Profiles"] = "Profily";
+$a->strings["Manage/Edit Profiles"] = "Spravovat/Editovat Profily";
+$a->strings["Site setup and configuration"] = "Nastavení webu a konfigurace";
+$a->strings["Navigation"] = "Navigace";
+$a->strings["Site map"] = "Mapa webu";
+$a->strings["There are no tables on MyISAM."] = "V MyISAM nejsou žádné tabulky.";
+$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\tVývojáři Friendica nedávno vydali aktualizaci %s,\n\t\t\t\tale když jsem ji zkusil instalovat, něco se strašně pokazilo.\n\t\t\t\tToto se musí ihned opravit a nemůžu to udělat sám. Prosím, kontaktujte\n\t\t\t\tvývojáře Friendica, pokud to nedokážete sám. Moje databáze může být neplatná.";
+$a->strings["The error message is\n[pre]%s[/pre]"] = "Chybová zpráva je\n[pre]%s[/pre]";
+$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nPři aktualizaci databáze se vyskytla chyba %d:\n%s\n";
+$a->strings["Errors encountered performing database changes: "] = "";
+$a->strings["%s: Database update"] = "%s: Aktualizace databáze";
+$a->strings["%s: updating %s table."] = "%s: aktualizuji tabulku %s";
+$a->strings["[no subject]"] = "[bez předmětu]";
+$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."] = "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění <strong>může</strong> ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěli, vytvořte, prosím, další skupinu s jiným názvem.";
+$a->strings["Default privacy group for new contacts"] = "Defaultní soukromá skrupina pro nové kontakty.";
+$a->strings["Everybody"] = "Všichni";
+$a->strings["edit"] = "editovat";
+$a->strings["Edit group"] = "Editovat skupinu";
+$a->strings["Contacts not in any group"] = "Kontakty, které nejsou v žádné skupině";
+$a->strings["Create a new group"] = "Vytvořit novou skupinu";
+$a->strings["Edit groups"] = "Upravit skupiny";
+$a->strings["Drop Contact"] = "Odstranit kontakt";
+$a->strings["Organisation"] = "Organizace";
+$a->strings["News"] = "Zprávy";
+$a->strings["Forum"] = "Fórum";
+$a->strings["Connect URL missing."] = "Chybí URL adresa pro připojení.";
+$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "Kontakt nemohl být přidán. Prosím zkontrolujte relevantní přihlašovací údaje sítě na stránce Nastavení -> Sociální sítě.";
+$a->strings["This site is not configured to allow communications with other networks."] = "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Nenalezen žádný kompatibilní komunikační protokol nebo kanál.";
+$a->strings["The profile address specified does not provide adequate information."] = "Uvedená adresa profilu neposkytuje dostatečné informace.";
+$a->strings["An author or name was not found."] = "Autor nebo jméno nenalezeno";
+$a->strings["No browser URL could be matched to this address."] = "Této adrese neodpovídá žádné URL prohlížeče.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Není možné namapovat adresu Identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem.";
+$a->strings["Use mailto: in front of address to force email check."] = "Použite mailo: před adresou k vynucení emailové kontroly.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Zadaná adresa profilu patří do sítě, která  byla na tomto serveru zakázána.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé/osobní sdělení.";
+$a->strings["Unable to retrieve contact information."] = "Nepodařilo se získat kontaktní informace.";
+$a->strings["%s's birthday"] = "%s má narozeniny";
+$a->strings["Happy Birthday %s"] = "Veselé narozeniny, %s";
+$a->strings["Starts:"] = "Začíná:";
+$a->strings["Finishes:"] = "Končí:";
+$a->strings["all-day"] = "celodenní";
+$a->strings["Jun"] = "Čvn";
+$a->strings["Sept"] = "Září";
+$a->strings["No events to display"] = "Žádné události k zobrazení";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Editovat událost";
+$a->strings["Duplicate event"] = "Duplikovat událost";
+$a->strings["Delete event"] = "Smazat událost";
+$a->strings["D g:i A"] = "D g:i A";
+$a->strings["g:i A"] = "g:i A";
+$a->strings["Show map"] = "Ukázat mapu";
+$a->strings["Hide map"] = "Skrýt mapu";
+$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s se zúčactní %3\$s %2\$s";
+$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s se nezúčastní %3\$s %2\$s";
+$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s by se mohl/a zúčastnit %3\$s %2\$s";
+$a->strings["Requested account is not available."] = "Požadovaný účet není dostupný.";
+$a->strings["Edit profile"] = "Upravit profil";
+$a->strings["Atom feed"] = "Kanál Atom";
+$a->strings["Manage/edit profiles"] = "Spravovat/upravit profily";
+$a->strings["g A l F d"] = "g A l F d";
+$a->strings["F d"] = "F d";
+$a->strings["[today]"] = "[dnes]";
+$a->strings["Birthday Reminders"] = "Připomínka narozenin";
+$a->strings["Birthdays this week:"] = "Narozeniny tento týden:";
+$a->strings["[No description]"] = "[Žádný popis]";
+$a->strings["Event Reminders"] = "Připomenutí událostí";
+$a->strings["Events this week:"] = "Události tohoto týdne:";
+$a->strings["Member since:"] = "Členem od:";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Age:"] = "Věk:";
+$a->strings["for %1\$d %2\$s"] = "pro %1\$d %2\$s";
+$a->strings["Religion:"] = "Náboženství:";
+$a->strings["Hobbies/Interests:"] = "Koníčky/zájmy:";
+$a->strings["Contact information and Social Networks:"] = "Kontaktní informace a sociální sítě:";
+$a->strings["Musical interests:"] = "Hudební vkus:";
+$a->strings["Books, literature:"] = "Knihy, literatura:";
+$a->strings["Television:"] = "Televize:";
+$a->strings["Film/dance/culture/entertainment:"] = "Film/tanec/kultura/zábava:";
+$a->strings["Love/Romance:"] = "Láska/romantika";
+$a->strings["Work/employment:"] = "Práce/zaměstnání:";
+$a->strings["School/education:"] = "Škola/vzdělávání:";
+$a->strings["Forums:"] = "Fóra";
+$a->strings["Only You Can See This"] = "Toto můžete vidět jen Vy";
+$a->strings["Login failed"] = "Přihlášení selhalo";
+$a->strings["Not enough information to authenticate"] = "Není dost informací pro autentikaci";
+$a->strings["An invitation is required."] = "Pozvánka je vyžadována.";
+$a->strings["Invitation could not be verified."] = "Pozvánka nemohla být ověřena.";
+$a->strings["Invalid OpenID url"] = "Neplatný odkaz OpenID";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. ";
+$a->strings["The error message was:"] = "Chybová zpráva byla:";
+$a->strings["Please enter the required information."] = "Zadejte prosím požadované informace.";
+$a->strings["Please use a shorter name."] = "Použijte prosím kratší jméno.";
+$a->strings["Name too short."] = "Jméno je příliš krátké.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení).";
+$a->strings["Your email domain is not among those allowed on this site."] = "Váš e-mailová doména není na tomto serveru mezi povolenými.";
+$a->strings["Not a valid email address."] = "Neplatná e-mailová adresa.";
+$a->strings["Cannot use that email."] = "Tento e-mail nelze použít.";
+$a->strings["Your nickname can only contain a-z, 0-9 and _."] = "Uživatelské jméno může obsahovat pouze znaky a-z, 0-9 a _.";
+$a->strings["Nickname is already registered. Please choose another."] = "Přezdívka je již registrována. Prosím vyberte jinou.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ZÁVAŽNÁ CHYBA: Generování bezpečnostních klíčů se nezdařilo.";
+$a->strings["An error occurred during registration. Please try again."] = "Došlo k chybě při registraci. Zkuste to prosím znovu.";
+$a->strings["An error occurred creating your default profile. Please try again."] = "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu.";
+$a->strings["An error occurred creating your self contact. Please try again."] = "Došlo k chybě při vytváření Vašeho kontaktu na sebe. Zkuste to prosím znovu.";
+$a->strings["An error occurred creating your default contact group. Please try again."] = "Došlo k chybě při vytváření Vaší výchozí skupiny kontaktů. Zkuste to prosím znovu.";
+$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\tVážený/á %1\$s,\n\t\t\t\tDěkujeme, že jste se registroval/a na %2\$s. Váš účet čeká na schválení administrátora.\n\t\t";
+$a->strings["Registration at %s"] = "Registrace na %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\tVážený/á %1\$s,\n\t\t\t\tDěkujeme, že jste se registroval/a na %2\$s. Váš účet byl vytvořen.\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."] = "\n\t\t\tZde jsou vaše přihlašovací detaily:\n\n\t\t\tAdresa stránky:\t\t%3\$s\n\t\t\tPřihlašovací jméno:\t%1\$s\n\t\t\tHeslo:\t\t\t%5\$s\n\n\t\t\tSvé heslo si po přihlášení můžete změnit na stránce \"Nastavení\" vašeho\n\t\t\túčtu.\n\n\t\t\tProsím, prohlédněte si na chvilku ostatní nastavení účtu na té stránce.\n\n\t\t\tMožná byste si také přáli přidat pár základních informací na svůj výchozí\n\t\t\tprofil (na stránce \"Profily\") aby vás další lidé mohli snadno najít.\n\n\t\t\tDoporučujeme nastavit si vaše celé jméno, přidat profilovou fotku,\n\t\t\tpřidat pár \"klíčových slov\" k profilu (velmi užitečné při získávání nových\n\t\t\tpřátel) - a možná v jaké zemi žijete; pokud nechcete být konkrétnější.\n\n\t\t\tZcela respektujeme vaše právo na soukromí a žádnou z těchto položek\n\t\t\tnení potřeba vyplňovat. Pokud jste zde nový/á a nikoho zde neznáte, mohou vám\n\t\t\tpomoci si získat nové a zajímavé přátele.\n\n\t\t\tPokud byste si někdy přál/a smazat účet, může tak učinit na stránce\n\t\t\t%3\$s/removeme.\n\n\t\t\tDěkujeme vám a vítáme vás na %2\$s.";
+$a->strings["Sharing notification from Diaspora network"] = "Oznámení o sdílení ze sítě Diaspora";
+$a->strings["Attachments:"] = "Přílohy:";
+$a->strings["%s is now following %s."] = "%s nyní sleduje %s.";
+$a->strings["following"] = "sleduje";
+$a->strings["%s stopped following %s."] = "%s přestal sledovat %s.";
+$a->strings["stopped following"] = "přestal sledovat";
+$a->strings["(no subject)"] = "(bez předmětu)";
+$a->strings["Logged out."] = "Odhlášen.";
+$a->strings["Create a New Account"] = "Vytvořit nový účet";
+$a->strings["Password: "] = "Heslo: ";
+$a->strings["Remember me"] = "Pamatuj si mne";
+$a->strings["Or login using OpenID: "] = "Nebo se přihlaste pomocí OpenID: ";
+$a->strings["Forgot your password?"] = "Zapomněli jste své heslo?";
+$a->strings["Website Terms of Service"] = "Podmínky používání stránky";
+$a->strings["terms of service"] = "podmínky používání";
+$a->strings["Website Privacy Policy"] = "Pravidla ochrany soukromí serveru";
+$a->strings["privacy policy"] = "Ochrana soukromí";
+$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."] = "Ve chvíli registrace, a pro poskytování komunikace mezi uživatelským účtem a jeho kontakty, musí uživatel poskytnout zobrazované jméno (pseudonym), uživatelské jméno (předzdívku) a funkční e-mailovou adresu. Jména budou dostupná na profilové stránce účtu pro kteréhokoliv návštěvníka, i kdyby ostatní detaily nebyly zobrazeny. E-mailová adresa bude použita pouze pro zasílání oznámení o interakcích, nebude ale viditelně zobrazována. Zápis účtu do adresáře účtů serveru nebo globálního adresáře účtů je nepovinný a může být ovládán v nastavení uživatele, není potřebný pro komunikaci.";
+$a->strings["This data is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional private data that may be transmitted to the communication partners accounts."] = "Tato data jsou vyžadována ke komunikaci a jsou předávána serverům komunikačních partnerů a jsou tam ukládána. Uživatelé mohou zadávat dodatečná soukromá data, která mohou být odeslána na účty komunikačních partnerů.";
+$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. Deletion of the data will also be requested from the nodes of the communication partners."] = "Přihlášený uživatel si kdykoliv může exportovat svoje data účtu z <a href=\"%1\$s/settings/uexport\">nastavení účtu</a>. Pokud by chtěl uživatel svůj účet smazat, může tak učinit na stránce <a href=\"%1\$s/removeme\">%1\$s/removeme</a>. Smazání účtu bude trvalé. Na serverech komunikačních partnerů bude zároveň vyžádáno smazání dat.";
+$a->strings["Privacy Statement"] = "Prohlášení o ochraně soukromí";
+$a->strings["This entry was edited"] = "Tento záznam byl editován";
+$a->strings["Delete globally"] = "Smazat globálně";
+$a->strings["Remove locally"] = "Odstranit lokálně";
+$a->strings["save to folder"] = "uložit do složky";
+$a->strings["I will attend"] = "Zúčastním se";
+$a->strings["I will not attend"] = "Nezúčastním se";
+$a->strings["I might attend"] = "Mohl bych se zúčastnit";
+$a->strings["add star"] = "přidat hvězdu";
+$a->strings["remove star"] = "odebrat hvězdu";
+$a->strings["toggle star status"] = "přepínat hvězdu";
+$a->strings["starred"] = "označeno hvězdou";
+$a->strings["ignore thread"] = "ignorovat vlákno";
+$a->strings["unignore thread"] = "přestat ignorovat vlákno";
+$a->strings["toggle ignore status"] = "přepínat stav ignorování";
+$a->strings["add tag"] = "přidat štítek";
+$a->strings["like"] = "má rád";
+$a->strings["dislike"] = "nemá rád";
+$a->strings["Share this"] = "Sdílet toto";
+$a->strings["share"] = "sdílí";
+$a->strings["to"] = "pro";
+$a->strings["via"] = "přes";
+$a->strings["Wall-to-Wall"] = "Ze zdi na zeď";
+$a->strings["via Wall-To-Wall:"] = "ze zdi na zeď";
+$a->strings["%d comment"] = [
+       0 => "%d komentář",
+       1 => "%d komentáře",
+       2 => "%d komentářů",
+       3 => "%d komentářů",
+];
+$a->strings["Bold"] = "Tučné";
+$a->strings["Italic"] = "Kurzíva";
+$a->strings["Underline"] = "Podrtžené";
+$a->strings["Quote"] = "Citovat";
+$a->strings["Code"] = "Kód";
+$a->strings["Image"] = "Obrázek";
+$a->strings["Link"] = "Odkaz";
+$a->strings["Video"] = "Video";
+$a->strings["Delete this item?"] = "Odstranit tuto položku?";
+$a->strings["show fewer"] = "zobrazit méně";
+$a->strings["No system theme config value set."] = "Není nastavena konfigurační hodnota systémového motivu.";
+$a->strings["toggle mobile"] = "přepínat mobilní zobrazení";
+$a->strings["Update %s failed. See error logs."] = "Aktualizace %s selhala. Zkontrolujte protokol chyb.";
+$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = "%s: Aktualizuji author-id a owner-id v tabulce položek a vláken.";
index e6c06ae51e1028edb920f6a245cff4ce210a9662..611919f4b47c9b7146b629c6588020f4702c7b25 100644 (file)
@@ -42,7 +42,7 @@ msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-06-02 08:49+0200\n"
-"PO-Revision-Date: 2018-06-02 13:54+0000\n"
+"PO-Revision-Date: 2018-06-06 22:35+0000\n"
 "Last-Translator: Tobias Diekershoff <tobias.diekershoff@gmx.net>\n"
 "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n"
 "MIME-Version: 1.0\n"
@@ -2159,7 +2159,7 @@ msgstr "Beziehe Information"
 
 #: mod/contacts.php:574
 msgid "Fetch keywords"
-msgstr "Schlüsselwprter abrufen"
+msgstr "Schlüsselwörter abrufen"
 
 #: mod/contacts.php:575
 msgid "Fetch information and keywords"
index 2d2dbb8a301b5380e51a1688dbef32ba07828360..9405938d0b06a395bca30ca78bc735f7d10e228a 100644 (file)
@@ -484,7 +484,7 @@ $a->strings["Fetch further information for feeds"] = "Weitere Informationen zu F
 $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."] = "Zusätzliche Informationen wie Vorschaubilder, Titel und Zusammenfassungen vom Feed-Eintrag laden. Du kannst diese Option aktivieren, wenn der Feed nicht all zu viel Text beinhaltet. Schlagwörter werden auf den Meta-Informationen des Feed-Headers bezogen und als Hash-Tags verwendet.";
 $a->strings["Disabled"] = "Deaktiviert";
 $a->strings["Fetch information"] = "Beziehe Information";
-$a->strings["Fetch keywords"] = "Schlüsselwprter abrufen";
+$a->strings["Fetch keywords"] = "Schlüsselwörter abrufen";
 $a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte";
 $a->strings["Disconnect/Unfollow"] = "Verbindung lösen/Nicht mehr folgen";
 $a->strings["Contact"] = "Kontakt";
index 9b0aa717176706b1ccbd12691fdde5258989ceed..4004363e8509b5c7ee8368ff83fd8ae8ed6476bb 100644 (file)
@@ -4,13 +4,14 @@
 # 
 # Translators:
 # Andy H3 <andy@hubup.pro>, 2017-2018
+# R C <miqrogroove@gmail.com>, 2018
 msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-20 14:22+0200\n"
-"PO-Revision-Date: 2018-05-21 12:05+0000\n"
-"Last-Translator: Andy H3 <andy@hubup.pro>\n"
+"POT-Creation-Date: 2018-06-02 08:49+0200\n"
+"PO-Revision-Date: 2018-06-13 04:09+0000\n"
+"Last-Translator: R C <miqrogroove@gmail.com>\n"
 "Language-Team: English (United States) (http://www.transifex.com/Friendica/friendica/language/en_US/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -268,7 +269,7 @@ msgid ""
 "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' has chosen to accept you as 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' has chosen to accept you as 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."
 
 #: include/enotify.php:348
 #, php-format
@@ -282,7 +283,7 @@ msgstr "'%1$s' may choose to extend this into a two-way or more permissive relat
 msgid "Please visit %s  if you wish to make any changes to this relationship."
 msgstr "Please visit %s  if you wish to make any changes to this relationship."
 
-#: include/enotify.php:360 mod/removeme.php:44
+#: include/enotify.php:360 mod/removeme.php:45
 msgid "[Friendica System Notify]"
 msgstr "[Friendica System Notify]"
 
@@ -310,518 +311,494 @@ msgstr "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
 msgid "Please visit %s to approve or reject the request."
 msgstr "Please visit %s to approve or reject the request."
 
-#: include/security.php:81
-msgid "Welcome "
-msgstr "Welcome "
-
-#: include/security.php:82
-msgid "Please upload a profile photo."
-msgstr "Please upload a profile photo."
-
-#: include/security.php:84
-msgid "Welcome back "
-msgstr "Welcome back "
-
-#: 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 "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours."
-
-#: include/dba.php:59
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Cannot locate DNS info for database server '%s'"
-
 #: include/api.php:1202
 #, php-format
 msgid "Daily posting limit of %d post reached. The post was rejected."
 msgid_plural "Daily posting limit of %d posts reached. The post was rejected."
-msgstr[0] "Daily posting limit of %d post are reached. The post was rejected."
-msgstr[1] "Daily posting limit of %d posts are reached. This post was rejected."
+msgstr[0] "Daily posting limit of %d post reached. The post was rejected."
+msgstr[1] "Daily posting limit of %d posts reached. This post was rejected."
 
 #: include/api.php:1226
 #, php-format
 msgid "Weekly posting limit of %d post reached. The post was rejected."
 msgid_plural ""
 "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr[0] "Weekly posting limit of %d post are reached. The post was rejected."
-msgstr[1] "Weekly posting limit of %d posts are reached. This post was rejected."
+msgstr[0] "Weekly posting limit of %d post reached. The post was rejected."
+msgstr[1] "Weekly posting limit of %d posts reached. This post was rejected."
 
 #: include/api.php:1250
 #, php-format
 msgid "Monthly posting limit of %d post reached. The post was rejected."
-msgstr "Monthly posting limit of %d posts are reached. This post was rejected."
+msgstr "Monthly posting limit of %d posts reached. This post was rejected."
 
-#: include/api.php:4522 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:4521 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:710 mod/photos.php:1137
+#: mod/photos.php:1154 mod/photos.php:1678 src/Model/User.php:555
+#: src/Model/User.php:563 src/Model/User.php:571
 msgid "Profile Photos"
 msgstr "Profile photos"
 
-#: include/conversation.php:144 include/conversation.php:282
-#: include/text.php:1749 src/Model/Item.php:1970
+#: include/conversation.php:144 include/conversation.php:279
+#: include/text.php:1749 src/Model/Item.php:2002
 msgid "event"
 msgstr "event"
 
 #: 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:1968
+#: include/conversation.php:282 include/conversation.php:291
+#: mod/subthread.php:101 mod/tagger.php:72 src/Model/Item.php:2000
 #: src/Protocol/Diaspora.php:1957
 msgid "status"
 msgstr "status"
 
-#: include/conversation.php:152 include/conversation.php:290
-#: include/text.php:1751 mod/subthread.php:97 mod/tagger.php:72
-#: src/Model/Item.php:1968
+#: include/conversation.php:152 include/conversation.php:287
+#: include/text.php:1751 mod/subthread.php:101 mod/tagger.php:72
+#: src/Model/Item.php:2000
 msgid "photo"
 msgstr "photo"
 
-#: include/conversation.php:164 src/Model/Item.php:1841
+#: include/conversation.php:164 src/Model/Item.php:1873
 #: src/Protocol/Diaspora.php:1953
 #, php-format
 msgid "%1$s likes %2$s's %3$s"
 msgstr "%1$s likes %2$s's %3$s"
 
-#: include/conversation.php:167 src/Model/Item.php:1846
+#: include/conversation.php:166 src/Model/Item.php:1878
 #, php-format
 msgid "%1$s doesn't like %2$s's %3$s"
 msgstr "%1$s doesn't like %2$s's %3$s"
 
-#: include/conversation.php:170
+#: include/conversation.php:168
 #, php-format
 msgid "%1$s attends %2$s's %3$s"
 msgstr "%1$s goes to %2$s's %3$s"
 
-#: include/conversation.php:173
+#: include/conversation.php:170
 #, php-format
 msgid "%1$s doesn't attend %2$s's %3$s"
-msgstr "%1$s doesn't go %2$s's %3$s"
+msgstr "%1$s won’t attend %2$s's %3$s"
 
-#: include/conversation.php:176
+#: include/conversation.php:172
 #, php-format
 msgid "%1$s attends maybe %2$s's %3$s"
 msgstr "%1$s might go to %2$s's %3$s"
 
-#: include/conversation.php:209
+#: include/conversation.php:206
 #, php-format
 msgid "%1$s is now friends with %2$s"
 msgstr "%1$s is now friends with %2$s"
 
-#: include/conversation.php:250
+#: include/conversation.php:247
 #, php-format
 msgid "%1$s poked %2$s"
 msgstr "%1$s poked %2$s"
 
-#: include/conversation.php:304 mod/tagger.php:110
+#: include/conversation.php:301 mod/tagger.php:110
 #, php-format
 msgid "%1$s tagged %2$s's %3$s with %4$s"
 msgstr "%1$s tagged %2$s's %3$s with %4$s"
 
-#: include/conversation.php:331
+#: include/conversation.php:328
 msgid "post/item"
 msgstr "Post/Item"
 
-#: include/conversation.php:332
+#: include/conversation.php:329
 #, php-format
 msgid "%1$s marked %2$s's %3$s as favorite"
 msgstr "%1$s marked %2$s's %3$s as favorite"
 
-#: include/conversation.php:608 mod/photos.php:1501 mod/profiles.php:355
+#: include/conversation.php:609 mod/photos.php:1495 mod/profiles.php:355
 msgid "Likes"
 msgstr "Likes"
 
-#: include/conversation.php:608 mod/photos.php:1501 mod/profiles.php:359
+#: include/conversation.php:609 mod/photos.php:1495 mod/profiles.php:359
 msgid "Dislikes"
 msgstr "Dislikes"
 
-#: include/conversation.php:609 include/conversation.php:1639
-#: mod/photos.php:1502
+#: include/conversation.php:610 include/conversation.php:1638
+#: mod/photos.php:1496
 msgid "Attending"
 msgid_plural "Attending"
 msgstr[0] "Attending"
 msgstr[1] "Attending"
 
-#: include/conversation.php:609 mod/photos.php:1502
+#: include/conversation.php:610 mod/photos.php:1496
 msgid "Not attending"
 msgstr "Not attending"
 
-#: include/conversation.php:609 mod/photos.php:1502
+#: include/conversation.php:610 mod/photos.php:1496
 msgid "Might attend"
 msgstr "Might attend"
 
-#: include/conversation.php:721 mod/photos.php:1569 src/Object/Post.php:192
+#: include/conversation.php:722 mod/photos.php:1563 src/Object/Post.php:192
 msgid "Select"
 msgstr "Select"
 
-#: include/conversation.php:722 mod/photos.php:1570 mod/contacts.php:830
-#: mod/contacts.php:1035 mod/admin.php:1827 mod/settings.php:730
-#: src/Object/Post.php:187
+#: include/conversation.php:723 mod/contacts.php:830 mod/contacts.php:1035
+#: mod/admin.php:1832 mod/photos.php:1564 mod/settings.php:730
 msgid "Delete"
 msgstr "Delete"
 
-#: include/conversation.php:760 src/Object/Post.php:371
+#: include/conversation.php:761 src/Object/Post.php:371
 #: src/Object/Post.php:372
 #, php-format
 msgid "View %s's profile @ %s"
 msgstr "View %s's profile @ %s"
 
-#: include/conversation.php:772 src/Object/Post.php:359
+#: include/conversation.php:773 src/Object/Post.php:359
 msgid "Categories:"
 msgstr "Categories:"
 
-#: include/conversation.php:773 src/Object/Post.php:360
+#: include/conversation.php:774 src/Object/Post.php:360
 msgid "Filed under:"
 msgstr "Filed under:"
 
-#: include/conversation.php:780 src/Object/Post.php:385
+#: include/conversation.php:781 src/Object/Post.php:385
 #, php-format
 msgid "%s from %s"
 msgstr "%s from %s"
 
-#: include/conversation.php:795
+#: include/conversation.php:796
 msgid "View in context"
 msgstr "View in context"
 
-#: include/conversation.php:797 include/conversation.php:1312
-#: mod/wallmessage.php:145 mod/editpost.php:125 mod/photos.php:1473
-#: mod/message.php:245 mod/message.php:414 src/Object/Post.php:410
+#: include/conversation.php:798 include/conversation.php:1313
+#: mod/wallmessage.php:145 mod/editpost.php:125 mod/message.php:245
+#: mod/message.php:414 mod/photos.php:1467 src/Object/Post.php:410
 msgid "Please wait"
 msgstr "Please wait"
 
-#: include/conversation.php:868
+#: include/conversation.php:869
 msgid "remove"
 msgstr "Remove"
 
-#: include/conversation.php:872
+#: include/conversation.php:873
 msgid "Delete Selected Items"
 msgstr "Delete selected items"
 
-#: include/conversation.php:1017 view/theme/frio/theme.php:352
+#: include/conversation.php:1018 view/theme/frio/theme.php:352
 msgid "Follow Thread"
 msgstr "Follow thread"
 
-#: include/conversation.php:1018 src/Model/Contact.php:662
+#: include/conversation.php:1019 src/Model/Contact.php:662
 msgid "View Status"
 msgstr "View status"
 
-#: include/conversation.php:1019 include/conversation.php:1035
+#: include/conversation.php:1020 include/conversation.php:1036
 #: mod/allfriends.php:73 mod/suggest.php:82 mod/match.php:89
 #: mod/directory.php:159 mod/dirfind.php:217 src/Model/Contact.php:602
 #: src/Model/Contact.php:615 src/Model/Contact.php:663
 msgid "View Profile"
 msgstr "View profile"
 
-#: include/conversation.php:1020 src/Model/Contact.php:664
+#: include/conversation.php:1021 src/Model/Contact.php:664
 msgid "View Photos"
 msgstr "View photos"
 
-#: include/conversation.php:1021 src/Model/Contact.php:665
+#: include/conversation.php:1022 src/Model/Contact.php:665
 msgid "Network Posts"
 msgstr "Network posts"
 
-#: include/conversation.php:1022 src/Model/Contact.php:666
+#: include/conversation.php:1023 src/Model/Contact.php:666
 msgid "View Contact"
 msgstr "View contact"
 
-#: include/conversation.php:1023 src/Model/Contact.php:668
+#: include/conversation.php:1024 src/Model/Contact.php:668
 msgid "Send PM"
 msgstr "Send PM"
 
-#: include/conversation.php:1027 src/Model/Contact.php:669
+#: include/conversation.php:1028 src/Model/Contact.php:669
 msgid "Poke"
 msgstr "Poke"
 
-#: include/conversation.php:1032 mod/allfriends.php:74 mod/suggest.php:83
+#: include/conversation.php:1033 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:616
 msgid "Connect/Follow"
 msgstr "Connect/Follow"
 
-#: include/conversation.php:1151
+#: include/conversation.php:1152
 #, php-format
 msgid "%s likes this."
 msgstr "%s likes this."
 
-#: include/conversation.php:1154
+#: include/conversation.php:1155
 #, php-format
 msgid "%s doesn't like this."
 msgstr "%s doesn't like this."
 
-#: include/conversation.php:1157
+#: include/conversation.php:1158
 #, php-format
 msgid "%s attends."
 msgstr "%s attends."
 
-#: include/conversation.php:1160
+#: include/conversation.php:1161
 #, php-format
 msgid "%s doesn't attend."
-msgstr "%s doesn't attend."
+msgstr "%s won't attend."
 
-#: include/conversation.php:1163
+#: include/conversation.php:1164
 #, php-format
 msgid "%s attends maybe."
-msgstr "%s may attend."
+msgstr "%s might attend."
 
-#: include/conversation.php:1174
+#: include/conversation.php:1175
 msgid "and"
 msgstr "and"
 
-#: include/conversation.php:1180
+#: include/conversation.php:1181
 #, php-format
 msgid "and %d other people"
 msgstr "and %d other people"
 
-#: include/conversation.php:1189
+#: include/conversation.php:1190
 #, php-format
 msgid "<span  %1$s>%2$d people</span> like this"
 msgstr "<span  %1$s>%2$d people</span> like this"
 
-#: include/conversation.php:1190
+#: include/conversation.php:1191
 #, php-format
 msgid "%s like this."
 msgstr "%s like this."
 
-#: include/conversation.php:1193
+#: include/conversation.php:1194
 #, php-format
 msgid "<span  %1$s>%2$d people</span> don't like this"
 msgstr "<span  %1$s>%2$d people</span> don't like this"
 
-#: include/conversation.php:1194
+#: include/conversation.php:1195
 #, php-format
 msgid "%s don't like this."
 msgstr "%s don't like this."
 
-#: include/conversation.php:1197
+#: include/conversation.php:1198
 #, php-format
 msgid "<span  %1$s>%2$d people</span> attend"
 msgstr "<span  %1$s>%2$d people</span> attend"
 
-#: include/conversation.php:1198
+#: include/conversation.php:1199
 #, php-format
 msgid "%s attend."
 msgstr "%s attend."
 
-#: include/conversation.php:1201
+#: include/conversation.php:1202
 #, php-format
 msgid "<span  %1$s>%2$d people</span> don't attend"
-msgstr "<span  %1$s>%2$d people</span> don't attend"
+msgstr "<span  %1$s>%2$d people</span> won't attend"
 
-#: include/conversation.php:1202
+#: include/conversation.php:1203
 #, php-format
 msgid "%s don't attend."
-msgstr "%s don't attend."
+msgstr "%s won't attend."
 
-#: include/conversation.php:1205
+#: include/conversation.php:1206
 #, php-format
 msgid "<span  %1$s>%2$d people</span> attend maybe"
-msgstr "<span  %1$s>%2$d people</span> attend maybe"
+msgstr "<span  %1$s>%2$d people</span> might attend"
 
-#: include/conversation.php:1206
+#: include/conversation.php:1207
 #, php-format
 msgid "%s attend maybe."
 msgstr "%s may be attending."
 
-#: include/conversation.php:1236 include/conversation.php:1252
+#: include/conversation.php:1237 include/conversation.php:1253
 msgid "Visible to <strong>everybody</strong>"
 msgstr "Visible to <strong>everybody</strong>"
 
-#: include/conversation.php:1237 include/conversation.php:1253
+#: include/conversation.php:1238 include/conversation.php:1254
 #: mod/wallmessage.php:120 mod/wallmessage.php:127 mod/message.php:181
 #: mod/message.php:188 mod/message.php:324 mod/message.php:331
 msgid "Please enter a link URL:"
 msgstr "Please enter a link URL:"
 
-#: include/conversation.php:1238 include/conversation.php:1254
+#: include/conversation.php:1239 include/conversation.php:1255
 msgid "Please enter a video link/URL:"
 msgstr "Please enter a video link/URL:"
 
-#: include/conversation.php:1239 include/conversation.php:1255
+#: include/conversation.php:1240 include/conversation.php:1256
 msgid "Please enter an audio link/URL:"
 msgstr "Please enter an audio link/URL:"
 
-#: include/conversation.php:1240 include/conversation.php:1256
+#: include/conversation.php:1241 include/conversation.php:1257
 msgid "Tag term:"
 msgstr "Tag term:"
 
-#: include/conversation.php:1241 include/conversation.php:1257
+#: include/conversation.php:1242 include/conversation.php:1258
 #: mod/filer.php:34
 msgid "Save to Folder:"
 msgstr "Save to folder:"
 
-#: include/conversation.php:1242 include/conversation.php:1258
+#: include/conversation.php:1243 include/conversation.php:1259
 msgid "Where are you right now?"
 msgstr "Where are you right now?"
 
-#: include/conversation.php:1243
+#: include/conversation.php:1244
 msgid "Delete item(s)?"
 msgstr "Delete item(s)?"
 
-#: include/conversation.php:1290
+#: include/conversation.php:1291
 msgid "New Post"
 msgstr "New post"
 
-#: include/conversation.php:1293
+#: include/conversation.php:1294
 msgid "Share"
 msgstr "Share"
 
-#: include/conversation.php:1294 mod/wallmessage.php:143 mod/editpost.php:111
+#: include/conversation.php:1295 mod/wallmessage.php:143 mod/editpost.php:111
 #: mod/message.php:243 mod/message.php:411
 msgid "Upload photo"
 msgstr "Upload photo"
 
-#: include/conversation.php:1295 mod/editpost.php:112
+#: include/conversation.php:1296 mod/editpost.php:112
 msgid "upload photo"
 msgstr "upload photo"
 
-#: include/conversation.php:1296 mod/editpost.php:113
+#: include/conversation.php:1297 mod/editpost.php:113
 msgid "Attach file"
 msgstr "Attach file"
 
-#: include/conversation.php:1297 mod/editpost.php:114
+#: include/conversation.php:1298 mod/editpost.php:114
 msgid "attach file"
 msgstr "attach file"
 
-#: include/conversation.php:1298 mod/wallmessage.php:144 mod/editpost.php:115
+#: include/conversation.php:1299 mod/wallmessage.php:144 mod/editpost.php:115
 #: mod/message.php:244 mod/message.php:412
 msgid "Insert web link"
 msgstr "Insert web link"
 
-#: include/conversation.php:1299 mod/editpost.php:116
+#: include/conversation.php:1300 mod/editpost.php:116
 msgid "web link"
 msgstr "web link"
 
-#: include/conversation.php:1300 mod/editpost.php:117
+#: include/conversation.php:1301 mod/editpost.php:117
 msgid "Insert video link"
 msgstr "Insert video link"
 
-#: include/conversation.php:1301 mod/editpost.php:118
+#: include/conversation.php:1302 mod/editpost.php:118
 msgid "video link"
 msgstr "video link"
 
-#: include/conversation.php:1302 mod/editpost.php:119
+#: include/conversation.php:1303 mod/editpost.php:119
 msgid "Insert audio link"
 msgstr "Insert audio link"
 
-#: include/conversation.php:1303 mod/editpost.php:120
+#: include/conversation.php:1304 mod/editpost.php:120
 msgid "audio link"
 msgstr "audio link"
 
-#: include/conversation.php:1304 mod/editpost.php:121
+#: include/conversation.php:1305 mod/editpost.php:121
 msgid "Set your location"
 msgstr "Set your location"
 
-#: include/conversation.php:1305 mod/editpost.php:122
+#: include/conversation.php:1306 mod/editpost.php:122
 msgid "set location"
 msgstr "set location"
 
-#: include/conversation.php:1306 mod/editpost.php:123
+#: include/conversation.php:1307 mod/editpost.php:123
 msgid "Clear browser location"
 msgstr "Clear browser location"
 
-#: include/conversation.php:1307 mod/editpost.php:124
+#: include/conversation.php:1308 mod/editpost.php:124
 msgid "clear location"
 msgstr "clear location"
 
-#: include/conversation.php:1309 mod/editpost.php:138
+#: include/conversation.php:1310 mod/editpost.php:138
 msgid "Set title"
 msgstr "Set title"
 
-#: include/conversation.php:1311 mod/editpost.php:140
+#: include/conversation.php:1312 mod/editpost.php:140
 msgid "Categories (comma-separated list)"
 msgstr "Categories (comma-separated list)"
 
-#: include/conversation.php:1313 mod/editpost.php:126
+#: include/conversation.php:1314 mod/editpost.php:126
 msgid "Permission settings"
 msgstr "Permission settings"
 
-#: include/conversation.php:1314 mod/editpost.php:155
+#: include/conversation.php:1315 mod/editpost.php:155
 msgid "permissions"
 msgstr "permissions"
 
-#: include/conversation.php:1322 mod/editpost.php:135
+#: include/conversation.php:1323 mod/editpost.php:135
 msgid "Public post"
 msgstr "Public post"
 
-#: include/conversation.php:1326 mod/editpost.php:146 mod/photos.php:1492
-#: mod/photos.php:1531 mod/photos.php:1604 mod/events.php:528
+#: include/conversation.php:1327 mod/editpost.php:146 mod/events.php:529
+#: mod/photos.php:1486 mod/photos.php:1525 mod/photos.php:1598
 #: src/Object/Post.php:813
 msgid "Preview"
 msgstr "Preview"
 
-#: include/conversation.php:1330 include/items.php:387 mod/fbrowser.php:103
+#: include/conversation.php:1331 include/items.php:388 mod/fbrowser.php:103
 #: mod/fbrowser.php:134 mod/suggest.php:41 mod/tagrm.php:19 mod/tagrm.php:99
-#: mod/editpost.php:149 mod/photos.php:248 mod/photos.php:324
-#: mod/videos.php:147 mod/contacts.php:475 mod/unfollow.php:117
+#: mod/editpost.php:149 mod/contacts.php:475 mod/unfollow.php:117
 #: mod/follow.php:161 mod/message.php:141 mod/dfrn_request.php:658
-#: mod/settings.php:670 mod/settings.php:696
+#: mod/photos.php:248 mod/photos.php:317 mod/settings.php:670
+#: mod/settings.php:696 mod/videos.php:147
 msgid "Cancel"
 msgstr "Cancel"
 
-#: include/conversation.php:1335
+#: include/conversation.php:1336
 msgid "Post to Groups"
 msgstr "Post to groups"
 
-#: include/conversation.php:1336
+#: include/conversation.php:1337
 msgid "Post to Contacts"
 msgstr "Post to contacts"
 
-#: include/conversation.php:1337
+#: include/conversation.php:1338
 msgid "Private post"
 msgstr "Private post"
 
-#: include/conversation.php:1342 mod/editpost.php:153
+#: include/conversation.php:1343 mod/editpost.php:153
 #: src/Model/Profile.php:338
 msgid "Message"
 msgstr "Message"
 
-#: include/conversation.php:1343 mod/editpost.php:154
+#: include/conversation.php:1344 mod/editpost.php:154
 msgid "Browser"
 msgstr "Browser"
 
-#: include/conversation.php:1610
+#: include/conversation.php:1609
 msgid "View all"
 msgstr "View all"
 
-#: include/conversation.php:1633
+#: include/conversation.php:1632
 msgid "Like"
 msgid_plural "Likes"
 msgstr[0] "Like"
 msgstr[1] "Likes"
 
-#: include/conversation.php:1636
+#: include/conversation.php:1635
 msgid "Dislike"
 msgid_plural "Dislikes"
 msgstr[0] "Dislike"
 msgstr[1] "Dislikes"
 
-#: include/conversation.php:1642
+#: include/conversation.php:1641
 msgid "Not Attending"
 msgid_plural "Not Attending"
 msgstr[0] "Not attending"
 msgstr[1] "Not attending"
 
-#: include/conversation.php:1645 src/Content/ContactSelector.php:125
+#: include/conversation.php:1644 src/Content/ContactSelector.php:125
 msgid "Undecided"
 msgid_plural "Undecided"
 msgstr[0] "Undecided"
 msgstr[1] "Undecided"
 
-#: include/items.php:342 mod/notice.php:22 mod/viewsrc.php:21
-#: mod/admin.php:277 mod/admin.php:1883 mod/admin.php:2131 mod/display.php:72
+#: include/items.php:343 mod/notice.php:22 mod/viewsrc.php:21
+#: mod/admin.php:277 mod/admin.php:1888 mod/admin.php:2136 mod/display.php:72
 #: mod/display.php:255 mod/display.php:356
 msgid "Item not found."
 msgstr "Item not found."
 
-#: include/items.php:382
+#: include/items.php:383
 msgid "Do you really want to delete this item?"
 msgstr "Do you really want to delete this item?"
 
-#: include/items.php:384 mod/api.php:110 mod/suggest.php:38
+#: include/items.php:385 mod/api.php:110 mod/suggest.php:38
 #: mod/contacts.php:472 mod/follow.php:150 mod/message.php:138
 #: mod/dfrn_request.php:648 mod/profiles.php:543 mod/profiles.php:546
 #: mod/profiles.php:568 mod/register.php:238 mod/settings.php:1094
@@ -832,341 +809,360 @@ msgstr "Do you really want to delete this item?"
 msgid "Yes"
 msgstr "Yes"
 
-#: include/items.php:401 mod/allfriends.php:21 mod/api.php:35 mod/api.php:40
+#: include/items.php:402 mod/allfriends.php:21 mod/api.php:35 mod/api.php:40
 #: mod/attach.php:38 mod/common.php:26 mod/nogroup.php:28
 #: mod/repair_ostatus.php:13 mod/suggest.php:60 mod/uimport.php:28
 #: 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/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/ostatus_subscribe.php:16 mod/profile_photo.php:30
+#: mod/editpost.php:18 mod/fsuggest.php:80 mod/cal.php:304
+#: mod/contacts.php:386 mod/delegate.php:25 mod/delegate.php:43
+#: mod/delegate.php:54 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/crepair.php:98 mod/message.php:59 mod/message.php:104 mod/group.php:26
-#: mod/dfrn_confirm.php:68 mod/item.php:160 mod/notifications.php:73
-#: mod/profiles.php:182 mod/profiles.php:513 mod/register.php:54
-#: mod/settings.php:43 mod/settings.php:142 mod/settings.php:659 index.php:436
+#: mod/follow.php:118 mod/invite.php:20 mod/invite.php:111 mod/crepair.php:98
+#: mod/message.php:59 mod/message.php:104 mod/dfrn_confirm.php:68
+#: mod/events.php:194 mod/group.php:26 mod/item.php:160 mod/network.php:32
+#: mod/notes.php:30 mod/notifications.php:73 mod/photos.php:174
+#: mod/photos.php:1039 mod/profiles.php:182 mod/profiles.php:513
+#: mod/register.php:54 mod/settings.php:43 mod/settings.php:142
+#: mod/settings.php:659 index.php:436
 msgid "Permission denied."
 msgstr "Permission denied."
 
-#: include/items.php:471 src/Content/Feature.php:96
+#: include/items.php:472 src/Content/Feature.php:96
 msgid "Archives"
 msgstr "Archives"
 
-#: include/items.php:477 view/theme/vier/theme.php:258
+#: include/items.php:478 view/theme/vier/theme.php:258
 #: src/Content/ForumManager.php:130 src/Content/Widget.php:317
-#: src/Object/Post.php:438 src/App.php:525
+#: src/Object/Post.php:438 src/App.php:527
 msgid "show more"
 msgstr "Show more..."
 
-#: include/text.php:303
+#: include/security.php:81
+msgid "Welcome "
+msgstr "Welcome "
+
+#: include/security.php:82
+msgid "Please upload a profile photo."
+msgstr "Please upload a profile photo."
+
+#: include/security.php:84
+msgid "Welcome back "
+msgstr "Welcome back "
+
+#: include/security.php:449
+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 "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours."
+
+#: include/text.php:302
 msgid "newer"
 msgstr "Later posts"
 
-#: include/text.php:304
+#: include/text.php:303
 msgid "older"
 msgstr "Earlier posts"
 
-#: include/text.php:309
+#: include/text.php:308
 msgid "first"
 msgstr "first"
 
-#: include/text.php:310
+#: include/text.php:309
 msgid "prev"
 msgstr "prev"
 
-#: include/text.php:344
+#: include/text.php:343
 msgid "next"
 msgstr "next"
 
-#: include/text.php:345
+#: include/text.php:344
 msgid "last"
 msgstr "last"
 
-#: include/text.php:399
+#: include/text.php:398
 msgid "Loading more entries..."
 msgstr "Loading more entries..."
 
-#: include/text.php:400
+#: include/text.php:399
 msgid "The end"
 msgstr "The end"
 
-#: include/text.php:885
+#: include/text.php:884
 msgid "No contacts"
 msgstr "No contacts"
 
-#: include/text.php:909
+#: include/text.php:908
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
 msgstr[0] "%d contact"
 msgstr[1] "%d contacts"
 
-#: include/text.php:922
+#: include/text.php:921
 msgid "View Contacts"
 msgstr "View contacts"
 
-#: include/text.php:1011 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 "Save"
 
-#: include/text.php:1011
+#: include/text.php:1010
 msgid "Follow"
 msgstr "Follow"
 
-#: include/text.php:1017 mod/search.php:155 src/Content/Nav.php:142
+#: include/text.php:1016 mod/search.php:155 src/Content/Nav.php:142
 msgid "Search"
 msgstr "Search"
 
-#: include/text.php:1020 src/Content/Nav.php:58
+#: include/text.php:1019 src/Content/Nav.php:58
 msgid "@name, !forum, #tags, content"
 msgstr "@name, !forum, #tags, content"
 
-#: include/text.php:1026 src/Content/Nav.php:145
+#: include/text.php:1025 src/Content/Nav.php:145
 msgid "Full Text"
 msgstr "Full text"
 
-#: include/text.php:1027 src/Content/Widget/TagCloud.php:54
+#: include/text.php:1026 src/Content/Widget/TagCloud.php:54
 #: src/Content/Nav.php:146
 msgid "Tags"
 msgstr "Tags"
 
-#: include/text.php:1028 mod/viewcontacts.php:131 mod/contacts.php:814
+#: 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:213 src/Model/Profile.php:955 src/Model/Profile.php:958
 msgid "Contacts"
 msgstr "Contacts"
 
-#: include/text.php:1031 view/theme/vier/theme.php:253
+#: include/text.php:1030 view/theme/vier/theme.php:253
 #: src/Content/ForumManager.php:125 src/Content/Nav.php:151
 msgid "Forums"
 msgstr "Forums"
 
-#: include/text.php:1075
+#: include/text.php:1074
 msgid "poke"
 msgstr "poke"
 
-#: include/text.php:1075
+#: include/text.php:1074
 msgid "poked"
 msgstr "poked"
 
-#: include/text.php:1076
+#: include/text.php:1075
 msgid "ping"
 msgstr "ping"
 
-#: include/text.php:1076
+#: include/text.php:1075
 msgid "pinged"
 msgstr "pinged"
 
-#: include/text.php:1077
+#: include/text.php:1076
 msgid "prod"
 msgstr "prod"
 
-#: include/text.php:1077
+#: include/text.php:1076
 msgid "prodded"
 msgstr "prodded"
 
-#: include/text.php:1078
+#: include/text.php:1077
 msgid "slap"
 msgstr "slap"
 
-#: include/text.php:1078
+#: include/text.php:1077
 msgid "slapped"
 msgstr "slapped"
 
-#: include/text.php:1079
+#: include/text.php:1078
 msgid "finger"
 msgstr "finger"
 
-#: include/text.php:1079
+#: include/text.php:1078
 msgid "fingered"
 msgstr "fingered"
 
-#: include/text.php:1080
+#: include/text.php:1079
 msgid "rebuff"
 msgstr "rebuff"
 
-#: include/text.php:1080
+#: include/text.php:1079
 msgid "rebuffed"
 msgstr "rebuffed"
 
-#: include/text.php:1094 mod/settings.php:935 src/Model/Event.php:379
+#: include/text.php:1093 mod/settings.php:935 src/Model/Event.php:379
 msgid "Monday"
 msgstr "Monday"
 
-#: include/text.php:1094 src/Model/Event.php:380
+#: include/text.php:1093 src/Model/Event.php:380
 msgid "Tuesday"
 msgstr "Tuesday"
 
-#: include/text.php:1094 src/Model/Event.php:381
+#: include/text.php:1093 src/Model/Event.php:381
 msgid "Wednesday"
 msgstr "Wednesday"
 
-#: include/text.php:1094 src/Model/Event.php:382
+#: include/text.php:1093 src/Model/Event.php:382
 msgid "Thursday"
 msgstr "Thursday"
 
-#: include/text.php:1094 src/Model/Event.php:383
+#: include/text.php:1093 src/Model/Event.php:383
 msgid "Friday"
 msgstr "Friday"
 
-#: include/text.php:1094 src/Model/Event.php:384
+#: include/text.php:1093 src/Model/Event.php:384
 msgid "Saturday"
 msgstr "Saturday"
 
-#: include/text.php:1094 mod/settings.php:935 src/Model/Event.php:378
+#: include/text.php:1093 mod/settings.php:935 src/Model/Event.php:378
 msgid "Sunday"
 msgstr "Sunday"
 
-#: include/text.php:1098 src/Model/Event.php:399
+#: include/text.php:1097 src/Model/Event.php:399
 msgid "January"
 msgstr "January"
 
-#: include/text.php:1098 src/Model/Event.php:400
+#: include/text.php:1097 src/Model/Event.php:400
 msgid "February"
 msgstr "February"
 
-#: include/text.php:1098 src/Model/Event.php:401
+#: include/text.php:1097 src/Model/Event.php:401
 msgid "March"
 msgstr "March"
 
-#: include/text.php:1098 src/Model/Event.php:402
+#: include/text.php:1097 src/Model/Event.php:402
 msgid "April"
 msgstr "April"
 
-#: include/text.php:1098 include/text.php:1115 src/Model/Event.php:390
+#: include/text.php:1097 include/text.php:1114 src/Model/Event.php:390
 #: src/Model/Event.php:403
 msgid "May"
 msgstr "May"
 
-#: include/text.php:1098 src/Model/Event.php:404
+#: include/text.php:1097 src/Model/Event.php:404
 msgid "June"
 msgstr "June"
 
-#: include/text.php:1098 src/Model/Event.php:405
+#: include/text.php:1097 src/Model/Event.php:405
 msgid "July"
 msgstr "July"
 
-#: include/text.php:1098 src/Model/Event.php:406
+#: include/text.php:1097 src/Model/Event.php:406
 msgid "August"
 msgstr "August"
 
-#: include/text.php:1098 src/Model/Event.php:407
+#: include/text.php:1097 src/Model/Event.php:407
 msgid "September"
 msgstr "September"
 
-#: include/text.php:1098 src/Model/Event.php:408
+#: include/text.php:1097 src/Model/Event.php:408
 msgid "October"
 msgstr "October"
 
-#: include/text.php:1098 src/Model/Event.php:409
+#: include/text.php:1097 src/Model/Event.php:409
 msgid "November"
 msgstr "November"
 
-#: include/text.php:1098 src/Model/Event.php:410
+#: include/text.php:1097 src/Model/Event.php:410
 msgid "December"
 msgstr "December"
 
-#: include/text.php:1112 src/Model/Event.php:371
+#: include/text.php:1111 src/Model/Event.php:371
 msgid "Mon"
 msgstr "Mon"
 
-#: include/text.php:1112 src/Model/Event.php:372
+#: include/text.php:1111 src/Model/Event.php:372
 msgid "Tue"
 msgstr "Tue"
 
-#: include/text.php:1112 src/Model/Event.php:373
+#: include/text.php:1111 src/Model/Event.php:373
 msgid "Wed"
 msgstr "Wed"
 
-#: include/text.php:1112 src/Model/Event.php:374
+#: include/text.php:1111 src/Model/Event.php:374
 msgid "Thu"
 msgstr "Thu"
 
-#: include/text.php:1112 src/Model/Event.php:375
+#: include/text.php:1111 src/Model/Event.php:375
 msgid "Fri"
 msgstr "Fri"
 
-#: include/text.php:1112 src/Model/Event.php:376
+#: include/text.php:1111 src/Model/Event.php:376
 msgid "Sat"
 msgstr "Sat"
 
-#: include/text.php:1112 src/Model/Event.php:370
+#: include/text.php:1111 src/Model/Event.php:370
 msgid "Sun"
 msgstr "Sun"
 
-#: include/text.php:1115 src/Model/Event.php:386
+#: include/text.php:1114 src/Model/Event.php:386
 msgid "Jan"
 msgstr "Jan"
 
-#: include/text.php:1115 src/Model/Event.php:387
+#: include/text.php:1114 src/Model/Event.php:387
 msgid "Feb"
 msgstr "Feb"
 
-#: include/text.php:1115 src/Model/Event.php:388
+#: include/text.php:1114 src/Model/Event.php:388
 msgid "Mar"
 msgstr "Mar"
 
-#: include/text.php:1115 src/Model/Event.php:389
+#: include/text.php:1114 src/Model/Event.php:389
 msgid "Apr"
 msgstr "Apr"
 
-#: include/text.php:1115 src/Model/Event.php:392
+#: include/text.php:1114 src/Model/Event.php:392
 msgid "Jul"
 msgstr "Jul"
 
-#: include/text.php:1115 src/Model/Event.php:393
+#: include/text.php:1114 src/Model/Event.php:393
 msgid "Aug"
 msgstr "Aug"
 
-#: include/text.php:1115
+#: include/text.php:1114
 msgid "Sep"
 msgstr "Sep"
 
-#: include/text.php:1115 src/Model/Event.php:395
+#: include/text.php:1114 src/Model/Event.php:395
 msgid "Oct"
 msgstr "Oct"
 
-#: include/text.php:1115 src/Model/Event.php:396
+#: include/text.php:1114 src/Model/Event.php:396
 msgid "Nov"
 msgstr "Nov"
 
-#: include/text.php:1115 src/Model/Event.php:397
+#: include/text.php:1114 src/Model/Event.php:397
 msgid "Dec"
 msgstr "Dec"
 
-#: include/text.php:1255
+#: include/text.php:1254
 #, php-format
 msgid "Content warning: %s"
 msgstr "Content warning: %s"
 
-#: include/text.php:1325 mod/videos.php:380
+#: include/text.php:1324 mod/videos.php:380
 msgid "View Video"
 msgstr "View video"
 
-#: include/text.php:1342
+#: include/text.php:1341
 msgid "bytes"
 msgstr "bytes"
 
-#: include/text.php:1375 include/text.php:1386 include/text.php:1419
+#: include/text.php:1374 include/text.php:1385 include/text.php:1418
 msgid "Click to open/close"
 msgstr "Reveal/hide"
 
-#: include/text.php:1534
+#: include/text.php:1533
 msgid "View on separate page"
 msgstr "View on separate page"
 
-#: include/text.php:1535
+#: include/text.php:1534
 msgid "view on separate page"
 msgstr "view on separate page"
 
-#: include/text.php:1540 include/text.php:1547 src/Model/Event.php:594
+#: include/text.php:1539 include/text.php:1546 src/Model/Event.php:594
 msgid "link to source"
 msgstr "Link to source"
 
@@ -1184,7 +1180,7 @@ msgstr[1] "comments"
 msgid "post"
 msgstr "post"
 
-#: include/text.php:1915
+#: include/text.php:1916
 msgid "Item filed"
 msgstr "Item filed"
 
@@ -1270,8 +1266,8 @@ msgid "Photos"
 msgstr "Photos"
 
 #: 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
+#: mod/photos.php:1050 mod/photos.php:1137 mod/photos.php:1154
+#: mod/photos.php:1653 mod/photos.php:1667 src/Model/Photo.php:244
 #: src/Model/Photo.php:253
 msgid "Contact Photos"
 msgstr "Contact photos"
@@ -1341,7 +1337,7 @@ msgid ""
 " join."
 msgstr "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."
 
-#: mod/newmember.php:19 mod/admin.php:1935 mod/admin.php:2204
+#: mod/newmember.php:19 mod/admin.php:1940 mod/admin.php:2210
 #: mod/settings.php:124 view/theme/frio/theme.php:269 src/Content/Nav.php:207
 msgid "Settings"
 msgstr "Settings"
@@ -1547,11 +1543,6 @@ msgstr "Ignore/Hide"
 msgid "Friend Suggestions"
 msgstr "Friend suggestions"
 
-#: 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 "[Embedded content - reload page to view]"
-
 #: mod/uimport.php:55 mod/register.php:192
 msgid ""
 "This site has exceeded the number of allowed daily account registrations. "
@@ -1624,11 +1615,11 @@ msgid "Select an identity to manage: "
 msgstr "Select identity:"
 
 #: mod/manage.php:184 mod/localtime.php:56 mod/poke.php:199
-#: 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/contacts.php:610 mod/events.php:530
-#: mod/invite.php:154 mod/crepair.php:148 mod/install.php:198
-#: mod/install.php:237 mod/message.php:246 mod/message.php:413
+#: mod/fsuggest.php:114 mod/contacts.php:610 mod/invite.php:154
+#: mod/crepair.php:148 mod/install.php:198 mod/install.php:237
+#: mod/message.php:246 mod/message.php:413 mod/events.php:531
+#: mod/photos.php:1068 mod/photos.php:1148 mod/photos.php:1439
+#: mod/photos.php:1485 mod/photos.php:1524 mod/photos.php:1597
 #: mod/profiles.php:579 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:804
@@ -1735,16 +1726,16 @@ msgstr "Choose what you wish to do:"
 msgid "Make this post private"
 msgstr "Make this post private"
 
-#: 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/directory.php:42 mod/community.php:27
-#: mod/dfrn_request.php:602 mod/display.php:203
+#: mod/probe.php:13 mod/viewcontacts.php:45 mod/webfinger.php:16
+#: mod/directory.php:42 mod/community.php:27 mod/dfrn_request.php:602
+#: mod/display.php:203 mod/photos.php:920 mod/search.php:98 mod/search.php:104
+#: mod/videos.php:199
 msgid "Public access denied."
 msgstr "Public access denied."
 
 #: mod/probe.php:14 mod/webfinger.php:17
 msgid "Only logged in users are permitted to perform a probing."
-msgstr "Only logged in users are permitted to perform a probing."
+msgstr "Only logged in users are permitted to use the Probe feature."
 
 #: mod/profperm.php:28 mod/group.php:83 index.php:435
 msgid "Permission denied"
@@ -1783,45 +1774,6 @@ msgstr "Registration revoked for %s"
 msgid "Please login."
 msgstr "Please login."
 
-#: mod/search.php:37 mod/network.php:194
-msgid "Remove term"
-msgstr "Remove term"
-
-#: mod/search.php:46 mod/network.php:201 src/Content/Feature.php:100
-msgid "Saved Searches"
-msgstr "Saved searches"
-
-#: mod/search.php:105
-msgid "Only logged in users are permitted to perform a search."
-msgstr "Only logged in users are permitted to perform a search."
-
-#: mod/search.php:129
-msgid "Too Many Requests"
-msgstr "Too many requests"
-
-#: mod/search.php:130
-msgid "Only one search per minute is permitted for not logged in users."
-msgstr "Only one search per minute is permitted for not logged in users."
-
-#: mod/search.php:228 mod/community.php:141
-msgid "No results."
-msgstr "No results."
-
-#: mod/search.php:234
-#, php-format
-msgid "Items tagged with: %s"
-msgstr "Items tagged with: %s"
-
-#: mod/search.php:236 mod/contacts.php:819
-#, php-format
-msgid "Results for: %s"
-msgstr "Results for: %s"
-
-#: mod/subthread.php:113
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s is following %2$s's %3$s"
-
 #: mod/tagrm.php:47
 msgid "Tag removed"
 msgstr "Tag removed"
@@ -1857,7 +1809,7 @@ 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 "Export your account 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 "Export your account info, contacts and all your items as JSON. This 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."
 
 #: mod/uexport.php:52 mod/settings.php:108
 msgid "Export personal data"
@@ -1871,13 +1823,13 @@ msgstr "No contacts."
 msgid "Access denied."
 msgstr "Access denied."
 
-#: mod/wall_upload.php:186 mod/photos.php:763 mod/photos.php:766
-#: mod/photos.php:795 mod/profile_photo.php:153
+#: mod/wall_upload.php:186 mod/profile_photo.php:153 mod/photos.php:751
+#: mod/photos.php:754 mod/photos.php:783
 #, php-format
 msgid "Image exceeds size limit of %s"
 msgstr "Image exceeds size limit of %s"
 
-#: mod/wall_upload.php:200 mod/photos.php:818 mod/profile_photo.php:162
+#: mod/wall_upload.php:200 mod/profile_photo.php:162 mod/photos.php:806
 msgid "Unable to process image."
 msgstr "Unable to process image."
 
@@ -1886,7 +1838,7 @@ msgstr "Unable to process image."
 msgid "Wall Photos"
 msgstr "Wall photos"
 
-#: mod/wall_upload.php:239 mod/photos.php:847 mod/profile_photo.php:307
+#: mod/wall_upload.php:239 mod/profile_photo.php:307 mod/photos.php:835
 msgid "Image upload failed."
 msgstr "Image upload failed."
 
@@ -1985,336 +1937,101 @@ msgstr "Suggest friends"
 msgid "Suggest a friend for %s"
 msgstr "Suggest a friend for %s"
 
-#: mod/notes.php:52 src/Model/Profile.php:944
-msgid "Personal Notes"
-msgstr "Personal notes"
+#: mod/cal.php:142 mod/display.php:316 mod/profile.php:174
+msgid "Access to this profile has been restricted."
+msgstr "Access to this profile has been restricted."
 
-#: mod/photos.php:108 src/Model/Profile.php:905
-msgid "Photo Albums"
-msgstr "Photo Albums"
+#: 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 "Events"
 
-#: mod/photos.php:109 mod/photos.php:1713
-msgid "Recent Photos"
-msgstr "Recent photos"
+#: mod/cal.php:275 mod/events.php:392
+msgid "View"
+msgstr "View"
 
-#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715
-msgid "Upload New Photos"
-msgstr "Upload new photos"
+#: mod/cal.php:276 mod/events.php:394
+msgid "Previous"
+msgstr "Previous"
 
-#: mod/photos.php:126 mod/settings.php:51
-msgid "everybody"
-msgstr "everybody"
+#: mod/cal.php:277 mod/install.php:156 mod/events.php:395
+msgid "Next"
+msgstr "Next"
 
-#: mod/photos.php:184
-msgid "Contact information unavailable"
-msgstr "Contact information unavailable"
+#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412
+msgid "today"
+msgstr "today"
 
-#: mod/photos.php:204
-msgid "Album not found."
-msgstr "Album not found."
+#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304
+#: src/Model/Event.php:413
+msgid "month"
+msgstr "month"
 
-#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161
-msgid "Delete Album"
-msgstr "Delete album"
+#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305
+#: src/Model/Event.php:414
+msgid "week"
+msgstr "week"
 
-#: mod/photos.php:243
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Do you really want to delete this photo album and all its photos?"
+#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306
+#: src/Model/Event.php:415
+msgid "day"
+msgstr "day"
 
-#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446
-msgid "Delete Photo"
-msgstr "Delete photo"
+#: mod/cal.php:284 mod/events.php:404
+msgid "list"
+msgstr "List"
 
-#: mod/photos.php:319
-msgid "Do you really want to delete this photo?"
-msgstr "Do you really want to delete this photo?"
+#: mod/cal.php:297 src/Core/Console/NewPassword.php:73 src/Model/User.php:214
+msgid "User not found"
+msgstr "User not found"
 
-#: mod/photos.php:667
-msgid "a photo"
-msgstr "a photo"
+#: mod/cal.php:313
+msgid "This calendar format is not supported"
+msgstr "This calendar format is not supported"
 
-#: mod/photos.php:667
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s was tagged in %2$s by %3$s"
+#: mod/cal.php:315
+msgid "No exportable data found"
+msgstr "No exportable data found"
 
-#: mod/photos.php:769
-msgid "Image upload didn't complete, please try again"
-msgstr "Image upload didn't complete, please try again"
+#: mod/cal.php:332
+msgid "calendar"
+msgstr "calendar"
 
-#: mod/photos.php:772
-msgid "Image file is missing"
-msgstr "Image file is missing"
+#: mod/contacts.php:71 mod/notifications.php:259 src/Model/Profile.php:516
+msgid "Network:"
+msgstr "Network:"
 
-#: mod/photos.php:777
-msgid ""
-"Server can't accept new file upload at this time, please contact your "
-"administrator"
-msgstr "Server can't accept new file upload at this time, please contact your administrator"
+#: mod/contacts.php:157
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] "%d contact edited."
+msgstr[1] "%d contacts edited."
 
-#: mod/photos.php:803
-msgid "Image file is empty."
-msgstr "Image file is empty."
+#: mod/contacts.php:184 mod/contacts.php:400
+msgid "Could not access contact record."
+msgstr "Could not access contact record."
 
-#: mod/photos.php:940
-msgid "No photos selected"
-msgstr "No photos selected"
+#: mod/contacts.php:194
+msgid "Could not locate selected profile."
+msgstr "Could not locate selected profile."
 
-#: mod/photos.php:1036 mod/videos.php:309
-msgid "Access to this item is restricted."
-msgstr "Access to this item is restricted."
+#: mod/contacts.php:228
+msgid "Contact updated."
+msgstr "Contact updated."
 
-#: mod/photos.php:1090
-msgid "Upload Photos"
-msgstr "Upload photos"
+#: mod/contacts.php:230 mod/dfrn_request.php:415
+msgid "Failed to update contact record."
+msgstr "Failed to update contact record."
 
-#: mod/photos.php:1094 mod/photos.php:1156
-msgid "New album name: "
-msgstr "New album name: "
+#: mod/contacts.php:421
+msgid "Contact has been blocked"
+msgstr "Contact has been blocked"
 
-#: mod/photos.php:1095
-msgid "or existing album name: "
-msgstr "or existing album name: "
-
-#: mod/photos.php:1096
-msgid "Do not show a status post for this upload"
-msgstr "Do not show a status post for this upload"
-
-#: mod/photos.php:1098 mod/photos.php:1441 mod/events.php:533
-#: src/Core/ACL.php:318
-msgid "Permissions"
-msgstr "Permissions"
-
-#: mod/photos.php:1106 mod/photos.php:1449 mod/settings.php:1218
-msgid "Show to Groups"
-msgstr "Show to groups"
-
-#: mod/photos.php:1107 mod/photos.php:1450 mod/settings.php:1219
-msgid "Show to Contacts"
-msgstr "Show to contacts"
-
-#: mod/photos.php:1167
-msgid "Edit Album"
-msgstr "Edit album"
-
-#: mod/photos.php:1172
-msgid "Show Newest First"
-msgstr "Show newest first"
-
-#: mod/photos.php:1174
-msgid "Show Oldest First"
-msgstr "Show oldest first"
-
-#: mod/photos.php:1195 mod/photos.php:1698
-msgid "View Photo"
-msgstr "View photo"
-
-#: mod/photos.php:1236
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Permission denied. Access to this item may be restricted."
-
-#: mod/photos.php:1238
-msgid "Photo not available"
-msgstr "Photo not available"
-
-#: mod/photos.php:1301
-msgid "View photo"
-msgstr "View photo"
-
-#: mod/photos.php:1301
-msgid "Edit photo"
-msgstr "Edit photo"
-
-#: mod/photos.php:1302
-msgid "Use as profile photo"
-msgstr "Use as profile photo"
-
-#: mod/photos.php:1308 src/Object/Post.php:149
-msgid "Private Message"
-msgstr "Private message"
-
-#: mod/photos.php:1327
-msgid "View Full Size"
-msgstr "View full size"
-
-#: mod/photos.php:1414
-msgid "Tags: "
-msgstr "Tags: "
-
-#: mod/photos.php:1417
-msgid "[Remove any tag]"
-msgstr "[Remove any tag]"
-
-#: mod/photos.php:1432
-msgid "New album name"
-msgstr "New album name"
-
-#: mod/photos.php:1433
-msgid "Caption"
-msgstr "Caption"
-
-#: mod/photos.php:1434
-msgid "Add a Tag"
-msgstr "Add Tag"
-
-#: mod/photos.php:1434
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Example: @bob, @jojo@example.com, #California, #camping"
-
-#: mod/photos.php:1435
-msgid "Do not rotate"
-msgstr "Do not rotate"
-
-#: mod/photos.php:1436
-msgid "Rotate CW (right)"
-msgstr "Rotate right (CW)"
-
-#: mod/photos.php:1437
-msgid "Rotate CCW (left)"
-msgstr "Rotate left (CCW)"
-
-#: mod/photos.php:1471 src/Object/Post.php:304
-msgid "I like this (toggle)"
-msgstr "I like this (toggle)"
-
-#: mod/photos.php:1472 src/Object/Post.php:305
-msgid "I don't like this (toggle)"
-msgstr "I don't like this (toggle)"
-
-#: mod/photos.php:1488 mod/photos.php:1527 mod/photos.php:1600
-#: mod/contacts.php:953 src/Object/Post.php:801
-msgid "This is you"
-msgstr "This is me"
-
-#: mod/photos.php:1490 mod/photos.php:1529 mod/photos.php:1602
-#: src/Object/Post.php:407 src/Object/Post.php:803
-msgid "Comment"
-msgstr "Comment"
-
-#: mod/photos.php:1634
-msgid "Map"
-msgstr "Map"
-
-#: mod/photos.php:1704 mod/videos.php:387
-msgid "View Album"
-msgstr "View album"
-
-#: mod/videos.php:139
-msgid "Do you really want to delete this video?"
-msgstr "Do you really want to delete this video?"
-
-#: mod/videos.php:144
-msgid "Delete Video"
-msgstr "Delete video"
-
-#: mod/videos.php:207
-msgid "No videos selected"
-msgstr "No videos selected"
-
-#: mod/videos.php:396
-msgid "Recent Videos"
-msgstr "Recent videos"
-
-#: mod/videos.php:398
-msgid "Upload New Videos"
-msgstr "Upload new videos"
-
-#: mod/cal.php:142 mod/display.php:316 mod/profile.php:174
-msgid "Access to this profile has been restricted."
-msgstr "Access to this profile has been restricted."
-
-#: 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 "Events"
-
-#: mod/cal.php:275 mod/events.php:392
-msgid "View"
-msgstr "View"
-
-#: mod/cal.php:276 mod/events.php:394
-msgid "Previous"
-msgstr "Previous"
-
-#: mod/cal.php:277 mod/events.php:395 mod/install.php:156
-msgid "Next"
-msgstr "Next"
-
-#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412
-msgid "today"
-msgstr "today"
-
-#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304
-#: src/Model/Event.php:413
-msgid "month"
-msgstr "month"
-
-#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305
-#: src/Model/Event.php:414
-msgid "week"
-msgstr "week"
-
-#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306
-#: src/Model/Event.php:415
-msgid "day"
-msgstr "day"
-
-#: mod/cal.php:284 mod/events.php:404
-msgid "list"
-msgstr "List"
-
-#: mod/cal.php:297 src/Core/Console/NewPassword.php:73 src/Model/User.php:214
-msgid "User not found"
-msgstr "User not found"
-
-#: mod/cal.php:313
-msgid "This calendar format is not supported"
-msgstr "This calendar format is not supported"
-
-#: mod/cal.php:315
-msgid "No exportable data found"
-msgstr "No exportable data found"
-
-#: mod/cal.php:332
-msgid "calendar"
-msgstr "calendar"
-
-#: mod/contacts.php:71 mod/notifications.php:259 src/Model/Profile.php:516
-msgid "Network:"
-msgstr "Network:"
-
-#: mod/contacts.php:157
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] "%d contact edited."
-msgstr[1] "%d contacts edited."
-
-#: mod/contacts.php:184 mod/contacts.php:400
-msgid "Could not access contact record."
-msgstr "Could not access contact record."
-
-#: mod/contacts.php:194
-msgid "Could not locate selected profile."
-msgstr "Could not locate selected profile."
-
-#: mod/contacts.php:228
-msgid "Contact updated."
-msgstr "Contact updated."
-
-#: mod/contacts.php:230 mod/dfrn_request.php:415
-msgid "Failed to update contact record."
-msgstr "Failed to update contact record."
-
-#: mod/contacts.php:421
-msgid "Contact has been blocked"
-msgstr "Contact has been blocked"
-
-#: mod/contacts.php:421
-msgid "Contact has been unblocked"
-msgstr "Contact has been unblocked"
+#: mod/contacts.php:421
+msgid "Contact has been unblocked"
+msgstr "Contact has been unblocked"
 
 #: mod/contacts.php:432
 msgid "Contact has been ignored"
@@ -2397,10 +2114,10 @@ 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 "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 "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."
 
-#: mod/contacts.php:572 mod/admin.php:1288 mod/admin.php:1450
-#: mod/admin.php:1460
+#: mod/contacts.php:572 mod/admin.php:1284 mod/admin.php:1449
+#: mod/admin.php:1459
 msgid "Disabled"
 msgstr "Disabled"
 
@@ -2476,12 +2193,12 @@ msgid "Update now"
 msgstr "Update now"
 
 #: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
-#: mod/admin.php:489 mod/admin.php:1829
+#: mod/admin.php:489 mod/admin.php:1834
 msgid "Unblock"
 msgstr "Unblock"
 
 #: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
-#: mod/admin.php:488 mod/admin.php:1828
+#: mod/admin.php:488 mod/admin.php:1833
 msgid "Block"
 msgstr "Block"
 
@@ -2536,14 +2253,14 @@ msgstr "Blacklisted keywords"
 msgid ""
 "Comma separated list of keywords that should not be converted to hashtags, "
 "when \"Fetch information and keywords\" is selected"
-msgstr "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"
+msgstr "Comma-separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"
 
 #: mod/contacts.php:656 mod/unfollow.php:122 mod/follow.php:166
 #: mod/admin.php:494 mod/admin.php:504 mod/notifications.php:256
 msgid "Profile URL"
 msgstr "Profile URL:"
 
-#: mod/contacts.php:660 mod/events.php:518 mod/directory.php:148
+#: mod/contacts.php:660 mod/directory.php:148 mod/events.php:519
 #: mod/notifications.php:246 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:"
@@ -2636,6 +2353,11 @@ msgstr "Only show hidden contacts"
 msgid "Search your contacts"
 msgstr "Search your contacts"
 
+#: mod/contacts.php:819 mod/search.php:236
+#, php-format
+msgid "Results for: %s"
+msgstr "Results for: %s"
+
 #: mod/contacts.php:820 mod/directory.php:209 view/theme/vier/theme.php:203
 #: src/Content/Widget.php:63
 msgid "Find"
@@ -2674,7 +2396,7 @@ msgstr "View all contacts"
 msgid "View all common friends"
 msgstr "View all common friends"
 
-#: mod/contacts.php:895 mod/events.php:532 mod/admin.php:1363
+#: mod/contacts.php:895 mod/admin.php:1362 mod/events.php:533
 #: src/Model/Profile.php:863
 msgid "Advanced"
 msgstr "Advanced"
@@ -2695,6 +2417,11 @@ msgstr "is a fan of yours"
 msgid "you are a fan of"
 msgstr "I follow them"
 
+#: mod/contacts.php:953 mod/photos.php:1482 mod/photos.php:1521
+#: mod/photos.php:1594 src/Object/Post.php:801
+msgid "This is you"
+msgstr "This is me"
+
 #: mod/contacts.php:1013
 msgid "Toggle Blocked status"
 msgstr "Toggle blocked status"
@@ -2738,8 +2465,8 @@ msgid ""
 "settings. Please double check whom you give this access."
 msgstr "Parent users have total control of this account, including core settings. Please double-check whom you grant such access."
 
-#: mod/delegate.php:168 mod/admin.php:311 mod/admin.php:1358
-#: mod/admin.php:1994 mod/admin.php:2247 mod/admin.php:2321 mod/admin.php:2468
+#: mod/delegate.php:168 mod/admin.php:311 mod/admin.php:1357
+#: mod/admin.php:1999 mod/admin.php:2253 mod/admin.php:2327 mod/admin.php:2474
 #: mod/settings.php:669 mod/settings.php:776 mod/settings.php:864
 #: mod/settings.php:953 mod/settings.php:1183
 msgid "Save Settings"
@@ -2776,97 +2503,33 @@ msgstr "Add"
 msgid "No entries."
 msgstr "No entries."
 
-#: mod/events.php:105 mod/events.php:107
-msgid "Event can not end before it has started."
-msgstr "Event cannot end before it has started."
+#: mod/feedtest.php:20
+msgid "You must be logged in to use this module"
+msgstr "You must be logged in to use this module"
 
-#: mod/events.php:114 mod/events.php:116
-msgid "Event title and start time are required."
-msgstr "Event title and starting time are required."
+#: mod/feedtest.php:48
+msgid "Source URL"
+msgstr "Source URL"
 
-#: mod/events.php:393
-msgid "Create New Event"
-msgstr "Create new event"
+#: mod/oexchange.php:30
+msgid "Post successful."
+msgstr "Post successful."
 
-#: mod/events.php:506
-msgid "Event details"
-msgstr "Event details"
+#: mod/ostatus_subscribe.php:21
+msgid "Subscribing to OStatus contacts"
+msgstr "Subscribing to OStatus contacts"
 
-#: mod/events.php:507
-msgid "Starting date and Title are required."
-msgstr "Starting date and title are required."
+#: mod/ostatus_subscribe.php:33
+msgid "No contact provided."
+msgstr "No contact provided."
 
-#: mod/events.php:508 mod/events.php:509
-msgid "Event Starts:"
-msgstr "Event starts:"
+#: mod/ostatus_subscribe.php:40
+msgid "Couldn't fetch information for contact."
+msgstr "Couldn't fetch information for contact."
 
-#: mod/events.php:508 mod/events.php:520 mod/profiles.php:607
-msgid "Required"
-msgstr "Required"
-
-#: mod/events.php:510 mod/events.php:526
-msgid "Finish date/time is not known or not relevant"
-msgstr "Finish date/time is not known or not relevant"
-
-#: mod/events.php:512 mod/events.php:513
-msgid "Event Finishes:"
-msgstr "Event finishes:"
-
-#: mod/events.php:514 mod/events.php:527
-msgid "Adjust for viewer timezone"
-msgstr "Adjust for viewer's time zone"
-
-#: mod/events.php:516
-msgid "Description:"
-msgstr "Description:"
-
-#: mod/events.php:520 mod/events.php:522
-msgid "Title:"
-msgstr "Title:"
-
-#: mod/events.php:523 mod/events.php:524
-msgid "Share this event"
-msgstr "Share this event"
-
-#: mod/events.php:531 src/Model/Profile.php:862
-msgid "Basic"
-msgstr "Basic"
-
-#: mod/events.php:552
-msgid "Failed to remove event"
-msgstr "Failed to remove event"
-
-#: mod/events.php:554
-msgid "Event removed"
-msgstr "Event removed"
-
-#: mod/feedtest.php:20
-msgid "You must be logged in to use this module"
-msgstr "You must be logged in to use this module"
-
-#: mod/feedtest.php:48
-msgid "Source URL"
-msgstr "Source URL"
-
-#: mod/oexchange.php:30
-msgid "Post successful."
-msgstr "Post successful."
-
-#: mod/ostatus_subscribe.php:21
-msgid "Subscribing to OStatus contacts"
-msgstr "Subscribing to OStatus contacts"
-
-#: mod/ostatus_subscribe.php:33
-msgid "No contact provided."
-msgstr "No contact provided."
-
-#: mod/ostatus_subscribe.php:40
-msgid "Couldn't fetch information for contact."
-msgstr "Couldn't fetch information for contact."
-
-#: mod/ostatus_subscribe.php:50
-msgid "Couldn't fetch friends for contact."
-msgstr "Couldn't fetch friends for contact."
+#: mod/ostatus_subscribe.php:50
+msgid "Couldn't fetch friends for contact."
+msgstr "Couldn't fetch friends for contact."
 
 #: mod/ostatus_subscribe.php:78
 msgid "success"
@@ -3243,36 +2906,6 @@ msgstr "Markdown"
 msgid "HTML"
 msgstr "HTML"
 
-#: mod/community.php:51
-msgid "Community option not available."
-msgstr "Community option not available."
-
-#: mod/community.php:68
-msgid "Not available."
-msgstr "Not available."
-
-#: mod/community.php:81
-msgid "Local Community"
-msgstr "Local community"
-
-#: mod/community.php:84
-msgid "Posts from local users on this server"
-msgstr "Posts from local users on this server"
-
-#: mod/community.php:92
-msgid "Global Community"
-msgstr "Global community"
-
-#: mod/community.php:95
-msgid "Posts from users of the whole federated network"
-msgstr "Posts from users of the whole federated network"
-
-#: mod/community.php:185
-msgid ""
-"This community stream shows all public posts received by this node. They may"
-" not reflect the opinions of this node’s users."
-msgstr "This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."
-
 #: mod/friendica.php:77
 msgid "This is Friendica, version"
 msgstr "This is Friendica, version"
@@ -3380,7 +3013,7 @@ msgid ""
 "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 "Friendica sites are all inter-connect to create a large 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 "Friendica sites are all inter-connected to create a large 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."
 
 #: mod/invite.php:137
 msgid ""
@@ -3393,7 +3026,7 @@ 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 "Friendica sites are all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. Each site can also connect with many traditional social networks."
+msgstr "Friendica sites are all inter-connected to create a huge privacy-enhanced social web that is owned and controlled by its members. Each site can also connect with many traditional social networks."
 
 #: mod/invite.php:140
 #, php-format
@@ -3429,95 +3062,6 @@ msgid ""
 "important, please visit http://friendi.ca"
 msgstr "For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"
 
-#: mod/network.php:202 src/Model/Group.php:413
-msgid "add"
-msgstr "add"
-
-#: 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] "Warning: This group contains %s member from a network that doesn't allow non public messages."
-msgstr[1] "Warning: This group contains %s members from a network that doesn't allow non public messages."
-
-#: mod/network.php:550
-msgid "Messages in this group won't be send to these receivers."
-msgstr "Messages in this group won't be send to these receivers."
-
-#: mod/network.php:618
-msgid "No such group"
-msgstr "No such group"
-
-#: mod/network.php:639 mod/group.php:216
-msgid "Group is empty"
-msgstr "Group is empty"
-
-#: mod/network.php:643
-#, php-format
-msgid "Group: %s"
-msgstr "Group: %s"
-
-#: mod/network.php:669
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Private messages to this person are at risk of public disclosure."
-
-#: mod/network.php:672
-msgid "Invalid contact."
-msgstr "Invalid contact."
-
-#: mod/network.php:937
-msgid "Commented Order"
-msgstr "Commented last"
-
-#: mod/network.php:940
-msgid "Sort by Comment Date"
-msgstr "Sort by comment date"
-
-#: mod/network.php:945
-msgid "Posted Order"
-msgstr "Posted last"
-
-#: mod/network.php:948
-msgid "Sort by Post Date"
-msgstr "Sort by post date"
-
-#: mod/network.php:956 mod/profiles.php:594
-#: src/Core/NotificationsManager.php:185
-msgid "Personal"
-msgstr "Personal"
-
-#: mod/network.php:959
-msgid "Posts that mention or involve you"
-msgstr "Posts mentioning or involving me"
-
-#: mod/network.php:967
-msgid "New"
-msgstr "New"
-
-#: mod/network.php:970
-msgid "Activity Stream - by date"
-msgstr "Activity Stream - by date"
-
-#: mod/network.php:978
-msgid "Shared Links"
-msgstr "Shared links"
-
-#: mod/network.php:981
-msgid "Interesting Links"
-msgstr "Interesting links"
-
-#: mod/network.php:989
-msgid "Starred"
-msgstr "Starred"
-
-#: mod/network.php:992
-msgid "Favourite Posts"
-msgstr "My favorite posts"
-
 #: mod/crepair.php:87
 msgid "Contact settings applied."
 msgstr "Contact settings applied."
@@ -3530,7 +3074,7 @@ msgstr "Contact update failed."
 msgid ""
 "<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
 " information your communications with this contact may stop working."
-msgstr "<strong>Warning: These are highly advanced settings.</strong> If you enter incorrect information your communications with this contact may not working."
+msgstr "<strong>Warning: These are highly advanced settings.</strong> If you enter incorrect information, your communications with this contact might be disrupted."
 
 #: mod/crepair.php:115
 msgid ""
@@ -3572,8 +3116,8 @@ msgid ""
 "entries from this contact."
 msgstr "This will cause Friendica to repost new entries from this contact."
 
-#: mod/crepair.php:158 mod/admin.php:494 mod/admin.php:1811 mod/admin.php:1822
-#: mod/admin.php:1835 mod/admin.php:1851 mod/settings.php:671
+#: mod/crepair.php:158 mod/admin.php:494 mod/admin.php:1816 mod/admin.php:1827
+#: mod/admin.php:1840 mod/admin.php:1856 mod/settings.php:671
 #: mod/settings.php:697
 msgid "Name"
 msgstr "Name:"
@@ -3836,79 +3380,6 @@ msgid_plural "%d messages"
 msgstr[0] "%d message"
 msgstr[1] "%d messages"
 
-#: mod/group.php:36
-msgid "Group created."
-msgstr "Group created."
-
-#: mod/group.php:42
-msgid "Could not create group."
-msgstr "Could not create group."
-
-#: mod/group.php:56 mod/group.php:157
-msgid "Group not found."
-msgstr "Group not found."
-
-#: mod/group.php:70
-msgid "Group name changed."
-msgstr "Group name changed."
-
-#: mod/group.php:97
-msgid "Save Group"
-msgstr "Save group"
-
-#: mod/group.php:102
-msgid "Create a group of contacts/friends."
-msgstr "Create a group of contacts/friends."
-
-#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421
-msgid "Group Name: "
-msgstr "Group name: "
-
-#: mod/group.php:127
-msgid "Group removed."
-msgstr "Group removed."
-
-#: mod/group.php:129
-msgid "Unable to remove group."
-msgstr "Unable to remove group."
-
-#: mod/group.php:192
-msgid "Delete Group"
-msgstr "Delete group"
-
-#: mod/group.php:198
-msgid "Group Editor"
-msgstr "Group Editor"
-
-#: mod/group.php:203
-msgid "Edit Group Name"
-msgstr "Edit group name"
-
-#: mod/group.php:213
-msgid "Members"
-msgstr "Members"
-
-#: mod/group.php:229
-msgid "Remove contact from group"
-msgstr "Remove contact from group"
-
-#: mod/group.php:253
-msgid "Add contact to group"
-msgstr "Add contact to group"
-
-#: mod/openid.php:29
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID protocol error. No ID returned."
-
-#: mod/openid.php:66
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "Account not found and OpenID registration is not permitted on this site."
-
-#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:135
-msgid "Login failed."
-msgstr "Login failed."
-
 #: mod/admin.php:107
 msgid "Theme settings updated."
 msgstr "Theme settings updated."
@@ -3921,7 +3392,7 @@ msgstr "Information"
 msgid "Overview"
 msgstr "Overview"
 
-#: mod/admin.php:182 mod/admin.php:722
+#: mod/admin.php:182 mod/admin.php:717
 msgid "Federation Statistics"
 msgstr "Federation statistics"
 
@@ -3929,19 +3400,19 @@ msgstr "Federation statistics"
 msgid "Configuration"
 msgstr "Configuration"
 
-#: mod/admin.php:184 mod/admin.php:1357
+#: mod/admin.php:184 mod/admin.php:1356
 msgid "Site"
 msgstr "Site"
 
-#: mod/admin.php:185 mod/admin.php:1289 mod/admin.php:1817 mod/admin.php:1833
+#: mod/admin.php:185 mod/admin.php:1285 mod/admin.php:1822 mod/admin.php:1838
 msgid "Users"
 msgstr "Users"
 
-#: mod/admin.php:186 mod/admin.php:1933 mod/admin.php:1993 mod/settings.php:87
+#: mod/admin.php:186 mod/admin.php:1938 mod/admin.php:1998 mod/settings.php:87
 msgid "Addons"
 msgstr "Addons"
 
-#: mod/admin.php:187 mod/admin.php:2202 mod/admin.php:2246
+#: mod/admin.php:187 mod/admin.php:2208 mod/admin.php:2252
 msgid "Themes"
 msgstr "Theme selection"
 
@@ -3962,7 +3433,7 @@ msgstr "Database"
 msgid "DB updates"
 msgstr "DB updates"
 
-#: mod/admin.php:192 mod/admin.php:757
+#: mod/admin.php:192 mod/admin.php:752
 msgid "Inspect Queue"
 msgstr "Inspect queue"
 
@@ -3982,11 +3453,11 @@ msgstr "Server blocklist"
 msgid "Delete Item"
 msgstr "Delete item"
 
-#: mod/admin.php:197 mod/admin.php:198 mod/admin.php:2320
+#: mod/admin.php:197 mod/admin.php:198 mod/admin.php:2326
 msgid "Logs"
 msgstr "Logs"
 
-#: mod/admin.php:199 mod/admin.php:2387
+#: mod/admin.php:199 mod/admin.php:2393
 msgid "View Logs"
 msgstr "View logs"
 
@@ -4019,9 +3490,9 @@ msgid "User registrations waiting for confirmation"
 msgstr "User registrations awaiting confirmation"
 
 #: mod/admin.php:303 mod/admin.php:365 mod/admin.php:482 mod/admin.php:524
-#: mod/admin.php:721 mod/admin.php:756 mod/admin.php:852 mod/admin.php:1356
-#: mod/admin.php:1816 mod/admin.php:1932 mod/admin.php:1992 mod/admin.php:2201
-#: mod/admin.php:2245 mod/admin.php:2319 mod/admin.php:2386
+#: mod/admin.php:716 mod/admin.php:751 mod/admin.php:847 mod/admin.php:1355
+#: mod/admin.php:1821 mod/admin.php:1937 mod/admin.php:1997 mod/admin.php:2207
+#: mod/admin.php:2251 mod/admin.php:2325 mod/admin.php:2392
 msgid "Administration"
 msgstr "Administration"
 
@@ -4033,7 +3504,7 @@ msgstr "Display Terms of Service"
 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 "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 "Enable the Terms of Service page. If this is enabled, a link to the terms will be added to the registration form and to the general information page."
 
 #: mod/admin.php:306
 msgid "Display Privacy Statement"
@@ -4044,7 +3515,7 @@ msgstr "Display Privacy Statement"
 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 "Show some informations regarding the needed information to operate the node according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."
+msgstr "Show some information needed, for example, to comply with <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."
 
 #: mod/admin.php:307
 msgid "Privacy Statement Preview"
@@ -4082,14 +3553,14 @@ msgid ""
 "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 "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 "This page can be used to define a blacklist 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:368
 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 "The list of blocked servers will publicly available on the Friendica page so that your users and people investigating communication problems can readily find the reason."
+msgstr "The list of blocked servers will be available publicly on the Friendica page so that your users and people investigating communication problems can find the reason."
 
 #: mod/admin.php:369
 msgid "Add new entry to block list"
@@ -4167,7 +3638,7 @@ msgstr "This page allows you to prevent any message from a remote contact to rea
 msgid "Block Remote Contact"
 msgstr "Block remote contact"
 
-#: mod/admin.php:486 mod/admin.php:1819
+#: mod/admin.php:486 mod/admin.php:1824
 msgid "select all"
 msgstr "select all"
 
@@ -4231,67 +3702,67 @@ msgstr "GUID"
 msgid "The GUID of the item you want to delete."
 msgstr "GUID of item to be deleted."
 
-#: mod/admin.php:568
+#: mod/admin.php:563
 msgid "Item marked for deletion."
 msgstr "Item marked for deletion."
 
-#: mod/admin.php:639
+#: mod/admin.php:634
 msgid "unknown"
 msgstr "unknown"
 
-#: mod/admin.php:715
+#: mod/admin.php:710
 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 "This page offers you the amount of known part of the federated social network your Friendica node is part of. These numbers are not complete and only reflect the part of the network your node is aware of."
+msgstr "This page offers statistics about the federated social network, of which your Friendica node is one part. These numbers do not represent the entire network, but merely the parts that are connected to your node.\""
 
-#: mod/admin.php:716
+#: mod/admin.php:711
 msgid ""
 "The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
 "will improve the data displayed here."
 msgstr "The <em>Auto Discovered Contact Directory</em> feature is not enabled; enabling it will improve the data displayed here."
 
-#: mod/admin.php:728
+#: mod/admin.php:723
 #, php-format
 msgid ""
 "Currently this node is aware of %d nodes with %d registered users from the "
 "following platforms:"
-msgstr "Currently this node is aware of %d nodes with %d registered users from the following platforms:"
+msgstr "Currently, this node is aware of %d nodes with %d registered users from the following platforms:"
 
-#: mod/admin.php:759
+#: mod/admin.php:754
 msgid "ID"
 msgstr "ID"
 
-#: mod/admin.php:760
+#: mod/admin.php:755
 msgid "Recipient Name"
 msgstr "Recipient name"
 
-#: mod/admin.php:761
+#: mod/admin.php:756
 msgid "Recipient Profile"
 msgstr "Recipient profile"
 
-#: mod/admin.php:762 view/theme/frio/theme.php:266
+#: mod/admin.php:757 view/theme/frio/theme.php:266
 #: src/Core/NotificationsManager.php:178 src/Content/Nav.php:183
 msgid "Network"
 msgstr "Network"
 
-#: mod/admin.php:763
+#: mod/admin.php:758
 msgid "Created"
 msgstr "Created"
 
-#: mod/admin.php:764
+#: mod/admin.php:759
 msgid "Last Tried"
 msgstr "Last Tried"
 
-#: mod/admin.php:765
+#: mod/admin.php:760
 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 "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 "This page lists the content of the queue for outgoing postings. These are postings for which the initial delivery failed. They will be resent later, and eventually deleted if the delivery fails permanently."
 
-#: mod/admin.php:789
+#: mod/admin.php:784
 #, php-format
 msgid ""
 "Your DB still runs with MyISAM tables. You should change the engine type to "
@@ -4300,490 +3771,494 @@ msgid ""
 "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 "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 "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:796
+#: mod/admin.php:791
 #, 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 "A new Friendica version is available now. Your current version is %1$s, upstream version is %2$s"
 
-#: mod/admin.php:806
+#: mod/admin.php:801
 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 "The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and check for errors that may appear."
 
-#: mod/admin.php:812
+#: mod/admin.php:807
 msgid "The worker was never executed. Please check your database structure!"
 msgstr "The worker process has never been executed. Please check your database structure!"
 
-#: mod/admin.php:815
+#: mod/admin.php:810
 #, php-format
 msgid ""
 "The last worker execution was on %s UTC. This is older than one hour. Please"
 " check your crontab settings."
 msgstr "The last worker process started at %s UTC. This is more than one hour ago. Please adjust your crontab settings."
 
-#: mod/admin.php:820
+#: mod/admin.php:815
 msgid "Normal Account"
 msgstr "Standard account"
 
-#: mod/admin.php:821
+#: mod/admin.php:816
 msgid "Automatic Follower Account"
 msgstr "Automatic follower account"
 
-#: mod/admin.php:822
+#: mod/admin.php:817
 msgid "Public Forum Account"
 msgstr "Public forum account"
 
-#: mod/admin.php:823
+#: mod/admin.php:818
 msgid "Automatic Friend Account"
 msgstr "Automatic friend account"
 
-#: mod/admin.php:824
+#: mod/admin.php:819
 msgid "Blog Account"
 msgstr "Blog account"
 
-#: mod/admin.php:825
+#: mod/admin.php:820
 msgid "Private Forum Account"
 msgstr "Private forum account"
 
-#: mod/admin.php:847
+#: mod/admin.php:842
 msgid "Message queues"
 msgstr "Message queues"
 
-#: mod/admin.php:853
+#: mod/admin.php:848
 msgid "Summary"
 msgstr "Summary"
 
-#: mod/admin.php:855
+#: mod/admin.php:850
 msgid "Registered users"
 msgstr "Signed up users"
 
-#: mod/admin.php:857
+#: mod/admin.php:852
 msgid "Pending registrations"
 msgstr "Pending registrations"
 
-#: mod/admin.php:858
+#: mod/admin.php:853
 msgid "Version"
 msgstr "Version"
 
-#: mod/admin.php:863
+#: mod/admin.php:858
 msgid "Active addons"
 msgstr "Active addons"
 
-#: mod/admin.php:894
+#: mod/admin.php:889
 msgid "Can not parse base url. Must have at least <scheme>://<domain>"
 msgstr "Can not parse base URL. Must have at least <scheme>://<domain>"
 
-#: mod/admin.php:1224
+#: mod/admin.php:1220
 msgid "Site settings updated."
 msgstr "Site settings updated."
 
-#: mod/admin.php:1251 mod/settings.php:897
+#: mod/admin.php:1247 mod/settings.php:897
 msgid "No special theme for mobile devices"
 msgstr "No special theme for mobile devices"
 
-#: mod/admin.php:1280
+#: mod/admin.php:1276
 msgid "No community page for local users"
 msgstr "No community page for local users"
 
-#: mod/admin.php:1281
+#: mod/admin.php:1277
 msgid "No community page"
 msgstr "No community page"
 
-#: mod/admin.php:1282
+#: mod/admin.php:1278
 msgid "Public postings from users of this site"
 msgstr "Public postings from users of this site"
 
-#: mod/admin.php:1283
+#: mod/admin.php:1279
 msgid "Public postings from the federated network"
 msgstr "Public postings from the federated network"
 
-#: mod/admin.php:1284
+#: mod/admin.php:1280
 msgid "Public postings from local users and the federated network"
 msgstr "Public postings from local users and the federated network"
 
-#: mod/admin.php:1290
+#: mod/admin.php:1286
 msgid "Users, Global Contacts"
 msgstr "Users, Global Contacts"
 
-#: mod/admin.php:1291
+#: mod/admin.php:1287
 msgid "Users, Global Contacts/fallback"
 msgstr "Users, Global Contacts/fallback"
 
-#: mod/admin.php:1295
+#: mod/admin.php:1291
 msgid "One month"
 msgstr "One month"
 
-#: mod/admin.php:1296
+#: mod/admin.php:1292
 msgid "Three months"
 msgstr "Three months"
 
-#: mod/admin.php:1297
+#: mod/admin.php:1293
 msgid "Half a year"
 msgstr "Half a year"
 
-#: mod/admin.php:1298
+#: mod/admin.php:1294
 msgid "One year"
 msgstr "One a year"
 
-#: mod/admin.php:1303
+#: mod/admin.php:1299
 msgid "Multi user instance"
 msgstr "Multi user instance"
 
-#: mod/admin.php:1326
+#: mod/admin.php:1325
 msgid "Closed"
 msgstr "Closed"
 
-#: mod/admin.php:1327
+#: mod/admin.php:1326
 msgid "Requires approval"
 msgstr "Requires approval"
 
-#: mod/admin.php:1328
+#: mod/admin.php:1327
 msgid "Open"
 msgstr "Open"
 
-#: mod/admin.php:1332
+#: mod/admin.php:1331
 msgid "No SSL policy, links will track page SSL state"
 msgstr "No SSL policy, links will track page SSL state"
 
-#: mod/admin.php:1333
+#: mod/admin.php:1332
 msgid "Force all links to use SSL"
 msgstr "Force all links to use SSL"
 
-#: mod/admin.php:1334
+#: mod/admin.php:1333
 msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr "Self-signed certificate, use SSL for local links only (discouraged)"
 
-#: mod/admin.php:1338
+#: mod/admin.php:1337
 msgid "Don't check"
 msgstr "Don't check"
 
-#: mod/admin.php:1339
+#: mod/admin.php:1338
 msgid "check the stable version"
 msgstr "check for stable version updates"
 
-#: mod/admin.php:1340
+#: mod/admin.php:1339
 msgid "check the development version"
 msgstr "check for development version updates"
 
-#: mod/admin.php:1359
+#: mod/admin.php:1358
 msgid "Republish users to directory"
 msgstr "Republish users to directory"
 
-#: mod/admin.php:1360 mod/register.php:267
+#: mod/admin.php:1359 mod/register.php:267
 msgid "Registration"
 msgstr "Join this Friendica Node Today"
 
-#: mod/admin.php:1361
+#: mod/admin.php:1360
 msgid "File upload"
 msgstr "File upload"
 
-#: mod/admin.php:1362
+#: mod/admin.php:1361
 msgid "Policies"
 msgstr "Policies"
 
-#: mod/admin.php:1364
+#: mod/admin.php:1363
 msgid "Auto Discovered Contact Directory"
 msgstr "Auto-discovered contact directory"
 
-#: mod/admin.php:1365
+#: mod/admin.php:1364
 msgid "Performance"
 msgstr "Performance"
 
-#: mod/admin.php:1366
+#: mod/admin.php:1365
 msgid "Worker"
 msgstr "Worker"
 
-#: mod/admin.php:1367
+#: mod/admin.php:1366
 msgid "Message Relay"
 msgstr "Message relay"
 
-#: mod/admin.php:1368
+#: mod/admin.php:1367
 msgid ""
 "Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr "Relocate - Warning, advanced function: This could make this server unreachable."
 
-#: mod/admin.php:1371
+#: mod/admin.php:1370
 msgid "Site name"
 msgstr "Site name"
 
-#: mod/admin.php:1372
+#: mod/admin.php:1371
 msgid "Host name"
 msgstr "Host name"
 
-#: mod/admin.php:1373
+#: mod/admin.php:1372
 msgid "Sender Email"
 msgstr "Sender email"
 
-#: mod/admin.php:1373
+#: mod/admin.php:1372
 msgid ""
 "The email address your server shall use to send notification emails from."
 msgstr "The email address your server shall use to send notification emails from."
 
-#: mod/admin.php:1374
+#: mod/admin.php:1373
 msgid "Banner/Logo"
 msgstr "Banner/Logo"
 
-#: mod/admin.php:1375
+#: mod/admin.php:1374
 msgid "Shortcut icon"
 msgstr "Shortcut icon"
 
-#: mod/admin.php:1375
+#: mod/admin.php:1374
 msgid "Link to an icon that will be used for browsers."
 msgstr "Link to an icon that will be used for browsers."
 
-#: mod/admin.php:1376
+#: mod/admin.php:1375
 msgid "Touch icon"
 msgstr "Touch icon"
 
-#: mod/admin.php:1376
+#: mod/admin.php:1375
 msgid "Link to an icon that will be used for tablets and mobiles."
 msgstr "Link to an icon that will be used for tablets and mobiles."
 
-#: mod/admin.php:1377
+#: mod/admin.php:1376
 msgid "Additional Info"
 msgstr "Additional Info"
 
-#: mod/admin.php:1377
+#: mod/admin.php:1376
 #, php-format
 msgid ""
 "For public servers: you can add additional information here that will be "
 "listed at %s/servers."
 msgstr "For public servers: You can add additional information here that will be listed at %s/servers."
 
-#: mod/admin.php:1378
+#: mod/admin.php:1377
 msgid "System language"
 msgstr "System language"
 
-#: mod/admin.php:1379
+#: mod/admin.php:1378
 msgid "System theme"
 msgstr "System theme"
 
-#: mod/admin.php:1379
+#: mod/admin.php:1378
 msgid ""
 "Default system theme - may be over-ridden by user profiles - <a href='#' "
 "id='cnftheme'>change theme settings</a>"
 msgstr "Default system theme - may be overridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"
 
-#: mod/admin.php:1380
+#: mod/admin.php:1379
 msgid "Mobile system theme"
 msgstr "Mobile system theme"
 
-#: mod/admin.php:1380
+#: mod/admin.php:1379
 msgid "Theme for mobile devices"
 msgstr "Theme for mobile devices"
 
-#: mod/admin.php:1381
+#: mod/admin.php:1380
 msgid "SSL link policy"
 msgstr "SSL link policy"
 
-#: mod/admin.php:1381
+#: mod/admin.php:1380
 msgid "Determines whether generated links should be forced to use SSL"
 msgstr "Determines whether generated links should be forced to use SSL"
 
-#: mod/admin.php:1382
+#: mod/admin.php:1381
 msgid "Force SSL"
 msgstr "Force SSL"
 
-#: mod/admin.php:1382
+#: mod/admin.php:1381
 msgid ""
 "Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
 " to endless loops."
 msgstr "Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."
 
-#: mod/admin.php:1383
+#: mod/admin.php:1382
 msgid "Hide help entry from navigation menu"
 msgstr "Hide help entry from navigation menu"
 
-#: mod/admin.php:1383
+#: mod/admin.php:1382
 msgid ""
 "Hides the menu entry for the Help pages from the navigation menu. You can "
 "still access it calling /help directly."
 msgstr "Hides the menu entry for the Help pages from the navigation menu. Help pages can still be accessed by calling ../help directly via its URL."
 
-#: mod/admin.php:1384
+#: mod/admin.php:1383
 msgid "Single user instance"
 msgstr "Single user instance"
 
-#: mod/admin.php:1384
+#: mod/admin.php:1383
 msgid "Make this instance multi-user or single-user for the named user"
 msgstr "Make this instance multi-user or single-user for the named user"
 
-#: mod/admin.php:1385
+#: mod/admin.php:1384
 msgid "Maximum image size"
 msgstr "Maximum image size"
 
-#: mod/admin.php:1385
+#: mod/admin.php:1384
 msgid ""
 "Maximum size in bytes of uploaded images. Default is 0, which means no "
 "limits."
 msgstr "Maximum size in bytes of uploaded images. Default is 0, which means no limits."
 
-#: mod/admin.php:1386
+#: mod/admin.php:1385
 msgid "Maximum image length"
 msgstr "Maximum image length"
 
-#: mod/admin.php:1386
+#: mod/admin.php:1385
 msgid ""
 "Maximum length in pixels of the longest side of uploaded images. Default is "
 "-1, which means no limits."
 msgstr "Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."
 
-#: mod/admin.php:1387
+#: mod/admin.php:1386
 msgid "JPEG image quality"
 msgstr "JPEG image quality"
 
-#: mod/admin.php:1387
+#: mod/admin.php:1386
 msgid ""
 "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
 "100, which is full quality."
-msgstr "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is the original quality level."
+msgstr "Uploaded JPEGs will be saved at this quality setting [0-100]. Default is 100, which is the original quality level."
 
-#: mod/admin.php:1389
+#: mod/admin.php:1388
 msgid "Register policy"
 msgstr "Registration policy"
 
-#: mod/admin.php:1390
+#: mod/admin.php:1389
 msgid "Maximum Daily Registrations"
 msgstr "Maximum daily registrations"
 
-#: mod/admin.php:1390
+#: mod/admin.php:1389
 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 "If open registration is permitted, this sets the maximum number of new registrations per day.  This setting has no effect for registrations by approval."
 
-#: mod/admin.php:1391
+#: mod/admin.php:1390
 msgid "Register text"
 msgstr "Registration text"
 
-#: mod/admin.php:1391
+#: mod/admin.php:1390
 msgid ""
 "Will be displayed prominently on the registration page. You can use BBCode "
 "here."
 msgstr "Will be displayed prominently on the registration page. You may use BBCode here."
 
-#: mod/admin.php:1392
+#: mod/admin.php:1391
 msgid "Accounts abandoned after x days"
 msgstr "Accounts abandoned after so many days"
 
-#: mod/admin.php:1392
+#: mod/admin.php:1391
 msgid ""
 "Will not waste system resources polling external sites for abandonded "
 "accounts. Enter 0 for no time limit."
 msgstr "Will not waste system resources polling external sites for abandoned accounts. Enter 0 for no time limit."
 
-#: mod/admin.php:1393
+#: mod/admin.php:1392
 msgid "Allowed friend domains"
 msgstr "Allowed friend domains"
 
-#: mod/admin.php:1393
+#: mod/admin.php:1392
 msgid ""
 "Comma separated list of domains which are allowed to establish friendships "
 "with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Leave empty to allow any domains"
+msgstr "Comma-separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Leave empty to allow any domains"
 
-#: mod/admin.php:1394
+#: mod/admin.php:1393
 msgid "Allowed email domains"
 msgstr "Allowed email domains"
 
-#: mod/admin.php:1394
+#: mod/admin.php:1393
 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 "Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Leave empty to allow any domains"
+msgstr "Comma-separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Leave empty to allow any domains"
 
-#: mod/admin.php:1395
+#: mod/admin.php:1394
 msgid "No OEmbed rich content"
 msgstr "No OEmbed rich content"
 
-#: mod/admin.php:1395
+#: mod/admin.php:1394
 msgid ""
 "Don't show the rich content (e.g. embedded PDF), except from the domains "
 "listed below."
 msgstr "Don't show rich content (e.g. embedded PDF), except from the domains listed below."
 
-#: mod/admin.php:1396
+#: mod/admin.php:1395
 msgid "Allowed OEmbed domains"
 msgstr "Allowed OEmbed domains"
 
-#: mod/admin.php:1396
+#: mod/admin.php:1395
 msgid ""
 "Comma separated list of domains which oembed content is allowed to be "
 "displayed. Wildcards are accepted."
-msgstr "Comma separated list of domains from where OEmbed content is allowed. Wildcards are possible."
+msgstr "Comma-separated list of domains from where OEmbed content is allowed. Wildcards are possible."
 
-#: mod/admin.php:1397
+#: mod/admin.php:1396
 msgid "Block public"
 msgstr "Block public"
 
-#: mod/admin.php:1397
+#: mod/admin.php:1396
 msgid ""
 "Check to block public access to all otherwise public personal pages on this "
 "site unless you are currently logged in."
 msgstr "Block public access to all otherwise public personal pages on this site, except for local users when logged in."
 
-#: mod/admin.php:1398
+#: mod/admin.php:1397
 msgid "Force publish"
 msgstr "Mandatory directory listing"
 
-#: mod/admin.php:1398
+#: mod/admin.php:1397
 msgid ""
 "Check to force all profiles on this site to be listed in the site directory."
 msgstr "Force all profiles on this site to be listed in the site directory."
 
-#: mod/admin.php:1399
+#: mod/admin.php:1397
+msgid "Enabling this may violate privacy laws like the GDPR"
+msgstr ""
+
+#: mod/admin.php:1398
 msgid "Global directory URL"
 msgstr "Global directory URL"
 
-#: mod/admin.php:1399
+#: mod/admin.php:1398
 msgid ""
 "URL to the global directory. If this is not set, the global directory is "
 "completely unavailable to the application."
 msgstr "URL to the global directory: If this is not set, the global directory is completely unavailable to the application."
 
-#: mod/admin.php:1400
+#: mod/admin.php:1399
 msgid "Private posts by default for new users"
 msgstr "Private posts by default for new users"
 
-#: mod/admin.php:1400
+#: mod/admin.php:1399
 msgid ""
 "Set default post permissions for all new members to the default privacy "
 "group rather than public."
 msgstr "Set default post permissions for all new members to the default privacy group rather than public."
 
-#: mod/admin.php:1401
+#: mod/admin.php:1400
 msgid "Don't include post content in email notifications"
 msgstr "Don't include post content in email notifications"
 
-#: mod/admin.php:1401
+#: mod/admin.php:1400
 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 "Don't include the content of a post/comment/private message in the email notifications sent from this site, as a privacy measure."
 
-#: mod/admin.php:1402
+#: mod/admin.php:1401
 msgid "Disallow public access to addons listed in the apps menu."
 msgstr "Disallow public access to addons listed in the apps menu."
 
-#: mod/admin.php:1402
+#: mod/admin.php:1401
 msgid ""
 "Checking this box will restrict addons listed in the apps menu to members "
 "only."
 msgstr "Checking this box will restrict addons listed in the apps menu to members only."
 
-#: mod/admin.php:1403
+#: mod/admin.php:1402
 msgid "Don't embed private images in posts"
 msgstr "Don't embed private images in posts"
 
-#: mod/admin.php:1403
+#: mod/admin.php:1402
 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 "
@@ -4791,210 +4266,210 @@ msgid ""
 "while."
 msgstr "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/admin.php:1404
+#: mod/admin.php:1403
 msgid "Allow Users to set remote_self"
 msgstr "Allow users to set \"Remote self\""
 
-#: mod/admin.php:1404
+#: mod/admin.php:1403
 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 "This allows every user to mark contacts as a \"Remote self\" in the repair contact dialogue. Setting this flag on a contact will mirror every posting of that contact in the users stream."
 
-#: mod/admin.php:1405
+#: mod/admin.php:1404
 msgid "Block multiple registrations"
 msgstr "Block multiple registrations"
 
-#: mod/admin.php:1405
+#: mod/admin.php:1404
 msgid "Disallow users to register additional accounts for use as pages."
 msgstr "Disallow users to sign up for additional accounts."
 
-#: mod/admin.php:1406
+#: mod/admin.php:1405
 msgid "OpenID support"
 msgstr "OpenID support"
 
-#: mod/admin.php:1406
+#: mod/admin.php:1405
 msgid "OpenID support for registration and logins."
 msgstr "OpenID support for registration and logins."
 
-#: mod/admin.php:1407
+#: mod/admin.php:1406
 msgid "Fullname check"
 msgstr "Full name check"
 
-#: mod/admin.php:1407
+#: mod/admin.php:1406
 msgid ""
 "Force users to register with a space between firstname and lastname in Full "
 "name, as an antispam measure"
 msgstr "Force users to sign up with a space between first name and last name in the full name field; it may reduce spam and abuse registrations."
 
-#: mod/admin.php:1408
+#: mod/admin.php:1407
 msgid "Community pages for visitors"
 msgstr "Community pages for visitors"
 
-#: mod/admin.php:1408
+#: mod/admin.php:1407
 msgid ""
 "Which community pages should be available for visitors. Local users always "
 "see both pages."
 msgstr "Which community pages should be available for visitors. Local users always see both pages."
 
-#: mod/admin.php:1409
+#: mod/admin.php:1408
 msgid "Posts per user on community page"
 msgstr "Posts per user on community page"
 
-#: mod/admin.php:1409
+#: mod/admin.php:1408
 msgid ""
 "The maximum number of posts per user on the community page. (Not valid for "
 "'Global Community')"
 msgstr "Maximum number of posts per user on the community page (not valid for 'Global Community')."
 
-#: mod/admin.php:1410
+#: mod/admin.php:1409
 msgid "Enable OStatus support"
 msgstr "Enable OStatus support"
 
-#: mod/admin.php:1410
+#: mod/admin.php:1409
 msgid ""
 "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
 "communications in OStatus are public, so privacy warnings will be "
 "occasionally displayed."
 msgstr "Provide built-in OStatus (StatusNet, GNU Social, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."
 
-#: mod/admin.php:1411
+#: mod/admin.php:1410
 msgid "Only import OStatus threads from our contacts"
 msgstr "Only import OStatus threads from known contacts"
 
-#: mod/admin.php:1411
+#: mod/admin.php:1410
 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 "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 "Normally we import all 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/admin.php:1412
+#: mod/admin.php:1411
 msgid "OStatus support can only be enabled if threading is enabled."
 msgstr "OStatus support can only be enabled if threading is enabled."
 
-#: mod/admin.php:1414
+#: mod/admin.php:1413
 msgid ""
 "Diaspora support can't be enabled because Friendica was installed into a sub"
 " directory."
 msgstr "Diaspora support can't be enabled because Friendica was installed into a sub directory."
 
-#: mod/admin.php:1415
+#: mod/admin.php:1414
 msgid "Enable Diaspora support"
 msgstr "Enable Diaspora support"
 
-#: mod/admin.php:1415
+#: mod/admin.php:1414
 msgid "Provide built-in Diaspora network compatibility."
 msgstr "Provide built-in Diaspora network compatibility."
 
-#: mod/admin.php:1416
+#: mod/admin.php:1415
 msgid "Only allow Friendica contacts"
 msgstr "Only allow Friendica contacts"
 
-#: mod/admin.php:1416
+#: mod/admin.php:1415
 msgid ""
 "All contacts must use Friendica protocols. All other built-in communication "
 "protocols disabled."
 msgstr "All contacts must use Friendica protocols. All other built-in communication protocols will be disabled."
 
-#: mod/admin.php:1417
+#: mod/admin.php:1416
 msgid "Verify SSL"
 msgstr "Verify SSL"
 
-#: mod/admin.php:1417
+#: mod/admin.php:1416
 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 "If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."
 
-#: mod/admin.php:1418
+#: mod/admin.php:1417
 msgid "Proxy user"
 msgstr "Proxy user"
 
-#: mod/admin.php:1419
+#: mod/admin.php:1418
 msgid "Proxy URL"
 msgstr "Proxy URL"
 
-#: mod/admin.php:1420
+#: mod/admin.php:1419
 msgid "Network timeout"
 msgstr "Network timeout"
 
-#: mod/admin.php:1420
+#: mod/admin.php:1419
 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr "Value is in seconds. Set to 0 for unlimited (not recommended)."
 
-#: mod/admin.php:1421
+#: mod/admin.php:1420
 msgid "Maximum Load Average"
 msgstr "Maximum load average"
 
-#: mod/admin.php:1421
+#: mod/admin.php:1420
 msgid ""
 "Maximum system load before delivery and poll processes are deferred - "
 "default 50."
 msgstr "Maximum system load before delivery and poll processes are deferred (default 50)."
 
-#: mod/admin.php:1422
+#: mod/admin.php:1421
 msgid "Maximum Load Average (Frontend)"
 msgstr "Maximum load average (frontend)"
 
-#: mod/admin.php:1422
+#: mod/admin.php:1421
 msgid "Maximum system load before the frontend quits service - default 50."
 msgstr "Maximum system load before the frontend quits service (default 50)."
 
-#: mod/admin.php:1423
+#: mod/admin.php:1422
 msgid "Minimal Memory"
 msgstr "Minimal memory"
 
-#: mod/admin.php:1423
+#: mod/admin.php:1422
 msgid ""
 "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
 "default 0 (deactivated)."
 msgstr "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."
 
-#: mod/admin.php:1424
+#: mod/admin.php:1423
 msgid "Maximum table size for optimization"
 msgstr "Maximum table size for optimization"
 
-#: mod/admin.php:1424
+#: mod/admin.php:1423
 msgid ""
 "Maximum table size (in MB) for the automatic optimization. Enter -1 to "
 "disable it."
 msgstr "Maximum table size (in MB) for automatic optimization. Enter -1 to disable it."
 
-#: mod/admin.php:1425
+#: mod/admin.php:1424
 msgid "Minimum level of fragmentation"
 msgstr "Minimum level of fragmentation"
 
-#: mod/admin.php:1425
+#: mod/admin.php:1424
 msgid ""
 "Minimum fragmenation level to start the automatic optimization - default "
 "value is 30%."
 msgstr "Minimum fragmentation level to start the automatic optimization (default 30%)."
 
-#: mod/admin.php:1427
+#: mod/admin.php:1426
 msgid "Periodical check of global contacts"
 msgstr "Periodical check of global contacts"
 
-#: mod/admin.php:1427
+#: mod/admin.php:1426
 msgid ""
 "If enabled, the global contacts are checked periodically for missing or "
 "outdated data and the vitality of the contacts and servers."
 msgstr "This checks global contacts periodically for missing or outdated data and the vitality of the contacts and servers."
 
-#: mod/admin.php:1428
+#: mod/admin.php:1427
 msgid "Days between requery"
 msgstr "Days between enquiry"
 
-#: mod/admin.php:1428
+#: mod/admin.php:1427
 msgid "Number of days after which a server is requeried for his contacts."
-msgstr "Number of days after which a server is required check contacts."
+msgstr "Number of days after which a server is rechecked for contacts."
 
-#: mod/admin.php:1429
+#: mod/admin.php:1428
 msgid "Discover contacts from other servers"
 msgstr "Discover contacts from other servers"
 
-#: mod/admin.php:1429
+#: mod/admin.php:1428
 msgid ""
 "Periodically query other servers for contacts. You can choose between "
 "'users': the users on the remote system, 'Global Contacts': active contacts "
@@ -5004,32 +4479,32 @@ msgid ""
 "Global Contacts'."
 msgstr "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 recommend setting is 'Users, Global Contacts'."
 
-#: mod/admin.php:1430
+#: mod/admin.php:1429
 msgid "Timeframe for fetching global contacts"
 msgstr "Time-frame for fetching global contacts"
 
-#: mod/admin.php:1430
+#: mod/admin.php:1429
 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 "If discovery is activated, this value defines the time-frame for the activity of the global contacts that are fetched from other servers."
 
-#: mod/admin.php:1431
+#: mod/admin.php:1430
 msgid "Search the local directory"
 msgstr "Search the local directory"
 
-#: mod/admin.php:1431
+#: mod/admin.php:1430
 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 "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."
 
-#: mod/admin.php:1433
+#: mod/admin.php:1432
 msgid "Publish server information"
 msgstr "Publish server information"
 
-#: mod/admin.php:1433
+#: mod/admin.php:1432
 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 "
@@ -5037,50 +4512,50 @@ msgid ""
 " href='http://the-federation.info/'>the-federation.info</a> for details."
 msgstr "This publishes generic data about the server and its usage. 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."
 
-#: mod/admin.php:1435
+#: mod/admin.php:1434
 msgid "Check upstream version"
 msgstr "Check upstream version"
 
-#: mod/admin.php:1435
+#: mod/admin.php:1434
 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 "Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview."
 
-#: mod/admin.php:1436
+#: mod/admin.php:1435
 msgid "Suppress Tags"
 msgstr "Suppress tags"
 
-#: mod/admin.php:1436
+#: mod/admin.php:1435
 msgid "Suppress showing a list of hashtags at the end of the posting."
 msgstr "Suppress listed hashtags at the end of posts."
 
-#: mod/admin.php:1437
+#: mod/admin.php:1436
 msgid "Clean database"
 msgstr "Clean database"
 
-#: mod/admin.php:1437
+#: mod/admin.php:1436
 msgid ""
 "Remove old remote items, orphaned database records and old content from some"
 " other helper tables."
-msgstr "Remove old remote items, orphaned database records and old content from some other helper tables."
+msgstr "Remove old remote items, orphaned database records, and old content from some other helper tables."
 
-#: mod/admin.php:1438
+#: mod/admin.php:1437
 msgid "Lifespan of remote items"
 msgstr "Lifespan of remote items"
 
-#: mod/admin.php:1438
+#: mod/admin.php:1437
 msgid ""
 "When the database cleanup is enabled, this defines the days after which "
 "remote items will be deleted. Own items, and marked or filed items are "
 "always kept. 0 disables this behaviour."
-msgstr "When the database cleanup is enabled, this defines the days after which remote items will be deleted. Own items, and marked or filed items are always kept. 0 disables this behaviour."
+msgstr "When the database cleanup is enabled, this defines the days after which remote items will be deleted. Own items, and marked or filed items, are always kept. 0 disables this behavior."
 
-#: mod/admin.php:1439
+#: mod/admin.php:1438
 msgid "Lifespan of unclaimed items"
 msgstr "Lifespan of unclaimed items"
 
-#: mod/admin.php:1439
+#: mod/admin.php:1438
 msgid ""
 "When the database cleanup is enabled, this defines the days after which "
 "unclaimed remote items (mostly content from the relay) will be deleted. "
@@ -5088,129 +4563,129 @@ msgid ""
 "items if set to 0."
 msgstr "When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0."
 
-#: mod/admin.php:1440
+#: mod/admin.php:1439
 msgid "Path to item cache"
 msgstr "Path to item cache"
 
-#: mod/admin.php:1440
+#: mod/admin.php:1439
 msgid "The item caches buffers generated bbcode and external images."
-msgstr "The item caches buffers generated bbcode and external images."
+msgstr "The item cache retains expanded bbcode and external images."
 
-#: mod/admin.php:1441
+#: mod/admin.php:1440
 msgid "Cache duration in seconds"
 msgstr "Cache duration in seconds"
 
-#: mod/admin.php:1441
+#: mod/admin.php:1440
 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 "How long should cache files be held? (Default 86400 seconds - one day;  -1 disables item cache)"
 
-#: mod/admin.php:1442
+#: mod/admin.php:1441
 msgid "Maximum numbers of comments per post"
-msgstr "Maximum numbers of comments per post"
+msgstr "Maximum number of comments per post"
 
-#: mod/admin.php:1442
+#: mod/admin.php:1441
 msgid "How much comments should be shown for each post? Default value is 100."
 msgstr "How many comments should be shown for each post? (Default 100)"
 
-#: mod/admin.php:1443
+#: mod/admin.php:1442
 msgid "Temp path"
 msgstr "Temp path"
 
-#: mod/admin.php:1443
+#: mod/admin.php:1442
 msgid ""
 "If you have a restricted system where the webserver can't access the system "
 "temp path, enter another path here."
-msgstr "Enter a different tmp path, if your system restricts the webserver's access to the system temp path."
+msgstr "Enter a different temp path if your system restricts the webserver's access to the system temp path."
 
-#: mod/admin.php:1444
+#: mod/admin.php:1443
 msgid "Base path to installation"
 msgstr "Base path to installation"
 
-#: mod/admin.php:1444
+#: mod/admin.php:1443
 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 "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/admin.php:1445
+#: mod/admin.php:1444
 msgid "Disable picture proxy"
 msgstr "Disable picture proxy"
 
-#: mod/admin.php:1445
+#: mod/admin.php:1444
 msgid ""
 "The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
-msgstr "The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."
+" systems with very low bandwidth."
+msgstr ""
 
-#: mod/admin.php:1446
+#: mod/admin.php:1445
 msgid "Only search in tags"
 msgstr "Only search in tags"
 
-#: mod/admin.php:1446
+#: mod/admin.php:1445
 msgid "On large systems the text search can slow down the system extremely."
-msgstr "On large systems the text search can slow down the system significantly."
+msgstr "On large systems, the text search can slow down the system significantly."
 
-#: mod/admin.php:1448
+#: mod/admin.php:1447
 msgid "New base url"
 msgstr "New base URL"
 
-#: mod/admin.php:1448
+#: mod/admin.php:1447
 msgid ""
 "Change base url for this server. Sends relocate message to all Friendica and"
 " Diaspora* contacts of all users."
-msgstr "Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users."
+msgstr "Change base URL for this server. Sends a relocate message to all Friendica and Diaspora* contacts, for all users."
 
-#: mod/admin.php:1450
+#: mod/admin.php:1449
 msgid "RINO Encryption"
 msgstr "RINO Encryption"
 
-#: mod/admin.php:1450
+#: mod/admin.php:1449
 msgid "Encryption layer between nodes."
 msgstr "Encryption layer between nodes."
 
-#: mod/admin.php:1450
+#: mod/admin.php:1449
 msgid "Enabled"
 msgstr "Enabled"
 
-#: mod/admin.php:1452
+#: mod/admin.php:1451
 msgid "Maximum number of parallel workers"
 msgstr "Maximum number of parallel workers"
 
-#: mod/admin.php:1452
+#: mod/admin.php:1451
 msgid ""
 "On shared hosters set this to 2. On larger systems, values of 10 are great. "
 "Default value is 4."
-msgstr "On shared hosts set this to 2. On larger systems, values of 10 are great. Default value is 4."
+msgstr "On shared hosts, set this to 2. On larger systems, values of 10 are great. Default value is 4."
 
-#: mod/admin.php:1453
+#: mod/admin.php:1452
 msgid "Don't use 'proc_open' with the worker"
 msgstr "Don't use 'proc_open' with the worker"
 
-#: mod/admin.php:1453
+#: mod/admin.php:1452
 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 "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 "Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosts. If this is enabled, you should increase the frequency of worker calls in your crontab."
 
-#: mod/admin.php:1454
+#: mod/admin.php:1453
 msgid "Enable fastlane"
 msgstr "Enable fast-lane"
 
-#: mod/admin.php:1454
+#: mod/admin.php:1453
 msgid ""
 "When enabed, the fastlane mechanism starts an additional worker if processes"
 " with higher priority are blocked by processes of lower priority."
 msgstr "The fast-lane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."
 
-#: mod/admin.php:1455
+#: mod/admin.php:1454
 msgid "Enable frontend worker"
 msgstr "Enable frontend worker"
 
-#: mod/admin.php:1455
+#: mod/admin.php:1454
 #, php-format
 msgid ""
 "When enabled the Worker process is triggered when backend access is "
@@ -5218,134 +4693,134 @@ msgid ""
 "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 "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 "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."
 
-#: mod/admin.php:1457
+#: mod/admin.php:1456
 msgid "Subscribe to relay"
 msgstr "Subscribe to relay"
 
-#: mod/admin.php:1457
+#: mod/admin.php:1456
 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 "Receive public posts from the specified relay. Post will be included in searches, subscribed tags and on the global community page."
+msgstr "Receive public posts from the specified relay. Post will be included in searches, subscribed tags, and on the global community page."
 
-#: mod/admin.php:1458
+#: mod/admin.php:1457
 msgid "Relay server"
 msgstr "Relay server"
 
-#: mod/admin.php:1458
+#: mod/admin.php:1457
 msgid ""
 "Address of the relay server where public posts should be send to. For "
 "example https://relay.diasp.org"
-msgstr "Address of the relay server where public posts should be send to. For example https://relay.diasp.org"
+msgstr "Address of the relay server where public posts should be sent. For example https://relay.diasp.org"
 
-#: mod/admin.php:1459
+#: mod/admin.php:1458
 msgid "Direct relay transfer"
 msgstr "Direct relay transfer"
 
-#: mod/admin.php:1459
+#: mod/admin.php:1458
 msgid ""
 "Enables the direct transfer to other servers without using the relay servers"
 msgstr "Enables direct transfer to other servers without using a relay server."
 
-#: mod/admin.php:1460
+#: mod/admin.php:1459
 msgid "Relay scope"
 msgstr "Relay scope"
 
-#: mod/admin.php:1460
+#: mod/admin.php:1459
 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 "Set to 'all' or 'tags'. 'all' means receive every public post; 'tags' receive public posts only with specified tags."
 
-#: mod/admin.php:1460
+#: mod/admin.php:1459
 msgid "all"
 msgstr "all"
 
-#: mod/admin.php:1460
+#: mod/admin.php:1459
 msgid "tags"
 msgstr "tags"
 
-#: mod/admin.php:1461
+#: mod/admin.php:1460
 msgid "Server tags"
 msgstr "Server tags"
 
-#: mod/admin.php:1461
+#: mod/admin.php:1460
 msgid "Comma separated list of tags for the 'tags' subscription."
-msgstr "Comma separated tags for subscription."
+msgstr "Comma-separated tags for subscription."
 
-#: mod/admin.php:1462
+#: mod/admin.php:1461
 msgid "Allow user tags"
 msgstr "Allow user tags"
 
-#: mod/admin.php:1462
+#: mod/admin.php:1461
 msgid ""
 "If enabled, the tags from the saved searches will used for the 'tags' "
 "subscription in addition to the 'relay_server_tags'."
 msgstr "Use user-generated tags from saved searches for 'tags' subscription in addition to 'relay_server_tags'."
 
-#: mod/admin.php:1490
+#: mod/admin.php:1489
 msgid "Update has been marked successful"
 msgstr "Update has been marked successful"
 
-#: mod/admin.php:1497
+#: mod/admin.php:1496
 #, php-format
 msgid "Database structure update %s was successfully applied."
 msgstr "Database structure update %s was successfully applied."
 
-#: mod/admin.php:1500
+#: mod/admin.php:1499
 #, php-format
 msgid "Executing of database structure update %s failed with error: %s"
-msgstr "Executing of database structure update %s failed with error: %s"
+msgstr "Execution of database structure update %s failed with error: %s"
 
-#: mod/admin.php:1513
+#: mod/admin.php:1515
 #, php-format
 msgid "Executing %s failed with error: %s"
-msgstr "Executing %s failed with error: %s"
+msgstr "Execution of %s failed with error: %s"
 
-#: mod/admin.php:1515
+#: mod/admin.php:1517
 #, php-format
 msgid "Update %s was successfully applied."
 msgstr "Update %s was successfully applied."
 
-#: mod/admin.php:1518
+#: mod/admin.php:1520
 #, php-format
 msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr "Update %s did not return a status. Unknown if it succeeded."
 
-#: mod/admin.php:1521
+#: mod/admin.php:1523
 #, php-format
 msgid "There was no additional update function %s that needed to be called."
 msgstr "There was no additional update function %s that needed to be called."
 
-#: mod/admin.php:1541
+#: mod/admin.php:1546
 msgid "No failed updates."
 msgstr "No failed updates."
 
-#: mod/admin.php:1542
+#: mod/admin.php:1547
 msgid "Check database structure"
 msgstr "Check database structure"
 
-#: mod/admin.php:1547
+#: mod/admin.php:1552
 msgid "Failed Updates"
 msgstr "Failed updates"
 
-#: mod/admin.php:1548
+#: mod/admin.php:1553
 msgid ""
 "This does not include updates prior to 1139, which did not return a status."
 msgstr "This does not include updates prior to 1139, which did not return a status."
 
-#: mod/admin.php:1549
+#: mod/admin.php:1554
 msgid "Mark success (if update was manually applied)"
 msgstr "Mark success (if update was manually applied)"
 
-#: mod/admin.php:1550
+#: mod/admin.php:1555
 msgid "Attempt to execute this update step automatically"
 msgstr "Attempt to execute this update step automatically"
 
-#: mod/admin.php:1589
+#: mod/admin.php:1594
 #, php-format
 msgid ""
 "\n"
@@ -5353,7 +4828,7 @@ msgid ""
 "\t\t\t\tthe administrator of %2$s has set up an account for you."
 msgstr "\n\t\t\tDear %1$s,\n\t\t\t\tThe administrator of %2$s has set up an account for you."
 
-#: mod/admin.php:1592
+#: mod/admin.php:1597
 #, php-format
 msgid ""
 "\n"
@@ -5385,208 +4860,208 @@ msgid ""
 "\t\t\tThank you and welcome to %4$s."
 msgstr "\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/admin.php:1626 src/Model/User.php:663
+#: mod/admin.php:1631 src/Model/User.php:665
 #, php-format
 msgid "Registration details for %s"
 msgstr "Registration details for %s"
 
-#: mod/admin.php:1636
+#: mod/admin.php:1641
 #, php-format
 msgid "%s user blocked/unblocked"
 msgid_plural "%s users blocked/unblocked"
 msgstr[0] "%s user blocked/unblocked"
 msgstr[1] "%s users blocked/unblocked"
 
-#: mod/admin.php:1642
+#: mod/admin.php:1647
 #, php-format
 msgid "%s user deleted"
 msgid_plural "%s users deleted"
 msgstr[0] "%s user deleted"
 msgstr[1] "%s users deleted"
 
-#: mod/admin.php:1689
+#: mod/admin.php:1694
 #, php-format
 msgid "User '%s' deleted"
 msgstr "User '%s' deleted"
 
-#: mod/admin.php:1697
+#: mod/admin.php:1702
 #, php-format
 msgid "User '%s' unblocked"
 msgstr "User '%s' unblocked"
 
-#: mod/admin.php:1697
+#: mod/admin.php:1702
 #, php-format
 msgid "User '%s' blocked"
 msgstr "User '%s' blocked"
 
-#: mod/admin.php:1754 mod/settings.php:1058
+#: mod/admin.php:1759 mod/settings.php:1058
 msgid "Normal Account Page"
 msgstr "Standard"
 
-#: mod/admin.php:1755 mod/settings.php:1062
+#: mod/admin.php:1760 mod/settings.php:1062
 msgid "Soapbox Page"
 msgstr "Soapbox"
 
-#: mod/admin.php:1756 mod/settings.php:1066
+#: mod/admin.php:1761 mod/settings.php:1066
 msgid "Public Forum"
 msgstr "Public forum"
 
-#: mod/admin.php:1757 mod/settings.php:1070
+#: mod/admin.php:1762 mod/settings.php:1070
 msgid "Automatic Friend Page"
 msgstr "Love-all"
 
-#: mod/admin.php:1758
+#: mod/admin.php:1763
 msgid "Private Forum"
 msgstr "Private Forum"
 
-#: mod/admin.php:1761 mod/settings.php:1042
+#: mod/admin.php:1766 mod/settings.php:1042
 msgid "Personal Page"
 msgstr "Personal Page"
 
-#: mod/admin.php:1762 mod/settings.php:1046
+#: mod/admin.php:1767 mod/settings.php:1046
 msgid "Organisation Page"
 msgstr "Organization Page"
 
-#: mod/admin.php:1763 mod/settings.php:1050
+#: mod/admin.php:1768 mod/settings.php:1050
 msgid "News Page"
 msgstr "News Page"
 
-#: mod/admin.php:1764 mod/settings.php:1054
+#: mod/admin.php:1769 mod/settings.php:1054
 msgid "Community Forum"
 msgstr "Community Forum"
 
-#: mod/admin.php:1811 mod/admin.php:1822 mod/admin.php:1835 mod/admin.php:1853
+#: mod/admin.php:1816 mod/admin.php:1827 mod/admin.php:1840 mod/admin.php:1858
 #: src/Content/ContactSelector.php:82
 msgid "Email"
 msgstr "Email"
 
-#: mod/admin.php:1811 mod/admin.php:1835
+#: mod/admin.php:1816 mod/admin.php:1840
 msgid "Register date"
 msgstr "Registration date"
 
-#: mod/admin.php:1811 mod/admin.php:1835
+#: mod/admin.php:1816 mod/admin.php:1840
 msgid "Last login"
 msgstr "Last login"
 
-#: mod/admin.php:1811 mod/admin.php:1835
+#: mod/admin.php:1816 mod/admin.php:1840
 msgid "Last item"
 msgstr "Last item"
 
-#: mod/admin.php:1811
+#: mod/admin.php:1816
 msgid "Type"
 msgstr "Type"
 
-#: mod/admin.php:1818
+#: mod/admin.php:1823
 msgid "Add User"
 msgstr "Add user"
 
-#: mod/admin.php:1820
+#: mod/admin.php:1825
 msgid "User registrations waiting for confirm"
 msgstr "User registrations awaiting confirmation"
 
-#: mod/admin.php:1821
+#: mod/admin.php:1826
 msgid "User waiting for permanent deletion"
 msgstr "User awaiting permanent deletion"
 
-#: mod/admin.php:1822
+#: mod/admin.php:1827
 msgid "Request date"
 msgstr "Request date"
 
-#: mod/admin.php:1823
+#: mod/admin.php:1828
 msgid "No registrations."
 msgstr "No registrations."
 
-#: mod/admin.php:1824
+#: mod/admin.php:1829
 msgid "Note from the user"
 msgstr "Note from the user"
 
-#: mod/admin.php:1825 mod/notifications.php:178 mod/notifications.php:262
+#: mod/admin.php:1830 mod/notifications.php:178 mod/notifications.php:262
 msgid "Approve"
 msgstr "Approve"
 
-#: mod/admin.php:1826
+#: mod/admin.php:1831
 msgid "Deny"
 msgstr "Deny"
 
-#: mod/admin.php:1830
+#: mod/admin.php:1835
 msgid "Site admin"
 msgstr "Site admin"
 
-#: mod/admin.php:1831
+#: mod/admin.php:1836
 msgid "Account expired"
 msgstr "Account expired"
 
-#: mod/admin.php:1834
+#: mod/admin.php:1839
 msgid "New User"
 msgstr "New user"
 
-#: mod/admin.php:1835
+#: mod/admin.php:1840
 msgid "Deleted since"
 msgstr "Deleted since"
 
-#: mod/admin.php:1840
+#: mod/admin.php:1845
 msgid ""
 "Selected users will be deleted!\\n\\nEverything these users had posted on "
 "this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Selected users will be deleted!\\n\\nEverything these users has posted on this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Selected users will be deleted!\\n\\nEverything these users have posted on this site will be permanently deleted!\\n\\nAre you sure?"
 
-#: mod/admin.php:1841
+#: mod/admin.php:1846
 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 "The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"
 
-#: mod/admin.php:1851
+#: mod/admin.php:1856
 msgid "Name of the new user."
 msgstr "Name of the new user."
 
-#: mod/admin.php:1852
+#: mod/admin.php:1857
 msgid "Nickname"
 msgstr "Nickname"
 
-#: mod/admin.php:1852
+#: mod/admin.php:1857
 msgid "Nickname of the new user."
 msgstr "Nickname of the new user."
 
-#: mod/admin.php:1853
+#: mod/admin.php:1858
 msgid "Email address of the new user."
 msgstr "Email address of the new user."
 
-#: mod/admin.php:1895
+#: mod/admin.php:1900
 #, php-format
 msgid "Addon %s disabled."
 msgstr "Addon %s disabled."
 
-#: mod/admin.php:1899
+#: mod/admin.php:1904
 #, php-format
 msgid "Addon %s enabled."
 msgstr "Addon %s enabled."
 
-#: mod/admin.php:1909 mod/admin.php:2158
+#: mod/admin.php:1914 mod/admin.php:2163
 msgid "Disable"
 msgstr "Disable"
 
-#: mod/admin.php:1912 mod/admin.php:2161
+#: mod/admin.php:1917 mod/admin.php:2166
 msgid "Enable"
 msgstr "Enable"
 
-#: mod/admin.php:1934 mod/admin.php:2203
+#: mod/admin.php:1939 mod/admin.php:2209
 msgid "Toggle"
 msgstr "Toggle"
 
-#: mod/admin.php:1942 mod/admin.php:2212
+#: mod/admin.php:1947 mod/admin.php:2218
 msgid "Author: "
 msgstr "Author: "
 
-#: mod/admin.php:1943 mod/admin.php:2213
+#: mod/admin.php:1948 mod/admin.php:2219
 msgid "Maintainer: "
 msgstr "Maintainer: "
 
-#: mod/admin.php:1995
+#: mod/admin.php:2000
 msgid "Reload active addons"
 msgstr "Reload active addons"
 
-#: mod/admin.php:2000
+#: mod/admin.php:2005
 #, php-format
 msgid ""
 "There are currently no addons available on your node. You can find the "
@@ -5594,70 +5069,70 @@ msgid ""
 " the open addon registry at %2$s"
 msgstr "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/admin.php:2120
+#: mod/admin.php:2125
 msgid "No themes found."
 msgstr "No themes found."
 
-#: mod/admin.php:2194
+#: mod/admin.php:2200
 msgid "Screenshot"
 msgstr "Screenshot"
 
-#: mod/admin.php:2248
+#: mod/admin.php:2254
 msgid "Reload active themes"
 msgstr "Reload active themes"
 
-#: mod/admin.php:2253
+#: mod/admin.php:2259
 #, php-format
 msgid "No themes found on the system. They should be placed in %1$s"
 msgstr "No themes found on the system. They should be placed in %1$s"
 
-#: mod/admin.php:2254
+#: mod/admin.php:2260
 msgid "[Experimental]"
 msgstr "[Experimental]"
 
-#: mod/admin.php:2255
+#: mod/admin.php:2261
 msgid "[Unsupported]"
 msgstr "[Unsupported]"
 
-#: mod/admin.php:2279
+#: mod/admin.php:2285
 msgid "Log settings updated."
 msgstr "Log settings updated."
 
-#: mod/admin.php:2311
+#: mod/admin.php:2317
 msgid "PHP log currently enabled."
 msgstr "PHP log currently enabled."
 
-#: mod/admin.php:2313
+#: mod/admin.php:2319
 msgid "PHP log currently disabled."
 msgstr "PHP log currently disabled."
 
-#: mod/admin.php:2322
+#: mod/admin.php:2328
 msgid "Clear"
 msgstr "Clear"
 
-#: mod/admin.php:2326
+#: mod/admin.php:2332
 msgid "Enable Debugging"
 msgstr "Enable debugging"
 
-#: mod/admin.php:2327
+#: mod/admin.php:2333
 msgid "Log file"
 msgstr "Log file"
 
-#: mod/admin.php:2327
+#: mod/admin.php:2333
 msgid ""
 "Must be writable by web server. Relative to your Friendica top-level "
 "directory."
 msgstr "Must be writable by web server and relative to your Friendica top-level directory."
 
-#: mod/admin.php:2328
+#: mod/admin.php:2334
 msgid "Log level"
 msgstr "Log level"
 
-#: mod/admin.php:2330
+#: mod/admin.php:2336
 msgid "PHP logging"
 msgstr "PHP logging"
 
-#: mod/admin.php:2331
+#: mod/admin.php:2337
 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 "
@@ -5666,37 +5141,71 @@ msgid ""
 "'display_errors' is to enable these options, set to '0' to disable them."
 msgstr "To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The file name 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/admin.php:2362
+#: mod/admin.php:2368
 #, 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 "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/admin.php:2366
+#: mod/admin.php:2372
 #, 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 "Couldn't open <strong>%1$s</strong> log file.\\r\\n<br/>Check if file %1$s is readable."
 
-#: mod/admin.php:2457 mod/admin.php:2458 mod/settings.php:767
+#: mod/admin.php:2463 mod/admin.php:2464 mod/settings.php:767
 msgid "Off"
 msgstr "Off"
 
-#: mod/admin.php:2457 mod/admin.php:2458 mod/settings.php:767
+#: mod/admin.php:2463 mod/admin.php:2464 mod/settings.php:767
 msgid "On"
 msgstr "On"
 
-#: mod/admin.php:2458
+#: mod/admin.php:2464
 #, php-format
 msgid "Lock feature %s"
 msgstr "Lock feature %s"
 
-#: mod/admin.php:2466
+#: mod/admin.php:2472
 msgid "Manage Additional Features"
 msgstr "Manage additional features"
 
+#: mod/community.php:51
+msgid "Community option not available."
+msgstr "Community option not available."
+
+#: mod/community.php:68
+msgid "Not available."
+msgstr "Not available."
+
+#: mod/community.php:81
+msgid "Local Community"
+msgstr "Local community"
+
+#: mod/community.php:84
+msgid "Posts from local users on this server"
+msgstr "Posts from local users on this server"
+
+#: mod/community.php:92
+msgid "Global Community"
+msgstr "Global community"
+
+#: mod/community.php:95
+msgid "Posts from users of the whole federated network"
+msgstr "Posts from users of the whole federated network"
+
+#: mod/community.php:141 mod/search.php:228
+msgid "No results."
+msgstr "No results."
+
+#: mod/community.php:185
+msgid ""
+"This community stream shows all public posts received by this node. They may"
+" not reflect the opinions of this node’s users."
+msgstr "This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."
+
 #: mod/dfrn_confirm.php:74 mod/profiles.php:39 mod/profiles.php:149
 #: mod/profiles.php:196 mod/profiles.php:525
 msgid "Profile not found."
@@ -5747,7 +5256,7 @@ msgstr "Our site encryption key is apparently messed up."
 
 #: mod/dfrn_confirm.php:471
 msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "An empty URL was provided or the URL could not be decrypted by us."
+msgstr "An empty URL was provided, or the URL could not be decrypted by us."
 
 #: mod/dfrn_confirm.php:487
 msgid "Contact record was not found for you on our site."
@@ -5926,6 +5435,139 @@ msgid ""
 " bar."
 msgstr " - please do not use this form.  Instead, enter %s into your Diaspora search bar."
 
+#: mod/events.php:105 mod/events.php:107
+msgid "Event can not end before it has started."
+msgstr "Event cannot end before it has started."
+
+#: mod/events.php:114 mod/events.php:116
+msgid "Event title and start time are required."
+msgstr "Event title and starting time are required."
+
+#: mod/events.php:393
+msgid "Create New Event"
+msgstr "Create new event"
+
+#: mod/events.php:507
+msgid "Event details"
+msgstr "Event details"
+
+#: mod/events.php:508
+msgid "Starting date and Title are required."
+msgstr "Starting date and title are required."
+
+#: mod/events.php:509 mod/events.php:510
+msgid "Event Starts:"
+msgstr "Event starts:"
+
+#: mod/events.php:509 mod/events.php:521 mod/profiles.php:607
+msgid "Required"
+msgstr "Required"
+
+#: mod/events.php:511 mod/events.php:527
+msgid "Finish date/time is not known or not relevant"
+msgstr "Finish date/time is not known or not relevant"
+
+#: mod/events.php:513 mod/events.php:514
+msgid "Event Finishes:"
+msgstr "Event finishes:"
+
+#: mod/events.php:515 mod/events.php:528
+msgid "Adjust for viewer timezone"
+msgstr "Adjust for viewer's time zone"
+
+#: mod/events.php:517
+msgid "Description:"
+msgstr "Description:"
+
+#: mod/events.php:521 mod/events.php:523
+msgid "Title:"
+msgstr "Title:"
+
+#: mod/events.php:524 mod/events.php:525
+msgid "Share this event"
+msgstr "Share this event"
+
+#: mod/events.php:532 src/Model/Profile.php:862
+msgid "Basic"
+msgstr "Basic"
+
+#: mod/events.php:534 mod/photos.php:1086 mod/photos.php:1435
+#: src/Core/ACL.php:318
+msgid "Permissions"
+msgstr "Permissions"
+
+#: mod/events.php:553
+msgid "Failed to remove event"
+msgstr "Failed to remove event"
+
+#: mod/events.php:555
+msgid "Event removed"
+msgstr "Event removed"
+
+#: mod/group.php:36
+msgid "Group created."
+msgstr "Group created."
+
+#: mod/group.php:42
+msgid "Could not create group."
+msgstr "Could not create group."
+
+#: mod/group.php:56 mod/group.php:157
+msgid "Group not found."
+msgstr "Group not found."
+
+#: mod/group.php:70
+msgid "Group name changed."
+msgstr "Group name changed."
+
+#: mod/group.php:97
+msgid "Save Group"
+msgstr "Save group"
+
+#: mod/group.php:102
+msgid "Create a group of contacts/friends."
+msgstr "Create a group of contacts/friends."
+
+#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421
+msgid "Group Name: "
+msgstr "Group name: "
+
+#: mod/group.php:127
+msgid "Group removed."
+msgstr "Group removed."
+
+#: mod/group.php:129
+msgid "Unable to remove group."
+msgstr "Unable to remove group."
+
+#: mod/group.php:192
+msgid "Delete Group"
+msgstr "Delete group"
+
+#: mod/group.php:198
+msgid "Group Editor"
+msgstr "Group Editor"
+
+#: mod/group.php:203
+msgid "Edit Group Name"
+msgstr "Edit group name"
+
+#: mod/group.php:213
+msgid "Members"
+msgstr "Members"
+
+#: mod/group.php:216 mod/network.php:639
+msgid "Group is empty"
+msgstr "Group is empty"
+
+#: mod/group.php:229
+msgid "Remove contact from group"
+msgstr "Remove contact from group"
+
+#: mod/group.php:253
+msgid "Add contact to group"
+msgstr "Add contact to group"
+
 #: mod/item.php:114
 msgid "Unable to locate original post."
 msgstr "Unable to locate original post."
@@ -5957,6 +5599,103 @@ msgstr "Please contact the sender by replying to this post if you do not wish to
 msgid "%s posted an update."
 msgstr "%s posted an update."
 
+#: mod/network.php:194 mod/search.php:37
+msgid "Remove term"
+msgstr "Remove term"
+
+#: mod/network.php:201 mod/search.php:46 src/Content/Feature.php:100
+msgid "Saved Searches"
+msgstr "Saved searches"
+
+#: mod/network.php:202 src/Model/Group.php:413
+msgid "add"
+msgstr "add"
+
+#: 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] "Warning: This group contains %s member from a network that doesn't allow non public messages."
+msgstr[1] "Warning: This group contains %s members from a network that doesn't allow non-public messages."
+
+#: mod/network.php:550
+msgid "Messages in this group won't be send to these receivers."
+msgstr "Messages in this group won't be sent to these receivers."
+
+#: mod/network.php:618
+msgid "No such group"
+msgstr "No such group"
+
+#: mod/network.php:643
+#, php-format
+msgid "Group: %s"
+msgstr "Group: %s"
+
+#: mod/network.php:669
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Private messages to this person are at risk of public disclosure."
+
+#: mod/network.php:672
+msgid "Invalid contact."
+msgstr "Invalid contact."
+
+#: mod/network.php:943
+msgid "Commented Order"
+msgstr "Commented last"
+
+#: mod/network.php:946
+msgid "Sort by Comment Date"
+msgstr "Sort by comment date"
+
+#: mod/network.php:951
+msgid "Posted Order"
+msgstr "Posted last"
+
+#: mod/network.php:954
+msgid "Sort by Post Date"
+msgstr "Sort by post date"
+
+#: mod/network.php:962 mod/profiles.php:594
+#: src/Core/NotificationsManager.php:185
+msgid "Personal"
+msgstr "Personal"
+
+#: mod/network.php:965
+msgid "Posts that mention or involve you"
+msgstr "Posts mentioning or involving me"
+
+#: mod/network.php:973
+msgid "New"
+msgstr "New"
+
+#: mod/network.php:976
+msgid "Activity Stream - by date"
+msgstr "Activity Stream - by date"
+
+#: mod/network.php:984
+msgid "Shared Links"
+msgstr "Shared links"
+
+#: mod/network.php:987
+msgid "Interesting Links"
+msgstr "Interesting links"
+
+#: mod/network.php:995
+msgid "Starred"
+msgstr "Starred"
+
+#: mod/network.php:998
+msgid "Favourite Posts"
+msgstr "My favorite posts"
+
+#: mod/notes.php:52 src/Model/Profile.php:944
+msgid "Personal Notes"
+msgstr "Personal notes"
+
 #: mod/notifications.php:37
 msgid "Invalid request identifier."
 msgstr "Invalid request identifier."
@@ -6007,79 +5746,293 @@ msgstr "Says they know me:"
 msgid "yes"
 msgstr "yes"
 
-#: mod/notifications.php:198
-msgid "no"
-msgstr "no"
+#: mod/notifications.php:198
+msgid "no"
+msgstr "no"
+
+#: mod/notifications.php:199 mod/notifications.php:204
+msgid "Shall your connection be bidirectional or not?"
+msgstr "Shall your connection be in both directions or not?"
+
+#: mod/notifications.php:200 mod/notifications.php:205
+#, php-format
+msgid ""
+"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
+"also receive updates from them in your news feed."
+msgstr "Accepting %s as a friend allows %s to subscribe to your posts. You will also receive updates from them in your news feed."
+
+#: mod/notifications.php:201
+#, 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 "Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."
+
+#: mod/notifications.php:206
+#, 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 "Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."
+
+#: mod/notifications.php:217
+msgid "Friend"
+msgstr "Friend"
+
+#: mod/notifications.php:218
+msgid "Sharer"
+msgstr "Sharer"
+
+#: mod/notifications.php:218
+msgid "Subscriber"
+msgstr "Subscriber"
+
+#: mod/notifications.php:273
+msgid "No introductions."
+msgstr "No introductions."
+
+#: mod/notifications.php:314
+msgid "Show unread"
+msgstr "Show unread"
+
+#: mod/notifications.php:314
+msgid "Show all"
+msgstr "Show all"
+
+#: mod/notifications.php:320
+#, php-format
+msgid "No more %s notifications."
+msgstr "No more %s notifications."
+
+#: mod/openid.php:29
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID protocol error. No ID returned."
+
+#: mod/openid.php:66
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Account not found and OpenID registration is not permitted on this site."
+
+#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:135
+msgid "Login failed."
+msgstr "Login failed."
+
+#: mod/photos.php:108 src/Model/Profile.php:905
+msgid "Photo Albums"
+msgstr "Photo Albums"
+
+#: mod/photos.php:109 mod/photos.php:1708
+msgid "Recent Photos"
+msgstr "Recent photos"
+
+#: mod/photos.php:112 mod/photos.php:1198 mod/photos.php:1710
+msgid "Upload New Photos"
+msgstr "Upload new photos"
+
+#: mod/photos.php:126 mod/settings.php:51
+msgid "everybody"
+msgstr "everybody"
+
+#: mod/photos.php:184
+msgid "Contact information unavailable"
+msgstr "Contact information unavailable"
+
+#: mod/photos.php:204
+msgid "Album not found."
+msgstr "Album not found."
+
+#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1149
+msgid "Delete Album"
+msgstr "Delete album"
+
+#: mod/photos.php:243
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Do you really want to delete this photo album and all its photos?"
+
+#: mod/photos.php:303 mod/photos.php:314 mod/photos.php:1440
+msgid "Delete Photo"
+msgstr "Delete photo"
+
+#: mod/photos.php:312
+msgid "Do you really want to delete this photo?"
+msgstr "Do you really want to delete this photo?"
+
+#: mod/photos.php:655
+msgid "a photo"
+msgstr "a photo"
+
+#: mod/photos.php:655
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s was tagged in %2$s by %3$s"
+
+#: mod/photos.php:757
+msgid "Image upload didn't complete, please try again"
+msgstr "Image upload didn't complete. Please try again."
+
+#: mod/photos.php:760
+msgid "Image file is missing"
+msgstr "Image file is missing"
+
+#: mod/photos.php:765
+msgid ""
+"Server can't accept new file upload at this time, please contact your "
+"administrator"
+msgstr "Server can't accept new file uploads at this time. Please contact your administrator."
+
+#: mod/photos.php:791
+msgid "Image file is empty."
+msgstr "Image file is empty."
+
+#: mod/photos.php:928
+msgid "No photos selected"
+msgstr "No photos selected"
+
+#: mod/photos.php:1024 mod/videos.php:309
+msgid "Access to this item is restricted."
+msgstr "Access to this item is restricted."
+
+#: mod/photos.php:1078
+msgid "Upload Photos"
+msgstr "Upload photos"
+
+#: mod/photos.php:1082 mod/photos.php:1144
+msgid "New album name: "
+msgstr "New album name: "
+
+#: mod/photos.php:1083
+msgid "or existing album name: "
+msgstr "or existing album name: "
+
+#: mod/photos.php:1084
+msgid "Do not show a status post for this upload"
+msgstr "Do not show a status post for this upload"
+
+#: mod/photos.php:1094 mod/photos.php:1443 mod/settings.php:1218
+msgid "Show to Groups"
+msgstr "Show to groups"
+
+#: mod/photos.php:1095 mod/photos.php:1444 mod/settings.php:1219
+msgid "Show to Contacts"
+msgstr "Show to contacts"
+
+#: mod/photos.php:1155
+msgid "Edit Album"
+msgstr "Edit album"
+
+#: mod/photos.php:1160
+msgid "Show Newest First"
+msgstr "Show newest first"
+
+#: mod/photos.php:1162
+msgid "Show Oldest First"
+msgstr "Show oldest first"
+
+#: mod/photos.php:1183 mod/photos.php:1693
+msgid "View Photo"
+msgstr "View photo"
+
+#: mod/photos.php:1224
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Permission denied. Access to this item may be restricted."
+
+#: mod/photos.php:1226
+msgid "Photo not available"
+msgstr "Photo not available"
+
+#: mod/photos.php:1294
+msgid "View photo"
+msgstr "View photo"
+
+#: mod/photos.php:1294
+msgid "Edit photo"
+msgstr "Edit photo"
+
+#: mod/photos.php:1295
+msgid "Use as profile photo"
+msgstr "Use as profile photo"
+
+#: mod/photos.php:1301 src/Object/Post.php:149
+msgid "Private Message"
+msgstr "Private message"
+
+#: mod/photos.php:1321
+msgid "View Full Size"
+msgstr "View full size"
+
+#: mod/photos.php:1408
+msgid "Tags: "
+msgstr "Tags: "
+
+#: mod/photos.php:1411
+msgid "[Remove any tag]"
+msgstr "[Remove any tag]"
+
+#: mod/photos.php:1426
+msgid "New album name"
+msgstr "New album name"
 
-#: mod/notifications.php:199 mod/notifications.php:204
-msgid "Shall your connection be bidirectional or not?"
-msgstr "Shall your connection be in both directions or not?"
+#: mod/photos.php:1427
+msgid "Caption"
+msgstr "Caption"
 
-#: mod/notifications.php:200 mod/notifications.php:205
-#, php-format
-msgid ""
-"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
-"also receive updates from them in your news feed."
-msgstr "Accepting %s as a friend allows %s to subscribe to your posts; you will also receive updates from them in your news feed."
+#: mod/photos.php:1428
+msgid "Add a Tag"
+msgstr "Add Tag"
 
-#: mod/notifications.php:201
-#, php-format
+#: mod/photos.php:1428
 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 "Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Example: @bob, @jojo@example.com, #California, #camping"
 
-#: mod/notifications.php:206
-#, 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 "Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."
+#: mod/photos.php:1429
+msgid "Do not rotate"
+msgstr "Do not rotate"
 
-#: mod/notifications.php:217
-msgid "Friend"
-msgstr "Friend"
+#: mod/photos.php:1430
+msgid "Rotate CW (right)"
+msgstr "Rotate right (CW)"
 
-#: mod/notifications.php:218
-msgid "Sharer"
-msgstr "Sharer"
+#: mod/photos.php:1431
+msgid "Rotate CCW (left)"
+msgstr "Rotate left (CCW)"
 
-#: mod/notifications.php:218
-msgid "Subscriber"
-msgstr "Subscriber"
+#: mod/photos.php:1465 src/Object/Post.php:304
+msgid "I like this (toggle)"
+msgstr "I like this (toggle)"
 
-#: mod/notifications.php:273
-msgid "No introductions."
-msgstr "No introductions."
+#: mod/photos.php:1466 src/Object/Post.php:305
+msgid "I don't like this (toggle)"
+msgstr "I don't like this (toggle)"
 
-#: mod/notifications.php:314
-msgid "Show unread"
-msgstr "Show unread"
+#: mod/photos.php:1484 mod/photos.php:1523 mod/photos.php:1596
+#: src/Object/Post.php:407 src/Object/Post.php:803
+msgid "Comment"
+msgstr "Comment"
 
-#: mod/notifications.php:314
-msgid "Show all"
-msgstr "Show all"
+#: mod/photos.php:1628
+msgid "Map"
+msgstr "Map"
 
-#: mod/notifications.php:320
-#, php-format
-msgid "No more %s notifications."
-msgstr "No more %s notifications."
+#: mod/photos.php:1699 mod/videos.php:387
+msgid "View Album"
+msgstr "View album"
 
 #: mod/profile.php:37 src/Model/Profile.php:118
 msgid "Requested profile is not available."
 msgstr "Requested profile is unavailable."
 
-#: mod/profile.php:78 mod/profile.php:81 src/Protocol/OStatus.php:1251
+#: mod/profile.php:78 mod/profile.php:81 src/Protocol/OStatus.php:1250
 #, php-format
 msgid "%s's timeline"
 msgstr "%s's timeline"
 
-#: mod/profile.php:79 src/Protocol/OStatus.php:1252
+#: mod/profile.php:79 src/Protocol/OStatus.php:1251
 #, php-format
 msgid "%s's posts"
 msgstr "%s's posts"
 
-#: mod/profile.php:80 src/Protocol/OStatus.php:1253
+#: mod/profile.php:80 src/Protocol/OStatus.php:1252
 #, php-format
 msgid "%s's comments"
 msgstr "%s's comments"
@@ -6418,7 +6371,7 @@ msgstr "Registration successful. Please check your email for further instruction
 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 "Failed to send email message. Here your account details:<br> login: %s<br> password: %s<br><br>You can change your password after login."
+msgstr "Failed to send email message. Here are your account details:<br> login: %s<br> password: %s<br><br>You can change your password after login."
 
 #: mod/register.php:111
 msgid "Registration successful."
@@ -6458,7 +6411,7 @@ msgstr "Note for the admin"
 
 #: mod/register.php:262
 msgid "Leave a message for the admin, why you want to join this node"
-msgstr "Leave a message for the admin, why you want to join this node."
+msgstr "Leave a message for the admin. Why do you want to join this node?"
 
 #: mod/register.php:263
 msgid "Membership on this site is by invitation only."
@@ -6476,7 +6429,7 @@ msgstr "Your full name: "
 msgid ""
 "Your Email Address: (Initial information will be send there, so this has to "
 "be an existing address.)"
-msgstr "Your Email Address: (Initial information will be send there; so this must be an existing address.)"
+msgstr "Your Email Address: (Initial information will be sent there, so this must be an existing address.)"
 
 #: mod/register.php:276 mod/settings.php:1190
 msgid "New Password:"
@@ -6509,35 +6462,52 @@ msgstr "Sign up now >>"
 msgid "Import your profile to this friendica instance"
 msgstr "Import an existing Friendica profile to this node."
 
-#: mod/removeme.php:44
+#: mod/removeme.php:45
 msgid "User deleted their account"
 msgstr "User deleted their account"
 
-#: mod/removeme.php:45
+#: mod/removeme.php:46
 msgid ""
 "On your Friendica node an user deleted their account. Please ensure that "
 "their data is removed from the backups."
-msgstr "On your Friendica node a user deleted their account. Please ensure that their data is removed from the backups."
+msgstr "A user deleted his or her account on your Friendica node. Please ensure these data are removed from the backups."
 
-#: mod/removeme.php:46
+#: mod/removeme.php:47
 #, php-format
 msgid "The user id is %d"
 msgstr "The user id is %d"
 
-#: mod/removeme.php:77 mod/removeme.php:80
+#: mod/removeme.php:78 mod/removeme.php:81
 msgid "Remove My Account"
 msgstr "Remove My Account"
 
-#: mod/removeme.php:78
+#: mod/removeme.php:79
 msgid ""
 "This will completely remove your account. Once this has been done it is not "
 "recoverable."
 msgstr "This will completely remove your account. Once this has been done it is not recoverable."
 
-#: mod/removeme.php:79
+#: mod/removeme.php:80
 msgid "Please enter your password for verification:"
 msgstr "Please enter your password for verification:"
 
+#: mod/search.php:105
+msgid "Only logged in users are permitted to perform a search."
+msgstr "Only logged in users are permitted to perform a search."
+
+#: mod/search.php:129
+msgid "Too Many Requests"
+msgstr "Too many requests"
+
+#: mod/search.php:130
+msgid "Only one search per minute is permitted for not logged in users."
+msgstr "Only one search per minute is permitted for not-logged-in users."
+
+#: mod/search.php:234
+#, php-format
+msgid "Items tagged with: %s"
+msgstr "Items tagged with: %s"
+
 #: mod/settings.php:56
 msgid "Account"
 msgstr "Account"
@@ -6580,9 +6550,9 @@ msgstr "Features updated"
 
 #: mod/settings.php:372
 msgid "Relocate message has been send to your contacts"
-msgstr "Relocate message has been send to your contacts"
+msgstr "Relocate message has been sent to your contacts"
 
-#: mod/settings.php:384 src/Model/User.php:339
+#: mod/settings.php:384 src/Model/User.php:340
 msgid "Passwords do not match. Password unchanged."
 msgstr "Passwords do not match. Password unchanged."
 
@@ -6870,7 +6840,7 @@ msgstr "Suppress warning of insecure networks"
 msgid ""
 "Should the system suppress the warning that the current group contains "
 "members of networks that can't receive non public postings."
-msgstr "Suppresses warnings if groups contains members whose networks cannot receive non-public postings."
+msgstr "Suppresses warnings if groups contain members whose networks cannot receive non-public postings."
 
 #: mod/settings.php:960
 msgid "Update browser every xx seconds"
@@ -6923,8 +6893,8 @@ msgid ""
 msgstr "When disabled, the network page is updated all the time, which could be confusing while reading."
 
 #: mod/settings.php:969
-msgid "Bandwith Saver Mode"
-msgstr "Bandwith saving mode"
+msgid "Bandwidth Saver Mode"
+msgstr ""
 
 #: mod/settings.php:969
 msgid ""
@@ -7041,9 +7011,10 @@ msgstr "Publish default profile in local site directory?"
 #: mod/settings.php:1094
 #, 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 "Your profile will be published in the global Friendica directories (e.g. <a href=\"%s\">%s</a>). Your profile will be publicly visible."
+"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 "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/settings.php:1100
 msgid "Publish your default profile in the global social directory?"
@@ -7052,10 +7023,9 @@ msgstr "Publish default profile in global directory?"
 #: mod/settings.php:1100
 #, 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 "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."
+"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 "Your profile will be published in the global Friendica directories (e.g. <a href=\"%s\">%s</a>). Your profile will be publicly visible."
 
 #: mod/settings.php:1107
 msgid "Hide your contact/friend list from viewers of your default profile?"
@@ -7075,9 +7045,9 @@ msgstr "Hide your profile details from anonymous viewers?"
 #: mod/settings.php:1111
 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 "Anonymous visitors will only see your profile picture, display name, and nickname. Disables posting public messages to Diaspora and other networks."
+" the nickname you are using on your profile page. Your public posts and "
+"replies will still be accessible by other means."
+msgstr ""
 
 #: mod/settings.php:1115
 msgid "Allow friends to post to your profile page?"
@@ -7229,7 +7199,7 @@ msgstr "Maximum friend requests per day:"
 
 #: mod/settings.php:1208 mod/settings.php:1237
 msgid "(to prevent spam abuse)"
-msgstr "May prevent spam or abuse registrations"
+msgstr "May prevent spam and abusive registrations"
 
 #: mod/settings.php:1209
 msgid "Default Post Permissions"
@@ -7327,7 +7297,7 @@ msgstr "Advanced account types"
 
 #: mod/settings.php:1262
 msgid "Change the behaviour of this account for special situations"
-msgstr "Change behaviour of this account for special situations"
+msgstr "Change behavior of this account for special situations"
 
 #: mod/settings.php:1265
 msgid "Relocate"
@@ -7343,7 +7313,37 @@ msgstr "If you have moved this profile from another server and some of your cont
 msgid "Resend relocate message to contacts"
 msgstr "Resend relocation message to contacts"
 
-#: view/theme/duepuntozero/config.php:54 src/Model/User.php:502
+#: mod/subthread.php:117
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s is following %2$s's %3$s"
+
+#: mod/update_community.php:27 mod/update_display.php:27
+#: mod/update_network.php:33 mod/update_notes.php:40 mod/update_profile.php:39
+msgid "[Embedded content - reload page to view]"
+msgstr "[Embedded content - reload page to view]"
+
+#: mod/videos.php:139
+msgid "Do you really want to delete this video?"
+msgstr "Do you really want to delete this video?"
+
+#: mod/videos.php:144
+msgid "Delete Video"
+msgstr "Delete video"
+
+#: mod/videos.php:207
+msgid "No videos selected"
+msgstr "No videos selected"
+
+#: mod/videos.php:396
+msgid "Recent Videos"
+msgstr "Recent videos"
+
+#: mod/videos.php:398
+msgid "Upload New Videos"
+msgstr "Upload new videos"
+
+#: view/theme/duepuntozero/config.php:54 src/Model/User.php:504
 msgid "default"
 msgstr "default"
 
@@ -7421,7 +7421,7 @@ msgstr "Note"
 
 #: view/theme/frio/config.php:114
 msgid "Check image permissions if all users are allowed to see the image"
-msgstr "Check image permissions that all everyone is allowed to see the image"
+msgstr "Check image permissions that everyone is allowed to see the image"
 
 #: view/theme/frio/config.php:121
 msgid "Select color scheme"
@@ -7557,7 +7557,7 @@ msgstr "Text areas font size"
 
 #: view/theme/vier/config.php:75
 msgid "Comma separated list of helper forums"
-msgstr "Comma separated list of helper forums"
+msgstr "Comma-separated list of helper forums"
 
 #: view/theme/vier/config.php:115 src/Core/ACL.php:309
 msgid "don't show"
@@ -7928,7 +7928,7 @@ msgstr "This is most often a permission setting issue, as the web server may not
 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 "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top-level directory."
+msgstr "At the end of this procedure, we will give you the text to save in a file named .htconfig.php in your Friendica top-level directory."
 
 #: src/Core/Install.php:323
 msgid ""
@@ -7957,7 +7957,7 @@ msgstr "In order to store these compiled templates, the web server needs to have
 msgid ""
 "Please ensure that the user that your web server runs as (e.g. www-data) has"
 " write access to this folder."
-msgstr "Please ensure the user (e.g. www-data) that your web server runs as has write access to this directory."
+msgstr "Please ensure the user that your web server runs as (e.g. www-data) has write access to this directory."
 
 #: src/Core/Install.php:347
 msgid ""
@@ -8059,33 +8059,33 @@ msgstr "seconds"
 msgid "%1$d %2$s ago"
 msgstr "%1$d %2$s ago"
 
-#: src/Content/Text/BBCode.php:416
+#: src/Content/Text/BBCode.php:426
 msgid "view full size"
 msgstr "view full size"
 
-#: src/Content/Text/BBCode.php:842 src/Content/Text/BBCode.php:1611
-#: src/Content/Text/BBCode.php:1612
+#: src/Content/Text/BBCode.php:852 src/Content/Text/BBCode.php:1621
+#: src/Content/Text/BBCode.php:1622
 msgid "Image/photo"
 msgstr "Image/Photo"
 
-#: src/Content/Text/BBCode.php:980
+#: src/Content/Text/BBCode.php:990
 #, 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"
 
-#: src/Content/Text/BBCode.php:1538 src/Content/Text/BBCode.php:1560
+#: src/Content/Text/BBCode.php:1548 src/Content/Text/BBCode.php:1570
 msgid "$1 wrote:"
 msgstr "$1 wrote:"
 
-#: src/Content/Text/BBCode.php:1620 src/Content/Text/BBCode.php:1621
+#: src/Content/Text/BBCode.php:1630 src/Content/Text/BBCode.php:1631
 msgid "Encrypted content"
 msgstr "Encrypted content"
 
-#: src/Content/Text/BBCode.php:1740
+#: src/Content/Text/BBCode.php:1750
 msgid "Invalid source protocol"
 msgstr "Invalid source protocol"
 
-#: src/Content/Text/BBCode.php:1751
+#: src/Content/Text/BBCode.php:1761
 msgid "Invalid link protocol"
 msgstr "Invalid link protocol"
 
@@ -8329,7 +8329,7 @@ msgstr "Unfaithful"
 msgid "Sex Addict"
 msgstr "Sex addict"
 
-#: src/Content/ContactSelector.php:169 src/Model/User.php:519
+#: src/Content/ContactSelector.php:169 src/Model/User.php:521
 msgid "Friends"
 msgstr "Friends"
 
@@ -8483,7 +8483,7 @@ msgstr "Photo location"
 msgid ""
 "Photo metadata is normally stripped. This extracts the location (if present)"
 " prior to stripping metadata and links it to a map."
-msgstr "Photo metadata is normally removed. This extracts the location (if present) prior to removing metadata and links it to a map."
+msgstr "Photo metadata is normally removed. This saves the geo tag (if present) and links it to a map prior to removing other metadata."
 
 #: src/Content/Feature.php:83
 msgid "Export Public Calendar"
@@ -8528,7 +8528,7 @@ msgstr "List forums"
 
 #: src/Content/Feature.php:97
 msgid "Enable widget to display the forums your are connected with"
-msgstr "Enable widget to display the forums your are connected with"
+msgstr "Enable widget to display the forums you are connected with"
 
 #: src/Content/Feature.php:98
 msgid "Group Filter"
@@ -8596,7 +8596,7 @@ msgstr "Edit sent posts"
 
 #: src/Content/Feature.php:115
 msgid "Edit and correct posts and comments after sending"
-msgstr "Ability to editing posts and comments after sending"
+msgstr "Ability to edit posts and comments after sending"
 
 #: src/Content/Feature.php:116
 msgid "Tagging"
@@ -8752,7 +8752,7 @@ msgstr "See all notifications"
 
 #: src/Content/Nav.php:193
 msgid "Mark all system notifications seen"
-msgstr "Mark all system notifications seen"
+msgstr "Mark notifications as seen"
 
 #: src/Content/Nav.php:197
 msgid "Inbox"
@@ -8774,68 +8774,186 @@ msgstr "Manage other pages"
 msgid "Profiles"
 msgstr "Profiles"
 
-#: src/Content/Nav.php:210
-msgid "Manage/Edit Profiles"
-msgstr "Manage/Edit profiles"
+#: src/Content/Nav.php:210
+msgid "Manage/Edit Profiles"
+msgstr "Manage/Edit profiles"
+
+#: src/Content/Nav.php:218
+msgid "Site setup and configuration"
+msgstr "Site setup and configuration"
+
+#: src/Content/Nav.php:221
+msgid "Navigation"
+msgstr "Navigation"
+
+#: src/Content/Nav.php:221
+msgid "Site map"
+msgstr "Site map"
+
+#: src/Database/DBStructure.php:32
+msgid "There are no tables on MyISAM."
+msgstr "There are no tables on MyISAM."
+
+#: 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\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."
+
+#: src/Database/DBStructure.php:80
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "The error message is\n[pre]%s[/pre]"
+
+#: src/Database/DBStructure.php:191
+#, php-format
+msgid ""
+"\n"
+"Error %d occurred during database update:\n"
+"%s\n"
+msgstr "\nError %d occurred during database update:\n%s\n"
+
+#: src/Database/DBStructure.php:194
+msgid "Errors encountered performing database changes: "
+msgstr "Errors encountered performing database changes: "
+
+#: src/Database/DBStructure.php:210
+#, php-format
+msgid "%s: Database update"
+msgstr "%s: Database update"
+
+#: src/Database/DBStructure.php:460
+#, php-format
+msgid "%s: updating %s table."
+msgstr "%s: updating %s table."
+
+#: src/Model/Mail.php:40 src/Model/Mail.php:174
+msgid "[no subject]"
+msgstr "[no subject]"
+
+#: 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 "A deleted group with this name has been 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."
+
+#: src/Model/Group.php:341
+msgid "Default privacy group for new contacts"
+msgstr "Default privacy group for new contacts"
+
+#: src/Model/Group.php:374
+msgid "Everybody"
+msgstr "Everybody"
+
+#: src/Model/Group.php:394
+msgid "edit"
+msgstr "edit"
+
+#: src/Model/Group.php:418
+msgid "Edit group"
+msgstr "Edit group"
+
+#: src/Model/Group.php:419
+msgid "Contacts not in any group"
+msgstr "Contacts not in any group"
+
+#: src/Model/Group.php:420
+msgid "Create a new group"
+msgstr "Create new group"
+
+#: src/Model/Group.php:422
+msgid "Edit groups"
+msgstr "Edit groups"
+
+#: src/Model/Contact.php:667
+msgid "Drop Contact"
+msgstr "Drop contact"
+
+#: src/Model/Contact.php:1101
+msgid "Organisation"
+msgstr "Organization"
+
+#: src/Model/Contact.php:1104
+msgid "News"
+msgstr "News"
+
+#: src/Model/Contact.php:1107
+msgid "Forum"
+msgstr "Forum"
+
+#: src/Model/Contact.php:1286
+msgid "Connect URL missing."
+msgstr "Connect URL missing."
+
+#: src/Model/Contact.php:1295
+msgid ""
+"The contact could not be added. Please check the relevant network "
+"credentials in your Settings -> Social Networks page."
+msgstr "The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."
+
+#: src/Model/Contact.php:1342
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "This site is not configured to allow communications with other networks."
 
-#: src/Content/Nav.php:218
-msgid "Site setup and configuration"
-msgstr "Site setup and configuration"
+#: src/Model/Contact.php:1343 src/Model/Contact.php:1357
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "No compatible communication protocols or feeds were discovered."
 
-#: src/Content/Nav.php:221
-msgid "Navigation"
-msgstr "Navigation"
+#: src/Model/Contact.php:1355
+msgid "The profile address specified does not provide adequate information."
+msgstr "The profile address specified does not provide adequate information."
 
-#: src/Content/Nav.php:221
-msgid "Site map"
-msgstr "Site map"
+#: src/Model/Contact.php:1360
+msgid "An author or name was not found."
+msgstr "An author or name was not found."
 
-#: src/Database/DBStructure.php:32
-msgid "There are no tables on MyISAM."
-msgstr "There are no tables on MyISAM."
+#: src/Model/Contact.php:1363
+msgid "No browser URL could be matched to this address."
+msgstr "No browser URL could be matched to this address."
 
-#: src/Database/DBStructure.php:75
-#, php-format
+#: src/Model/Contact.php:1366
 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\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."
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Unable to match @-style identity address with a known protocol or email contact."
 
-#: src/Database/DBStructure.php:80
-#, php-format
+#: src/Model/Contact.php:1367
+msgid "Use mailto: in front of address to force email check."
+msgstr "Use mailto: in front of address to force email check."
+
+#: src/Model/Contact.php:1373
 msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "The error message is\n[pre]%s[/pre]"
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "The profile address specified belongs to a network which has been disabled on this site."
 
-#: src/Database/DBStructure.php:191
-#, php-format
+#: src/Model/Contact.php:1378
 msgid ""
-"\n"
-"Error %d occurred during database update:\n"
-"%s\n"
-msgstr "\nError %d occurred during database update:\n%s\n"
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Limited profile: This person will be unable to receive direct/private messages from you."
 
-#: src/Database/DBStructure.php:194
-msgid "Errors encountered performing database changes: "
-msgstr "Errors encountered performing database changes: "
+#: src/Model/Contact.php:1429
+msgid "Unable to retrieve contact information."
+msgstr "Unable to retrieve contact information."
 
-#: src/Database/DBStructure.php:210
+#: src/Model/Contact.php:1646 src/Protocol/DFRN.php:1515
 #, php-format
-msgid "%s: Database update"
-msgstr "%s: Database update"
+msgid "%s's birthday"
+msgstr "%s's birthday"
 
-#: src/Database/DBStructure.php:460
+#: src/Model/Contact.php:1647 src/Protocol/DFRN.php:1516
 #, php-format
-msgid "%s: updating %s table."
-msgstr "%s: updating %s table."
-
-#: src/Model/Mail.php:40 src/Model/Mail.php:174
-msgid "[no subject]"
-msgstr "[no subject]"
+msgid "Happy Birthday %s"
+msgstr "Happy Birthday, %s!"
 
 #: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419
 #: src/Model/Event.php:882
@@ -8895,40 +9013,20 @@ msgstr "Show map"
 msgid "Hide map"
 msgstr "Hide map"
 
-#: 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 "A deleted group with this name has been 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."
-
-#: src/Model/Group.php:341
-msgid "Default privacy group for new contacts"
-msgstr "Default privacy group for new contacts"
-
-#: src/Model/Group.php:374
-msgid "Everybody"
-msgstr "Everybody"
-
-#: src/Model/Group.php:394
-msgid "edit"
-msgstr "edit"
-
-#: src/Model/Group.php:418
-msgid "Edit group"
-msgstr "Edit group"
-
-#: src/Model/Group.php:419
-msgid "Contacts not in any group"
-msgstr "Contacts not in any group"
+#: src/Model/Item.php:1883
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
+msgstr "%1$s is going to %2$s's %3$s"
 
-#: src/Model/Group.php:420
-msgid "Create a new group"
-msgstr "Create new group"
+#: src/Model/Item.php:1888
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr "%1$s is not going to %2$s's %3$s"
 
-#: src/Model/Group.php:422
-msgid "Edit groups"
-msgstr "Edit groups"
+#: src/Model/Item.php:1893
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr "%1$s may go to %2$s's %3$s"
 
 #: src/Model/Profile.php:97
 msgid "Requested account is not available."
@@ -9056,86 +9154,86 @@ msgstr "Login failed"
 msgid "Not enough information to authenticate"
 msgstr "Not enough information to authenticate"
 
-#: src/Model/User.php:346
+#: src/Model/User.php:347
 msgid "An invitation is required."
 msgstr "An invitation is required."
 
-#: src/Model/User.php:350
+#: src/Model/User.php:351
 msgid "Invitation could not be verified."
 msgstr "Invitation could not be verified."
 
-#: src/Model/User.php:357
+#: src/Model/User.php:358
 msgid "Invalid OpenID url"
 msgstr "Invalid OpenID URL"
 
-#: src/Model/User.php:370 src/Module/Login.php:101
+#: src/Model/User.php:371 src/Module/Login.php:101
 msgid ""
 "We encountered a problem while logging in with the OpenID you provided. "
 "Please check the correct spelling of the ID."
 msgstr "We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."
 
-#: src/Model/User.php:370 src/Module/Login.php:101
+#: src/Model/User.php:371 src/Module/Login.php:101
 msgid "The error message was:"
 msgstr "The error message was:"
 
-#: src/Model/User.php:376
+#: src/Model/User.php:377
 msgid "Please enter the required information."
 msgstr "Please enter the required information."
 
-#: src/Model/User.php:389
+#: src/Model/User.php:390
 msgid "Please use a shorter name."
 msgstr "Please use a shorter name."
 
-#: src/Model/User.php:392
+#: src/Model/User.php:393
 msgid "Name too short."
 msgstr "Name too short."
 
-#: src/Model/User.php:400
+#: src/Model/User.php:401
 msgid "That doesn't appear to be your full (First Last) name."
 msgstr "That doesn't appear to be your full (i.e first and last) name."
 
-#: src/Model/User.php:405
+#: src/Model/User.php:406
 msgid "Your email domain is not among those allowed on this site."
 msgstr "Your email domain is not allowed on this site."
 
-#: src/Model/User.php:409
+#: src/Model/User.php:410
 msgid "Not a valid email address."
 msgstr "Not a valid email address."
 
-#: src/Model/User.php:413 src/Model/User.php:421
+#: src/Model/User.php:414 src/Model/User.php:422
 msgid "Cannot use that email."
 msgstr "Cannot use that email."
 
-#: src/Model/User.php:428
+#: src/Model/User.php:429
 msgid "Your nickname can only contain a-z, 0-9 and _."
 msgstr "Your nickname can only contain a-z, 0-9 and _."
 
-#: src/Model/User.php:435 src/Model/User.php:491
+#: src/Model/User.php:436 src/Model/User.php:493
 msgid "Nickname is already registered. Please choose another."
 msgstr "Nickname is already registered. Please choose another."
 
-#: src/Model/User.php:445
+#: src/Model/User.php:446
 msgid "SERIOUS ERROR: Generation of security keys failed."
 msgstr "SERIOUS ERROR: Generation of security keys failed."
 
-#: src/Model/User.php:478 src/Model/User.php:482
+#: src/Model/User.php:480 src/Model/User.php:484
 msgid "An error occurred during registration. Please try again."
 msgstr "An error occurred during registration. Please try again."
 
-#: src/Model/User.php:507
+#: src/Model/User.php:509
 msgid "An error occurred creating your default profile. Please try again."
 msgstr "An error occurred creating your default profile. Please try again."
 
-#: src/Model/User.php:514
+#: src/Model/User.php:516
 msgid "An error occurred creating your self contact. Please try again."
 msgstr "An error occurred creating your self contact. Please try again."
 
-#: src/Model/User.php:523
+#: src/Model/User.php:525
 msgid ""
 "An error occurred creating your default contact group. Please try again."
 msgstr "An error occurred while creating your default contact group. Please try again."
 
-#: src/Model/User.php:597
+#: src/Model/User.php:599
 #, php-format
 msgid ""
 "\n"
@@ -9144,12 +9242,12 @@ msgid ""
 "\t\t"
 msgstr "\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"
 
-#: src/Model/User.php:607
+#: src/Model/User.php:609
 #, php-format
 msgid "Registration at %s"
 msgstr "Registration at %s"
 
-#: src/Model/User.php:625
+#: src/Model/User.php:627
 #, php-format
 msgid ""
 "\n"
@@ -9158,7 +9256,7 @@ msgid ""
 "\t\t"
 msgstr "\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"
 
-#: src/Model/User.php:629
+#: src/Model/User.php:631
 #, php-format
 msgid ""
 "\n"
@@ -9190,130 +9288,32 @@ msgid ""
 "\t\t\tThank you and welcome to %2$s."
 msgstr "\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."
 
-#: src/Model/Contact.php:667
-msgid "Drop Contact"
-msgstr "Drop contact"
-
-#: src/Model/Contact.php:1101
-msgid "Organisation"
-msgstr "Organization"
-
-#: src/Model/Contact.php:1104
-msgid "News"
-msgstr "News"
-
-#: src/Model/Contact.php:1107
-msgid "Forum"
-msgstr "Forum"
-
-#: src/Model/Contact.php:1286
-msgid "Connect URL missing."
-msgstr "Connect URL missing."
-
-#: src/Model/Contact.php:1295
-msgid ""
-"The contact could not be added. Please check the relevant network "
-"credentials in your Settings -> Social Networks page."
-msgstr "The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."
-
-#: src/Model/Contact.php:1342
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "This site is not configured to allow communications with other networks."
-
-#: src/Model/Contact.php:1343 src/Model/Contact.php:1357
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "No compatible communication protocols or feeds were discovered."
-
-#: src/Model/Contact.php:1355
-msgid "The profile address specified does not provide adequate information."
-msgstr "The profile address specified does not provide adequate information."
-
-#: src/Model/Contact.php:1360
-msgid "An author or name was not found."
-msgstr "An author or name was not found."
-
-#: src/Model/Contact.php:1363
-msgid "No browser URL could be matched to this address."
-msgstr "No browser URL could be matched to this address."
-
-#: src/Model/Contact.php:1366
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Unable to match @-style identity address with a known protocol or email contact."
-
-#: src/Model/Contact.php:1367
-msgid "Use mailto: in front of address to force email check."
-msgstr "Use mailto: in front of address to force email check."
-
-#: src/Model/Contact.php:1373
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "The profile address specified belongs to a network which has been disabled on this site."
-
-#: src/Model/Contact.php:1378
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Limited profile: This person will be unable to receive direct/private messages from you."
-
-#: src/Model/Contact.php:1429
-msgid "Unable to retrieve contact information."
-msgstr "Unable to retrieve contact information."
-
-#: src/Model/Contact.php:1646 src/Protocol/DFRN.php:1513
-#, php-format
-msgid "%s's birthday"
-msgstr "%s's birthday"
-
-#: src/Model/Contact.php:1647 src/Protocol/DFRN.php:1514
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Happy Birthday, %s!"
-
-#: src/Model/Item.php:1851
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr "%1$s is going to %2$s's %3$s"
-
-#: src/Model/Item.php:1856
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr "%1$s is not going to %2$s's %3$s"
+#: src/Protocol/Diaspora.php:2521
+msgid "Sharing notification from Diaspora network"
+msgstr "Sharing notification from Diaspora network"
 
-#: src/Model/Item.php:1861
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr "%1$s may go to %2$s's %3$s"
+#: src/Protocol/Diaspora.php:3609
+msgid "Attachments:"
+msgstr "Attachments:"
 
-#: src/Protocol/OStatus.php:1799
+#: src/Protocol/OStatus.php:1798
 #, php-format
 msgid "%s is now following %s."
 msgstr "%s is now following %s."
 
-#: src/Protocol/OStatus.php:1800
+#: src/Protocol/OStatus.php:1799
 msgid "following"
 msgstr "following"
 
-#: src/Protocol/OStatus.php:1803
+#: src/Protocol/OStatus.php:1802
 #, php-format
 msgid "%s stopped following %s."
 msgstr "%s stopped following %s."
 
-#: src/Protocol/OStatus.php:1804
+#: src/Protocol/OStatus.php:1803
 msgid "stopped following"
 msgstr "stopped following"
 
-#: src/Protocol/Diaspora.php:2521
-msgid "Sharing notification from Diaspora network"
-msgstr "Sharing notification from Diaspora network"
-
-#: src/Protocol/Diaspora.php:3609
-msgid "Attachments:"
-msgstr "Attachments:"
-
 #: src/Worker/Delivery.php:415
 msgid "(no subject)"
 msgstr "(no subject)"
@@ -9369,7 +9369,7 @@ msgid ""
 "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 "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 "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), a 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 won’t 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."
 
 #: src/Module/Tos.php:35 src/Module/Tos.php:75
 msgid ""
@@ -9398,8 +9398,12 @@ msgid "This entry was edited"
 msgstr "This entry was edited"
 
 #: src/Object/Post.php:187
-msgid "Remove from your stream"
-msgstr "Remove from your stream"
+msgid "Delete globally"
+msgstr ""
+
+#: src/Object/Post.php:187
+msgid "Remove locally"
+msgstr ""
 
 #: src/Object/Post.php:200
 msgid "save to folder"
@@ -9520,15 +9524,15 @@ msgstr "Link"
 msgid "Video"
 msgstr "Video"
 
-#: src/App.php:524
+#: src/App.php:526
 msgid "Delete this item?"
 msgstr "Delete this item?"
 
-#: src/App.php:526
+#: src/App.php:528
 msgid "show fewer"
 msgstr "Show fewer."
 
-#: src/App.php:1114
+#: src/App.php:1117
 msgid "No system theme config value set."
 msgstr "No system theme configuration value set."
 
@@ -9536,12 +9540,12 @@ msgstr "No system theme configuration value set."
 msgid "toggle mobile"
 msgstr "Toggle mobile"
 
-#: update.php:193
-#, php-format
-msgid "%s: Updating author-id and owner-id in item and thread table. "
-msgstr "%s: Updating author-id and owner-id in item and thread table. "
-
 #: boot.php:796
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Update %s failed. See error logs."
+
+#: update.php:193
+#, php-format
+msgid "%s: Updating author-id and owner-id in item and thread table. "
+msgstr "%s: Updating author-id and owner-id in item and thread table. "
index d53e6018c03018d25fa6e5229058c471338cf6f0..dd325a4170eaaf9da290047afac8db480ab01ed6 100644 (file)
@@ -56,7 +56,7 @@ $a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s'
 $a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s has accepted your [url=%1\$s]connection request[/url].";
 $a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "You are now mutual friends and may exchange status updates, photos, and email without restriction.";
 $a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Please visit %s if you wish to make any changes to this relationship.";
-$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' has chosen to accept you as 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.";
+$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' has chosen to accept you as 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.";
 $a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future.";
 $a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Please visit %s  if you wish to make any changes to this relationship.";
 $a->strings["[Friendica System Notify]"] = "[Friendica System Notify]";
@@ -65,20 +65,15 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Y
 $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "You've received a [url=%1\$s]registration request[/url] from %2\$s.";
 $a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)";
 $a->strings["Please visit %s to approve or reject the request."] = "Please visit %s to approve or reject the request.";
-$a->strings["Welcome "] = "Welcome ";
-$a->strings["Please upload a profile photo."] = "Please upload a profile photo.";
-$a->strings["Welcome back "] = "Welcome back ";
-$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."] = "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours.";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Cannot locate DNS info for database server '%s'";
 $a->strings["Daily posting limit of %d post reached. The post was rejected."] = [
-       0 => "Daily posting limit of %d post are reached. The post was rejected.",
-       1 => "Daily posting limit of %d posts are reached. This post was rejected.",
+       0 => "Daily posting limit of %d post reached. The post was rejected.",
+       1 => "Daily posting limit of %d posts reached. This post was rejected.",
 ];
 $a->strings["Weekly posting limit of %d post reached. The post was rejected."] = [
-       0 => "Weekly posting limit of %d post are reached. The post was rejected.",
-       1 => "Weekly posting limit of %d posts are reached. This post was rejected.",
+       0 => "Weekly posting limit of %d post reached. The post was rejected.",
+       1 => "Weekly posting limit of %d posts reached. This post was rejected.",
 ];
-$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "Monthly posting limit of %d posts are reached. This post was rejected.";
+$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "Monthly posting limit of %d posts reached. This post was rejected.";
 $a->strings["Profile Photos"] = "Profile photos";
 $a->strings["event"] = "event";
 $a->strings["status"] = "status";
@@ -86,7 +81,7 @@ $a->strings["photo"] = "photo";
 $a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s likes %2\$s's %3\$s";
 $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s doesn't like %2\$s's %3\$s";
 $a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s goes to %2\$s's %3\$s";
-$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s doesn't go %2\$s's %3\$s";
+$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s won’t attend %2\$s's %3\$s";
 $a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s might go to %2\$s's %3\$s";
 $a->strings["%1\$s is now friends with %2\$s"] = "%1\$s is now friends with %2\$s";
 $a->strings["%1\$s poked %2\$s"] = "%1\$s poked %2\$s";
@@ -123,8 +118,8 @@ $a->strings["Connect/Follow"] = "Connect/Follow";
 $a->strings["%s likes this."] = "%s likes this.";
 $a->strings["%s doesn't like this."] = "%s doesn't like this.";
 $a->strings["%s attends."] = "%s attends.";
-$a->strings["%s doesn't attend."] = "%s doesn't attend.";
-$a->strings["%s attends maybe."] = "%s may attend.";
+$a->strings["%s doesn't attend."] = "%s won't attend.";
+$a->strings["%s attends maybe."] = "%s might attend.";
 $a->strings["and"] = "and";
 $a->strings["and %d other people"] = "and %d other people";
 $a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d people</span> like this";
@@ -133,9 +128,9 @@ $a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>
 $a->strings["%s don't like this."] = "%s don't like this.";
 $a->strings["<span  %1\$s>%2\$d people</span> attend"] = "<span  %1\$s>%2\$d people</span> attend";
 $a->strings["%s attend."] = "%s attend.";
-$a->strings["<span  %1\$s>%2\$d people</span> don't attend"] = "<span  %1\$s>%2\$d people</span> don't attend";
-$a->strings["%s don't attend."] = "%s don't attend.";
-$a->strings["<span  %1\$s>%2\$d people</span> attend maybe"] = "<span  %1\$s>%2\$d people</span> attend maybe";
+$a->strings["<span  %1\$s>%2\$d people</span> don't attend"] = "<span  %1\$s>%2\$d people</span> won't attend";
+$a->strings["%s don't attend."] = "%s won't attend.";
+$a->strings["<span  %1\$s>%2\$d people</span> attend maybe"] = "<span  %1\$s>%2\$d people</span> might attend";
 $a->strings["%s attend maybe."] = "%s may be attending.";
 $a->strings["Visible to <strong>everybody</strong>"] = "Visible to <strong>everybody</strong>";
 $a->strings["Please enter a link URL:"] = "Please enter a link URL:";
@@ -196,6 +191,10 @@ $a->strings["Yes"] = "Yes";
 $a->strings["Permission denied."] = "Permission denied.";
 $a->strings["Archives"] = "Archives";
 $a->strings["show more"] = "Show more...";
+$a->strings["Welcome "] = "Welcome ";
+$a->strings["Please upload a profile photo."] = "Please upload a profile photo.";
+$a->strings["Welcome back "] = "Welcome back ";
+$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."] = "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours.";
 $a->strings["newer"] = "Later posts";
 $a->strings["older"] = "Earlier posts";
 $a->strings["first"] = "first";
@@ -352,7 +351,6 @@ $a->strings["Do you really want to delete this suggestion?"] = "Do you really wa
 $a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No suggestions available. If this is a new site, please try again in 24 hours.";
 $a->strings["Ignore/Hide"] = "Ignore/Hide";
 $a->strings["Friend Suggestions"] = "Friend suggestions";
-$a->strings["[Embedded content - reload page to view]"] = "[Embedded content - reload page to view]";
 $a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.";
 $a->strings["Import"] = "Import profile";
 $a->strings["Move account"] = "Move Existing Friendica Account";
@@ -393,7 +391,7 @@ $a->strings["Recipient"] = "Recipient:";
 $a->strings["Choose what you wish to do to recipient"] = "Choose what you wish to do:";
 $a->strings["Make this post private"] = "Make this post private";
 $a->strings["Public access denied."] = "Public access denied.";
-$a->strings["Only logged in users are permitted to perform a probing."] = "Only logged in users are permitted to perform a probing.";
+$a->strings["Only logged in users are permitted to perform a probing."] = "Only logged in users are permitted to use the Probe feature.";
 $a->strings["Permission denied"] = "Permission denied";
 $a->strings["Invalid profile identifier."] = "Invalid profile identifier.";
 $a->strings["Profile Visibility Editor"] = "Profile Visibility Editor";
@@ -403,15 +401,6 @@ $a->strings["All Contacts (with secure profile access)"] = "All contacts with se
 $a->strings["Account approved."] = "Account approved.";
 $a->strings["Registration revoked for %s"] = "Registration revoked for %s";
 $a->strings["Please login."] = "Please login.";
-$a->strings["Remove term"] = "Remove term";
-$a->strings["Saved Searches"] = "Saved searches";
-$a->strings["Only logged in users are permitted to perform a search."] = "Only logged in users are permitted to perform a search.";
-$a->strings["Too Many Requests"] = "Too many requests";
-$a->strings["Only one search per minute is permitted for not logged in users."] = "Only one search per minute is permitted for not logged in users.";
-$a->strings["No results."] = "No results.";
-$a->strings["Items tagged with: %s"] = "Items tagged with: %s";
-$a->strings["Results for: %s"] = "Results for: %s";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s is following %2\$s's %3\$s";
 $a->strings["Tag removed"] = "Tag removed";
 $a->strings["Remove Item Tag"] = "Remove Item tag";
 $a->strings["Select a tag to remove: "] = "Select a tag to remove: ";
@@ -419,7 +408,7 @@ $a->strings["Remove"] = "Remove";
 $a->strings["Export account"] = "Export account";
 $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."] = "Export your account info and contacts. Use this to backup your account or to move it to another server.";
 $a->strings["Export all"] = "Export all";
-$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)"] = "Export your account 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)";
+$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)"] = "Export your account info, contacts and all your items as JSON. This 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.";
 $a->strings["Export personal data"] = "Export personal data";
 $a->strings["No contacts."] = "No contacts.";
 $a->strings["Access denied."] = "Access denied.";
@@ -449,63 +438,6 @@ $a->strings["Contact not found."] = "Contact not found.";
 $a->strings["Friend suggestion sent."] = "Friend suggestion sent";
 $a->strings["Suggest Friends"] = "Suggest friends";
 $a->strings["Suggest a friend for %s"] = "Suggest a friend for %s";
-$a->strings["Personal Notes"] = "Personal notes";
-$a->strings["Photo Albums"] = "Photo Albums";
-$a->strings["Recent Photos"] = "Recent photos";
-$a->strings["Upload New Photos"] = "Upload new photos";
-$a->strings["everybody"] = "everybody";
-$a->strings["Contact information unavailable"] = "Contact information unavailable";
-$a->strings["Album not found."] = "Album not found.";
-$a->strings["Delete Album"] = "Delete album";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Do you really want to delete this photo album and all its photos?";
-$a->strings["Delete Photo"] = "Delete photo";
-$a->strings["Do you really want to delete this photo?"] = "Do you really want to delete this photo?";
-$a->strings["a photo"] = "a photo";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s was tagged in %2\$s by %3\$s";
-$a->strings["Image upload didn't complete, please try again"] = "Image upload didn't complete, please try again";
-$a->strings["Image file is missing"] = "Image file is missing";
-$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "Server can't accept new file upload at this time, please contact your administrator";
-$a->strings["Image file is empty."] = "Image file is empty.";
-$a->strings["No photos selected"] = "No photos selected";
-$a->strings["Access to this item is restricted."] = "Access to this item is restricted.";
-$a->strings["Upload Photos"] = "Upload photos";
-$a->strings["New album name: "] = "New album name: ";
-$a->strings["or existing album name: "] = "or existing album name: ";
-$a->strings["Do not show a status post for this upload"] = "Do not show a status post for this upload";
-$a->strings["Permissions"] = "Permissions";
-$a->strings["Show to Groups"] = "Show to groups";
-$a->strings["Show to Contacts"] = "Show to contacts";
-$a->strings["Edit Album"] = "Edit album";
-$a->strings["Show Newest First"] = "Show newest first";
-$a->strings["Show Oldest First"] = "Show oldest first";
-$a->strings["View Photo"] = "View photo";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Permission denied. Access to this item may be restricted.";
-$a->strings["Photo not available"] = "Photo not available";
-$a->strings["View photo"] = "View photo";
-$a->strings["Edit photo"] = "Edit photo";
-$a->strings["Use as profile photo"] = "Use as profile photo";
-$a->strings["Private Message"] = "Private message";
-$a->strings["View Full Size"] = "View full size";
-$a->strings["Tags: "] = "Tags: ";
-$a->strings["[Remove any tag]"] = "[Remove any tag]";
-$a->strings["New album name"] = "New album name";
-$a->strings["Caption"] = "Caption";
-$a->strings["Add a Tag"] = "Add Tag";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Example: @bob, @jojo@example.com, #California, #camping";
-$a->strings["Do not rotate"] = "Do not rotate";
-$a->strings["Rotate CW (right)"] = "Rotate right (CW)";
-$a->strings["Rotate CCW (left)"] = "Rotate left (CCW)";
-$a->strings["I like this (toggle)"] = "I like this (toggle)";
-$a->strings["I don't like this (toggle)"] = "I don't like this (toggle)";
-$a->strings["This is you"] = "This is me";
-$a->strings["Comment"] = "Comment";
-$a->strings["Map"] = "Map";
-$a->strings["View Album"] = "View album";
-$a->strings["Do you really want to delete this video?"] = "Do you really want to delete this video?";
-$a->strings["Delete Video"] = "Delete video";
-$a->strings["No videos selected"] = "No videos selected";
-$a->strings["Recent Videos"] = "Recent videos";
-$a->strings["Upload New Videos"] = "Upload new videos";
 $a->strings["Access to this profile has been restricted."] = "Access to this profile has been restricted.";
 $a->strings["Events"] = "Events";
 $a->strings["View"] = "View";
@@ -549,7 +481,7 @@ $a->strings["Suggest friends"] = "Suggest friends";
 $a->strings["Network type: %s"] = "Network type: %s";
 $a->strings["Communications lost with this contact!"] = "Communications lost with this contact!";
 $a->strings["Fetch further information for feeds"] = "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."] = "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 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."] = "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"] = "Disabled";
 $a->strings["Fetch information"] = "Fetch information";
 $a->strings["Fetch keywords"] = "Fetch keywords";
@@ -581,7 +513,7 @@ $a->strings["Replies/likes to your public posts <strong>may</strong> still be vi
 $a->strings["Notification for new posts"] = "Notification for new posts";
 $a->strings["Send a notification of every new post of this contact"] = "Send notification for every new post from this contact";
 $a->strings["Blacklisted keywords"] = "Blacklisted keywords";
-$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected";
+$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Comma-separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected";
 $a->strings["Profile URL"] = "Profile URL:";
 $a->strings["Location:"] = "Location:";
 $a->strings["XMPP:"] = "XMPP:";
@@ -605,6 +537,7 @@ $a->strings["Only show archived contacts"] = "Only show archived contacts";
 $a->strings["Hidden"] = "Hidden";
 $a->strings["Only show hidden contacts"] = "Only show hidden contacts";
 $a->strings["Search your contacts"] = "Search your contacts";
+$a->strings["Results for: %s"] = "Results for: %s";
 $a->strings["Find"] = "Find";
 $a->strings["Update"] = "Update";
 $a->strings["Archive"] = "Archive";
@@ -619,6 +552,7 @@ $a->strings["Advanced Contact Settings"] = "Advanced contact settings";
 $a->strings["Mutual Friendship"] = "Mutual friendship";
 $a->strings["is a fan of yours"] = "is a fan of yours";
 $a->strings["you are a fan of"] = "I follow them";
+$a->strings["This is you"] = "This is me";
 $a->strings["Toggle Blocked status"] = "Toggle blocked status";
 $a->strings["Toggle Ignored status"] = "Toggle ignored status";
 $a->strings["Toggle Archive status"] = "Toggle archive status";
@@ -637,22 +571,6 @@ $a->strings["Existing Page Delegates"] = "Existing page delegates";
 $a->strings["Potential Delegates"] = "Potential delegates";
 $a->strings["Add"] = "Add";
 $a->strings["No entries."] = "No entries.";
-$a->strings["Event can not end before it has started."] = "Event cannot end before it has started.";
-$a->strings["Event title and start time are required."] = "Event title and starting time are required.";
-$a->strings["Create New Event"] = "Create new event";
-$a->strings["Event details"] = "Event details";
-$a->strings["Starting date and Title are required."] = "Starting date and title are required.";
-$a->strings["Event Starts:"] = "Event starts:";
-$a->strings["Required"] = "Required";
-$a->strings["Finish date/time is not known or not relevant"] = "Finish date/time is not known or not relevant";
-$a->strings["Event Finishes:"] = "Event finishes:";
-$a->strings["Adjust for viewer timezone"] = "Adjust for viewer's time zone";
-$a->strings["Description:"] = "Description:";
-$a->strings["Title:"] = "Title:";
-$a->strings["Share this event"] = "Share this event";
-$a->strings["Basic"] = "Basic";
-$a->strings["Failed to remove event"] = "Failed to remove event";
-$a->strings["Event removed"] = "Event removed";
 $a->strings["You must be logged in to use this module"] = "You must be logged in to use this module";
 $a->strings["Source URL"] = "Source URL";
 $a->strings["Post successful."] = "Post successful.";
@@ -739,13 +657,6 @@ $a->strings["Source text"] = "Source text";
 $a->strings["BBCode"] = "BBCode";
 $a->strings["Markdown"] = "Markdown";
 $a->strings["HTML"] = "HTML";
-$a->strings["Community option not available."] = "Community option not available.";
-$a->strings["Not available."] = "Not available.";
-$a->strings["Local Community"] = "Local community";
-$a->strings["Posts from local users on this server"] = "Posts from local users on this server";
-$a->strings["Global Community"] = "Global community";
-$a->strings["Posts from users of the whole federated network"] = "Posts from users of the whole federated network";
-$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "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"] = "This is Friendica, version";
 $a->strings["running at web location"] = "running at web location";
 $a->strings["Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more about the Friendica project."] = "Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more about the Friendica project.";
@@ -770,9 +681,9 @@ $a->strings["%d message sent."] = [
 $a->strings["You have no more invitations available"] = "You have no more invitations available.";
 $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."] = "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."] = "To accept this invitation, please sign up 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."] = "Friendica sites are all inter-connect to create a large 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["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."] = "Friendica sites are all inter-connected to create a large 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."] = "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."] = "Friendica sites are all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. Each site can also connect with many traditional social networks.";
+$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."] = "Friendica sites are all inter-connected to create a huge privacy-enhanced social web that is owned and controlled by its members. Each site can also connect with many traditional social networks.";
 $a->strings["To accept this invitation, please visit and register at %s."] = "To accept this invitation, please visit and register at %s.";
 $a->strings["Send invitations"] = "Send invitations";
 $a->strings["Enter email addresses, one per line:"] = "Enter email addresses, one per line:";
@@ -780,32 +691,9 @@ $a->strings["You are cordially invited to join me and other close friends on Fri
 $a->strings["You will need to supply this invitation code: \$invite_code"] = "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:"] = "Once you have signed up, please connect with me via my profile page at:";
 $a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca";
-$a->strings["add"] = "add";
-$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [
-       0 => "Warning: This group contains %s member from a network that doesn't allow non public messages.",
-       1 => "Warning: This group contains %s members from a network that doesn't allow non public messages.",
-];
-$a->strings["Messages in this group won't be send to these receivers."] = "Messages in this group won't be send to these receivers.";
-$a->strings["No such group"] = "No such group";
-$a->strings["Group is empty"] = "Group is empty";
-$a->strings["Group: %s"] = "Group: %s";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Private messages to this person are at risk of public disclosure.";
-$a->strings["Invalid contact."] = "Invalid contact.";
-$a->strings["Commented Order"] = "Commented last";
-$a->strings["Sort by Comment Date"] = "Sort by comment date";
-$a->strings["Posted Order"] = "Posted last";
-$a->strings["Sort by Post Date"] = "Sort by post date";
-$a->strings["Personal"] = "Personal";
-$a->strings["Posts that mention or involve you"] = "Posts mentioning or involving me";
-$a->strings["New"] = "New";
-$a->strings["Activity Stream - by date"] = "Activity Stream - by date";
-$a->strings["Shared Links"] = "Shared links";
-$a->strings["Interesting Links"] = "Interesting links";
-$a->strings["Starred"] = "Starred";
-$a->strings["Favourite Posts"] = "My favorite posts";
 $a->strings["Contact settings applied."] = "Contact settings applied.";
 $a->strings["Contact update failed."] = "Contact update failed.";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>Warning: These are highly advanced settings.</strong> If you enter incorrect information your communications with this contact may not working.";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>Warning: These are highly advanced settings.</strong> If you enter incorrect information, your communications with this contact might be disrupted.";
 $a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page.";
 $a->strings["No mirroring"] = "No mirroring";
 $a->strings["Mirror as forwarded posting"] = "Mirror as forwarded posting";
@@ -876,24 +764,6 @@ $a->strings["%d message"] = [
        0 => "%d message",
        1 => "%d messages",
 ];
-$a->strings["Group created."] = "Group created.";
-$a->strings["Could not create group."] = "Could not create group.";
-$a->strings["Group not found."] = "Group not found.";
-$a->strings["Group name changed."] = "Group name changed.";
-$a->strings["Save Group"] = "Save group";
-$a->strings["Create a group of contacts/friends."] = "Create a group of contacts/friends.";
-$a->strings["Group Name: "] = "Group name: ";
-$a->strings["Group removed."] = "Group removed.";
-$a->strings["Unable to remove group."] = "Unable to remove group.";
-$a->strings["Delete Group"] = "Delete group";
-$a->strings["Group Editor"] = "Group Editor";
-$a->strings["Edit Group Name"] = "Edit group name";
-$a->strings["Members"] = "Members";
-$a->strings["Remove contact from group"] = "Remove contact from group";
-$a->strings["Add contact to group"] = "Add contact to group";
-$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol error. No ID returned.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account not found and OpenID registration is not permitted on this site.";
-$a->strings["Login failed."] = "Login failed.";
 $a->strings["Theme settings updated."] = "Theme settings updated.";
 $a->strings["Information"] = "Information";
 $a->strings["Overview"] = "Overview";
@@ -923,9 +793,9 @@ $a->strings["Addon Features"] = "Addon features";
 $a->strings["User registrations waiting for confirmation"] = "User registrations awaiting confirmation";
 $a->strings["Administration"] = "Administration";
 $a->strings["Display Terms of Service"] = "Display Terms of Service";
-$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."] = "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["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."] = "Enable the Terms of Service page. If this is enabled, a link to the terms will be added to the registration form and to the general information page.";
 $a->strings["Display Privacy Statement"] = "Display Privacy Statement";
-$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>."] = "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["Show some informations regarding the needed information to operate the node according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."] = "Show some information needed, for example, to comply with <a href=\"%s\" target=\"_blank\">EU-GDPR</a>.";
 $a->strings["Privacy Statement Preview"] = "Privacy Statement Preview";
 $a->strings["The Terms of Service"] = "Terms of Service";
 $a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = "Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] or less.";
@@ -933,8 +803,8 @@ $a->strings["The blocked domain"] = "Blocked domain";
 $a->strings["The reason why you blocked this domain."] = "Reason why you blocked this domain.";
 $a->strings["Delete domain"] = "Delete domain";
 $a->strings["Check to delete this entry from the blocklist"] = "Check to delete this entry from the blocklist";
-$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."] = "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."] = "The list of blocked servers will publicly available on the Friendica page so that your users and people investigating communication problems can readily find the reason.";
+$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."] = "This page can be used to define a blacklist 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."] = "The list of blocked servers will be available publicly on the Friendica page so that your users and people investigating communication problems can find the reason.";
 $a->strings["Add new entry to block list"] = "Add new entry to block list";
 $a->strings["Server Domain"] = "Server domain";
 $a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = "The domain of the new server to add to the block list. Do not include the protocol.";
@@ -974,17 +844,17 @@ $a->strings["GUID"] = "GUID";
 $a->strings["The GUID of the item you want to delete."] = "GUID of item to be deleted.";
 $a->strings["Item marked for deletion."] = "Item marked for deletion.";
 $a->strings["unknown"] = "unknown";
-$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."] = "This page offers you the amount of known part of the federated social network your Friendica node is part of. These numbers are not complete and only reflect the part of the network your node is aware of.";
+$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."] = "This page offers statistics about the federated social network, of which your Friendica node is one part. These numbers do not represent the entire network, but merely the parts that are connected to your node.\"";
 $a->strings["The <em>Auto Discovered Contact Directory</em> feature is not enabled, it will improve the data displayed here."] = "The <em>Auto Discovered Contact Directory</em> feature is not enabled; enabling 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:"] = "Currently this node is aware of %d nodes with %d registered users from the following platforms:";
+$a->strings["Currently this node is aware of %d nodes with %d registered users from the following platforms:"] = "Currently, this node is aware of %d nodes with %d registered users from the following platforms:";
 $a->strings["ID"] = "ID";
 $a->strings["Recipient Name"] = "Recipient name";
 $a->strings["Recipient Profile"] = "Recipient profile";
 $a->strings["Network"] = "Network";
 $a->strings["Created"] = "Created";
 $a->strings["Last Tried"] = "Last Tried";
-$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."] = "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 />"] = "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["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 page lists the content of the queue for outgoing postings. These are postings for which the initial delivery failed. They will be resent 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 />"] = "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 new Friendica version is available now. 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."] = "The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and check for errors that may appear.";
 $a->strings["The worker was never executed. Please check your database structure!"] = "The worker process has never been executed. Please check your database structure!";
@@ -1063,7 +933,7 @@ $a->strings["Maximum size in bytes of uploaded images. Default is 0, which means
 $a->strings["Maximum image length"] = "Maximum image length";
 $a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.";
 $a->strings["JPEG image quality"] = "JPEG image quality";
-$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is the original quality level.";
+$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Uploaded JPEGs will be saved at this quality setting [0-100]. Default is 100, which is the original quality level.";
 $a->strings["Register policy"] = "Registration policy";
 $a->strings["Maximum Daily Registrations"] = "Maximum daily registrations";
 $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."] = "If open registration is permitted, this sets the maximum number of new registrations per day.  This setting has no effect for registrations by approval.";
@@ -1072,17 +942,18 @@ $a->strings["Will be displayed prominently on the registration page. You can use
 $a->strings["Accounts abandoned after x days"] = "Accounts abandoned after so many days";
 $a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Will not waste system resources polling external sites for abandoned accounts. Enter 0 for no time limit.";
 $a->strings["Allowed friend domains"] = "Allowed friend domains";
-$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Leave empty to allow any domains";
+$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Comma-separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Leave empty to allow any domains";
 $a->strings["Allowed email domains"] = "Allowed email domains";
-$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"] = "Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Leave empty to allow any domains";
+$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"] = "Comma-separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Leave empty to allow any domains";
 $a->strings["No OEmbed rich content"] = "No OEmbed rich content";
 $a->strings["Don't show the rich content (e.g. embedded PDF), except from the domains listed below."] = "Don't show rich content (e.g. embedded PDF), except from the domains listed below.";
 $a->strings["Allowed OEmbed domains"] = "Allowed OEmbed domains";
-$a->strings["Comma separated list of domains which oembed content is allowed to be displayed. Wildcards are accepted."] = "Comma separated list of domains from where OEmbed content is allowed. Wildcards are possible.";
+$a->strings["Comma separated list of domains which oembed content is allowed to be displayed. Wildcards are accepted."] = "Comma-separated list of domains from where OEmbed content is allowed. Wildcards are possible.";
 $a->strings["Block public"] = "Block public";
 $a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Block public access to all otherwise public personal pages on this site, except for local users when logged in.";
 $a->strings["Force publish"] = "Mandatory directory listing";
 $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Force all profiles on this site to be listed in the site directory.";
+$a->strings["Enabling this may violate privacy laws like the GDPR"] = "";
 $a->strings["Global directory URL"] = "Global directory URL";
 $a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "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"] = "Private posts by default for new users";
@@ -1108,7 +979,7 @@ $a->strings["The maximum number of posts per user on the community page. (Not va
 $a->strings["Enable OStatus support"] = "Enable OStatus support";
 $a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "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"] = "Only import OStatus threads from known contacts";
-$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."] = "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["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."] = "Normally we import all 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 support can only be enabled if threading is enabled.";
 $a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "Diaspora support can't be enabled because Friendica was installed into a sub directory.";
 $a->strings["Enable Diaspora support"] = "Enable Diaspora support";
@@ -1134,7 +1005,7 @@ $a->strings["Minimum fragmenation level to start the automatic optimization - de
 $a->strings["Periodical check of global contacts"] = "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."] = "This checks global contacts periodically for missing or outdated data and the vitality of the contacts and servers.";
 $a->strings["Days between requery"] = "Days between enquiry";
-$a->strings["Number of days after which a server is requeried for his contacts."] = "Number of days after which a server is required check contacts.";
+$a->strings["Number of days after which a server is requeried for his contacts."] = "Number of days after which a server is rechecked for contacts.";
 $a->strings["Discover contacts from other servers"] = "Discover contacts from other servers";
 $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'."] = "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 recommend setting is 'Users, Global Contacts'.";
 $a->strings["Timeframe for fetching global contacts"] = "Time-frame for fetching global contacts";
@@ -1148,42 +1019,42 @@ $a->strings["Enables checking for new Friendica versions at github. If there is
 $a->strings["Suppress Tags"] = "Suppress tags";
 $a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Suppress listed hashtags at the end of posts.";
 $a->strings["Clean database"] = "Clean database";
-$a->strings["Remove old remote items, orphaned database records and old content from some other helper tables."] = "Remove old remote items, orphaned database records and old content from some other helper tables.";
+$a->strings["Remove old remote items, orphaned database records and old content from some other helper tables."] = "Remove old remote items, orphaned database records, and old content from some other helper tables.";
 $a->strings["Lifespan of remote items"] = "Lifespan of remote items";
-$a->strings["When the database cleanup is enabled, this defines the days after which remote items will be deleted. Own items, and marked or filed items are always kept. 0 disables this behaviour."] = "When the database cleanup is enabled, this defines the days after which remote items will be deleted. Own items, and marked or filed items are always kept. 0 disables this behaviour.";
+$a->strings["When the database cleanup is enabled, this defines the days after which remote items will be deleted. Own items, and marked or filed items are always kept. 0 disables this behaviour."] = "When the database cleanup is enabled, this defines the days after which remote items will be deleted. Own items, and marked or filed items, are always kept. 0 disables this behavior.";
 $a->strings["Lifespan of unclaimed items"] = "Lifespan of unclaimed items";
 $a->strings["When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0."] = "When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0.";
 $a->strings["Path to item cache"] = "Path to item cache";
-$a->strings["The item caches buffers generated bbcode and external images."] = "The item caches buffers generated bbcode and external images.";
+$a->strings["The item caches buffers generated bbcode and external images."] = "The item cache retains expanded bbcode and external images.";
 $a->strings["Cache duration in seconds"] = "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."] = "How long should cache files be held? (Default 86400 seconds - one day;  -1 disables item cache)";
-$a->strings["Maximum numbers of comments per post"] = "Maximum numbers of comments per post";
+$a->strings["Maximum numbers of comments per post"] = "Maximum number of comments per post";
 $a->strings["How much comments should be shown for each post? Default value is 100."] = "How many comments should be shown for each post? (Default 100)";
 $a->strings["Temp path"] = "Temp path";
-$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "Enter a different tmp path, if your system restricts the webserver's access to the system temp path.";
+$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "Enter a different temp path if your system restricts the webserver's access to the system temp path.";
 $a->strings["Base path to installation"] = "Base path to installation";
 $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."] = "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"] = "Disable picture proxy";
-$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith.";
+$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "";
 $a->strings["Only search in tags"] = "Only search in tags";
-$a->strings["On large systems the text search can slow down the system extremely."] = "On large systems the text search can slow down the system significantly.";
+$a->strings["On large systems the text search can slow down the system extremely."] = "On large systems, the text search can slow down the system significantly.";
 $a->strings["New base url"] = "New base URL";
-$a->strings["Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users."] = "Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users.";
+$a->strings["Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users."] = "Change base URL for this server. Sends a relocate message to all Friendica and Diaspora* contacts, for all users.";
 $a->strings["RINO Encryption"] = "RINO Encryption";
 $a->strings["Encryption layer between nodes."] = "Encryption layer between nodes.";
 $a->strings["Enabled"] = "Enabled";
 $a->strings["Maximum number of parallel workers"] = "Maximum number of parallel workers";
-$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "On shared hosts set this to 2. On larger systems, values of 10 are great. Default value is 4.";
+$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "On shared hosts, 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"] = "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."] = "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 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."] = "Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosts. If this is enabled, you should increase the frequency of worker calls in your crontab.";
 $a->strings["Enable fastlane"] = "Enable fast-lane";
 $a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "The fast-lane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority.";
 $a->strings["Enable frontend worker"] = "Enable frontend worker";
-$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."] = "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["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."] = "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"] = "Subscribe to relay";
-$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."] = "Receive public posts from the specified relay. Post will be included in searches, subscribed tags and on the global community page.";
+$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."] = "Receive public posts from the specified relay. Post will be included in searches, subscribed tags, and on the global community page.";
 $a->strings["Relay server"] = "Relay server";
-$a->strings["Address of the relay server where public posts should be send to. For example https://relay.diasp.org"] = "Address of the relay server where public posts should be send to. For example https://relay.diasp.org";
+$a->strings["Address of the relay server where public posts should be send to. For example https://relay.diasp.org"] = "Address of the relay server where public posts should be sent. For example https://relay.diasp.org";
 $a->strings["Direct relay transfer"] = "Direct relay transfer";
 $a->strings["Enables the direct transfer to other servers without using the relay servers"] = "Enables direct transfer to other servers without using a relay server.";
 $a->strings["Relay scope"] = "Relay scope";
@@ -1191,13 +1062,13 @@ $a->strings["Can be 'all' or 'tags'. 'all' means that every public post should b
 $a->strings["all"] = "all";
 $a->strings["tags"] = "tags";
 $a->strings["Server tags"] = "Server tags";
-$a->strings["Comma separated list of tags for the 'tags' subscription."] = "Comma separated tags for subscription.";
+$a->strings["Comma separated list of tags for the 'tags' subscription."] = "Comma-separated tags for subscription.";
 $a->strings["Allow user tags"] = "Allow user tags";
 $a->strings["If enabled, the tags from the saved searches will used for the 'tags' subscription in addition to the 'relay_server_tags'."] = "Use user-generated tags from saved searches for 'tags' subscription in addition to 'relay_server_tags'.";
 $a->strings["Update has been marked successful"] = "Update has been marked successful";
 $a->strings["Database structure update %s was successfully applied."] = "Database structure update %s was successfully applied.";
-$a->strings["Executing of database structure update %s failed with error: %s"] = "Executing of database structure update %s failed with error: %s";
-$a->strings["Executing %s failed with error: %s"] = "Executing %s failed with error: %s";
+$a->strings["Executing of database structure update %s failed with error: %s"] = "Execution of database structure update %s failed with error: %s";
+$a->strings["Executing %s failed with error: %s"] = "Execution of %s failed with error: %s";
 $a->strings["Update %s was successfully applied."] = "Update %s was successfully applied.";
 $a->strings["Update %s did not return a status. Unknown if it succeeded."] = "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."] = "There was no additional update function %s that needed to be called.";
@@ -1247,7 +1118,7 @@ $a->strings["Site admin"] = "Site admin";
 $a->strings["Account expired"] = "Account expired";
 $a->strings["New User"] = "New user";
 $a->strings["Deleted since"] = "Deleted since";
-$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Selected users will be deleted!\\n\\nEverything these users has posted on this site will be permanently deleted!\\n\\nAre you sure?";
+$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Selected users will be deleted!\\n\\nEverything these users have 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?"] = "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."] = "Name of the new user.";
 $a->strings["Nickname"] = "Nickname";
@@ -1284,6 +1155,14 @@ $a->strings["Off"] = "Off";
 $a->strings["On"] = "On";
 $a->strings["Lock feature %s"] = "Lock feature %s";
 $a->strings["Manage Additional Features"] = "Manage additional features";
+$a->strings["Community option not available."] = "Community option not available.";
+$a->strings["Not available."] = "Not available.";
+$a->strings["Local Community"] = "Local community";
+$a->strings["Posts from local users on this server"] = "Posts from local users on this server";
+$a->strings["Global Community"] = "Global community";
+$a->strings["Posts from users of the whole federated network"] = "Posts from users of the whole federated network";
+$a->strings["No results."] = "No results.";
+$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.";
 $a->strings["Profile not found."] = "Profile not found.";
 $a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "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."] = "Response from remote site was not understood.";
@@ -1295,7 +1174,7 @@ $a->strings["Remote site reported: "] = "Remote site reported: ";
 $a->strings["Unable to set contact photo."] = "Unable to set contact photo.";
 $a->strings["No user record found for '%s' "] = "No user record found for '%s' ";
 $a->strings["Our site encryption key is apparently messed up."] = "Our site encryption key is apparently messed up.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "An empty URL was provided or the URL could not be decrypted by us.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "An empty URL was provided, or the URL could not be decrypted by us.";
 $a->strings["Contact record was not found for you on our site."] = "Contact record was not found for you on our site.";
 $a->strings["Site public key not available in contact record for URL %s."] = "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."] = "The ID provided by your system is a duplicate on our system. It should work if you try again.";
@@ -1337,12 +1216,70 @@ $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."] = " - please do not use this form.  Instead, enter %s into your Diaspora search bar.";
+$a->strings["Event can not end before it has started."] = "Event cannot end before it has started.";
+$a->strings["Event title and start time are required."] = "Event title and starting time are required.";
+$a->strings["Create New Event"] = "Create new event";
+$a->strings["Event details"] = "Event details";
+$a->strings["Starting date and Title are required."] = "Starting date and title are required.";
+$a->strings["Event Starts:"] = "Event starts:";
+$a->strings["Required"] = "Required";
+$a->strings["Finish date/time is not known or not relevant"] = "Finish date/time is not known or not relevant";
+$a->strings["Event Finishes:"] = "Event finishes:";
+$a->strings["Adjust for viewer timezone"] = "Adjust for viewer's time zone";
+$a->strings["Description:"] = "Description:";
+$a->strings["Title:"] = "Title:";
+$a->strings["Share this event"] = "Share this event";
+$a->strings["Basic"] = "Basic";
+$a->strings["Permissions"] = "Permissions";
+$a->strings["Failed to remove event"] = "Failed to remove event";
+$a->strings["Event removed"] = "Event removed";
+$a->strings["Group created."] = "Group created.";
+$a->strings["Could not create group."] = "Could not create group.";
+$a->strings["Group not found."] = "Group not found.";
+$a->strings["Group name changed."] = "Group name changed.";
+$a->strings["Save Group"] = "Save group";
+$a->strings["Create a group of contacts/friends."] = "Create a group of contacts/friends.";
+$a->strings["Group Name: "] = "Group name: ";
+$a->strings["Group removed."] = "Group removed.";
+$a->strings["Unable to remove group."] = "Unable to remove group.";
+$a->strings["Delete Group"] = "Delete group";
+$a->strings["Group Editor"] = "Group Editor";
+$a->strings["Edit Group Name"] = "Edit group name";
+$a->strings["Members"] = "Members";
+$a->strings["Group is empty"] = "Group is empty";
+$a->strings["Remove contact from group"] = "Remove contact from group";
+$a->strings["Add contact to group"] = "Add contact to group";
 $a->strings["Unable to locate original post."] = "Unable to locate original post.";
 $a->strings["Empty post discarded."] = "Empty post discarded.";
 $a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "This message was sent to you by %s, a member of the Friendica social network.";
 $a->strings["You may visit them online at %s"] = "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."] = "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 posted an update.";
+$a->strings["Remove term"] = "Remove term";
+$a->strings["Saved Searches"] = "Saved searches";
+$a->strings["add"] = "add";
+$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [
+       0 => "Warning: This group contains %s member from a network that doesn't allow non public messages.",
+       1 => "Warning: This group contains %s members from a network that doesn't allow non-public messages.",
+];
+$a->strings["Messages in this group won't be send to these receivers."] = "Messages in this group won't be sent to these receivers.";
+$a->strings["No such group"] = "No such group";
+$a->strings["Group: %s"] = "Group: %s";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Private messages to this person are at risk of public disclosure.";
+$a->strings["Invalid contact."] = "Invalid contact.";
+$a->strings["Commented Order"] = "Commented last";
+$a->strings["Sort by Comment Date"] = "Sort by comment date";
+$a->strings["Posted Order"] = "Posted last";
+$a->strings["Sort by Post Date"] = "Sort by post date";
+$a->strings["Personal"] = "Personal";
+$a->strings["Posts that mention or involve you"] = "Posts mentioning or involving me";
+$a->strings["New"] = "New";
+$a->strings["Activity Stream - by date"] = "Activity Stream - by date";
+$a->strings["Shared Links"] = "Shared links";
+$a->strings["Interesting Links"] = "Interesting links";
+$a->strings["Starred"] = "Starred";
+$a->strings["Favourite Posts"] = "My favorite posts";
+$a->strings["Personal Notes"] = "Personal notes";
 $a->strings["Invalid request identifier."] = "Invalid request identifier.";
 $a->strings["Discard"] = "Discard";
 $a->strings["Notifications"] = "Notifications";
@@ -1357,7 +1294,7 @@ $a->strings["Claims to be known to you: "] = "Says they know me:";
 $a->strings["yes"] = "yes";
 $a->strings["no"] = "no";
 $a->strings["Shall your connection be bidirectional or not?"] = "Shall your connection be in both directions or not?";
-$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."] = "Accepting %s as a friend allows %s to subscribe to your posts; you will also receive updates from them in your news feed.";
+$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."] = "Accepting %s as a friend allows %s to subscribe to your posts. 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."] = "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."] = "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"] = "Friend";
@@ -1367,6 +1304,58 @@ $a->strings["No introductions."] = "No introductions.";
 $a->strings["Show unread"] = "Show unread";
 $a->strings["Show all"] = "Show all";
 $a->strings["No more %s notifications."] = "No more %s notifications.";
+$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol error. No ID returned.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account not found and OpenID registration is not permitted on this site.";
+$a->strings["Login failed."] = "Login failed.";
+$a->strings["Photo Albums"] = "Photo Albums";
+$a->strings["Recent Photos"] = "Recent photos";
+$a->strings["Upload New Photos"] = "Upload new photos";
+$a->strings["everybody"] = "everybody";
+$a->strings["Contact information unavailable"] = "Contact information unavailable";
+$a->strings["Album not found."] = "Album not found.";
+$a->strings["Delete Album"] = "Delete album";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Do you really want to delete this photo album and all its photos?";
+$a->strings["Delete Photo"] = "Delete photo";
+$a->strings["Do you really want to delete this photo?"] = "Do you really want to delete this photo?";
+$a->strings["a photo"] = "a photo";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s was tagged in %2\$s by %3\$s";
+$a->strings["Image upload didn't complete, please try again"] = "Image upload didn't complete. Please try again.";
+$a->strings["Image file is missing"] = "Image file is missing";
+$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "Server can't accept new file uploads at this time. Please contact your administrator.";
+$a->strings["Image file is empty."] = "Image file is empty.";
+$a->strings["No photos selected"] = "No photos selected";
+$a->strings["Access to this item is restricted."] = "Access to this item is restricted.";
+$a->strings["Upload Photos"] = "Upload photos";
+$a->strings["New album name: "] = "New album name: ";
+$a->strings["or existing album name: "] = "or existing album name: ";
+$a->strings["Do not show a status post for this upload"] = "Do not show a status post for this upload";
+$a->strings["Show to Groups"] = "Show to groups";
+$a->strings["Show to Contacts"] = "Show to contacts";
+$a->strings["Edit Album"] = "Edit album";
+$a->strings["Show Newest First"] = "Show newest first";
+$a->strings["Show Oldest First"] = "Show oldest first";
+$a->strings["View Photo"] = "View photo";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Permission denied. Access to this item may be restricted.";
+$a->strings["Photo not available"] = "Photo not available";
+$a->strings["View photo"] = "View photo";
+$a->strings["Edit photo"] = "Edit photo";
+$a->strings["Use as profile photo"] = "Use as profile photo";
+$a->strings["Private Message"] = "Private message";
+$a->strings["View Full Size"] = "View full size";
+$a->strings["Tags: "] = "Tags: ";
+$a->strings["[Remove any tag]"] = "[Remove any tag]";
+$a->strings["New album name"] = "New album name";
+$a->strings["Caption"] = "Caption";
+$a->strings["Add a Tag"] = "Add Tag";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Example: @bob, @jojo@example.com, #California, #camping";
+$a->strings["Do not rotate"] = "Do not rotate";
+$a->strings["Rotate CW (right)"] = "Rotate right (CW)";
+$a->strings["Rotate CCW (left)"] = "Rotate left (CCW)";
+$a->strings["I like this (toggle)"] = "I like this (toggle)";
+$a->strings["I don't like this (toggle)"] = "I don't like this (toggle)";
+$a->strings["Comment"] = "Comment";
+$a->strings["Map"] = "Map";
+$a->strings["View Album"] = "View album";
 $a->strings["Requested profile is not available."] = "Requested profile is unavailable.";
 $a->strings["%s's timeline"] = "%s's timeline";
 $a->strings["%s's posts"] = "%s's posts";
@@ -1452,7 +1441,7 @@ $a->strings["Edit/Manage Profiles"] = "Edit/Manage Profiles";
 $a->strings["Change profile photo"] = "Change profile photo";
 $a->strings["Create New Profile"] = "Create new profile";
 $a->strings["Registration successful. Please check your email for further instructions."] = "Registration successful. Please check your email for further instructions.";
-$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."] = "Failed to send email message. Here your account details:<br> login: %s<br> password: %s<br><br>You can change your password after login.";
+$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."] = "Failed to send email message. Here are your account details:<br> login: %s<br> password: %s<br><br>You can change your password after login.";
 $a->strings["Registration successful."] = "Registration successful.";
 $a->strings["Your registration can not be processed."] = "Your registration cannot be processed.";
 $a->strings["Your registration is pending approval by the site owner."] = "Your registration is pending approval by the site administrator.";
@@ -1461,11 +1450,11 @@ $a->strings["If you are not familiar with OpenID, please leave that field blank
 $a->strings["Your OpenID (optional): "] = "Your OpenID (optional): ";
 $a->strings["Include your profile in member directory?"] = "Include your profile in member directory?";
 $a->strings["Note for the admin"] = "Note for the admin";
-$a->strings["Leave a message for the admin, why you want to join this node"] = "Leave a message for the admin, why you want to join this node.";
+$a->strings["Leave a message for the admin, why you want to join this node"] = "Leave a message for the admin. Why do you want to join this node?";
 $a->strings["Membership on this site is by invitation only."] = "Membership on this site is by invitation only.";
 $a->strings["Your invitation code: "] = "Your invitation code: ";
 $a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Your full name: ";
-$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "Your Email Address: (Initial information will be send there; so this must be an existing address.)";
+$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "Your Email Address: (Initial information will be sent there, so this must be an existing address.)";
 $a->strings["New Password:"] = "New password:";
 $a->strings["Leave empty for an auto generated password."] = "Leave empty for an auto generated password.";
 $a->strings["Confirm:"] = "Confirm new password:";
@@ -1474,11 +1463,15 @@ $a->strings["Choose a nickname: "] = "Choose a nickname: ";
 $a->strings["Register"] = "Sign up now >>";
 $a->strings["Import your profile to this friendica instance"] = "Import an existing Friendica profile to this node.";
 $a->strings["User deleted their account"] = "User deleted their account";
-$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "On your Friendica node a user deleted their account. Please ensure that their data is removed from the backups.";
+$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "A user deleted his or her account on your Friendica node. Please ensure these data are removed from the backups.";
 $a->strings["The user id is %d"] = "The user id is %d";
 $a->strings["Remove My Account"] = "Remove My Account";
 $a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "This will completely remove your account. Once this has been done it is not recoverable.";
 $a->strings["Please enter your password for verification:"] = "Please enter your password for verification:";
+$a->strings["Only logged in users are permitted to perform a search."] = "Only logged in users are permitted to perform a search.";
+$a->strings["Too Many Requests"] = "Too many requests";
+$a->strings["Only one search per minute is permitted for not logged in users."] = "Only one search per minute is permitted for not-logged-in users.";
+$a->strings["Items tagged with: %s"] = "Items tagged with: %s";
 $a->strings["Account"] = "Account";
 $a->strings["Display"] = "Display";
 $a->strings["Social Networks"] = "Social networks";
@@ -1489,7 +1482,7 @@ $a->strings["Missing some important data!"] = "Missing some important data!";
 $a->strings["Failed to connect with email account using the settings provided."] = "Failed to connect with email account using the settings provided.";
 $a->strings["Email settings updated."] = "Email settings updated.";
 $a->strings["Features updated"] = "Features updated";
-$a->strings["Relocate message has been send to your contacts"] = "Relocate message has been send to your contacts";
+$a->strings["Relocate message has been send to your contacts"] = "Relocate message has been sent to your contacts";
 $a->strings["Passwords do not match. Password unchanged."] = "Passwords do not match. Password unchanged.";
 $a->strings["Empty passwords are not allowed. Password unchanged."] = "Empty passwords are not allowed. Password unchanged.";
 $a->strings["The new password has been exposed in a public data dump, please choose another."] = "The new password has been exposed in a public data dump; please choose another.";
@@ -1556,7 +1549,7 @@ $a->strings["Display Settings"] = "Display Settings";
 $a->strings["Display Theme:"] = "Display theme:";
 $a->strings["Mobile Theme:"] = "Mobile theme:";
 $a->strings["Suppress warning of insecure networks"] = "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."] = "Suppresses warnings if groups contains members whose networks cannot receive non-public postings.";
+$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "Suppresses warnings if groups contain members whose networks cannot receive non-public postings.";
 $a->strings["Update browser every xx seconds"] = "Update browser every so many seconds:";
 $a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum 10 seconds; to disable -1.";
 $a->strings["Number of items to display per page:"] = "Number of items displayed per page:";
@@ -1569,7 +1562,7 @@ $a->strings["Don't show notices"] = "Don't show notices";
 $a->strings["Infinite scroll"] = "Infinite scroll";
 $a->strings["Automatic updates only at the top of the network page"] = "Automatically updates only top of the network page";
 $a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "When disabled, the network page is updated all the time, which could be confusing while reading.";
-$a->strings["Bandwith Saver Mode"] = "Bandwith saving mode";
+$a->strings["Bandwidth Saver Mode"] = "";
 $a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "If enabled, embedded content is not displayed on automatic updates; it is only shown on page reload.";
 $a->strings["Smart Threading"] = "Smart Threading";
 $a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = "Suppresses extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled.";
@@ -1594,13 +1587,13 @@ $a->strings["Requires manual approval of contact requests."] = "Requires manual
 $a->strings["OpenID:"] = "OpenID:";
 $a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Allow this OpenID to login to this account.";
 $a->strings["Publish your default profile in your local site directory?"] = "Publish default profile in local site directory?";
-$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."] = "Your profile will be published in the global Friendica directories (e.g. <a href=\"%s\">%s</a>). Your profile will be publicly visible.";
-$a->strings["Publish your default profile in the global social directory?"] = "Publish default profile in global directory?";
 $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."] = "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["Publish your default profile in the global social directory?"] = "Publish default profile in global directory?";
+$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."] = "Your profile will be published in the global Friendica directories (e.g. <a href=\"%s\">%s</a>). Your profile will be publicly visible.";
 $a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Hide my contact list from others?";
 $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"] = "Your contact list won't be shown in your default profile page. You can decide to display your contact list separately for each additional profile you create";
 $a->strings["Hide your profile details from anonymous viewers?"] = "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."] = "Anonymous visitors will only see your profile picture, display name, and nickname. Disables posting public messages to Diaspora and other networks.";
+$a->strings["Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Your public posts and replies will still be accessible by other means."] = "";
 $a->strings["Allow friends to post to your profile page?"] = "Allow friends to post to my wall?";
 $a->strings["Your contacts may write posts on your profile wall. These posts will be distributed to your contacts"] = "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?"] = "Allow friends to tag my post?";
@@ -1636,7 +1629,7 @@ $a->strings["Default Post Location:"] = "Posting location:";
 $a->strings["Use Browser Location:"] = "Use browser location:";
 $a->strings["Security and Privacy Settings"] = "Security and privacy";
 $a->strings["Maximum Friend Requests/Day:"] = "Maximum friend requests per day:";
-$a->strings["(to prevent spam abuse)"] = "May prevent spam or abuse registrations";
+$a->strings["(to prevent spam abuse)"] = "May prevent spam and abusive registrations";
 $a->strings["Default Post Permissions"] = "Default post permissions";
 $a->strings["(click to open/close)"] = "(reveal/hide)";
 $a->strings["Default Private Post"] = "Default private post";
@@ -1660,10 +1653,17 @@ $a->strings["Send text only notification emails, without the html part"] = "Rece
 $a->strings["Show detailled notifications"] = "Show detailled notifications";
 $a->strings["Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed."] = "By default, notifications are condensed into a single notification for each item. When enabled, every notification is displayed.";
 $a->strings["Advanced Account/Page Type Settings"] = "Advanced account types";
-$a->strings["Change the behaviour of this account for special situations"] = "Change behaviour of this account for special situations";
+$a->strings["Change the behaviour of this account for special situations"] = "Change behavior of this account for special situations";
 $a->strings["Relocate"] = "Recent relocation";
 $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."] = "If you have moved this profile from another server and some of your contacts don't receive your updates:";
 $a->strings["Resend relocate message to contacts"] = "Resend relocation message to contacts";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s is following %2\$s's %3\$s";
+$a->strings["[Embedded content - reload page to view]"] = "[Embedded content - reload page to view]";
+$a->strings["Do you really want to delete this video?"] = "Do you really want to delete this video?";
+$a->strings["Delete Video"] = "Delete video";
+$a->strings["No videos selected"] = "No videos selected";
+$a->strings["Recent Videos"] = "Recent videos";
+$a->strings["Upload New Videos"] = "Upload new videos";
 $a->strings["default"] = "default";
 $a->strings["greenzero"] = "greenzero";
 $a->strings["purplezero"] = "purplezero";
@@ -1682,7 +1682,7 @@ $a->strings["Mosaic"] = "Mosaic";
 $a->strings["Repeat image to fill the screen."] = "Repeat image to fill the screen.";
 $a->strings["Custom"] = "Custom";
 $a->strings["Note"] = "Note";
-$a->strings["Check image permissions if all users are allowed to see the image"] = "Check image permissions that all everyone is allowed to see the image";
+$a->strings["Check image permissions if all users are allowed to see the image"] = "Check image permissions that everyone is allowed to see the image";
 $a->strings["Select color scheme"] = "Select color scheme";
 $a->strings["Navigation bar background color"] = "Navigation bar background color:";
 $a->strings["Navigation bar icon color "] = "Navigation bar icon color:";
@@ -1715,7 +1715,7 @@ $a->strings["Center"] = "Center";
 $a->strings["Color scheme"] = "Color scheme";
 $a->strings["Posts font size"] = "Posts font size";
 $a->strings["Textareas font size"] = "Text areas font size";
-$a->strings["Comma separated list of helper forums"] = "Comma separated list of helper forums";
+$a->strings["Comma separated list of helper forums"] = "Comma-separated list of helper forums";
 $a->strings["don't show"] = "don't show";
 $a->strings["show"] = "show";
 $a->strings["Set style"] = "Set style";
@@ -1802,12 +1802,12 @@ $a->strings["Error: POSIX PHP module required but not installed."] = "Error: POS
 $a->strings["Error, XML PHP module required but not installed."] = "Error, XML PHP module required but not installed.";
 $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."] = "The web installer needs to be able to create a file called \".htconfig.php\" in the top-level directory of your web server, but it is unable to do so.";
 $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."] = "This is most often a permission setting issue, as the web server may not be able to write files in your directory - even if you can.";
-$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."] = "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top-level directory.";
+$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."] = "At the end of this procedure, we will give you the text to save in a file named .htconfig.php in your Friendica top-level directory.";
 $a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternatively, you may skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions.";
 $a->strings[".htconfig.php is writable"] = ".htconfig.php is writable";
 $a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "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."] = "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 directory.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure the user (e.g. www-data) that your web server runs as has write access to this directory.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure the user that your web server runs as (e.g. www-data) has write access to this directory.";
 $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."] = "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 is writable";
 $a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL rewrite in .htaccess is not working. Check your server configuration.";
@@ -1941,7 +1941,7 @@ $a->strings["General Features"] = "General";
 $a->strings["Multiple Profiles"] = "Multiple profiles";
 $a->strings["Ability to create multiple profiles"] = "Ability to create multiple profiles";
 $a->strings["Photo Location"] = "Photo location";
-$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Photo metadata is normally removed. This extracts the location (if present) prior to removing metadata and links it to a map.";
+$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Photo metadata is normally removed. This saves the geo tag (if present) and links it to a map prior to removing other metadata.";
 $a->strings["Export Public Calendar"] = "Export public calendar";
 $a->strings["Ability for visitors to download the public calendar"] = "Ability for visitors to download the public calendar";
 $a->strings["Post Composition Features"] = "Post composition";
@@ -1952,7 +1952,7 @@ $a->strings["Add/remove mention when a forum page is selected/deselected in ACL
 $a->strings["Network Sidebar"] = "Network sidebar";
 $a->strings["Ability to select posts by date ranges"] = "Ability to select posts by date ranges";
 $a->strings["List Forums"] = "List forums";
-$a->strings["Enable widget to display the forums your are connected with"] = "Enable widget to display the forums your are connected with";
+$a->strings["Enable widget to display the forums your are connected with"] = "Enable widget to display the forums you are connected with";
 $a->strings["Group Filter"] = "Group filter";
 $a->strings["Enable widget to display Network posts only from selected group"] = "Enable widget to display network posts only from selected group";
 $a->strings["Network Filter"] = "Network filter";
@@ -1969,7 +1969,7 @@ $a->strings["Post/Comment Tools"] = "Post/Comment tools";
 $a->strings["Multiple Deletion"] = "Multiple deletion";
 $a->strings["Select and delete multiple posts/comments at once"] = "Select and delete multiple posts/comments at once";
 $a->strings["Edit Sent Posts"] = "Edit sent posts";
-$a->strings["Edit and correct posts and comments after sending"] = "Ability to editing posts and comments after sending";
+$a->strings["Edit and correct posts and comments after sending"] = "Ability to edit posts and comments after sending";
 $a->strings["Tagging"] = "Tagging";
 $a->strings["Ability to tag existing posts"] = "Ability to tag existing posts";
 $a->strings["Post Categories"] = "Post categories";
@@ -2008,7 +2008,7 @@ $a->strings["Network Reset"] = "Network reset";
 $a->strings["Load Network page with no filters"] = "Load network page without filters";
 $a->strings["Friend Requests"] = "Friend requests";
 $a->strings["See all notifications"] = "See all notifications";
-$a->strings["Mark all system notifications seen"] = "Mark all system notifications seen";
+$a->strings["Mark all system notifications seen"] = "Mark notifications as seen";
 $a->strings["Inbox"] = "Inbox";
 $a->strings["Outbox"] = "Outbox";
 $a->strings["Manage"] = "Manage";
@@ -2026,6 +2026,32 @@ $a->strings["Errors encountered performing database changes: "] = "Errors encoun
 $a->strings["%s: Database update"] = "%s: Database update";
 $a->strings["%s: updating %s table."] = "%s: updating %s table.";
 $a->strings["[no subject]"] = "[no subject]";
+$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 deleted group with this name has been 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"] = "Default privacy group for new contacts";
+$a->strings["Everybody"] = "Everybody";
+$a->strings["edit"] = "edit";
+$a->strings["Edit group"] = "Edit group";
+$a->strings["Contacts not in any group"] = "Contacts not in any group";
+$a->strings["Create a new group"] = "Create new group";
+$a->strings["Edit groups"] = "Edit groups";
+$a->strings["Drop Contact"] = "Drop contact";
+$a->strings["Organisation"] = "Organization";
+$a->strings["News"] = "News";
+$a->strings["Forum"] = "Forum";
+$a->strings["Connect URL missing."] = "Connect URL missing.";
+$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "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."] = "This site is not configured to allow communications with other networks.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "No compatible communication protocols or feeds were discovered.";
+$a->strings["The profile address specified does not provide adequate information."] = "The profile address specified does not provide adequate information.";
+$a->strings["An author or name was not found."] = "An author or name was not found.";
+$a->strings["No browser URL could be matched to this address."] = "No browser URL could be matched to this address.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "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."] = "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."] = "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."] = "Limited profile: This person will be unable to receive direct/private messages from you.";
+$a->strings["Unable to retrieve contact information."] = "Unable to retrieve contact information.";
+$a->strings["%s's birthday"] = "%s's birthday";
+$a->strings["Happy Birthday %s"] = "Happy Birthday, %s!";
 $a->strings["Starts:"] = "Starts:";
 $a->strings["Finishes:"] = "Finishes:";
 $a->strings["all-day"] = "All-day";
@@ -2040,14 +2066,9 @@ $a->strings["D g:i A"] = "D g:i A";
 $a->strings["g:i A"] = "g:i A";
 $a->strings["Show map"] = "Show map";
 $a->strings["Hide map"] = "Hide 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."] = "A deleted group with this name has been 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"] = "Default privacy group for new contacts";
-$a->strings["Everybody"] = "Everybody";
-$a->strings["edit"] = "edit";
-$a->strings["Edit group"] = "Edit group";
-$a->strings["Contacts not in any group"] = "Contacts not in any group";
-$a->strings["Create a new group"] = "Create new group";
-$a->strings["Edit groups"] = "Edit groups";
+$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is going to %2\$s's %3\$s";
+$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is not going to %2\$s's %3\$s";
+$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s may go to %2\$s's %3\$s";
 $a->strings["Requested account is not available."] = "Requested account is unavailable.";
 $a->strings["Edit profile"] = "Edit profile";
 $a->strings["Atom feed"] = "Atom feed";
@@ -2102,33 +2123,12 @@ $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Yo
 $a->strings["Registration at %s"] = "Registration at %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\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."] = "\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"] = "Drop contact";
-$a->strings["Organisation"] = "Organization";
-$a->strings["News"] = "News";
-$a->strings["Forum"] = "Forum";
-$a->strings["Connect URL missing."] = "Connect URL missing.";
-$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "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."] = "This site is not configured to allow communications with other networks.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "No compatible communication protocols or feeds were discovered.";
-$a->strings["The profile address specified does not provide adequate information."] = "The profile address specified does not provide adequate information.";
-$a->strings["An author or name was not found."] = "An author or name was not found.";
-$a->strings["No browser URL could be matched to this address."] = "No browser URL could be matched to this address.";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "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."] = "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."] = "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."] = "Limited profile: This person will be unable to receive direct/private messages from you.";
-$a->strings["Unable to retrieve contact information."] = "Unable to retrieve contact information.";
-$a->strings["%s's birthday"] = "%s's birthday";
-$a->strings["Happy Birthday %s"] = "Happy Birthday, %s!";
-$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is going to %2\$s's %3\$s";
-$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is not going to %2\$s's %3\$s";
-$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s may go to %2\$s's %3\$s";
+$a->strings["Sharing notification from Diaspora network"] = "Sharing notification from Diaspora network";
+$a->strings["Attachments:"] = "Attachments:";
 $a->strings["%s is now following %s."] = "%s is now following %s.";
 $a->strings["following"] = "following";
 $a->strings["%s stopped following %s."] = "%s stopped following %s.";
 $a->strings["stopped following"] = "stopped following";
-$a->strings["Sharing notification from Diaspora network"] = "Sharing notification from Diaspora network";
-$a->strings["Attachments:"] = "Attachments:";
 $a->strings["(no subject)"] = "(no subject)";
 $a->strings["Logged out."] = "Logged out.";
 $a->strings["Create a New Account"] = "Create a new account";
@@ -2140,12 +2140,13 @@ $a->strings["Website Terms of Service"] = "Website Terms of Service";
 $a->strings["terms of service"] = "Terms of service";
 $a->strings["Website Privacy Policy"] = "Website Privacy Policy";
 $a->strings["privacy policy"] = "Privacy policy";
-$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."] = "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["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."] = "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), a 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 won’t 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 and is stored there. Users can enter additional private data that may be transmitted to the communication partners accounts."] = "This information is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional personal information that may be transmitted to the communication partner's 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. Deletion of the data will also be requested from the nodes of the communication partners."] = "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. Deletion of the data will also be requested from the nodes of the communication partners.";
 $a->strings["Privacy Statement"] = "Privacy Statement";
 $a->strings["This entry was edited"] = "This entry was edited";
-$a->strings["Remove from your stream"] = "Remove from your stream";
+$a->strings["Delete globally"] = "";
+$a->strings["Remove locally"] = "";
 $a->strings["save to folder"] = "Save to folder";
 $a->strings["I will attend"] = "I will attend";
 $a->strings["I will not attend"] = "I will not attend";
@@ -2182,5 +2183,5 @@ $a->strings["Delete this item?"] = "Delete this item?";
 $a->strings["show fewer"] = "Show fewer.";
 $a->strings["No system theme config value set."] = "No system theme configuration value set.";
 $a->strings["toggle mobile"] = "Toggle mobile";
-$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = "%s: Updating author-id and owner-id in item and thread table. ";
 $a->strings["Update %s failed. See error logs."] = "Update %s failed. See error logs.";
+$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = "%s: Updating author-id and owner-id in item and thread table. ";
index 7fafd30537b12fa39c37d47a97b8748e49d91880..442608f68868339a6ea57951af0e13beb874101c 100644 (file)
@@ -15,9 +15,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-20 14:22+0200\n"
-"PO-Revision-Date: 2018-05-20 13:51+0000\n"
-"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
+"POT-Creation-Date: 2018-06-02 08:49+0200\n"
+"PO-Revision-Date: 2018-06-06 15:02+0000\n"
+"Last-Translator: Kris\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"
@@ -289,7 +289,7 @@ msgstr "'%1$s' voi halutessaan laajentaa suhteenne kahdenväliseksi."
 msgid "Please visit %s  if you wish to make any changes to this relationship."
 msgstr "Käy osoitteessa %s muokkaamaan tätä kaverisuhdetta."
 
-#: include/enotify.php:360 mod/removeme.php:44
+#: include/enotify.php:360 mod/removeme.php:45
 msgid "[Friendica System Notify]"
 msgstr "[Friendica Järjestelmäilmoitus]"
 
@@ -317,29 +317,6 @@ 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 "Lomakkeen turvallisuusavain oli väärin. Tämä voi johtua siitä, että lomake on ollut avoinna liian kauan (>3 tuntia) ennen sen lähettämistä."
-
-#: include/dba.php:59
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "'%s' tietokantapalvelimen DNS-tieto ei löydy"
-
 #: include/api.php:1202
 #, php-format
 msgid "Daily posting limit of %d post reached. The post was rejected."
@@ -360,475 +337,474 @@ 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:4522 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:4521 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:710 mod/photos.php:1137
+#: mod/photos.php:1154 mod/photos.php:1678 src/Model/User.php:555
+#: src/Model/User.php:563 src/Model/User.php:571
 msgid "Profile Photos"
 msgstr "Profiilin valokuvat"
 
-#: include/conversation.php:144 include/conversation.php:282
-#: include/text.php:1749 src/Model/Item.php:1970
+#: include/conversation.php:144 include/conversation.php:279
+#: include/text.php:1749 src/Model/Item.php:2002
 msgid "event"
 msgstr "tapahtuma"
 
 #: 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:1968
+#: include/conversation.php:282 include/conversation.php:291
+#: mod/subthread.php:101 mod/tagger.php:72 src/Model/Item.php:2000
 #: src/Protocol/Diaspora.php:1957
 msgid "status"
 msgstr "tila"
 
-#: include/conversation.php:152 include/conversation.php:290
-#: include/text.php:1751 mod/subthread.php:97 mod/tagger.php:72
-#: src/Model/Item.php:1968
+#: include/conversation.php:152 include/conversation.php:287
+#: include/text.php:1751 mod/subthread.php:101 mod/tagger.php:72
+#: src/Model/Item.php:2000
 msgid "photo"
 msgstr "kuva"
 
-#: include/conversation.php:164 src/Model/Item.php:1841
+#: include/conversation.php:164 src/Model/Item.php:1873
 #: src/Protocol/Diaspora.php:1953
 #, 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:1846
+#: include/conversation.php:166 src/Model/Item.php:1878
 #, php-format
 msgid "%1$s doesn't like %2$s's %3$s"
 msgstr ""
 
-#: include/conversation.php:170
+#: include/conversation.php:168
 #, php-format
 msgid "%1$s attends %2$s's %3$s"
 msgstr "%1$s osallistuu tapahtumaan %3$s, jonka järjestää %2$s"
 
-#: include/conversation.php:173
+#: include/conversation.php:170
 #, php-format
 msgid "%1$s doesn't attend %2$s's %3$s"
 msgstr "%1$s ei osallistu tapahtumaan %3$s, jonka järjestää %2$s"
 
-#: include/conversation.php:176
+#: include/conversation.php:172
 #, php-format
 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
+#: include/conversation.php:206
 #, php-format
 msgid "%1$s is now friends with %2$s"
 msgstr "%1$s ja %2$s ovat kavereita"
 
-#: include/conversation.php:250
+#: include/conversation.php:247
 #, php-format
 msgid "%1$s poked %2$s"
 msgstr "%1$s tökkäsi %2$s"
 
-#: include/conversation.php:304 mod/tagger.php:110
+#: include/conversation.php:301 mod/tagger.php:110
 #, php-format
 msgid "%1$s tagged %2$s's %3$s with %4$s"
 msgstr ""
 
-#: include/conversation.php:331
+#: include/conversation.php:328
 msgid "post/item"
 msgstr "julkaisu/kohde"
 
-#: include/conversation.php:332
+#: include/conversation.php:329
 #, php-format
 msgid "%1$s marked %2$s's %3$s as favorite"
 msgstr ""
 
-#: include/conversation.php:608 mod/photos.php:1501 mod/profiles.php:355
+#: include/conversation.php:609 mod/photos.php:1495 mod/profiles.php:355
 msgid "Likes"
 msgstr "Tykkäyksiä"
 
-#: include/conversation.php:608 mod/photos.php:1501 mod/profiles.php:359
+#: include/conversation.php:609 mod/photos.php:1495 mod/profiles.php:359
 msgid "Dislikes"
 msgstr "Inhokit"
 
-#: include/conversation.php:609 include/conversation.php:1639
-#: mod/photos.php:1502
+#: include/conversation.php:610 include/conversation.php:1638
+#: mod/photos.php:1496
 msgid "Attending"
 msgid_plural "Attending"
 msgstr[0] "Osallistuu"
 msgstr[1] "Osallistuu"
 
-#: include/conversation.php:609 mod/photos.php:1502
+#: include/conversation.php:610 mod/photos.php:1496
 msgid "Not attending"
 msgstr "Ei osallistu"
 
-#: include/conversation.php:609 mod/photos.php:1502
+#: include/conversation.php:610 mod/photos.php:1496
 msgid "Might attend"
 msgstr "Ehkä"
 
-#: include/conversation.php:721 mod/photos.php:1569 src/Object/Post.php:192
+#: include/conversation.php:722 mod/photos.php:1563 src/Object/Post.php:192
 msgid "Select"
 msgstr "Valitse"
 
-#: include/conversation.php:722 mod/photos.php:1570 mod/contacts.php:830
-#: mod/contacts.php:1035 mod/admin.php:1827 mod/settings.php:730
-#: src/Object/Post.php:187
+#: include/conversation.php:723 mod/contacts.php:830 mod/contacts.php:1035
+#: mod/admin.php:1832 mod/photos.php:1564 mod/settings.php:730
 msgid "Delete"
 msgstr "Poista"
 
-#: include/conversation.php:760 src/Object/Post.php:371
+#: include/conversation.php:761 src/Object/Post.php:371
 #: src/Object/Post.php:372
 #, php-format
 msgid "View %s's profile @ %s"
 msgstr "Katso %s-henkilön profiilia @ %s"
 
-#: include/conversation.php:772 src/Object/Post.php:359
+#: include/conversation.php:773 src/Object/Post.php:359
 msgid "Categories:"
 msgstr "Luokat:"
 
-#: include/conversation.php:773 src/Object/Post.php:360
+#: include/conversation.php:774 src/Object/Post.php:360
 msgid "Filed under:"
 msgstr "Arkistoitu kansioon:"
 
-#: include/conversation.php:780 src/Object/Post.php:385
+#: include/conversation.php:781 src/Object/Post.php:385
 #, php-format
 msgid "%s from %s"
 msgstr "%s sovelluksesta %s"
 
-#: include/conversation.php:795
+#: include/conversation.php:796
 msgid "View in context"
 msgstr "Näytä kontekstissa"
 
-#: include/conversation.php:797 include/conversation.php:1312
-#: mod/wallmessage.php:145 mod/editpost.php:125 mod/photos.php:1473
-#: mod/message.php:245 mod/message.php:414 src/Object/Post.php:410
+#: include/conversation.php:798 include/conversation.php:1313
+#: mod/wallmessage.php:145 mod/editpost.php:125 mod/message.php:245
+#: mod/message.php:414 mod/photos.php:1467 src/Object/Post.php:410
 msgid "Please wait"
 msgstr "Odota"
 
-#: include/conversation.php:868
+#: include/conversation.php:869
 msgid "remove"
 msgstr "poista"
 
-#: include/conversation.php:872
+#: include/conversation.php:873
 msgid "Delete Selected Items"
 msgstr "Poista valitut kohteet"
 
-#: include/conversation.php:1017 view/theme/frio/theme.php:352
+#: include/conversation.php:1018 view/theme/frio/theme.php:352
 msgid "Follow Thread"
 msgstr "Seuraa ketjua"
 
-#: include/conversation.php:1018 src/Model/Contact.php:662
+#: include/conversation.php:1019 src/Model/Contact.php:662
 msgid "View Status"
 msgstr "Näytä tila"
 
-#: include/conversation.php:1019 include/conversation.php:1035
+#: include/conversation.php:1020 include/conversation.php:1036
 #: mod/allfriends.php:73 mod/suggest.php:82 mod/match.php:89
 #: mod/directory.php:159 mod/dirfind.php:217 src/Model/Contact.php:602
 #: src/Model/Contact.php:615 src/Model/Contact.php:663
 msgid "View Profile"
 msgstr "Näytä profiilia"
 
-#: include/conversation.php:1020 src/Model/Contact.php:664
+#: include/conversation.php:1021 src/Model/Contact.php:664
 msgid "View Photos"
 msgstr "Näytä kuvia"
 
-#: include/conversation.php:1021 src/Model/Contact.php:665
+#: include/conversation.php:1022 src/Model/Contact.php:665
 msgid "Network Posts"
 msgstr "Uutisvirtajulkaisut"
 
-#: include/conversation.php:1022 src/Model/Contact.php:666
+#: include/conversation.php:1023 src/Model/Contact.php:666
 msgid "View Contact"
 msgstr "Näytä kontaktia"
 
-#: include/conversation.php:1023 src/Model/Contact.php:668
+#: include/conversation.php:1024 src/Model/Contact.php:668
 msgid "Send PM"
 msgstr "Lähetä yksityisviesti"
 
-#: include/conversation.php:1027 src/Model/Contact.php:669
+#: include/conversation.php:1028 src/Model/Contact.php:669
 msgid "Poke"
 msgstr "Tökkää"
 
-#: include/conversation.php:1032 mod/allfriends.php:74 mod/suggest.php:83
+#: include/conversation.php:1033 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:616
 msgid "Connect/Follow"
 msgstr "Yhdistä/Seuraa"
 
-#: include/conversation.php:1151
+#: include/conversation.php:1152
 #, php-format
 msgid "%s likes this."
 msgstr "%s tykkää tästä."
 
-#: include/conversation.php:1154
+#: include/conversation.php:1155
 #, php-format
 msgid "%s doesn't like this."
 msgstr "%s ei tykkää tästä."
 
-#: include/conversation.php:1157
+#: include/conversation.php:1158
 #, php-format
 msgid "%s attends."
 msgstr "%s osallistuu."
 
-#: include/conversation.php:1160
+#: include/conversation.php:1161
 #, php-format
 msgid "%s doesn't attend."
 msgstr "%s ei osallistu."
 
-#: include/conversation.php:1163
+#: include/conversation.php:1164
 #, php-format
 msgid "%s attends maybe."
 msgstr "%s ehkä osallistuu."
 
-#: include/conversation.php:1174
+#: include/conversation.php:1175
 msgid "and"
 msgstr "ja"
 
-#: include/conversation.php:1180
+#: include/conversation.php:1181
 #, php-format
 msgid "and %d other people"
 msgstr "ja %d muuta ihmistä"
 
-#: include/conversation.php:1189
+#: include/conversation.php:1190
 #, 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:1190
+#: include/conversation.php:1191
 #, php-format
 msgid "%s like this."
 msgstr "%s tykkää tästä."
 
-#: include/conversation.php:1193
+#: include/conversation.php:1194
 #, 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:1194
+#: include/conversation.php:1195
 #, php-format
 msgid "%s don't like this."
 msgstr "%s ei tykkää tästä."
 
-#: include/conversation.php:1197
+#: include/conversation.php:1198
 #, php-format
 msgid "<span  %1$s>%2$d people</span> attend"
 msgstr "<span  %1$s>%2$d ihmistä</span> osallistuu"
 
-#: include/conversation.php:1198
+#: include/conversation.php:1199
 #, php-format
 msgid "%s attend."
 msgstr "%s osallistuu."
 
-#: include/conversation.php:1201
+#: include/conversation.php:1202
 #, 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:1202
+#: include/conversation.php:1203
 #, php-format
 msgid "%s don't attend."
 msgstr "%s ei osallistu."
 
-#: include/conversation.php:1205
+#: include/conversation.php:1206
 #, 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:1206
+#: include/conversation.php:1207
 #, php-format
 msgid "%s attend maybe."
 msgstr "%s ehkä osallistuu."
 
-#: include/conversation.php:1236 include/conversation.php:1252
+#: include/conversation.php:1237 include/conversation.php:1253
 msgid "Visible to <strong>everybody</strong>"
 msgstr "Näkyy <strong>kaikille</strong>"
 
-#: include/conversation.php:1237 include/conversation.php:1253
+#: include/conversation.php:1238 include/conversation.php:1254
 #: mod/wallmessage.php:120 mod/wallmessage.php:127 mod/message.php:181
 #: mod/message.php:188 mod/message.php:324 mod/message.php:331
 msgid "Please enter a link URL:"
 msgstr "Lisää URL-linkki:"
 
-#: include/conversation.php:1238 include/conversation.php:1254
+#: include/conversation.php:1239 include/conversation.php:1255
 msgid "Please enter a video link/URL:"
 msgstr "Lisää video URL-linkki:"
 
-#: include/conversation.php:1239 include/conversation.php:1255
+#: include/conversation.php:1240 include/conversation.php:1256
 msgid "Please enter an audio link/URL:"
 msgstr "Lisää ääni URL-linkki:"
 
-#: include/conversation.php:1240 include/conversation.php:1256
+#: include/conversation.php:1241 include/conversation.php:1257
 msgid "Tag term:"
 msgstr "Tunniste:"
 
-#: include/conversation.php:1241 include/conversation.php:1257
+#: include/conversation.php:1242 include/conversation.php:1258
 #: mod/filer.php:34
 msgid "Save to Folder:"
 msgstr "Tallenna kansioon:"
 
-#: include/conversation.php:1242 include/conversation.php:1258
+#: include/conversation.php:1243 include/conversation.php:1259
 msgid "Where are you right now?"
 msgstr "Mikä on sijaintisi?"
 
-#: include/conversation.php:1243
+#: include/conversation.php:1244
 msgid "Delete item(s)?"
 msgstr "Poista kohde/kohteet?"
 
-#: include/conversation.php:1290
+#: include/conversation.php:1291
 msgid "New Post"
 msgstr "Uusi julkaisu"
 
-#: include/conversation.php:1293
+#: include/conversation.php:1294
 msgid "Share"
 msgstr "Jaa"
 
-#: include/conversation.php:1294 mod/wallmessage.php:143 mod/editpost.php:111
+#: include/conversation.php:1295 mod/wallmessage.php:143 mod/editpost.php:111
 #: mod/message.php:243 mod/message.php:411
 msgid "Upload photo"
 msgstr "Lähetä kuva"
 
-#: include/conversation.php:1295 mod/editpost.php:112
+#: include/conversation.php:1296 mod/editpost.php:112
 msgid "upload photo"
 msgstr "lähetä kuva"
 
-#: include/conversation.php:1296 mod/editpost.php:113
+#: include/conversation.php:1297 mod/editpost.php:113
 msgid "Attach file"
 msgstr "Liitä tiedosto"
 
-#: include/conversation.php:1297 mod/editpost.php:114
+#: include/conversation.php:1298 mod/editpost.php:114
 msgid "attach file"
 msgstr "liitä tiedosto"
 
-#: include/conversation.php:1298 mod/wallmessage.php:144 mod/editpost.php:115
+#: include/conversation.php:1299 mod/wallmessage.php:144 mod/editpost.php:115
 #: mod/message.php:244 mod/message.php:412
 msgid "Insert web link"
 msgstr "Lisää linkki"
 
-#: include/conversation.php:1299 mod/editpost.php:116
+#: include/conversation.php:1300 mod/editpost.php:116
 msgid "web link"
 msgstr "WWW-linkki"
 
-#: include/conversation.php:1300 mod/editpost.php:117
+#: include/conversation.php:1301 mod/editpost.php:117
 msgid "Insert video link"
 msgstr "Lisää videolinkki"
 
-#: include/conversation.php:1301 mod/editpost.php:118
+#: include/conversation.php:1302 mod/editpost.php:118
 msgid "video link"
 msgstr "videolinkki"
 
-#: include/conversation.php:1302 mod/editpost.php:119
+#: include/conversation.php:1303 mod/editpost.php:119
 msgid "Insert audio link"
 msgstr "Lisää äänilinkki"
 
-#: include/conversation.php:1303 mod/editpost.php:120
+#: include/conversation.php:1304 mod/editpost.php:120
 msgid "audio link"
 msgstr "äänilinkki"
 
-#: include/conversation.php:1304 mod/editpost.php:121
+#: include/conversation.php:1305 mod/editpost.php:121
 msgid "Set your location"
 msgstr "Aseta sijaintisi"
 
-#: include/conversation.php:1305 mod/editpost.php:122
+#: include/conversation.php:1306 mod/editpost.php:122
 msgid "set location"
 msgstr "aseta sijainti"
 
-#: include/conversation.php:1306 mod/editpost.php:123
+#: include/conversation.php:1307 mod/editpost.php:123
 msgid "Clear browser location"
 msgstr "Tyhjennä selaimen sijainti"
 
-#: include/conversation.php:1307 mod/editpost.php:124
+#: include/conversation.php:1308 mod/editpost.php:124
 msgid "clear location"
 msgstr "tyhjennä sijainti"
 
-#: include/conversation.php:1309 mod/editpost.php:138
+#: include/conversation.php:1310 mod/editpost.php:138
 msgid "Set title"
 msgstr "Aseta otsikko"
 
-#: include/conversation.php:1311 mod/editpost.php:140
+#: include/conversation.php:1312 mod/editpost.php:140
 msgid "Categories (comma-separated list)"
 msgstr "Luokat (pilkuilla eroteltu luettelo)"
 
-#: include/conversation.php:1313 mod/editpost.php:126
+#: include/conversation.php:1314 mod/editpost.php:126
 msgid "Permission settings"
 msgstr "Käyttöoikeusasetukset"
 
-#: include/conversation.php:1314 mod/editpost.php:155
+#: include/conversation.php:1315 mod/editpost.php:155
 msgid "permissions"
 msgstr "käyttöoikeudet"
 
-#: include/conversation.php:1322 mod/editpost.php:135
+#: include/conversation.php:1323 mod/editpost.php:135
 msgid "Public post"
 msgstr "Julkinen viesti"
 
-#: include/conversation.php:1326 mod/editpost.php:146 mod/photos.php:1492
-#: mod/photos.php:1531 mod/photos.php:1604 mod/events.php:528
+#: include/conversation.php:1327 mod/editpost.php:146 mod/events.php:529
+#: mod/photos.php:1486 mod/photos.php:1525 mod/photos.php:1598
 #: src/Object/Post.php:813
 msgid "Preview"
 msgstr "Esikatselu"
 
-#: include/conversation.php:1330 include/items.php:387 mod/fbrowser.php:103
+#: include/conversation.php:1331 include/items.php:388 mod/fbrowser.php:103
 #: mod/fbrowser.php:134 mod/suggest.php:41 mod/tagrm.php:19 mod/tagrm.php:99
-#: mod/editpost.php:149 mod/photos.php:248 mod/photos.php:324
-#: mod/videos.php:147 mod/contacts.php:475 mod/unfollow.php:117
+#: mod/editpost.php:149 mod/contacts.php:475 mod/unfollow.php:117
 #: mod/follow.php:161 mod/message.php:141 mod/dfrn_request.php:658
-#: mod/settings.php:670 mod/settings.php:696
+#: mod/photos.php:248 mod/photos.php:317 mod/settings.php:670
+#: mod/settings.php:696 mod/videos.php:147
 msgid "Cancel"
 msgstr "Peru"
 
-#: include/conversation.php:1335
+#: include/conversation.php:1336
 msgid "Post to Groups"
 msgstr "Lähetä ryhmiin"
 
-#: include/conversation.php:1336
+#: include/conversation.php:1337
 msgid "Post to Contacts"
 msgstr "Lähetä kontakteille"
 
-#: include/conversation.php:1337
+#: include/conversation.php:1338
 msgid "Private post"
 msgstr "Yksityinen julkaisu"
 
-#: include/conversation.php:1342 mod/editpost.php:153
+#: include/conversation.php:1343 mod/editpost.php:153
 #: src/Model/Profile.php:338
 msgid "Message"
 msgstr "Viesti"
 
-#: include/conversation.php:1343 mod/editpost.php:154
+#: include/conversation.php:1344 mod/editpost.php:154
 msgid "Browser"
 msgstr "Selain"
 
-#: include/conversation.php:1610
+#: include/conversation.php:1609
 msgid "View all"
 msgstr "Näytä kaikki"
 
-#: include/conversation.php:1633
+#: include/conversation.php:1632
 msgid "Like"
 msgid_plural "Likes"
 msgstr[0] "Tykkäys"
 msgstr[1] "Tykkäyksiä"
 
-#: include/conversation.php:1636
+#: include/conversation.php:1635
 msgid "Dislike"
 msgid_plural "Dislikes"
 msgstr[0] "Inhokki"
 msgstr[1] "Inhokit"
 
-#: include/conversation.php:1642
+#: include/conversation.php:1641
 msgid "Not Attending"
 msgid_plural "Not Attending"
 msgstr[0] "Ei osallistu"
 msgstr[1] "Ei osallistu"
 
-#: include/conversation.php:1645 src/Content/ContactSelector.php:125
+#: include/conversation.php:1644 src/Content/ContactSelector.php:125
 msgid "Undecided"
 msgid_plural "Undecided"
 msgstr[0] "En ole varma"
 msgstr[1] "En ole varma"
 
-#: include/items.php:342 mod/notice.php:22 mod/viewsrc.php:21
-#: mod/admin.php:277 mod/admin.php:1883 mod/admin.php:2131 mod/display.php:72
+#: include/items.php:343 mod/notice.php:22 mod/viewsrc.php:21
+#: mod/admin.php:277 mod/admin.php:1888 mod/admin.php:2136 mod/display.php:72
 #: mod/display.php:255 mod/display.php:356
 msgid "Item not found."
 msgstr "Kohdetta ei löytynyt."
 
-#: include/items.php:382
+#: include/items.php:383
 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
+#: include/items.php:385 mod/api.php:110 mod/suggest.php:38
 #: mod/contacts.php:472 mod/follow.php:150 mod/message.php:138
 #: mod/dfrn_request.php:648 mod/profiles.php:543 mod/profiles.php:546
 #: mod/profiles.php:568 mod/register.php:238 mod/settings.php:1094
@@ -839,341 +815,360 @@ msgstr "Haluatko varmasti poistaa tämän kohteen?"
 msgid "Yes"
 msgstr "Kyllä"
 
-#: include/items.php:401 mod/allfriends.php:21 mod/api.php:35 mod/api.php:40
+#: include/items.php:402 mod/allfriends.php:21 mod/api.php:35 mod/api.php:40
 #: mod/attach.php:38 mod/common.php:26 mod/nogroup.php:28
 #: mod/repair_ostatus.php:13 mod/suggest.php:60 mod/uimport.php:28
 #: 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/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/ostatus_subscribe.php:16 mod/profile_photo.php:30
+#: mod/editpost.php:18 mod/fsuggest.php:80 mod/cal.php:304
+#: mod/contacts.php:386 mod/delegate.php:25 mod/delegate.php:43
+#: mod/delegate.php:54 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/crepair.php:98 mod/message.php:59 mod/message.php:104 mod/group.php:26
-#: mod/dfrn_confirm.php:68 mod/item.php:160 mod/notifications.php:73
-#: mod/profiles.php:182 mod/profiles.php:513 mod/register.php:54
-#: mod/settings.php:43 mod/settings.php:142 mod/settings.php:659 index.php:436
+#: mod/follow.php:118 mod/invite.php:20 mod/invite.php:111 mod/crepair.php:98
+#: mod/message.php:59 mod/message.php:104 mod/dfrn_confirm.php:68
+#: mod/events.php:194 mod/group.php:26 mod/item.php:160 mod/network.php:32
+#: mod/notes.php:30 mod/notifications.php:73 mod/photos.php:174
+#: mod/photos.php:1039 mod/profiles.php:182 mod/profiles.php:513
+#: mod/register.php:54 mod/settings.php:43 mod/settings.php:142
+#: mod/settings.php:659 index.php:436
 msgid "Permission denied."
 msgstr "Käyttöoikeus evätty."
 
-#: include/items.php:471 src/Content/Feature.php:96
+#: include/items.php:472 src/Content/Feature.php:96
 msgid "Archives"
 msgstr "Arkisto"
 
-#: include/items.php:477 view/theme/vier/theme.php:258
+#: include/items.php:478 view/theme/vier/theme.php:258
 #: src/Content/ForumManager.php:130 src/Content/Widget.php:317
-#: src/Object/Post.php:438 src/App.php:525
+#: src/Object/Post.php:438 src/App.php:527
 msgid "show more"
 msgstr "näytä lisää"
 
-#: include/text.php:303
+#: 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:449
+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 "Lomakkeen turvallisuusavain oli väärin. Tämä voi johtua siitä, että lomake on ollut avoinna liian kauan (>3 tuntia) ennen sen lähettämistä."
+
+#: include/text.php:302
 msgid "newer"
 msgstr "uudempi"
 
-#: include/text.php:304
+#: include/text.php:303
 msgid "older"
 msgstr "vanhempi"
 
-#: include/text.php:309
+#: include/text.php:308
 msgid "first"
 msgstr "ensimmäinen"
 
-#: include/text.php:310
+#: include/text.php:309
 msgid "prev"
 msgstr "edellinen"
 
-#: include/text.php:344
+#: include/text.php:343
 msgid "next"
 msgstr "seuraava"
 
-#: include/text.php:345
+#: include/text.php:344
 msgid "last"
 msgstr "viimeinen"
 
-#: include/text.php:399
+#: include/text.php:398
 msgid "Loading more entries..."
 msgstr "Merkinnät ladataan..."
 
-#: include/text.php:400
+#: include/text.php:399
 msgid "The end"
 msgstr "Loppu"
 
-#: include/text.php:885
+#: include/text.php:884
 msgid "No contacts"
 msgstr "Ei kontakteja"
 
-#: include/text.php:909
+#: include/text.php:908
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
 msgstr[0] "%d kontakti"
 msgstr[1] "%d kontakteja"
 
-#: include/text.php:922
+#: include/text.php:921
 msgid "View Contacts"
 msgstr "Näytä kontaktit"
 
-#: include/text.php:1011 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"
 
-#: include/text.php:1011
+#: include/text.php:1010
 msgid "Follow"
 msgstr "Seuraa"
 
-#: include/text.php:1017 mod/search.php:155 src/Content/Nav.php:142
+#: include/text.php:1016 mod/search.php:155 src/Content/Nav.php:142
 msgid "Search"
 msgstr "Haku"
 
-#: include/text.php:1020 src/Content/Nav.php:58
+#: include/text.php:1019 src/Content/Nav.php:58
 msgid "@name, !forum, #tags, content"
 msgstr "@nimi, !foorumi, #tunnisteet, sisältö"
 
-#: include/text.php:1026 src/Content/Nav.php:145
+#: include/text.php:1025 src/Content/Nav.php:145
 msgid "Full Text"
 msgstr "Koko teksti"
 
-#: include/text.php:1027 src/Content/Widget/TagCloud.php:54
+#: include/text.php:1026 src/Content/Widget/TagCloud.php:54
 #: src/Content/Nav.php:146
 msgid "Tags"
 msgstr "Tunnisteet"
 
-#: include/text.php:1028 mod/viewcontacts.php:131 mod/contacts.php:814
+#: 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:213 src/Model/Profile.php:955 src/Model/Profile.php:958
 msgid "Contacts"
 msgstr "Yhteystiedot"
 
-#: include/text.php:1031 view/theme/vier/theme.php:253
+#: include/text.php:1030 view/theme/vier/theme.php:253
 #: src/Content/ForumManager.php:125 src/Content/Nav.php:151
 msgid "Forums"
 msgstr "Foorumit"
 
-#: include/text.php:1075
+#: include/text.php:1074
 msgid "poke"
 msgstr "töki"
 
-#: include/text.php:1075
+#: include/text.php:1074
 msgid "poked"
 msgstr "tökkäsi"
 
-#: include/text.php:1076
+#: include/text.php:1075
 msgid "ping"
 msgstr "pingaa"
 
-#: include/text.php:1076
+#: include/text.php:1075
 msgid "pinged"
 msgstr "pingasi"
 
-#: include/text.php:1077
+#: include/text.php:1076
 msgid "prod"
 msgstr "töki"
 
-#: include/text.php:1077
+#: include/text.php:1076
 msgid "prodded"
 msgstr "tökkäsi"
 
-#: include/text.php:1078
+#: include/text.php:1077
 msgid "slap"
 msgstr "läimäytä"
 
-#: include/text.php:1078
+#: include/text.php:1077
 msgid "slapped"
 msgstr "läimäsi"
 
-#: include/text.php:1079
+#: include/text.php:1078
 msgid "finger"
 msgstr "näytä keskisormea"
 
-#: include/text.php:1079
+#: include/text.php:1078
 msgid "fingered"
 msgstr "näytti keskisormea"
 
-#: include/text.php:1080
+#: include/text.php:1079
 msgid "rebuff"
 msgstr "torju"
 
-#: include/text.php:1080
+#: include/text.php:1079
 msgid "rebuffed"
 msgstr "torjui"
 
-#: include/text.php:1094 mod/settings.php:935 src/Model/Event.php:379
+#: include/text.php:1093 mod/settings.php:935 src/Model/Event.php:379
 msgid "Monday"
 msgstr "Maanantai"
 
-#: include/text.php:1094 src/Model/Event.php:380
+#: include/text.php:1093 src/Model/Event.php:380
 msgid "Tuesday"
 msgstr "Tiistai"
 
-#: include/text.php:1094 src/Model/Event.php:381
+#: include/text.php:1093 src/Model/Event.php:381
 msgid "Wednesday"
 msgstr "Keskiviikko"
 
-#: include/text.php:1094 src/Model/Event.php:382
+#: include/text.php:1093 src/Model/Event.php:382
 msgid "Thursday"
 msgstr "Torstai"
 
-#: include/text.php:1094 src/Model/Event.php:383
+#: include/text.php:1093 src/Model/Event.php:383
 msgid "Friday"
 msgstr "Perjantai"
 
-#: include/text.php:1094 src/Model/Event.php:384
+#: include/text.php:1093 src/Model/Event.php:384
 msgid "Saturday"
 msgstr "Lauantai"
 
-#: include/text.php:1094 mod/settings.php:935 src/Model/Event.php:378
+#: include/text.php:1093 mod/settings.php:935 src/Model/Event.php:378
 msgid "Sunday"
 msgstr "Sunnuntai"
 
-#: include/text.php:1098 src/Model/Event.php:399
+#: include/text.php:1097 src/Model/Event.php:399
 msgid "January"
 msgstr "Tammikuu"
 
-#: include/text.php:1098 src/Model/Event.php:400
+#: include/text.php:1097 src/Model/Event.php:400
 msgid "February"
 msgstr "Helmikuu"
 
-#: include/text.php:1098 src/Model/Event.php:401
+#: include/text.php:1097 src/Model/Event.php:401
 msgid "March"
 msgstr "Maaliskuu"
 
-#: include/text.php:1098 src/Model/Event.php:402
+#: include/text.php:1097 src/Model/Event.php:402
 msgid "April"
 msgstr "Huhtikuu"
 
-#: include/text.php:1098 include/text.php:1115 src/Model/Event.php:390
+#: include/text.php:1097 include/text.php:1114 src/Model/Event.php:390
 #: src/Model/Event.php:403
 msgid "May"
 msgstr "Toukokuu"
 
-#: include/text.php:1098 src/Model/Event.php:404
+#: include/text.php:1097 src/Model/Event.php:404
 msgid "June"
 msgstr "Kesäkuu"
 
-#: include/text.php:1098 src/Model/Event.php:405
+#: include/text.php:1097 src/Model/Event.php:405
 msgid "July"
 msgstr "Heinäkuu"
 
-#: include/text.php:1098 src/Model/Event.php:406
+#: include/text.php:1097 src/Model/Event.php:406
 msgid "August"
 msgstr "Elokuu"
 
-#: include/text.php:1098 src/Model/Event.php:407
+#: include/text.php:1097 src/Model/Event.php:407
 msgid "September"
 msgstr "Syyskuu"
 
-#: include/text.php:1098 src/Model/Event.php:408
+#: include/text.php:1097 src/Model/Event.php:408
 msgid "October"
 msgstr "Lokakuu"
 
-#: include/text.php:1098 src/Model/Event.php:409
+#: include/text.php:1097 src/Model/Event.php:409
 msgid "November"
 msgstr "Marraskuu"
 
-#: include/text.php:1098 src/Model/Event.php:410
+#: include/text.php:1097 src/Model/Event.php:410
 msgid "December"
 msgstr "Joulukuu"
 
-#: include/text.php:1112 src/Model/Event.php:371
+#: include/text.php:1111 src/Model/Event.php:371
 msgid "Mon"
 msgstr "Ma"
 
-#: include/text.php:1112 src/Model/Event.php:372
+#: include/text.php:1111 src/Model/Event.php:372
 msgid "Tue"
 msgstr "Ti"
 
-#: include/text.php:1112 src/Model/Event.php:373
+#: include/text.php:1111 src/Model/Event.php:373
 msgid "Wed"
 msgstr "Ke"
 
-#: include/text.php:1112 src/Model/Event.php:374
+#: include/text.php:1111 src/Model/Event.php:374
 msgid "Thu"
 msgstr "To"
 
-#: include/text.php:1112 src/Model/Event.php:375
+#: include/text.php:1111 src/Model/Event.php:375
 msgid "Fri"
 msgstr "Pe"
 
-#: include/text.php:1112 src/Model/Event.php:376
+#: include/text.php:1111 src/Model/Event.php:376
 msgid "Sat"
 msgstr "La"
 
-#: include/text.php:1112 src/Model/Event.php:370
+#: include/text.php:1111 src/Model/Event.php:370
 msgid "Sun"
 msgstr "Su"
 
-#: include/text.php:1115 src/Model/Event.php:386
+#: include/text.php:1114 src/Model/Event.php:386
 msgid "Jan"
 msgstr "Tam."
 
-#: include/text.php:1115 src/Model/Event.php:387
+#: include/text.php:1114 src/Model/Event.php:387
 msgid "Feb"
 msgstr "Hel."
 
-#: include/text.php:1115 src/Model/Event.php:388
+#: include/text.php:1114 src/Model/Event.php:388
 msgid "Mar"
 msgstr "Maa."
 
-#: include/text.php:1115 src/Model/Event.php:389
+#: include/text.php:1114 src/Model/Event.php:389
 msgid "Apr"
 msgstr "Huh."
 
-#: include/text.php:1115 src/Model/Event.php:392
+#: include/text.php:1114 src/Model/Event.php:392
 msgid "Jul"
 msgstr "Tou."
 
-#: include/text.php:1115 src/Model/Event.php:393
+#: include/text.php:1114 src/Model/Event.php:393
 msgid "Aug"
 msgstr "Elo."
 
-#: include/text.php:1115
+#: include/text.php:1114
 msgid "Sep"
 msgstr "Syy."
 
-#: include/text.php:1115 src/Model/Event.php:395
+#: include/text.php:1114 src/Model/Event.php:395
 msgid "Oct"
 msgstr "Lok."
 
-#: include/text.php:1115 src/Model/Event.php:396
+#: include/text.php:1114 src/Model/Event.php:396
 msgid "Nov"
 msgstr "Mar."
 
-#: include/text.php:1115 src/Model/Event.php:397
+#: include/text.php:1114 src/Model/Event.php:397
 msgid "Dec"
 msgstr "Jou."
 
-#: include/text.php:1255
+#: include/text.php:1254
 #, php-format
 msgid "Content warning: %s"
 msgstr "Sisältövaroitus: %s"
 
-#: include/text.php:1325 mod/videos.php:380
+#: include/text.php:1324 mod/videos.php:380
 msgid "View Video"
 msgstr "Katso video"
 
-#: include/text.php:1342
+#: include/text.php:1341
 msgid "bytes"
 msgstr "tavua"
 
-#: include/text.php:1375 include/text.php:1386 include/text.php:1419
+#: include/text.php:1374 include/text.php:1385 include/text.php:1418
 msgid "Click to open/close"
 msgstr "Klikkaa auki/kiinni"
 
-#: include/text.php:1534
+#: include/text.php:1533
 msgid "View on separate page"
 msgstr "Katso erillisellä sivulla"
 
-#: include/text.php:1535
+#: include/text.php:1534
 msgid "view on separate page"
 msgstr "katso erillisellä sivulla"
 
-#: include/text.php:1540 include/text.php:1547 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"
 
@@ -1191,7 +1186,7 @@ msgstr[1] "kommentoi"
 msgid "post"
 msgstr "julkaisu"
 
-#: include/text.php:1915
+#: include/text.php:1916
 msgid "Item filed"
 msgstr "Kohde arkistoitu"
 
@@ -1277,8 +1272,8 @@ msgid "Photos"
 msgstr "Kuvat"
 
 #: 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
+#: mod/photos.php:1050 mod/photos.php:1137 mod/photos.php:1154
+#: mod/photos.php:1653 mod/photos.php:1667 src/Model/Photo.php:244
 #: src/Model/Photo.php:253
 msgid "Contact Photos"
 msgstr "Kontaktin valokuvat"
@@ -1348,7 +1343,7 @@ msgid ""
 " join."
 msgstr ""
 
-#: mod/newmember.php:19 mod/admin.php:1935 mod/admin.php:2204
+#: mod/newmember.php:19 mod/admin.php:1940 mod/admin.php:2210
 #: mod/settings.php:124 view/theme/frio/theme.php:269 src/Content/Nav.php:207
 msgid "Settings"
 msgstr "Asetukset"
@@ -1522,7 +1517,7 @@ msgstr "Ei laajennettu"
 
 #: mod/repair_ostatus.php:18
 msgid "Resubscribing to OStatus contacts"
-msgstr ""
+msgstr "OStatus -kontaktien uudelleentilaus"
 
 #: mod/repair_ostatus.php:34
 msgid "Error"
@@ -1554,11 +1549,6 @@ msgstr "Jätä huomiotta/piilota"
 msgid "Friend Suggestions"
 msgstr "Ystäväehdotukset"
 
-#: mod/update_community.php:27 mod/update_display.php:27
-#: mod/update_notes.php:40 mod/update_profile.php:39 mod/update_network.php:33
-msgid "[Embedded content - reload page to view]"
-msgstr "[Upotettu sisältö - näet sen päivittämällä sivun]"
-
 #: mod/uimport.php:55 mod/register.php:192
 msgid ""
 "This site has exceeded the number of allowed daily account registrations. "
@@ -1631,11 +1621,11 @@ msgid "Select an identity to manage: "
 msgstr "Valitse identiteetti hallitavaksi:"
 
 #: mod/manage.php:184 mod/localtime.php:56 mod/poke.php:199
-#: 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/contacts.php:610 mod/events.php:530
-#: mod/invite.php:154 mod/crepair.php:148 mod/install.php:198
-#: mod/install.php:237 mod/message.php:246 mod/message.php:413
+#: mod/fsuggest.php:114 mod/contacts.php:610 mod/invite.php:154
+#: mod/crepair.php:148 mod/install.php:198 mod/install.php:237
+#: mod/message.php:246 mod/message.php:413 mod/events.php:531
+#: mod/photos.php:1068 mod/photos.php:1148 mod/photos.php:1439
+#: mod/photos.php:1485 mod/photos.php:1524 mod/photos.php:1597
 #: mod/profiles.php:579 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:804
@@ -1671,7 +1661,7 @@ msgstr "- valitse -"
 
 #: mod/localtime.php:19 src/Model/Event.php:36 src/Model/Event.php:814
 msgid "l F d, Y \\@ g:i A"
-msgstr ""
+msgstr "l j.n.Y \\@ H:i"
 
 #: mod/localtime.php:33
 msgid "Time Conversion"
@@ -1742,10 +1732,10 @@ msgstr "Valitse mitä haluat tehdä vastaanottajalle"
 msgid "Make this post private"
 msgstr "Muuta julkaisu yksityiseksi"
 
-#: 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/directory.php:42 mod/community.php:27
-#: mod/dfrn_request.php:602 mod/display.php:203
+#: mod/probe.php:13 mod/viewcontacts.php:45 mod/webfinger.php:16
+#: mod/directory.php:42 mod/community.php:27 mod/dfrn_request.php:602
+#: mod/display.php:203 mod/photos.php:920 mod/search.php:98 mod/search.php:104
+#: mod/videos.php:199
 msgid "Public access denied."
 msgstr "Julkinen käyttö estetty."
 
@@ -1790,45 +1780,6 @@ msgstr ""
 msgid "Please login."
 msgstr "Ole hyvä ja kirjaudu."
 
-#: mod/search.php:37 mod/network.php:194
-msgid "Remove term"
-msgstr "Poista kohde"
-
-#: mod/search.php:46 mod/network.php:201 src/Content/Feature.php:100
-msgid "Saved Searches"
-msgstr "Tallennetut haut"
-
-#: mod/search.php:105
-msgid "Only logged in users are permitted to perform a search."
-msgstr ""
-
-#: mod/search.php:129
-msgid "Too Many Requests"
-msgstr "Liian monta pyyntöä"
-
-#: mod/search.php:130
-msgid "Only one search per minute is permitted for not logged in users."
-msgstr ""
-
-#: mod/search.php:228 mod/community.php:141
-msgid "No results."
-msgstr "Ei tuloksia."
-
-#: mod/search.php:234
-#, php-format
-msgid "Items tagged with: %s"
-msgstr "Kohteet joilla tunnisteet: %s"
-
-#: mod/search.php:236 mod/contacts.php:819
-#, php-format
-msgid "Results for: %s"
-msgstr "Tulokset haulla: %s"
-
-#: mod/subthread.php:113
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr ""
-
 #: mod/tagrm.php:47
 msgid "Tag removed"
 msgstr "Tägi poistettiin"
@@ -1878,13 +1829,13 @@ msgstr "Ei kontakteja."
 msgid "Access denied."
 msgstr "Käyttö estetty."
 
-#: mod/wall_upload.php:186 mod/photos.php:763 mod/photos.php:766
-#: mod/photos.php:795 mod/profile_photo.php:153
+#: mod/wall_upload.php:186 mod/profile_photo.php:153 mod/photos.php:751
+#: mod/photos.php:754 mod/photos.php:783
 #, php-format
 msgid "Image exceeds size limit of %s"
 msgstr "Kuva ylittää kokorajoituksen %s"
 
-#: mod/wall_upload.php:200 mod/photos.php:818 mod/profile_photo.php:162
+#: mod/wall_upload.php:200 mod/profile_photo.php:162 mod/photos.php:806
 msgid "Unable to process image."
 msgstr "Kuvan käsitteleminen epäonnistui."
 
@@ -1893,7 +1844,7 @@ msgstr "Kuvan käsitteleminen epäonnistui."
 msgid "Wall Photos"
 msgstr "Seinäkuvat"
 
-#: mod/wall_upload.php:239 mod/photos.php:847 mod/profile_photo.php:307
+#: mod/wall_upload.php:239 mod/profile_photo.php:307 mod/photos.php:835
 msgid "Image upload failed."
 msgstr "Kuvan lähettäminen epäonnistui."
 
@@ -1992,332 +1943,97 @@ msgstr "Ehdota ystäviä"
 msgid "Suggest a friend for %s"
 msgstr "Ehdota ystävää ystävälle %s"
 
-#: mod/notes.php:52 src/Model/Profile.php:944
-msgid "Personal Notes"
-msgstr "Henkilökohtaiset tiedot"
+#: mod/cal.php:142 mod/display.php:316 mod/profile.php:174
+msgid "Access to this profile has been restricted."
+msgstr "Pääsy tähän profiiliin on rajoitettu"
 
-#: mod/photos.php:108 src/Model/Profile.php:905
-msgid "Photo Albums"
-msgstr "Valokuva-albumit"
+#: mod/cal.php:274 mod/events.php:391 view/theme/frio/theme.php:263
+#: view/theme/frio/theme.php:267 src/Content/Nav.php:104
+#: src/Content/Nav.php:170 src/Model/Profile.php:922 src/Model/Profile.php:933
+msgid "Events"
+msgstr "Tapahtumat"
 
-#: mod/photos.php:109 mod/photos.php:1713
-msgid "Recent Photos"
-msgstr "Viimeaikaisia kuvia"
+#: mod/cal.php:275 mod/events.php:392
+msgid "View"
+msgstr "Katso"
 
-#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715
-msgid "Upload New Photos"
-msgstr "Lähetä uusia kuvia"
+#: mod/cal.php:276 mod/events.php:394
+msgid "Previous"
+msgstr "Edellinen"
 
-#: mod/photos.php:126 mod/settings.php:51
-msgid "everybody"
-msgstr "kaikki"
+#: mod/cal.php:277 mod/install.php:156 mod/events.php:395
+msgid "Next"
+msgstr "Seuraava"
 
-#: mod/photos.php:184
-msgid "Contact information unavailable"
-msgstr "Kontaktin tietoja ei saatavilla"
+#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412
+msgid "today"
+msgstr "tänään"
 
-#: mod/photos.php:204
-msgid "Album not found."
-msgstr "Albumia ei ole."
+#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304
+#: src/Model/Event.php:413
+msgid "month"
+msgstr "kuukausi"
 
-#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161
-msgid "Delete Album"
-msgstr "Poista albumi"
+#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305
+#: src/Model/Event.php:414
+msgid "week"
+msgstr "viikko"
 
-#: 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/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306
+#: src/Model/Event.php:415
+msgid "day"
+msgstr "päivä"
 
-#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446
-msgid "Delete Photo"
-msgstr "Poista valokuva"
+#: mod/cal.php:284 mod/events.php:404
+msgid "list"
+msgstr "luettelo"
 
-#: mod/photos.php:319
-msgid "Do you really want to delete this photo?"
-msgstr "Haluatko varmasti poistaa kuvan?"
+#: 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"
 
-#: mod/photos.php:667
-msgid "a photo"
-msgstr "valokuva"
+#: mod/cal.php:313
+msgid "This calendar format is not supported"
+msgstr "Tätä kalenteriformaattia ei tueta"
 
-#: mod/photos.php:667
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s merkattiin kuvaan %2$s ystävän %3$s toimesta"
+#: mod/cal.php:315
+msgid "No exportable data found"
+msgstr "Vientikelpoista dataa ei löytynyt"
 
-#: mod/photos.php:769
-msgid "Image upload didn't complete, please try again"
-msgstr "Kuvan lataus ei onnistunut, yritä uudelleen"
+#: mod/cal.php:332
+msgid "calendar"
+msgstr "kalenteri"
 
-#: mod/photos.php:772
-msgid "Image file is missing"
-msgstr "Kuvatiedosto puuttuu"
+#: mod/contacts.php:71 mod/notifications.php:259 src/Model/Profile.php:516
+msgid "Network:"
+msgstr "Uutisvirta:"
 
-#: mod/photos.php:777
-msgid ""
-"Server can't accept new file upload at this time, please contact your "
-"administrator"
-msgstr ""
+#: mod/contacts.php:157
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] "%d kontakti muokattu"
+msgstr[1] "%d kontakteja muokattu"
 
-#: mod/photos.php:803
-msgid "Image file is empty."
-msgstr "Kuvatiedosto on tyhjä."
+#: mod/contacts.php:184 mod/contacts.php:400
+msgid "Could not access contact record."
+msgstr "Yhteystietoon ei päästä käsiksi."
 
-#: mod/photos.php:940
-msgid "No photos selected"
-msgstr "Ei valittuja kuvia"
+#: mod/contacts.php:194
+msgid "Could not locate selected profile."
+msgstr "Valittua profiilia ei löydy."
 
-#: mod/photos.php:1036 mod/videos.php:309
-msgid "Access to this item is restricted."
-msgstr "Pääsy kohteeseen on rajoitettu."
+#: mod/contacts.php:228
+msgid "Contact updated."
+msgstr "Yhteystietopäivitys onnistui."
 
-#: mod/photos.php:1090
-msgid "Upload Photos"
-msgstr "Lähetä kuvia"
+#: mod/contacts.php:230 mod/dfrn_request.php:415
+msgid "Failed to update contact record."
+msgstr "Kontaktitietojen päivitys epäonnistui."
 
-#: mod/photos.php:1094 mod/photos.php:1156
-msgid "New album name: "
-msgstr "Albumin uusi nimi: "
-
-#: mod/photos.php:1095
-msgid "or existing album name: "
-msgstr "tai olemassaolevan albumin nimi: "
-
-#: mod/photos.php:1096
-msgid "Do not show a status post for this upload"
-msgstr "Älä näytä tilaviestiä tälle lähetykselle"
-
-#: mod/photos.php:1098 mod/photos.php:1441 mod/events.php:533
-#: src/Core/ACL.php:318
-msgid "Permissions"
-msgstr "Käyttöoikeudet"
-
-#: mod/photos.php:1106 mod/photos.php:1449 mod/settings.php:1218
-msgid "Show to Groups"
-msgstr "Näytä ryhmille"
-
-#: mod/photos.php:1107 mod/photos.php:1450 mod/settings.php:1219
-msgid "Show to Contacts"
-msgstr "Näytä kontakteille"
-
-#: mod/photos.php:1167
-msgid "Edit Album"
-msgstr "Muokkaa albumia"
-
-#: mod/photos.php:1172
-msgid "Show Newest First"
-msgstr "Näytä uusin ensin"
-
-#: mod/photos.php:1174
-msgid "Show Oldest First"
-msgstr "Näytä vanhin ensin"
-
-#: mod/photos.php:1195 mod/photos.php:1698
-msgid "View Photo"
-msgstr "Näytä kuva"
-
-#: mod/photos.php:1236
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Estetty. Tämän kohteen käyttöä on saatettu rajoittaa."
-
-#: mod/photos.php:1238
-msgid "Photo not available"
-msgstr "Kuva ei ole saatavilla"
-
-#: mod/photos.php:1301
-msgid "View photo"
-msgstr "Näytä kuva"
-
-#: mod/photos.php:1301
-msgid "Edit photo"
-msgstr "Muokkaa kuvaa"
-
-#: mod/photos.php:1302
-msgid "Use as profile photo"
-msgstr "Käytä profiilikuvana"
-
-#: mod/photos.php:1308 src/Object/Post.php:149
-msgid "Private Message"
-msgstr "Yksityisviesti"
-
-#: mod/photos.php:1327
-msgid "View Full Size"
-msgstr "Näytä täysikokoisena"
-
-#: mod/photos.php:1414
-msgid "Tags: "
-msgstr "Merkinnät:"
-
-#: mod/photos.php:1417
-msgid "[Remove any tag]"
-msgstr "[Poista mikä tahansa merkintä]"
-
-#: mod/photos.php:1432
-msgid "New album name"
-msgstr "Uusi nimi albumille"
-
-#: mod/photos.php:1433
-msgid "Caption"
-msgstr "Kuvateksti"
-
-#: mod/photos.php:1434
-msgid "Add a Tag"
-msgstr "Lisää merkintä"
-
-#: mod/photos.php:1434
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Esimerkki: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-
-#: mod/photos.php:1435
-msgid "Do not rotate"
-msgstr "Älä kierrä"
-
-#: mod/photos.php:1436
-msgid "Rotate CW (right)"
-msgstr "Käännä oikealle"
-
-#: mod/photos.php:1437
-msgid "Rotate CCW (left)"
-msgstr "Käännä vasemmalle"
-
-#: mod/photos.php:1471 src/Object/Post.php:304
-msgid "I like this (toggle)"
-msgstr "Tykkään tästä (vaihda)"
-
-#: mod/photos.php:1472 src/Object/Post.php:305
-msgid "I don't like this (toggle)"
-msgstr "En tykkää tästä (vaihda)"
-
-#: mod/photos.php:1488 mod/photos.php:1527 mod/photos.php:1600
-#: mod/contacts.php:953 src/Object/Post.php:801
-msgid "This is you"
-msgstr "Tämä olet sinä"
-
-#: mod/photos.php:1490 mod/photos.php:1529 mod/photos.php:1602
-#: src/Object/Post.php:407 src/Object/Post.php:803
-msgid "Comment"
-msgstr "Kommentti"
-
-#: mod/photos.php:1634
-msgid "Map"
-msgstr "Kartta"
-
-#: mod/photos.php:1704 mod/videos.php:387
-msgid "View Album"
-msgstr "Näytä albumi"
-
-#: mod/videos.php:139
-msgid "Do you really want to delete this video?"
-msgstr "Haluatko varmasti poistaa tämän videon?"
-
-#: mod/videos.php:144
-msgid "Delete Video"
-msgstr "Poista video"
-
-#: mod/videos.php:207
-msgid "No videos selected"
-msgstr "Ei videoita valittuna"
-
-#: mod/videos.php:396
-msgid "Recent Videos"
-msgstr "Viimeisimmät videot"
-
-#: mod/videos.php:398
-msgid "Upload New Videos"
-msgstr "Lataa uusia videoita"
-
-#: mod/cal.php:142 mod/display.php:316 mod/profile.php:174
-msgid "Access to this profile has been restricted."
-msgstr "Pääsy tähän profiiliin on rajoitettu"
-
-#: mod/cal.php:274 mod/events.php:391 view/theme/frio/theme.php:263
-#: view/theme/frio/theme.php:267 src/Content/Nav.php:104
-#: src/Content/Nav.php:170 src/Model/Profile.php:922 src/Model/Profile.php:933
-msgid "Events"
-msgstr "Tapahtumat"
-
-#: mod/cal.php:275 mod/events.php:392
-msgid "View"
-msgstr "Katso"
-
-#: mod/cal.php:276 mod/events.php:394
-msgid "Previous"
-msgstr "Edellinen"
-
-#: mod/cal.php:277 mod/events.php:395 mod/install.php:156
-msgid "Next"
-msgstr "Seuraava"
-
-#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412
-msgid "today"
-msgstr "tänään"
-
-#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304
-#: src/Model/Event.php:413
-msgid "month"
-msgstr "kuukausi"
-
-#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305
-#: src/Model/Event.php:414
-msgid "week"
-msgstr "viikko"
-
-#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306
-#: src/Model/Event.php:415
-msgid "day"
-msgstr "päivä"
-
-#: mod/cal.php:284 mod/events.php:404
-msgid "list"
-msgstr "luettelo"
-
-#: mod/cal.php:297 src/Core/Console/NewPassword.php:73 src/Model/User.php:214
-msgid "User not found"
-msgstr "Käyttäjää ei löydy"
-
-#: mod/cal.php:313
-msgid "This calendar format is not supported"
-msgstr "Tätä kalenteriformaattia ei tueta"
-
-#: mod/cal.php:315
-msgid "No exportable data found"
-msgstr "Vientikelpoista dataa ei löytynyt"
-
-#: mod/cal.php:332
-msgid "calendar"
-msgstr "kalenteri"
-
-#: mod/contacts.php:71 mod/notifications.php:259 src/Model/Profile.php:516
-msgid "Network:"
-msgstr "Uutisvirta:"
-
-#: mod/contacts.php:157
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] "%d kontakti muokattu"
-msgstr[1] "%d kontakteja muokattu"
-
-#: mod/contacts.php:184 mod/contacts.php:400
-msgid "Could not access contact record."
-msgstr "Yhteystietoon ei päästä käsiksi."
-
-#: mod/contacts.php:194
-msgid "Could not locate selected profile."
-msgstr "Valittua profiilia ei löydy."
-
-#: mod/contacts.php:228
-msgid "Contact updated."
-msgstr "Yhteystietopäivitys onnistui."
-
-#: mod/contacts.php:230 mod/dfrn_request.php:415
-msgid "Failed to update contact record."
-msgstr "Kontaktitietojen päivitys epäonnistui."
-
-#: mod/contacts.php:421
-msgid "Contact has been blocked"
-msgstr "Henkilö on estetty"
+#: mod/contacts.php:421
+msgid "Contact has been blocked"
+msgstr "Henkilö on estetty"
 
 #: mod/contacts.php:421
 msgid "Contact has been unblocked"
@@ -2406,8 +2122,8 @@ msgid ""
 "are taken from the meta header in the feed item and are posted as hash tags."
 msgstr ""
 
-#: mod/contacts.php:572 mod/admin.php:1288 mod/admin.php:1450
-#: mod/admin.php:1460
+#: mod/contacts.php:572 mod/admin.php:1284 mod/admin.php:1449
+#: mod/admin.php:1459
 msgid "Disabled"
 msgstr "Pois käytöstä"
 
@@ -2483,12 +2199,12 @@ msgid "Update now"
 msgstr "Päivitä nyt"
 
 #: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
-#: mod/admin.php:489 mod/admin.php:1829
+#: mod/admin.php:489 mod/admin.php:1834
 msgid "Unblock"
 msgstr "Salli"
 
 #: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
-#: mod/admin.php:488 mod/admin.php:1828
+#: mod/admin.php:488 mod/admin.php:1833
 msgid "Block"
 msgstr "Estä"
 
@@ -2550,7 +2266,7 @@ msgstr ""
 msgid "Profile URL"
 msgstr "Profiilin URL"
 
-#: mod/contacts.php:660 mod/events.php:518 mod/directory.php:148
+#: mod/contacts.php:660 mod/directory.php:148 mod/events.php:519
 #: mod/notifications.php:246 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:"
@@ -2643,6 +2359,11 @@ msgstr "Näytä vain piilotetut henkilöt"
 msgid "Search your contacts"
 msgstr "Etsi henkilöitä"
 
+#: mod/contacts.php:819 mod/search.php:236
+#, php-format
+msgid "Results for: %s"
+msgstr "Tulokset haulla: %s"
+
 #: mod/contacts.php:820 mod/directory.php:209 view/theme/vier/theme.php:203
 #: src/Content/Widget.php:63
 msgid "Find"
@@ -2681,7 +2402,7 @@ msgstr "Näytä kaikki kontaktit"
 msgid "View all common friends"
 msgstr "Näytä kaikki yhteiset kaverit"
 
-#: mod/contacts.php:895 mod/events.php:532 mod/admin.php:1363
+#: mod/contacts.php:895 mod/admin.php:1362 mod/events.php:533
 #: src/Model/Profile.php:863
 msgid "Advanced"
 msgstr ""
@@ -2702,6 +2423,11 @@ msgstr "on fanisi"
 msgid "you are a fan of"
 msgstr "fanitat"
 
+#: mod/contacts.php:953 mod/photos.php:1482 mod/photos.php:1521
+#: mod/photos.php:1594 src/Object/Post.php:801
+msgid "This is you"
+msgstr "Tämä olet sinä"
+
 #: mod/contacts.php:1013
 msgid "Toggle Blocked status"
 msgstr "Estetty tila päälle/pois"
@@ -2745,8 +2471,8 @@ msgid ""
 "settings. Please double check whom you give this access."
 msgstr ""
 
-#: mod/delegate.php:168 mod/admin.php:311 mod/admin.php:1358
-#: mod/admin.php:1994 mod/admin.php:2247 mod/admin.php:2321 mod/admin.php:2468
+#: mod/delegate.php:168 mod/admin.php:311 mod/admin.php:1357
+#: mod/admin.php:1999 mod/admin.php:2253 mod/admin.php:2327 mod/admin.php:2474
 #: mod/settings.php:669 mod/settings.php:776 mod/settings.php:864
 #: mod/settings.php:953 mod/settings.php:1183
 msgid "Save Settings"
@@ -2783,97 +2509,33 @@ msgstr "Lisää"
 msgid "No entries."
 msgstr "Ei kohteita."
 
-#: mod/events.php:105 mod/events.php:107
-msgid "Event can not end before it has started."
-msgstr "Tapahtuma ei voi päättyä ennen kuin on alkanut."
+#: 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/events.php:114 mod/events.php:116
-msgid "Event title and start time are required."
-msgstr "Tapahtuman nimi ja alkamisaika vaaditaan."
+#: mod/feedtest.php:48
+msgid "Source URL"
+msgstr "Lähde URL"
 
-#: mod/events.php:393
-msgid "Create New Event"
-msgstr "Luo uusi tapahtuma"
+#: mod/oexchange.php:30
+msgid "Post successful."
+msgstr "Viestin lähetys onnistui."
 
-#: mod/events.php:506
-msgid "Event details"
-msgstr "Tapahtuman tiedot"
+#: mod/ostatus_subscribe.php:21
+msgid "Subscribing to OStatus contacts"
+msgstr "OStatus -kontaktien tilaaminen"
 
-#: mod/events.php:507
-msgid "Starting date and Title are required."
-msgstr "Aloituspvm ja otsikko vaaditaan."
+#: mod/ostatus_subscribe.php:33
+msgid "No contact provided."
+msgstr "Kontakti puuttuu."
 
-#: mod/events.php:508 mod/events.php:509
-msgid "Event Starts:"
-msgstr "Tapahtuma alkaa:"
+#: mod/ostatus_subscribe.php:40
+msgid "Couldn't fetch information for contact."
+msgstr "Kontaktin tietoja ei voitu hakea."
 
-#: mod/events.php:508 mod/events.php:520 mod/profiles.php:607
-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/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:50
+msgid "Couldn't fetch friends for contact."
+msgstr "Ei voitu hakea kontaktin kaverit."
 
 #: mod/ostatus_subscribe.php:78
 msgid "success"
@@ -3250,36 +2912,6 @@ msgstr "Markdown"
 msgid "HTML"
 msgstr "HTML"
 
-#: mod/community.php:51
-msgid "Community option not available."
-msgstr "Yhteisö vaihtoehto ei saatavilla."
-
-#: mod/community.php:68
-msgid "Not available."
-msgstr "Ei saatavilla."
-
-#: mod/community.php:81
-msgid "Local Community"
-msgstr "Paikallinen yhteisö"
-
-#: mod/community.php:84
-msgid "Posts from local users on this server"
-msgstr "Tämän palvelimen julkaisut"
-
-#: mod/community.php:92
-msgid "Global Community"
-msgstr "Maailmanlaajuinen yhteisö"
-
-#: mod/community.php:95
-msgid "Posts from users of the whole federated network"
-msgstr "Maailmanlaajuisen verkon julkaisut"
-
-#: mod/community.php:185
-msgid ""
-"This community stream shows all public posts received by this node. They may"
-" not reflect the opinions of this node’s users."
-msgstr ""
-
 #: mod/friendica.php:77
 msgid "This is Friendica, version"
 msgstr "Tämä on Friendica, versio"
@@ -3436,95 +3068,6 @@ msgid ""
 "important, please visit http://friendi.ca"
 msgstr ""
 
-#: mod/network.php:202 src/Model/Group.php:413
-msgid "add"
-msgstr "lisää"
-
-#: mod/network.php:547
-#, php-format
-msgid ""
-"Warning: This group contains %s member from a network that doesn't allow non"
-" public messages."
-msgid_plural ""
-"Warning: This group contains %s members from a network that doesn't allow "
-"non public messages."
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/network.php:550
-msgid "Messages in this group won't be send to these receivers."
-msgstr ""
-
-#: mod/network.php:618
-msgid "No such group"
-msgstr "Ryhmä ei ole olemassa"
-
-#: mod/network.php: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:937
-msgid "Commented Order"
-msgstr "Järjestä viimeisimpien kommenttien mukaan"
-
-#: mod/network.php:940
-msgid "Sort by Comment Date"
-msgstr "Kommentit päivämäärän mukaan"
-
-#: mod/network.php:945
-msgid "Posted Order"
-msgstr "Järjestä julkaisupäivämäärän mukaan"
-
-#: mod/network.php:948
-msgid "Sort by Post Date"
-msgstr "Julkaisut päivämäärän mukaan"
-
-#: mod/network.php:956 mod/profiles.php:594
-#: src/Core/NotificationsManager.php:185
-msgid "Personal"
-msgstr "Henkilökohtainen"
-
-#: mod/network.php:959
-msgid "Posts that mention or involve you"
-msgstr "Julkaisut jotka liittyvät sinuun"
-
-#: mod/network.php:967
-msgid "New"
-msgstr "Uusi"
-
-#: mod/network.php:970
-msgid "Activity Stream - by date"
-msgstr ""
-
-#: mod/network.php:978
-msgid "Shared Links"
-msgstr "Jaetut linkit"
-
-#: mod/network.php:981
-msgid "Interesting Links"
-msgstr "Kiinnostavat linkit"
-
-#: mod/network.php:989
-msgid "Starred"
-msgstr "Tähtimerkitty"
-
-#: mod/network.php:992
-msgid "Favourite Posts"
-msgstr "Lempijulkaisut"
-
 #: mod/crepair.php:87
 msgid "Contact settings applied."
 msgstr "Kontaktiasetukset tallennettu."
@@ -3579,8 +3122,8 @@ msgid ""
 "entries from this contact."
 msgstr ""
 
-#: mod/crepair.php:158 mod/admin.php:494 mod/admin.php:1811 mod/admin.php:1822
-#: mod/admin.php:1835 mod/admin.php:1851 mod/settings.php:671
+#: mod/crepair.php:158 mod/admin.php:494 mod/admin.php:1816 mod/admin.php:1827
+#: mod/admin.php:1840 mod/admin.php:1856 mod/settings.php:671
 #: mod/settings.php:697
 msgid "Name"
 msgstr "Nimi"
@@ -3805,7 +3348,7 @@ msgstr "Poista viesti"
 
 #: mod/message.php:380 mod/message.php:481
 msgid "D, d M Y - g:i A"
-msgstr ""
+msgstr "D, j.n.Y - H:i"
 
 #: mod/message.php:395 mod/message.php:478
 msgid "Delete conversation"
@@ -3843,79 +3386,6 @@ msgid_plural "%d messages"
 msgstr[0] "%d viesti"
 msgstr[1] "%d viestiä"
 
-#: mod/group.php:36
-msgid "Group created."
-msgstr "Ryhmä luotu."
-
-#: mod/group.php:42
-msgid "Could not create group."
-msgstr "Ryhmää ei voitu luoda."
-
-#: mod/group.php:56 mod/group.php:157
-msgid "Group not found."
-msgstr "Ryhmää ei löytynyt."
-
-#: mod/group.php:70
-msgid "Group name changed."
-msgstr "Ryhmän nimi muutettu."
-
-#: mod/group.php:97
-msgid "Save Group"
-msgstr "Tallenna ryhmä"
-
-#: mod/group.php:102
-msgid "Create a group of contacts/friends."
-msgstr "Luo kontakti/kaveriryhmä"
-
-#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421
-msgid "Group Name: "
-msgstr "Ryhmän nimi:"
-
-#: mod/group.php:127
-msgid "Group removed."
-msgstr "Ryhmä poistettu."
-
-#: mod/group.php:129
-msgid "Unable to remove group."
-msgstr "Ryhmää ei voida poistaa."
-
-#: mod/group.php:192
-msgid "Delete Group"
-msgstr "Poista ryhmä"
-
-#: mod/group.php:198
-msgid "Group Editor"
-msgstr "Ryhmien muokkausta"
-
-#: mod/group.php:203
-msgid "Edit Group Name"
-msgstr "Muokkaa ryhmän nimeä"
-
-#: mod/group.php:213
-msgid "Members"
-msgstr "Jäsenet"
-
-#: mod/group.php:229
-msgid "Remove contact from group"
-msgstr "Poista kontakti ryhmästä"
-
-#: mod/group.php:253
-msgid "Add contact to group"
-msgstr "Lisää kontakti ryhmään"
-
-#: mod/openid.php:29
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID -protokollavirhe. Tunnusta ei vastaanotettu."
-
-#: mod/openid.php:66
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "Käyttäjätiliä ei löytynyt. Rekisteröityminen OpenID:n kautta ei ole sallittua tällä sivustolla."
-
-#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:135
-msgid "Login failed."
-msgstr "Kirjautuminen epäonnistui"
-
 #: mod/admin.php:107
 msgid "Theme settings updated."
 msgstr "Teeman asetukset päivitetty."
@@ -3928,7 +3398,7 @@ msgstr "Tietoja"
 msgid "Overview"
 msgstr "Yleiskatsaus"
 
-#: mod/admin.php:182 mod/admin.php:722
+#: mod/admin.php:182 mod/admin.php:717
 msgid "Federation Statistics"
 msgstr "Liiton tilastotiedot"
 
@@ -3936,19 +3406,19 @@ msgstr "Liiton tilastotiedot"
 msgid "Configuration"
 msgstr "Kokoonpano"
 
-#: mod/admin.php:184 mod/admin.php:1357
+#: mod/admin.php:184 mod/admin.php:1356
 msgid "Site"
 msgstr "Sivusto"
 
-#: mod/admin.php:185 mod/admin.php:1289 mod/admin.php:1817 mod/admin.php:1833
+#: mod/admin.php:185 mod/admin.php:1285 mod/admin.php:1822 mod/admin.php:1838
 msgid "Users"
 msgstr "Käyttäjät"
 
-#: mod/admin.php:186 mod/admin.php:1933 mod/admin.php:1993 mod/settings.php:87
+#: mod/admin.php:186 mod/admin.php:1938 mod/admin.php:1998 mod/settings.php:87
 msgid "Addons"
 msgstr "Lisäosat"
 
-#: mod/admin.php:187 mod/admin.php:2202 mod/admin.php:2246
+#: mod/admin.php:187 mod/admin.php:2208 mod/admin.php:2252
 msgid "Themes"
 msgstr "Teemat"
 
@@ -3969,7 +3439,7 @@ msgstr "Tietokanta"
 msgid "DB updates"
 msgstr "Tietokannan päivitykset"
 
-#: mod/admin.php:192 mod/admin.php:757
+#: mod/admin.php:192 mod/admin.php:752
 msgid "Inspect Queue"
 msgstr "Tarkista jono"
 
@@ -3989,11 +3459,11 @@ msgstr "Palvelimien estolista"
 msgid "Delete Item"
 msgstr "Poista kohde"
 
-#: mod/admin.php:197 mod/admin.php:198 mod/admin.php:2320
+#: mod/admin.php:197 mod/admin.php:198 mod/admin.php:2326
 msgid "Logs"
 msgstr "Lokit"
 
-#: mod/admin.php:199 mod/admin.php:2387
+#: mod/admin.php:199 mod/admin.php:2393
 msgid "View Logs"
 msgstr "Katso lokit"
 
@@ -4026,9 +3496,9 @@ msgid "User registrations waiting for confirmation"
 msgstr "Käyttäjärekisteröinnit odottavat hyväksyntää"
 
 #: mod/admin.php:303 mod/admin.php:365 mod/admin.php:482 mod/admin.php:524
-#: mod/admin.php:721 mod/admin.php:756 mod/admin.php:852 mod/admin.php:1356
-#: mod/admin.php:1816 mod/admin.php:1932 mod/admin.php:1992 mod/admin.php:2201
-#: mod/admin.php:2245 mod/admin.php:2319 mod/admin.php:2386
+#: mod/admin.php:716 mod/admin.php:751 mod/admin.php:847 mod/admin.php:1355
+#: mod/admin.php:1821 mod/admin.php:1937 mod/admin.php:1997 mod/admin.php:2207
+#: mod/admin.php:2251 mod/admin.php:2325 mod/admin.php:2392
 msgid "Administration"
 msgstr "Ylläpito"
 
@@ -4174,7 +3644,7 @@ msgstr ""
 msgid "Block Remote Contact"
 msgstr "Estä etäkontakti"
 
-#: mod/admin.php:486 mod/admin.php:1819
+#: mod/admin.php:486 mod/admin.php:1824
 msgid "select all"
 msgstr "valitse kaikki"
 
@@ -4238,67 +3708,67 @@ msgstr "GUID"
 msgid "The GUID of the item you want to delete."
 msgstr "Poistettavan kohteen GUID."
 
-#: mod/admin.php:568
+#: mod/admin.php:563
 msgid "Item marked for deletion."
 msgstr "Kohde merkitty poistettavaksi."
 
-#: mod/admin.php:639
+#: mod/admin.php:634
 msgid "unknown"
 msgstr "tuntematon"
 
-#: mod/admin.php:715
+#: mod/admin.php:710
 msgid ""
 "This page offers you some numbers to the known part of the federated social "
 "network your Friendica node is part of. These numbers are not complete but "
 "only reflect the part of the network your node is aware of."
 msgstr ""
 
-#: mod/admin.php:716
+#: mod/admin.php:711
 msgid ""
 "The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
 "will improve the data displayed here."
 msgstr ""
 
-#: mod/admin.php:728
+#: mod/admin.php:723
 #, php-format
 msgid ""
 "Currently this node is aware of %d nodes with %d registered users from the "
 "following platforms:"
 msgstr "Tällä hetkellä tämä solmu havaitsee %d muita solmuja joissa %d rekisteröityneitä käyttäjiä. Tarkemmat tiedot:"
 
-#: mod/admin.php:759
+#: mod/admin.php:754
 msgid "ID"
 msgstr ""
 
-#: mod/admin.php:760
+#: mod/admin.php:755
 msgid "Recipient Name"
 msgstr "Vastaanottajan nimi"
 
-#: mod/admin.php:761
+#: mod/admin.php:756
 msgid "Recipient Profile"
 msgstr "Vastaanottajan profiili"
 
-#: mod/admin.php:762 view/theme/frio/theme.php:266
+#: mod/admin.php:757 view/theme/frio/theme.php:266
 #: src/Core/NotificationsManager.php:178 src/Content/Nav.php:183
 msgid "Network"
 msgstr "Uutisvirta"
 
-#: mod/admin.php:763
+#: mod/admin.php:758
 msgid "Created"
 msgstr "Luotu"
 
-#: mod/admin.php:764
+#: mod/admin.php:759
 msgid "Last Tried"
 msgstr "Viimeksi yritetty"
 
-#: mod/admin.php:765
+#: mod/admin.php:760
 msgid ""
 "This page lists the content of the queue for outgoing postings. These are "
 "postings the initial delivery failed for. They will be resend later and "
 "eventually deleted if the delivery fails permanently."
 msgstr ""
 
-#: mod/admin.php:789
+#: mod/admin.php:784
 #, php-format
 msgid ""
 "Your DB still runs with MyISAM tables. You should change the engine type to "
@@ -4309,488 +3779,492 @@ msgid ""
 " an automatic conversion.<br />"
 msgstr ""
 
-#: mod/admin.php:796
+#: mod/admin.php:791
 #, php-format
 msgid ""
 "There is a new version of Friendica available for download. Your current "
 "version is %1$s, upstream version is %2$s"
 msgstr ""
 
-#: mod/admin.php:806
+#: mod/admin.php:801
 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:812
+#: mod/admin.php:807
 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:815
+#: mod/admin.php:810
 #, php-format
 msgid ""
 "The last worker execution was on %s UTC. This is older than one hour. Please"
 " check your crontab settings."
 msgstr "Viimeisin worker -käynnistys tapahtui klo %s UTC, eli yli tunti sitten. Tarkista crontab -asetukset."
 
-#: mod/admin.php:820
+#: mod/admin.php:815
 msgid "Normal Account"
 msgstr "Perustili"
 
-#: mod/admin.php:821
+#: mod/admin.php:816
 msgid "Automatic Follower Account"
 msgstr "Automaattinen seuraajatili"
 
-#: mod/admin.php:822
+#: mod/admin.php:817
 msgid "Public Forum Account"
 msgstr "Julkinen foorumitili"
 
-#: mod/admin.php:823
+#: mod/admin.php:818
 msgid "Automatic Friend Account"
 msgstr "Automaattinen kaveritili"
 
-#: mod/admin.php:824
+#: mod/admin.php:819
 msgid "Blog Account"
 msgstr "Blogitili"
 
-#: mod/admin.php:825
+#: mod/admin.php:820
 msgid "Private Forum Account"
 msgstr "Yksityinen foorumitili"
 
-#: mod/admin.php:847
+#: mod/admin.php:842
 msgid "Message queues"
 msgstr "Viestijonot"
 
-#: mod/admin.php:853
+#: mod/admin.php:848
 msgid "Summary"
 msgstr "Yhteenveto"
 
-#: mod/admin.php:855
+#: mod/admin.php:850
 msgid "Registered users"
 msgstr "Rekisteröityneet käyttäjät"
 
-#: mod/admin.php:857
+#: mod/admin.php:852
 msgid "Pending registrations"
 msgstr "Vireillä olevat rekisteröinnit"
 
-#: mod/admin.php:858
+#: mod/admin.php:853
 msgid "Version"
 msgstr "Versio"
 
-#: mod/admin.php:863
+#: mod/admin.php:858
 msgid "Active addons"
 msgstr "Käytössäolevat lisäosat"
 
-#: mod/admin.php:894
+#: mod/admin.php:889
 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:1224
+#: mod/admin.php:1220
 msgid "Site settings updated."
 msgstr "Sivuston asetukset päivitettiin."
 
-#: mod/admin.php:1251 mod/settings.php:897
+#: mod/admin.php:1247 mod/settings.php:897
 msgid "No special theme for mobile devices"
 msgstr "Ei mobiiliteemaa"
 
-#: mod/admin.php:1280
+#: mod/admin.php:1276
 msgid "No community page for local users"
 msgstr ""
 
-#: mod/admin.php:1281
+#: mod/admin.php:1277
 msgid "No community page"
 msgstr "Ei yhteisösivua"
 
-#: mod/admin.php:1282
+#: mod/admin.php:1278
 msgid "Public postings from users of this site"
 msgstr "Julkiset julkaisut tämän sivuston käyttäjiltä"
 
-#: mod/admin.php:1283
+#: mod/admin.php:1279
 msgid "Public postings from the federated network"
 msgstr "Julkiset julkaisut liittoutuneelta verkolta"
 
-#: mod/admin.php:1284
+#: mod/admin.php:1280
 msgid "Public postings from local users and the federated network"
 msgstr "Julkiset julkaisut tältä sivustolta ja liittoutuneelta verkolta"
 
-#: mod/admin.php:1290
+#: mod/admin.php:1286
 msgid "Users, Global Contacts"
 msgstr "Käyttäjät, maailmanlaajuiset kontaktit"
 
-#: mod/admin.php:1291
+#: mod/admin.php:1287
 msgid "Users, Global Contacts/fallback"
 msgstr ""
 
-#: mod/admin.php:1295
+#: mod/admin.php:1291
 msgid "One month"
 msgstr "Yksi kuukausi"
 
-#: mod/admin.php:1296
+#: mod/admin.php:1292
 msgid "Three months"
 msgstr "Kolme kuukautta"
 
-#: mod/admin.php:1297
+#: mod/admin.php:1293
 msgid "Half a year"
 msgstr "Puoli vuotta"
 
-#: mod/admin.php:1298
+#: mod/admin.php:1294
 msgid "One year"
 msgstr "Yksi vuosi"
 
-#: mod/admin.php:1303
+#: mod/admin.php:1299
 msgid "Multi user instance"
 msgstr "Monen käyttäjän instanssi"
 
-#: mod/admin.php:1326
+#: mod/admin.php:1325
 msgid "Closed"
 msgstr "Suljettu"
 
-#: mod/admin.php:1327
+#: mod/admin.php:1326
 msgid "Requires approval"
 msgstr "Edellyttää hyväksyntää"
 
-#: mod/admin.php:1328
+#: mod/admin.php:1327
 msgid "Open"
 msgstr "Avoin"
 
-#: mod/admin.php:1332
+#: mod/admin.php:1331
 msgid "No SSL policy, links will track page SSL state"
 msgstr ""
 
-#: mod/admin.php:1333
+#: mod/admin.php:1332
 msgid "Force all links to use SSL"
 msgstr "Pakota kaikki linkit käyttämään SSL-yhteyttä"
 
-#: mod/admin.php:1334
+#: mod/admin.php:1333
 msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr ""
 
-#: mod/admin.php:1338
+#: mod/admin.php:1337
 msgid "Don't check"
 msgstr "Älä tarkista"
 
-#: mod/admin.php:1339
+#: mod/admin.php:1338
 msgid "check the stable version"
 msgstr ""
 
-#: mod/admin.php:1340
+#: mod/admin.php:1339
 msgid "check the development version"
 msgstr ""
 
-#: mod/admin.php:1359
+#: mod/admin.php:1358
 msgid "Republish users to directory"
 msgstr ""
 
-#: mod/admin.php:1360 mod/register.php:267
+#: mod/admin.php:1359 mod/register.php:267
 msgid "Registration"
 msgstr "Rekisteröityminen"
 
-#: mod/admin.php:1361
+#: mod/admin.php:1360
 msgid "File upload"
 msgstr "Tiedoston lataus"
 
-#: mod/admin.php:1362
+#: mod/admin.php:1361
 msgid "Policies"
 msgstr "Käytännöt"
 
-#: mod/admin.php:1364
+#: mod/admin.php:1363
 msgid "Auto Discovered Contact Directory"
 msgstr ""
 
-#: mod/admin.php:1365
+#: mod/admin.php:1364
 msgid "Performance"
 msgstr "Suoritus"
 
-#: mod/admin.php:1366
+#: mod/admin.php:1365
 msgid "Worker"
 msgstr "Worker"
 
-#: mod/admin.php:1367
+#: mod/admin.php:1366
 msgid "Message Relay"
 msgstr "Viestirele"
 
-#: mod/admin.php:1368
+#: mod/admin.php:1367
 msgid ""
 "Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr ""
 
-#: mod/admin.php:1371
+#: mod/admin.php:1370
 msgid "Site name"
 msgstr "Sivuston nimi"
 
-#: mod/admin.php:1372
+#: mod/admin.php:1371
 msgid "Host name"
 msgstr "Palvelimen nimi"
 
-#: mod/admin.php:1373
+#: mod/admin.php:1372
 msgid "Sender Email"
 msgstr "Lähettäjän sähköposti"
 
-#: mod/admin.php:1373
+#: mod/admin.php:1372
 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:1374
+#: mod/admin.php:1373
 msgid "Banner/Logo"
 msgstr "Banneri/logo"
 
-#: mod/admin.php:1375
+#: mod/admin.php:1374
 msgid "Shortcut icon"
 msgstr "Pikakuvake"
 
-#: mod/admin.php:1375
+#: mod/admin.php:1374
 msgid "Link to an icon that will be used for browsers."
 msgstr "Linkki kuvakkeeseen jota selaimet saa käyttää."
 
-#: mod/admin.php:1376
+#: mod/admin.php:1375
 msgid "Touch icon"
 msgstr "Kosketusnäyttökuvake"
 
-#: mod/admin.php:1376
+#: mod/admin.php:1375
 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:1377
+#: mod/admin.php:1376
 msgid "Additional Info"
 msgstr "Lisätietoja"
 
-#: mod/admin.php:1377
+#: mod/admin.php:1376
 #, php-format
 msgid ""
 "For public servers: you can add additional information here that will be "
 "listed at %s/servers."
 msgstr ""
 
-#: mod/admin.php:1378
+#: mod/admin.php:1377
 msgid "System language"
 msgstr "Järjestelmän kieli"
 
-#: mod/admin.php:1379
+#: mod/admin.php:1378
 msgid "System theme"
 msgstr "Järjestelmäteema"
 
-#: mod/admin.php:1379
+#: mod/admin.php:1378
 msgid ""
 "Default system theme - may be over-ridden by user profiles - <a href='#' "
 "id='cnftheme'>change theme settings</a>"
 msgstr ""
 
-#: mod/admin.php:1380
+#: mod/admin.php:1379
 msgid "Mobile system theme"
 msgstr "Mobiili järjestelmäteema"
 
-#: mod/admin.php:1380
+#: mod/admin.php:1379
 msgid "Theme for mobile devices"
 msgstr "Mobiiliteema"
 
-#: mod/admin.php:1381
+#: mod/admin.php:1380
 msgid "SSL link policy"
 msgstr "SSL-linkkikäytäntö"
 
-#: mod/admin.php:1381
+#: mod/admin.php:1380
 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:1382
+#: mod/admin.php:1381
 msgid "Force SSL"
 msgstr "Pakoita SSL-yhteyden käyttöä"
 
-#: mod/admin.php:1382
+#: mod/admin.php:1381
 msgid ""
 "Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
 " to endless loops."
 msgstr ""
 
-#: mod/admin.php:1383
+#: mod/admin.php:1382
 msgid "Hide help entry from navigation menu"
 msgstr ""
 
-#: mod/admin.php:1383
+#: mod/admin.php:1382
 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:1384
+#: mod/admin.php:1383
 msgid "Single user instance"
 msgstr "Yksittäisen käyttäjän instanssi"
 
-#: mod/admin.php:1384
+#: mod/admin.php:1383
 msgid "Make this instance multi-user or single-user for the named user"
 msgstr ""
 
-#: mod/admin.php:1385
+#: mod/admin.php:1384
 msgid "Maximum image size"
 msgstr "Suurin kuvakoko"
 
-#: mod/admin.php:1385
+#: mod/admin.php:1384
 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:1386
+#: mod/admin.php:1385
 msgid "Maximum image length"
 msgstr "Suurin kuvapituus"
 
-#: mod/admin.php:1386
+#: mod/admin.php:1385
 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:1387
+#: mod/admin.php:1386
 msgid "JPEG image quality"
 msgstr "JPEG-kuvanlaatu"
 
-#: mod/admin.php:1387
+#: mod/admin.php:1386
 msgid ""
 "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
 "100, which is full quality."
 msgstr "Ladatut JPEG-kuvat tallennetaan tällä laatuasetuksella [0-100]. Oletus on 100, eli korkein laatu."
 
-#: mod/admin.php:1389
+#: mod/admin.php:1388
 msgid "Register policy"
 msgstr "Rekisteröintipolitiikka"
 
-#: mod/admin.php:1390
+#: mod/admin.php:1389
 msgid "Maximum Daily Registrations"
 msgstr "Päivittäinen rekisteröitymisraja"
 
-#: mod/admin.php:1390
+#: mod/admin.php:1389
 msgid ""
 "If registration is permitted above, this sets the maximum number of new user"
 " registrations to accept per day.  If register is set to closed, this "
 "setting has no effect."
 msgstr "Mikäli rekisteröityminen on sallittu, tämä asettaa enimmäismäärä uusia rekisteröitymisiä päivässä. Jos reksiteröityminen ei ole sallittu, tällä asetuksella ei ole vaikutusta."
 
-#: mod/admin.php:1391
+#: mod/admin.php:1390
 msgid "Register text"
 msgstr "Rekisteröitymisteksti"
 
-#: mod/admin.php:1391
+#: mod/admin.php:1390
 msgid ""
 "Will be displayed prominently on the registration page. You can use BBCode "
 "here."
 msgstr "Näkyvästi esillä rekisteröitymissivulla. Voit käyttää BBCodeia."
 
-#: mod/admin.php:1392
+#: mod/admin.php:1391
 msgid "Accounts abandoned after x days"
 msgstr "Käyttäjätilit hylätään X päivän jälkeen"
 
-#: mod/admin.php:1392
+#: mod/admin.php:1391
 msgid ""
 "Will not waste system resources polling external sites for abandonded "
 "accounts. Enter 0 for no time limit."
 msgstr ""
 
-#: mod/admin.php:1393
+#: mod/admin.php:1392
 msgid "Allowed friend domains"
 msgstr "Sallittuja kaveri-verkkotunnuksia"
 
-#: mod/admin.php:1393
+#: mod/admin.php:1392
 msgid ""
 "Comma separated list of domains which are allowed to establish friendships "
 "with this site. Wildcards are accepted. Empty to allow any domains"
 msgstr ""
 
-#: mod/admin.php:1394
+#: mod/admin.php:1393
 msgid "Allowed email domains"
 msgstr "Sallittuja sähköposti-verkkotunnuksia"
 
-#: mod/admin.php:1394
+#: mod/admin.php:1393
 msgid ""
 "Comma separated list of domains which are allowed in email addresses for "
 "registrations to this site. Wildcards are accepted. Empty to allow any "
 "domains"
 msgstr ""
 
-#: mod/admin.php:1395
+#: mod/admin.php:1394
 msgid "No OEmbed rich content"
 msgstr ""
 
-#: mod/admin.php:1395
+#: mod/admin.php:1394
 msgid ""
 "Don't show the rich content (e.g. embedded PDF), except from the domains "
 "listed below."
 msgstr ""
 
-#: mod/admin.php:1396
+#: mod/admin.php:1395
 msgid "Allowed OEmbed domains"
 msgstr "Sallittuja OEmbed -verkkotunnuksia"
 
-#: mod/admin.php:1396
+#: mod/admin.php:1395
 msgid ""
 "Comma separated list of domains which oembed content is allowed to be "
 "displayed. Wildcards are accepted."
 msgstr ""
 
-#: mod/admin.php:1397
+#: mod/admin.php:1396
 msgid "Block public"
 msgstr "Estä vierailijat"
 
-#: mod/admin.php:1397
+#: mod/admin.php:1396
 msgid ""
 "Check to block public access to all otherwise public personal pages on this "
 "site unless you are currently logged in."
 msgstr ""
 
-#: mod/admin.php:1398
+#: mod/admin.php:1397
 msgid "Force publish"
 msgstr ""
 
-#: mod/admin.php:1398
+#: mod/admin.php:1397
 msgid ""
 "Check to force all profiles on this site to be listed in the site directory."
 msgstr ""
 
-#: mod/admin.php:1399
+#: mod/admin.php:1397
+msgid "Enabling this may violate privacy laws like the GDPR"
+msgstr ""
+
+#: mod/admin.php:1398
 msgid "Global directory URL"
 msgstr "Maailmanlaajuisen hakemiston URL-osoite"
 
-#: mod/admin.php:1399
+#: mod/admin.php:1398
 msgid ""
 "URL to the global directory. If this is not set, the global directory is "
 "completely unavailable to the application."
 msgstr ""
 
-#: mod/admin.php:1400
+#: mod/admin.php:1399
 msgid "Private posts by default for new users"
 msgstr ""
 
-#: mod/admin.php:1400
+#: mod/admin.php:1399
 msgid ""
 "Set default post permissions for all new members to the default privacy "
 "group rather than public."
 msgstr ""
 
-#: mod/admin.php:1401
+#: mod/admin.php:1400
 msgid "Don't include post content in email notifications"
 msgstr "Älä lisää julkaisun sisältö sähköposti-ilmoitukseen"
 
-#: mod/admin.php:1401
+#: mod/admin.php:1400
 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:1402
+#: mod/admin.php:1401
 msgid "Disallow public access to addons listed in the apps menu."
 msgstr ""
 
-#: mod/admin.php:1402
+#: mod/admin.php:1401
 msgid ""
 "Checking this box will restrict addons listed in the apps menu to members "
 "only."
 msgstr ""
 
-#: mod/admin.php:1403
+#: mod/admin.php:1402
 msgid "Don't embed private images in posts"
 msgstr "Älä upota yksityisiä kuvia julkaisuissa"
 
-#: mod/admin.php:1403
+#: mod/admin.php:1402
 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 "
@@ -4798,210 +4272,210 @@ msgid ""
 "while."
 msgstr ""
 
-#: mod/admin.php:1404
+#: mod/admin.php:1403
 msgid "Allow Users to set remote_self"
 msgstr ""
 
-#: mod/admin.php:1404
+#: mod/admin.php:1403
 msgid ""
 "With checking this, every user is allowed to mark every contact as a "
 "remote_self in the repair contact dialog. Setting this flag on a contact "
 "causes mirroring every posting of that contact in the users stream."
 msgstr ""
 
-#: mod/admin.php:1405
+#: mod/admin.php:1404
 msgid "Block multiple registrations"
 msgstr ""
 
-#: mod/admin.php:1405
+#: mod/admin.php:1404
 msgid "Disallow users to register additional accounts for use as pages."
 msgstr ""
 
-#: mod/admin.php:1406
+#: mod/admin.php:1405
 msgid "OpenID support"
 msgstr "OpenID-tuki"
 
-#: mod/admin.php:1406
+#: mod/admin.php:1405
 msgid "OpenID support for registration and logins."
 msgstr "OpenID-tuki rekisteröitymiseen ja kirjautumiseen"
 
-#: mod/admin.php:1407
+#: mod/admin.php:1406
 msgid "Fullname check"
 msgstr "Koko nimi tarkistus"
 
-#: mod/admin.php:1407
+#: mod/admin.php:1406
 msgid ""
 "Force users to register with a space between firstname and lastname in Full "
 "name, as an antispam measure"
 msgstr ""
 
-#: mod/admin.php:1408
+#: mod/admin.php:1407
 msgid "Community pages for visitors"
 msgstr "Yhteisösivu vieraille"
 
-#: mod/admin.php:1408
+#: mod/admin.php:1407
 msgid ""
 "Which community pages should be available for visitors. Local users always "
 "see both pages."
 msgstr ""
 
-#: mod/admin.php:1409
+#: mod/admin.php:1408
 msgid "Posts per user on community page"
 msgstr ""
 
-#: mod/admin.php:1409
+#: mod/admin.php:1408
 msgid ""
 "The maximum number of posts per user on the community page. (Not valid for "
 "'Global Community')"
 msgstr "Enimmäismäärä julkaisuja käyttäjää kohden yhteisösivulla. (Ei koske maailmanlaajuista yhteisösivua.)"
 
-#: mod/admin.php:1410
+#: mod/admin.php:1409
 msgid "Enable OStatus support"
 msgstr "Salli OStatus-tuki"
 
-#: mod/admin.php:1410
+#: mod/admin.php:1409
 msgid ""
 "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
 "communications in OStatus are public, so privacy warnings will be "
 "occasionally displayed."
 msgstr ""
 
-#: mod/admin.php:1411
+#: mod/admin.php:1410
 msgid "Only import OStatus threads from our contacts"
 msgstr "Ainoastaan tuo OStatus -ketjuja kontakteiltamme"
 
-#: mod/admin.php:1411
+#: mod/admin.php:1410
 msgid ""
 "Normally we import every content from our OStatus contacts. With this option"
 " we only store threads that are started by a contact that is known on our "
 "system."
 msgstr ""
 
-#: mod/admin.php:1412
+#: mod/admin.php:1411
 msgid "OStatus support can only be enabled if threading is enabled."
 msgstr "OStatus-tuki voidaan ottaa käyttöön ainoastaan jos ketjuttaminen on jo otettu käyttöön."
 
-#: mod/admin.php:1414
+#: mod/admin.php:1413
 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:1415
+#: mod/admin.php:1414
 msgid "Enable Diaspora support"
 msgstr "Salli Diaspora-tuki"
 
-#: mod/admin.php:1415
+#: mod/admin.php:1414
 msgid "Provide built-in Diaspora network compatibility."
 msgstr "Ota käyttöön Diaspora-yhteensopivuus"
 
-#: mod/admin.php:1416
+#: mod/admin.php:1415
 msgid "Only allow Friendica contacts"
 msgstr "Salli ainoastaan Friendica -kontakteja"
 
-#: mod/admin.php:1416
+#: mod/admin.php:1415
 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:1417
+#: mod/admin.php:1416
 msgid "Verify SSL"
 msgstr "Vahvista SSL"
 
-#: mod/admin.php:1417
+#: mod/admin.php:1416
 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:1418
+#: mod/admin.php:1417
 msgid "Proxy user"
 msgstr "Välityspalvelimen käyttäjä"
 
-#: mod/admin.php:1419
+#: mod/admin.php:1418
 msgid "Proxy URL"
 msgstr "Välityspalvelimen osoite"
 
-#: mod/admin.php:1420
+#: mod/admin.php:1419
 msgid "Network timeout"
 msgstr "Verkon aikakatkaisu"
 
-#: mod/admin.php:1420
+#: mod/admin.php:1419
 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr ""
 
-#: mod/admin.php:1421
+#: mod/admin.php:1420
 msgid "Maximum Load Average"
 msgstr "Kuorman enimmäiskeksiarvo"
 
-#: mod/admin.php:1421
+#: mod/admin.php:1420
 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:1422
+#: mod/admin.php:1421
 msgid "Maximum Load Average (Frontend)"
 msgstr "Kuorman enimmäiskeskiarvo (Frontend)"
 
-#: mod/admin.php:1422
+#: mod/admin.php:1421
 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:1423
+#: mod/admin.php:1422
 msgid "Minimal Memory"
 msgstr ""
 
-#: mod/admin.php:1423
+#: mod/admin.php:1422
 msgid ""
 "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
 "default 0 (deactivated)."
 msgstr ""
 
-#: mod/admin.php:1424
+#: mod/admin.php:1423
 msgid "Maximum table size for optimization"
 msgstr "Taulukon enimmäiskoko optimointia varten"
 
-#: mod/admin.php:1424
+#: mod/admin.php:1423
 msgid ""
 "Maximum table size (in MB) for the automatic optimization. Enter -1 to "
 "disable it."
 msgstr ""
 
-#: mod/admin.php:1425
+#: mod/admin.php:1424
 msgid "Minimum level of fragmentation"
 msgstr ""
 
-#: mod/admin.php:1425
+#: mod/admin.php:1424
 msgid ""
 "Minimum fragmenation level to start the automatic optimization - default "
 "value is 30%."
 msgstr ""
 
-#: mod/admin.php:1427
+#: mod/admin.php:1426
 msgid "Periodical check of global contacts"
 msgstr ""
 
-#: mod/admin.php:1427
+#: mod/admin.php:1426
 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:1428
+#: mod/admin.php:1427
 msgid "Days between requery"
 msgstr ""
 
-#: mod/admin.php:1428
+#: mod/admin.php:1427
 msgid "Number of days after which a server is requeried for his contacts."
 msgstr ""
 
-#: mod/admin.php:1429
+#: mod/admin.php:1428
 msgid "Discover contacts from other servers"
 msgstr "Etsi kontakteja muilta palvelimilta"
 
-#: mod/admin.php:1429
+#: mod/admin.php:1428
 msgid ""
 "Periodically query other servers for contacts. You can choose between "
 "'users': the users on the remote system, 'Global Contacts': active contacts "
@@ -5011,32 +4485,32 @@ msgid ""
 "Global Contacts'."
 msgstr ""
 
-#: mod/admin.php:1430
+#: mod/admin.php:1429
 msgid "Timeframe for fetching global contacts"
 msgstr ""
 
-#: mod/admin.php:1430
+#: mod/admin.php:1429
 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:1431
+#: mod/admin.php:1430
 msgid "Search the local directory"
 msgstr "Paikallisluettelohaku"
 
-#: mod/admin.php:1431
+#: mod/admin.php:1430
 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:1433
+#: mod/admin.php:1432
 msgid "Publish server information"
 msgstr "Julkaise palvelintiedot"
 
-#: mod/admin.php:1433
+#: mod/admin.php:1432
 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 "
@@ -5044,50 +4518,50 @@ msgid ""
 " href='http://the-federation.info/'>the-federation.info</a> for details."
 msgstr ""
 
-#: mod/admin.php:1435
+#: mod/admin.php:1434
 msgid "Check upstream version"
 msgstr ""
 
-#: mod/admin.php:1435
+#: mod/admin.php:1434
 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:1436
+#: mod/admin.php:1435
 msgid "Suppress Tags"
 msgstr "Piilota tunnisteet"
 
-#: mod/admin.php:1436
+#: mod/admin.php:1435
 msgid "Suppress showing a list of hashtags at the end of the posting."
 msgstr "Piilota tunnistelista julkaisun lopussa."
 
-#: mod/admin.php:1437
+#: mod/admin.php:1436
 msgid "Clean database"
 msgstr "Siivoa tietokanta"
 
-#: mod/admin.php:1437
+#: mod/admin.php:1436
 msgid ""
 "Remove old remote items, orphaned database records and old content from some"
 " other helper tables."
 msgstr ""
 
-#: mod/admin.php:1438
+#: mod/admin.php:1437
 msgid "Lifespan of remote items"
 msgstr ""
 
-#: mod/admin.php:1438
+#: mod/admin.php:1437
 msgid ""
 "When the database cleanup is enabled, this defines the days after which "
 "remote items will be deleted. Own items, and marked or filed items are "
 "always kept. 0 disables this behaviour."
 msgstr ""
 
-#: mod/admin.php:1439
+#: mod/admin.php:1438
 msgid "Lifespan of unclaimed items"
 msgstr ""
 
-#: mod/admin.php:1439
+#: mod/admin.php:1438
 msgid ""
 "When the database cleanup is enabled, this defines the days after which "
 "unclaimed remote items (mostly content from the relay) will be deleted. "
@@ -5095,129 +4569,129 @@ msgid ""
 "items if set to 0."
 msgstr ""
 
-#: mod/admin.php:1440
+#: mod/admin.php:1439
 msgid "Path to item cache"
 msgstr ""
 
-#: mod/admin.php:1440
+#: mod/admin.php:1439
 msgid "The item caches buffers generated bbcode and external images."
 msgstr ""
 
-#: mod/admin.php:1441
+#: mod/admin.php:1440
 msgid "Cache duration in seconds"
 msgstr "Välimuistin kesto sekunteina"
 
-#: mod/admin.php:1441
+#: mod/admin.php:1440
 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:1442
+#: mod/admin.php:1441
 msgid "Maximum numbers of comments per post"
 msgstr "Julkaisun kommentiraja"
 
-#: mod/admin.php:1442
+#: mod/admin.php:1441
 msgid "How much comments should be shown for each post? Default value is 100."
 msgstr ""
 
-#: mod/admin.php:1443
+#: mod/admin.php:1442
 msgid "Temp path"
 msgstr "Väliaikaistiedostojen polku"
 
-#: mod/admin.php:1443
+#: mod/admin.php:1442
 msgid ""
 "If you have a restricted system where the webserver can't access the system "
 "temp path, enter another path here."
 msgstr "Mikäli verkkopalvelimesi ei voi käyttää järjestelmän väliaikaistiedostojen polkua, syötä toinen polku tähän."
 
-#: mod/admin.php:1444
+#: mod/admin.php:1443
 msgid "Base path to installation"
 msgstr "Asennuksen peruspolku"
 
-#: mod/admin.php:1444
+#: mod/admin.php:1443
 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:1445
+#: mod/admin.php:1444
 msgid "Disable picture proxy"
 msgstr ""
 
-#: mod/admin.php:1445
+#: mod/admin.php:1444
 msgid ""
 "The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
+" systems with very low bandwidth."
 msgstr ""
 
-#: mod/admin.php:1446
+#: mod/admin.php:1445
 msgid "Only search in tags"
 msgstr "Tunnistehaku"
 
-#: mod/admin.php:1446
+#: mod/admin.php:1445
 msgid "On large systems the text search can slow down the system extremely."
 msgstr ""
 
-#: mod/admin.php:1448
+#: mod/admin.php:1447
 msgid "New base url"
 msgstr "Uusi perusosoite"
 
-#: mod/admin.php:1448
+#: mod/admin.php:1447
 msgid ""
 "Change base url for this server. Sends relocate message to all Friendica and"
 " Diaspora* contacts of all users."
 msgstr "Vaihtaa tämän palvelimen perus-URL-osoitteen. Lähettää uudelleensijoitusviestit käyttäjien kaikille kontakteille Friendicassa ja Diasporassa*."
 
-#: mod/admin.php:1450
+#: mod/admin.php:1449
 msgid "RINO Encryption"
 msgstr "RINO-salaus"
 
-#: mod/admin.php:1450
+#: mod/admin.php:1449
 msgid "Encryption layer between nodes."
 msgstr "Salauskerros solmujen välillä."
 
-#: mod/admin.php:1450
+#: mod/admin.php:1449
 msgid "Enabled"
 msgstr "Käytössä"
 
-#: mod/admin.php:1452
+#: mod/admin.php:1451
 msgid "Maximum number of parallel workers"
 msgstr "Enimmäismäärä rinnakkaisia workereitä"
 
-#: mod/admin.php:1452
+#: mod/admin.php:1451
 msgid ""
 "On shared hosters set this to 2. On larger systems, values of 10 are great. "
 "Default value is 4."
 msgstr ""
 
-#: mod/admin.php:1453
+#: mod/admin.php:1452
 msgid "Don't use 'proc_open' with the worker"
 msgstr ""
 
-#: mod/admin.php:1453
+#: mod/admin.php:1452
 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:1454
+#: mod/admin.php:1453
 msgid "Enable fastlane"
 msgstr "Käytä fastlane"
 
-#: mod/admin.php:1454
+#: mod/admin.php:1453
 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:1455
+#: mod/admin.php:1454
 msgid "Enable frontend worker"
 msgstr "Ota Frontend Worker käyttöön"
 
-#: mod/admin.php:1455
+#: mod/admin.php:1454
 #, php-format
 msgid ""
 "When enabled the Worker process is triggered when backend access is "
@@ -5227,132 +4701,132 @@ msgid ""
 " on your server."
 msgstr ""
 
-#: mod/admin.php:1457
+#: mod/admin.php:1456
 msgid "Subscribe to relay"
 msgstr "Relen tilaus"
 
-#: mod/admin.php:1457
+#: mod/admin.php:1456
 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:1458
+#: mod/admin.php:1457
 msgid "Relay server"
 msgstr "Relepalvelin"
 
-#: mod/admin.php:1458
+#: mod/admin.php:1457
 msgid ""
 "Address of the relay server where public posts should be send to. For "
 "example https://relay.diasp.org"
 msgstr ""
 
-#: mod/admin.php:1459
+#: mod/admin.php:1458
 msgid "Direct relay transfer"
 msgstr "Suora releen siirto"
 
-#: mod/admin.php:1459
+#: mod/admin.php:1458
 msgid ""
 "Enables the direct transfer to other servers without using the relay servers"
 msgstr ""
 
-#: mod/admin.php:1460
+#: mod/admin.php:1459
 msgid "Relay scope"
 msgstr "Relen soveltamisala"
 
-#: mod/admin.php:1460
+#: mod/admin.php:1459
 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:1460
+#: mod/admin.php:1459
 msgid "all"
 msgstr "kaikki"
 
-#: mod/admin.php:1460
+#: mod/admin.php:1459
 msgid "tags"
 msgstr "tunnisteet"
 
-#: mod/admin.php:1461
+#: mod/admin.php:1460
 msgid "Server tags"
 msgstr "palvelintunnisteet"
 
-#: mod/admin.php:1461
+#: mod/admin.php:1460
 msgid "Comma separated list of tags for the 'tags' subscription."
 msgstr "Pilkulla erotettu tunnistelista tunnistetilausta varten."
 
-#: mod/admin.php:1462
+#: mod/admin.php:1461
 msgid "Allow user tags"
 msgstr "Salli käyttäjien tunnisteet"
 
-#: mod/admin.php:1462
+#: mod/admin.php:1461
 msgid ""
 "If enabled, the tags from the saved searches will used for the 'tags' "
 "subscription in addition to the 'relay_server_tags'."
 msgstr "Jos otettu käyttöön, tunnisteet tallennetuista hauista käytetään tunnistetilaukseen 'relay_server_tags'in lisäksi."
 
-#: mod/admin.php:1490
+#: mod/admin.php:1489
 msgid "Update has been marked successful"
 msgstr ""
 
-#: mod/admin.php:1497
+#: mod/admin.php:1496
 #, php-format
 msgid "Database structure update %s was successfully applied."
 msgstr "Tietokannan rakenteen %s-päivitys onnistui."
 
-#: mod/admin.php:1500
+#: mod/admin.php:1499
 #, 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:1513
+#: mod/admin.php:1515
 #, php-format
 msgid "Executing %s failed with error: %s"
 msgstr ""
 
-#: mod/admin.php:1515
+#: mod/admin.php:1517
 #, php-format
 msgid "Update %s was successfully applied."
 msgstr "%s-päivitys onnistui."
 
-#: mod/admin.php:1518
+#: mod/admin.php:1520
 #, php-format
 msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr ""
 
-#: mod/admin.php:1521
+#: mod/admin.php:1523
 #, php-format
 msgid "There was no additional update function %s that needed to be called."
 msgstr ""
 
-#: mod/admin.php:1541
+#: mod/admin.php:1546
 msgid "No failed updates."
 msgstr "Ei epäonnistuineita päivityksiä."
 
-#: mod/admin.php:1542
+#: mod/admin.php:1547
 msgid "Check database structure"
 msgstr "Tarkista tietokannan rakenne"
 
-#: mod/admin.php:1547
+#: mod/admin.php:1552
 msgid "Failed Updates"
 msgstr "Epäonnistuineita päivityksiä"
 
-#: mod/admin.php:1548
+#: mod/admin.php:1553
 msgid ""
 "This does not include updates prior to 1139, which did not return a status."
 msgstr ""
 
-#: mod/admin.php:1549
+#: mod/admin.php:1554
 msgid "Mark success (if update was manually applied)"
 msgstr ""
 
-#: mod/admin.php:1550
+#: mod/admin.php:1555
 msgid "Attempt to execute this update step automatically"
 msgstr ""
 
-#: mod/admin.php:1589
+#: mod/admin.php:1594
 #, php-format
 msgid ""
 "\n"
@@ -5360,7 +4834,7 @@ msgid ""
 "\t\t\t\tthe administrator of %2$s has set up an account for you."
 msgstr ""
 
-#: mod/admin.php:1592
+#: mod/admin.php:1597
 #, php-format
 msgid ""
 "\n"
@@ -5392,208 +4866,208 @@ msgid ""
 "\t\t\tThank you and welcome to %4$s."
 msgstr ""
 
-#: mod/admin.php:1626 src/Model/User.php:663
+#: mod/admin.php:1631 src/Model/User.php:665
 #, php-format
 msgid "Registration details for %s"
 msgstr ""
 
-#: mod/admin.php:1636
+#: mod/admin.php:1641
 #, 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:1642
+#: mod/admin.php:1647
 #, php-format
 msgid "%s user deleted"
 msgid_plural "%s users deleted"
 msgstr[0] "%s käyttäjä poistettu"
 msgstr[1] "%s käyttäjää poistettu"
 
-#: mod/admin.php:1689
+#: mod/admin.php:1694
 #, php-format
 msgid "User '%s' deleted"
 msgstr "Käyttäjä '%s' poistettu"
 
-#: mod/admin.php:1697
+#: mod/admin.php:1702
 #, php-format
 msgid "User '%s' unblocked"
 msgstr "Käyttäjä '%s' poistettu estolistalta"
 
-#: mod/admin.php:1697
+#: mod/admin.php:1702
 #, php-format
 msgid "User '%s' blocked"
 msgstr "Käyttäjä '%s' estetty"
 
-#: mod/admin.php:1754 mod/settings.php:1058
+#: mod/admin.php:1759 mod/settings.php:1058
 msgid "Normal Account Page"
 msgstr "Tavallinen käyttäjätili"
 
-#: mod/admin.php:1755 mod/settings.php:1062
+#: mod/admin.php:1760 mod/settings.php:1062
 msgid "Soapbox Page"
 msgstr "Saarnatuoli sivu"
 
-#: mod/admin.php:1756 mod/settings.php:1066
+#: mod/admin.php:1761 mod/settings.php:1066
 msgid "Public Forum"
 msgstr "Julkinen foorumi"
 
-#: mod/admin.php:1757 mod/settings.php:1070
+#: mod/admin.php:1762 mod/settings.php:1070
 msgid "Automatic Friend Page"
 msgstr ""
 
-#: mod/admin.php:1758
+#: mod/admin.php:1763
 msgid "Private Forum"
 msgstr "Yksityisfoorumi"
 
-#: mod/admin.php:1761 mod/settings.php:1042
+#: mod/admin.php:1766 mod/settings.php:1042
 msgid "Personal Page"
 msgstr "Henkilökohtainen sivu"
 
-#: mod/admin.php:1762 mod/settings.php:1046
+#: mod/admin.php:1767 mod/settings.php:1046
 msgid "Organisation Page"
 msgstr "Järjestön sivu"
 
-#: mod/admin.php:1763 mod/settings.php:1050
+#: mod/admin.php:1768 mod/settings.php:1050
 msgid "News Page"
 msgstr "Uutissivu"
 
-#: mod/admin.php:1764 mod/settings.php:1054
+#: mod/admin.php:1769 mod/settings.php:1054
 msgid "Community Forum"
 msgstr "Yhteisöfoorumi"
 
-#: mod/admin.php:1811 mod/admin.php:1822 mod/admin.php:1835 mod/admin.php:1853
+#: mod/admin.php:1816 mod/admin.php:1827 mod/admin.php:1840 mod/admin.php:1858
 #: src/Content/ContactSelector.php:82
 msgid "Email"
 msgstr "Sähköposti"
 
-#: mod/admin.php:1811 mod/admin.php:1835
+#: mod/admin.php:1816 mod/admin.php:1840
 msgid "Register date"
 msgstr "Rekisteripäivämäärä"
 
-#: mod/admin.php:1811 mod/admin.php:1835
+#: mod/admin.php:1816 mod/admin.php:1840
 msgid "Last login"
 msgstr "Viimeisin kirjautuminen"
 
-#: mod/admin.php:1811 mod/admin.php:1835
+#: mod/admin.php:1816 mod/admin.php:1840
 msgid "Last item"
 msgstr "Viimeisin kohde"
 
-#: mod/admin.php:1811
+#: mod/admin.php:1816
 msgid "Type"
 msgstr "Tyyppi"
 
-#: mod/admin.php:1818
+#: mod/admin.php:1823
 msgid "Add User"
 msgstr "Lisää käyttäjä"
 
-#: mod/admin.php:1820
+#: mod/admin.php:1825
 msgid "User registrations waiting for confirm"
 msgstr ""
 
-#: mod/admin.php:1821
+#: mod/admin.php:1826
 msgid "User waiting for permanent deletion"
 msgstr ""
 
-#: mod/admin.php:1822
+#: mod/admin.php:1827
 msgid "Request date"
 msgstr "Pyynnön päivämäärä"
 
-#: mod/admin.php:1823
+#: mod/admin.php:1828
 msgid "No registrations."
 msgstr "Ei rekisteröintejä."
 
-#: mod/admin.php:1824
+#: mod/admin.php:1829
 msgid "Note from the user"
 msgstr ""
 
-#: mod/admin.php:1825 mod/notifications.php:178 mod/notifications.php:262
+#: mod/admin.php:1830 mod/notifications.php:178 mod/notifications.php:262
 msgid "Approve"
 msgstr "Hyväksy"
 
-#: mod/admin.php:1826
+#: mod/admin.php:1831
 msgid "Deny"
 msgstr "Kieltäydy"
 
-#: mod/admin.php:1830
+#: mod/admin.php:1835
 msgid "Site admin"
 msgstr "Sivuston ylläpito"
 
-#: mod/admin.php:1831
+#: mod/admin.php:1836
 msgid "Account expired"
 msgstr "Tili vanhentunut"
 
-#: mod/admin.php:1834
+#: mod/admin.php:1839
 msgid "New User"
 msgstr "Uusi käyttäjä"
 
-#: mod/admin.php:1835
+#: mod/admin.php:1840
 msgid "Deleted since"
 msgstr "Poistettu"
 
-#: mod/admin.php:1840
+#: mod/admin.php:1845
 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:1841
+#: mod/admin.php:1846
 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:1851
+#: mod/admin.php:1856
 msgid "Name of the new user."
 msgstr "Uuden käyttäjän nimi."
 
-#: mod/admin.php:1852
+#: mod/admin.php:1857
 msgid "Nickname"
 msgstr "Lempinimi"
 
-#: mod/admin.php:1852
+#: mod/admin.php:1857
 msgid "Nickname of the new user."
 msgstr "Uuden käyttäjän lempinimi"
 
-#: mod/admin.php:1853
+#: mod/admin.php:1858
 msgid "Email address of the new user."
 msgstr "Uuden käyttäjän sähköpostiosoite."
 
-#: mod/admin.php:1895
+#: mod/admin.php:1900
 #, php-format
 msgid "Addon %s disabled."
 msgstr "Lisäosa %s poistettu käytöstä."
 
-#: mod/admin.php:1899
+#: mod/admin.php:1904
 #, php-format
 msgid "Addon %s enabled."
 msgstr "Lisäosa %s käytössä."
 
-#: mod/admin.php:1909 mod/admin.php:2158
+#: mod/admin.php:1914 mod/admin.php:2163
 msgid "Disable"
 msgstr "Poista käytöstä"
 
-#: mod/admin.php:1912 mod/admin.php:2161
+#: mod/admin.php:1917 mod/admin.php:2166
 msgid "Enable"
 msgstr "Ota käyttöön"
 
-#: mod/admin.php:1934 mod/admin.php:2203
+#: mod/admin.php:1939 mod/admin.php:2209
 msgid "Toggle"
 msgstr "Vaihda"
 
-#: mod/admin.php:1942 mod/admin.php:2212
+#: mod/admin.php:1947 mod/admin.php:2218
 msgid "Author: "
 msgstr "Tekijä"
 
-#: mod/admin.php:1943 mod/admin.php:2213
+#: mod/admin.php:1948 mod/admin.php:2219
 msgid "Maintainer: "
 msgstr "Ylläpitäjä:"
 
-#: mod/admin.php:1995
+#: mod/admin.php:2000
 msgid "Reload active addons"
 msgstr ""
 
-#: mod/admin.php:2000
+#: mod/admin.php:2005
 #, php-format
 msgid ""
 "There are currently no addons available on your node. You can find the "
@@ -5601,70 +5075,70 @@ msgid ""
 " the open addon registry at %2$s"
 msgstr ""
 
-#: mod/admin.php:2120
+#: mod/admin.php:2125
 msgid "No themes found."
 msgstr "Teemoja ei löytynyt."
 
-#: mod/admin.php:2194
+#: mod/admin.php:2200
 msgid "Screenshot"
 msgstr "Kuvakaappaus"
 
-#: mod/admin.php:2248
+#: mod/admin.php:2254
 msgid "Reload active themes"
 msgstr "Lataa aktiiviset teemat uudelleen"
 
-#: mod/admin.php:2253
+#: mod/admin.php:2259
 #, php-format
 msgid "No themes found on the system. They should be placed in %1$s"
 msgstr "Teemoja ei löytynyt järjestelmästä. Teemat tulisi laittaa kansioon %1$s"
 
-#: mod/admin.php:2254
+#: mod/admin.php:2260
 msgid "[Experimental]"
 msgstr "[Kokeellinen]"
 
-#: mod/admin.php:2255
+#: mod/admin.php:2261
 msgid "[Unsupported]"
 msgstr "[Ei tueta]"
 
-#: mod/admin.php:2279
+#: mod/admin.php:2285
 msgid "Log settings updated."
 msgstr "Lokiasetukset päivitetty."
 
-#: mod/admin.php:2311
+#: mod/admin.php:2317
 msgid "PHP log currently enabled."
 msgstr "PHP-loki käytössä"
 
-#: mod/admin.php:2313
+#: mod/admin.php:2319
 msgid "PHP log currently disabled."
 msgstr "PHP-loki pois käytöstä"
 
-#: mod/admin.php:2322
+#: mod/admin.php:2328
 msgid "Clear"
 msgstr "Tyhjennä"
 
-#: mod/admin.php:2326
+#: mod/admin.php:2332
 msgid "Enable Debugging"
 msgstr "Ota virheenkorjaustila käyttöön"
 
-#: mod/admin.php:2327
+#: mod/admin.php:2333
 msgid "Log file"
 msgstr "Lokitiedosto"
 
-#: mod/admin.php:2327
+#: mod/admin.php:2333
 msgid ""
 "Must be writable by web server. Relative to your Friendica top-level "
 "directory."
 msgstr ""
 
-#: mod/admin.php:2328
+#: mod/admin.php:2334
 msgid "Log level"
 msgstr "Lokitaso"
 
-#: mod/admin.php:2330
+#: mod/admin.php:2336
 msgid "PHP logging"
 msgstr "PHP-loki"
 
-#: mod/admin.php:2331
+#: mod/admin.php:2337
 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 "
@@ -5673,37 +5147,71 @@ msgid ""
 "'display_errors' is to enable these options, set to '0' to disable them."
 msgstr ""
 
-#: mod/admin.php:2362
+#: mod/admin.php:2368
 #, 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:2366
+#: mod/admin.php:2372
 #, 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/admin.php:2457 mod/admin.php:2458 mod/settings.php:767
+#: mod/admin.php:2463 mod/admin.php:2464 mod/settings.php:767
 msgid "Off"
 msgstr "Pois päältä"
 
-#: mod/admin.php:2457 mod/admin.php:2458 mod/settings.php:767
+#: mod/admin.php:2463 mod/admin.php:2464 mod/settings.php:767
 msgid "On"
 msgstr "Päällä"
 
-#: mod/admin.php:2458
+#: mod/admin.php:2464
 #, php-format
 msgid "Lock feature %s"
 msgstr "Lukitse ominaisuus %s"
 
-#: mod/admin.php:2466
+#: mod/admin.php:2472
 msgid "Manage Additional Features"
 msgstr "Hallitse lisäominaisuudet"
 
+#: mod/community.php:51
+msgid "Community option not available."
+msgstr "Yhteisö vaihtoehto ei saatavilla."
+
+#: mod/community.php:68
+msgid "Not available."
+msgstr "Ei saatavilla."
+
+#: mod/community.php:81
+msgid "Local Community"
+msgstr "Paikallinen yhteisö"
+
+#: mod/community.php:84
+msgid "Posts from local users on this server"
+msgstr "Tämän palvelimen julkaisut"
+
+#: mod/community.php:92
+msgid "Global Community"
+msgstr "Maailmanlaajuinen yhteisö"
+
+#: mod/community.php:95
+msgid "Posts from users of the whole federated network"
+msgstr "Maailmanlaajuisen verkon julkaisut"
+
+#: mod/community.php:141 mod/search.php:228
+msgid "No results."
+msgstr "Ei tuloksia."
+
+#: mod/community.php:185
+msgid ""
+"This community stream shows all public posts received by this node. They may"
+" not reflect the opinions of this node’s users."
+msgstr ""
+
 #: mod/dfrn_confirm.php:74 mod/profiles.php:39 mod/profiles.php:149
 #: mod/profiles.php:196 mod/profiles.php:525
 msgid "Profile not found."
@@ -5933,6 +5441,139 @@ msgid ""
 " bar."
 msgstr " - älä käytä tätä lomaketta. Kirjoita sen sijaan %s Diaspora-hakupalkkiisi."
 
+#: mod/events.php:105 mod/events.php:107
+msgid "Event can not end before it has started."
+msgstr "Tapahtuma ei voi päättyä ennen kuin on alkanut."
+
+#: 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:507
+msgid "Event details"
+msgstr "Tapahtuman tiedot"
+
+#: mod/events.php:508
+msgid "Starting date and Title are required."
+msgstr "Aloituspvm ja otsikko vaaditaan."
+
+#: mod/events.php:509 mod/events.php:510
+msgid "Event Starts:"
+msgstr "Tapahtuma alkaa:"
+
+#: mod/events.php:509 mod/events.php:521 mod/profiles.php:607
+msgid "Required"
+msgstr "Vaaditaan"
+
+#: mod/events.php:511 mod/events.php:527
+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:513 mod/events.php:514
+msgid "Event Finishes:"
+msgstr "Tapahtuma päättyy:"
+
+#: mod/events.php:515 mod/events.php:528
+msgid "Adjust for viewer timezone"
+msgstr "Ota huomioon katsojan aikavyöhyke"
+
+#: mod/events.php:517
+msgid "Description:"
+msgstr "Kuvaus:"
+
+#: mod/events.php:521 mod/events.php:523
+msgid "Title:"
+msgstr "Otsikko:"
+
+#: mod/events.php:524 mod/events.php:525
+msgid "Share this event"
+msgstr "Jaa tämä tapahtuma"
+
+#: mod/events.php:532 src/Model/Profile.php:862
+msgid "Basic"
+msgstr ""
+
+#: mod/events.php:534 mod/photos.php:1086 mod/photos.php:1435
+#: src/Core/ACL.php:318
+msgid "Permissions"
+msgstr "Käyttöoikeudet"
+
+#: mod/events.php:553
+msgid "Failed to remove event"
+msgstr "Tapahtuman poisto epäonnistui"
+
+#: mod/events.php:555
+msgid "Event removed"
+msgstr "Tapahtuma poistettu"
+
+#: mod/group.php:36
+msgid "Group created."
+msgstr "Ryhmä luotu."
+
+#: mod/group.php:42
+msgid "Could not create group."
+msgstr "Ryhmää ei voitu luoda."
+
+#: mod/group.php:56 mod/group.php:157
+msgid "Group not found."
+msgstr "Ryhmää ei löytynyt."
+
+#: mod/group.php:70
+msgid "Group name changed."
+msgstr "Ryhmän nimi muutettu."
+
+#: mod/group.php:97
+msgid "Save Group"
+msgstr "Tallenna ryhmä"
+
+#: mod/group.php:102
+msgid "Create a group of contacts/friends."
+msgstr "Luo kontakti/kaveriryhmä"
+
+#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421
+msgid "Group Name: "
+msgstr "Ryhmän nimi:"
+
+#: mod/group.php:127
+msgid "Group removed."
+msgstr "Ryhmä poistettu."
+
+#: mod/group.php:129
+msgid "Unable to remove group."
+msgstr "Ryhmää ei voida poistaa."
+
+#: mod/group.php:192
+msgid "Delete Group"
+msgstr "Poista ryhmä"
+
+#: mod/group.php:198
+msgid "Group Editor"
+msgstr "Ryhmien muokkausta"
+
+#: mod/group.php:203
+msgid "Edit Group Name"
+msgstr "Muokkaa ryhmän nimeä"
+
+#: mod/group.php:213
+msgid "Members"
+msgstr "Jäsenet"
+
+#: mod/group.php:216 mod/network.php:639
+msgid "Group is empty"
+msgstr "Ryhmä on tyhjä"
+
+#: mod/group.php:229
+msgid "Remove contact from group"
+msgstr "Poista kontakti ryhmästä"
+
+#: mod/group.php:253
+msgid "Add contact to group"
+msgstr "Lisää kontakti ryhmään"
+
 #: mod/item.php:114
 msgid "Unable to locate original post."
 msgstr "Alkuperäinen julkaisu ei löydy."
@@ -5964,6 +5605,103 @@ msgstr ""
 msgid "%s posted an update."
 msgstr "%s julkaisi päivityksen."
 
+#: mod/network.php:194 mod/search.php:37
+msgid "Remove term"
+msgstr "Poista kohde"
+
+#: mod/network.php:201 mod/search.php:46 src/Content/Feature.php:100
+msgid "Saved Searches"
+msgstr "Tallennetut haut"
+
+#: mod/network.php:202 src/Model/Group.php:413
+msgid "add"
+msgstr "lisää"
+
+#: mod/network.php:547
+#, php-format
+msgid ""
+"Warning: This group contains %s member from a network that doesn't allow non"
+" public messages."
+msgid_plural ""
+"Warning: This group contains %s members from a network that doesn't allow "
+"non public messages."
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/network.php:550
+msgid "Messages in this group won't be send to these receivers."
+msgstr ""
+
+#: mod/network.php:618
+msgid "No such group"
+msgstr "Ryhmä ei ole olemassa"
+
+#: mod/network.php:643
+#, php-format
+msgid "Group: %s"
+msgstr "Ryhmä: %s"
+
+#: mod/network.php:669
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Yksityisviestit lähetetty tälle henkilölle saattaa näkyä muillekin."
+
+#: mod/network.php:672
+msgid "Invalid contact."
+msgstr "Virheellinen kontakti."
+
+#: mod/network.php:943
+msgid "Commented Order"
+msgstr "Järjestä viimeisimpien kommenttien mukaan"
+
+#: mod/network.php:946
+msgid "Sort by Comment Date"
+msgstr "Kommentit päivämäärän mukaan"
+
+#: mod/network.php:951
+msgid "Posted Order"
+msgstr "Järjestä julkaisupäivämäärän mukaan"
+
+#: mod/network.php:954
+msgid "Sort by Post Date"
+msgstr "Julkaisut päivämäärän mukaan"
+
+#: mod/network.php:962 mod/profiles.php:594
+#: src/Core/NotificationsManager.php:185
+msgid "Personal"
+msgstr "Henkilökohtainen"
+
+#: mod/network.php:965
+msgid "Posts that mention or involve you"
+msgstr "Julkaisut jotka liittyvät sinuun"
+
+#: mod/network.php:973
+msgid "New"
+msgstr "Uusi"
+
+#: mod/network.php:976
+msgid "Activity Stream - by date"
+msgstr ""
+
+#: mod/network.php:984
+msgid "Shared Links"
+msgstr "Jaetut linkit"
+
+#: mod/network.php:987
+msgid "Interesting Links"
+msgstr "Kiinnostavat linkit"
+
+#: mod/network.php:995
+msgid "Starred"
+msgstr "Tähtimerkitty"
+
+#: mod/network.php:998
+msgid "Favourite Posts"
+msgstr "Lempijulkaisut"
+
+#: mod/notes.php:52 src/Model/Profile.php:944
+msgid "Personal Notes"
+msgstr "Henkilökohtaiset tiedot"
+
 #: mod/notifications.php:37
 msgid "Invalid request identifier."
 msgstr "Virheellinen pyyntötunniste."
@@ -6014,79 +5752,293 @@ msgstr "Väittää tuntevansa sinut:"
 msgid "yes"
 msgstr "kyllä"
 
-#: mod/notifications.php:198
-msgid "no"
-msgstr "ei"
+#: mod/notifications.php:198
+msgid "no"
+msgstr "ei"
+
+#: mod/notifications.php:199 mod/notifications.php:204
+msgid "Shall your connection be bidirectional or not?"
+msgstr "Kaksisuuntainen yhteys?"
+
+#: mod/notifications.php:200 mod/notifications.php:205
+#, php-format
+msgid ""
+"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
+"also receive updates from them in your news feed."
+msgstr ""
+
+#: mod/notifications.php:201
+#, php-format
+msgid ""
+"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
+" will not receive updates from them in your news feed."
+msgstr ""
+
+#: mod/notifications.php:206
+#, php-format
+msgid ""
+"Accepting %s as a sharer allows them to subscribe to your posts, but you "
+"will not receive updates from them in your news feed."
+msgstr ""
+
+#: mod/notifications.php:217
+msgid "Friend"
+msgstr "Kaveri"
+
+#: mod/notifications.php:218
+msgid "Sharer"
+msgstr "Jakaja"
+
+#: mod/notifications.php:218
+msgid "Subscriber"
+msgstr "Tilaaja"
+
+#: mod/notifications.php:273
+msgid "No introductions."
+msgstr "Ei esittelyjä."
+
+#: mod/notifications.php:314
+msgid "Show unread"
+msgstr "Näytä lukemattomat"
+
+#: mod/notifications.php:314
+msgid "Show all"
+msgstr "Näytä kaikki"
+
+#: mod/notifications.php:320
+#, php-format
+msgid "No more %s notifications."
+msgstr "Ei muita %s ilmoituksia."
+
+#: mod/openid.php:29
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID -protokollavirhe. Tunnusta ei vastaanotettu."
+
+#: mod/openid.php:66
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Käyttäjätiliä ei löytynyt. Rekisteröityminen OpenID:n kautta ei ole sallittua tällä sivustolla."
+
+#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:135
+msgid "Login failed."
+msgstr "Kirjautuminen epäonnistui"
+
+#: mod/photos.php:108 src/Model/Profile.php:905
+msgid "Photo Albums"
+msgstr "Valokuva-albumit"
+
+#: mod/photos.php:109 mod/photos.php:1708
+msgid "Recent Photos"
+msgstr "Viimeaikaisia kuvia"
+
+#: mod/photos.php:112 mod/photos.php:1198 mod/photos.php:1710
+msgid "Upload New Photos"
+msgstr "Lähetä uusia kuvia"
+
+#: mod/photos.php:126 mod/settings.php:51
+msgid "everybody"
+msgstr "kaikki"
+
+#: mod/photos.php:184
+msgid "Contact information unavailable"
+msgstr "Kontaktin tietoja ei saatavilla"
+
+#: mod/photos.php:204
+msgid "Album not found."
+msgstr "Albumia ei ole."
+
+#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1149
+msgid "Delete Album"
+msgstr "Poista albumi"
+
+#: mod/photos.php:243
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Haluatko varmasti poistaa tämän albumin ja kaikki sen kuvat?"
+
+#: mod/photos.php:303 mod/photos.php:314 mod/photos.php:1440
+msgid "Delete Photo"
+msgstr "Poista valokuva"
+
+#: mod/photos.php:312
+msgid "Do you really want to delete this photo?"
+msgstr "Haluatko varmasti poistaa kuvan?"
+
+#: mod/photos.php:655
+msgid "a photo"
+msgstr "valokuva"
+
+#: mod/photos.php:655
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s merkattiin kuvaan %2$s ystävän %3$s toimesta"
+
+#: mod/photos.php:757
+msgid "Image upload didn't complete, please try again"
+msgstr "Kuvan lataus ei onnistunut, yritä uudelleen"
+
+#: mod/photos.php:760
+msgid "Image file is missing"
+msgstr "Kuvatiedosto puuttuu"
+
+#: mod/photos.php:765
+msgid ""
+"Server can't accept new file upload at this time, please contact your "
+"administrator"
+msgstr ""
+
+#: mod/photos.php:791
+msgid "Image file is empty."
+msgstr "Kuvatiedosto on tyhjä."
+
+#: mod/photos.php:928
+msgid "No photos selected"
+msgstr "Ei valittuja kuvia"
+
+#: mod/photos.php:1024 mod/videos.php:309
+msgid "Access to this item is restricted."
+msgstr "Pääsy kohteeseen on rajoitettu."
+
+#: mod/photos.php:1078
+msgid "Upload Photos"
+msgstr "Lähetä kuvia"
+
+#: mod/photos.php:1082 mod/photos.php:1144
+msgid "New album name: "
+msgstr "Albumin uusi nimi: "
+
+#: mod/photos.php:1083
+msgid "or existing album name: "
+msgstr "tai olemassaolevan albumin nimi: "
+
+#: mod/photos.php:1084
+msgid "Do not show a status post for this upload"
+msgstr "Älä näytä tilaviestiä tälle lähetykselle"
+
+#: mod/photos.php:1094 mod/photos.php:1443 mod/settings.php:1218
+msgid "Show to Groups"
+msgstr "Näytä ryhmille"
+
+#: mod/photos.php:1095 mod/photos.php:1444 mod/settings.php:1219
+msgid "Show to Contacts"
+msgstr "Näytä kontakteille"
+
+#: mod/photos.php:1155
+msgid "Edit Album"
+msgstr "Muokkaa albumia"
+
+#: mod/photos.php:1160
+msgid "Show Newest First"
+msgstr "Näytä uusin ensin"
+
+#: mod/photos.php:1162
+msgid "Show Oldest First"
+msgstr "Näytä vanhin ensin"
+
+#: mod/photos.php:1183 mod/photos.php:1693
+msgid "View Photo"
+msgstr "Näytä kuva"
+
+#: mod/photos.php:1224
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Estetty. Tämän kohteen käyttöä on saatettu rajoittaa."
+
+#: mod/photos.php:1226
+msgid "Photo not available"
+msgstr "Kuva ei ole saatavilla"
+
+#: mod/photos.php:1294
+msgid "View photo"
+msgstr "Näytä kuva"
+
+#: mod/photos.php:1294
+msgid "Edit photo"
+msgstr "Muokkaa kuvaa"
+
+#: mod/photos.php:1295
+msgid "Use as profile photo"
+msgstr "Käytä profiilikuvana"
+
+#: mod/photos.php:1301 src/Object/Post.php:149
+msgid "Private Message"
+msgstr "Yksityisviesti"
+
+#: mod/photos.php:1321
+msgid "View Full Size"
+msgstr "Näytä täysikokoisena"
+
+#: mod/photos.php:1408
+msgid "Tags: "
+msgstr "Merkinnät:"
+
+#: mod/photos.php:1411
+msgid "[Remove any tag]"
+msgstr "[Poista mikä tahansa merkintä]"
 
-#: mod/notifications.php:199 mod/notifications.php:204
-msgid "Shall your connection be bidirectional or not?"
-msgstr "Kaksisuuntainen yhteys?"
+#: mod/photos.php:1426
+msgid "New album name"
+msgstr "Uusi nimi albumille"
 
-#: mod/notifications.php:200 mod/notifications.php:205
-#, php-format
-msgid ""
-"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
-"also receive updates from them in your news feed."
-msgstr ""
+#: mod/photos.php:1427
+msgid "Caption"
+msgstr "Kuvateksti"
 
-#: mod/notifications.php:201
-#, php-format
-msgid ""
-"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
-" will not receive updates from them in your news feed."
-msgstr ""
+#: mod/photos.php:1428
+msgid "Add a Tag"
+msgstr "Lisää merkintä"
 
-#: mod/notifications.php:206
-#, php-format
+#: mod/photos.php:1428
 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 ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Esimerkki: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: mod/notifications.php:217
-msgid "Friend"
-msgstr "Kaveri"
+#: mod/photos.php:1429
+msgid "Do not rotate"
+msgstr "Älä kierrä"
 
-#: mod/notifications.php:218
-msgid "Sharer"
-msgstr "Jakaja"
+#: mod/photos.php:1430
+msgid "Rotate CW (right)"
+msgstr "Käännä oikealle"
 
-#: mod/notifications.php:218
-msgid "Subscriber"
-msgstr "Tilaaja"
+#: mod/photos.php:1431
+msgid "Rotate CCW (left)"
+msgstr "Käännä vasemmalle"
 
-#: mod/notifications.php:273
-msgid "No introductions."
-msgstr "Ei esittelyjä."
+#: mod/photos.php:1465 src/Object/Post.php:304
+msgid "I like this (toggle)"
+msgstr "Tykkään tästä (vaihda)"
 
-#: mod/notifications.php:314
-msgid "Show unread"
-msgstr "Näytä lukemattomat"
+#: mod/photos.php:1466 src/Object/Post.php:305
+msgid "I don't like this (toggle)"
+msgstr "En tykkää tästä (vaihda)"
 
-#: mod/notifications.php:314
-msgid "Show all"
-msgstr "Näytä kaikki"
+#: mod/photos.php:1484 mod/photos.php:1523 mod/photos.php:1596
+#: src/Object/Post.php:407 src/Object/Post.php:803
+msgid "Comment"
+msgstr "Kommentti"
 
-#: mod/notifications.php:320
-#, php-format
-msgid "No more %s notifications."
-msgstr "Ei muita %s ilmoituksia."
+#: mod/photos.php:1628
+msgid "Map"
+msgstr "Kartta"
+
+#: mod/photos.php:1699 mod/videos.php:387
+msgid "View Album"
+msgstr "Näytä albumi"
 
 #: mod/profile.php:37 src/Model/Profile.php:118
 msgid "Requested profile is not available."
 msgstr "Pyydettyä profiilia ei saatavilla."
 
-#: mod/profile.php:78 mod/profile.php:81 src/Protocol/OStatus.php:1251
+#: mod/profile.php:78 mod/profile.php:81 src/Protocol/OStatus.php:1250
 #, php-format
 msgid "%s's timeline"
 msgstr "%s: aikajana"
 
-#: mod/profile.php:79 src/Protocol/OStatus.php:1252
+#: mod/profile.php:79 src/Protocol/OStatus.php:1251
 #, php-format
 msgid "%s's posts"
 msgstr "%s: julkaisut"
 
-#: mod/profile.php:80 src/Protocol/OStatus.php:1253
+#: mod/profile.php:80 src/Protocol/OStatus.php:1252
 #, php-format
 msgid "%s's comments"
 msgstr "%s: kommentit"
@@ -6516,35 +6468,52 @@ msgstr "Rekisteröidy"
 msgid "Import your profile to this friendica instance"
 msgstr "Tuo profiilisi tähän Friendica -instanssiin."
 
-#: mod/removeme.php:44
+#: mod/removeme.php:45
 msgid "User deleted their account"
 msgstr "Käyttäjä poisti tilinsä"
 
-#: mod/removeme.php:45
+#: mod/removeme.php:46
 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:46
+#: mod/removeme.php:47
 #, php-format
 msgid "The user id is %d"
 msgstr "Käyttäjätunnus on %d"
 
-#: mod/removeme.php:77 mod/removeme.php:80
+#: mod/removeme.php:78 mod/removeme.php:81
 msgid "Remove My Account"
 msgstr "Poista tilini"
 
-#: mod/removeme.php:78
+#: mod/removeme.php:79
 msgid ""
 "This will completely remove your account. Once this has been done it is not "
 "recoverable."
 msgstr "Tämä poistaa käyttäjätilisi pysyvästi. Poistoa ei voi perua myöhemmin."
 
-#: mod/removeme.php:79
+#: mod/removeme.php:80
 msgid "Please enter your password for verification:"
 msgstr "Syötä salasanasi varmistusta varten:"
 
+#: mod/search.php:105
+msgid "Only logged in users are permitted to perform a search."
+msgstr ""
+
+#: mod/search.php:129
+msgid "Too Many Requests"
+msgstr "Liian monta pyyntöä"
+
+#: mod/search.php:130
+msgid "Only one search per minute is permitted for not logged in users."
+msgstr ""
+
+#: mod/search.php:234
+#, php-format
+msgid "Items tagged with: %s"
+msgstr "Kohteet joilla tunnisteet: %s"
+
 #: mod/settings.php:56
 msgid "Account"
 msgstr "Tili"
@@ -6589,7 +6558,7 @@ msgstr "Ominaisuudet päivitetty"
 msgid "Relocate message has been send to your contacts"
 msgstr ""
 
-#: mod/settings.php:384 src/Model/User.php:339
+#: mod/settings.php:384 src/Model/User.php:340
 msgid "Passwords do not match. Password unchanged."
 msgstr "Salasanat eivät täsmää. Salasana ennallaan."
 
@@ -6930,8 +6899,8 @@ msgid ""
 msgstr ""
 
 #: mod/settings.php:969
-msgid "Bandwith Saver Mode"
-msgstr "Kaistanleveyssäästömoodi"
+msgid "Bandwidth Saver Mode"
+msgstr ""
 
 #: mod/settings.php:969
 msgid ""
@@ -7048,8 +7017,9 @@ msgstr "Julkaise oletusprofiilisi tämän sivuston paikallisluettelossa?"
 #: mod/settings.php:1094
 #, 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."
+"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:1100
@@ -7059,9 +7029,8 @@ msgstr "Julkaise oletusprofiilisi maailmanlaajuisessa sosiaaliluettelossa?"
 #: mod/settings.php:1100
 #, 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."
+"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/settings.php:1107
@@ -7082,8 +7051,8 @@ msgstr ""
 #: mod/settings.php:1111
 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."
+" the nickname you are using on your profile page. Your public posts and "
+"replies will still be accessible by other means."
 msgstr ""
 
 #: mod/settings.php:1115
@@ -7350,7 +7319,37 @@ msgstr ""
 msgid "Resend relocate message to contacts"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:54 src/Model/User.php:502
+#: mod/subthread.php:117
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr ""
+
+#: mod/update_community.php:27 mod/update_display.php:27
+#: mod/update_network.php:33 mod/update_notes.php:40 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/videos.php:139
+msgid "Do you really want to delete this video?"
+msgstr "Haluatko varmasti poistaa tämän videon?"
+
+#: mod/videos.php:144
+msgid "Delete Video"
+msgstr "Poista video"
+
+#: mod/videos.php:207
+msgid "No videos selected"
+msgstr "Ei videoita valittuna"
+
+#: mod/videos.php:396
+msgid "Recent Videos"
+msgstr "Viimeisimmät videot"
+
+#: mod/videos.php:398
+msgid "Upload New Videos"
+msgstr "Lataa uusia videoita"
+
+#: view/theme/duepuntozero/config.php:54 src/Model/User.php:504
 msgid "default"
 msgstr "oletus"
 
@@ -8066,33 +8065,33 @@ msgstr "sekuntia"
 msgid "%1$d %2$s ago"
 msgstr "%1$d %2$s sitten"
 
-#: src/Content/Text/BBCode.php:416
+#: src/Content/Text/BBCode.php:426
 msgid "view full size"
 msgstr "näytä täysikokoisena"
 
-#: src/Content/Text/BBCode.php:842 src/Content/Text/BBCode.php:1611
-#: src/Content/Text/BBCode.php:1612
+#: src/Content/Text/BBCode.php:852 src/Content/Text/BBCode.php:1621
+#: src/Content/Text/BBCode.php:1622
 msgid "Image/photo"
 msgstr "Kuva/valokuva"
 
-#: src/Content/Text/BBCode.php:980
+#: src/Content/Text/BBCode.php:990
 #, 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"
 
-#: src/Content/Text/BBCode.php:1538 src/Content/Text/BBCode.php:1560
+#: src/Content/Text/BBCode.php:1548 src/Content/Text/BBCode.php:1570
 msgid "$1 wrote:"
 msgstr "$1 kirjoitti:"
 
-#: src/Content/Text/BBCode.php:1620 src/Content/Text/BBCode.php:1621
+#: src/Content/Text/BBCode.php:1630 src/Content/Text/BBCode.php:1631
 msgid "Encrypted content"
 msgstr "Salattu sisältö"
 
-#: src/Content/Text/BBCode.php:1740
+#: src/Content/Text/BBCode.php:1750
 msgid "Invalid source protocol"
 msgstr "Virheellinen lähdeprotokolla"
 
-#: src/Content/Text/BBCode.php:1751
+#: src/Content/Text/BBCode.php:1761
 msgid "Invalid link protocol"
 msgstr "Virheellinen linkkiprotokolla"
 
@@ -8336,7 +8335,7 @@ msgstr "Uskoton"
 msgid "Sex Addict"
 msgstr "Sekririippuvainen"
 
-#: src/Content/ContactSelector.php:169 src/Model/User.php:519
+#: src/Content/ContactSelector.php:169 src/Model/User.php:521
 msgid "Friends"
 msgstr "Kaverit"
 
@@ -8781,68 +8780,186 @@ msgstr "Hallitse muita sivuja"
 msgid "Profiles"
 msgstr "Profiilit"
 
-#: src/Content/Nav.php:210
-msgid "Manage/Edit Profiles"
-msgstr "Hallitse/muokka profiilit"
+#: src/Content/Nav.php:210
+msgid "Manage/Edit Profiles"
+msgstr "Hallitse/muokka profiilit"
+
+#: src/Content/Nav.php:218
+msgid "Site setup and configuration"
+msgstr "Sivuston asennus ja asetukset"
+
+#: src/Content/Nav.php:221
+msgid "Navigation"
+msgstr "Navigointi"
+
+#: src/Content/Nav.php:221
+msgid "Site map"
+msgstr "Sivustokartta"
+
+#: src/Database/DBStructure.php:32
+msgid "There are no tables on MyISAM."
+msgstr "MyISAMissa ei ole taulukoita."
+
+#: src/Database/DBStructure.php:75
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tThe friendica developers released update %s recently,\n"
+"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n"
+"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
+"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
+msgstr "\n\t\t\t\tFriendican kehittäjät askettäin julkaisi %s-päivityksen,\n\t\t\t\tmutta asennuksessa jotain meni pahasti pieleen.\n\t\t\t\tTämä on korjattava pian, ja en voi korjata sitä itse. Ota yhteyttä\n\t\t\t\tFriendica -kehittäjään jos et voi auttaa. Tietokantani saattaa olla virheellinen."
+
+#: src/Database/DBStructure.php:80
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Virheviesti on\n[pre]%s[/pre]"
+
+#: src/Database/DBStructure.php:191
+#, php-format
+msgid ""
+"\n"
+"Error %d occurred during database update:\n"
+"%s\n"
+msgstr "\n%d virhe tapahtui tietokannan päivityksen aikana:\n%s\n"
+
+#: src/Database/DBStructure.php:194
+msgid "Errors encountered performing database changes: "
+msgstr "Tietokannan muokkauksessa tapahtui virheitä:"
+
+#: src/Database/DBStructure.php:210
+#, php-format
+msgid "%s: Database update"
+msgstr "%s: Tietokantapäivitys"
+
+#: src/Database/DBStructure.php:460
+#, php-format
+msgid "%s: updating %s table."
+msgstr "%s: päivitetään %s-taulukkoa."
+
+#: src/Model/Mail.php:40 src/Model/Mail.php:174
+msgid "[no subject]"
+msgstr "[ei aihetta]"
+
+#: src/Model/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 ""
+
+#: src/Model/Group.php:341
+msgid "Default privacy group for new contacts"
+msgstr "Oletusryhmä uusille kontakteille"
+
+#: src/Model/Group.php:374
+msgid "Everybody"
+msgstr "Kaikki"
+
+#: src/Model/Group.php:394
+msgid "edit"
+msgstr "muokkaa"
+
+#: src/Model/Group.php:418
+msgid "Edit group"
+msgstr "Muokkaa ryhmää"
+
+#: src/Model/Group.php:419
+msgid "Contacts not in any group"
+msgstr "Kontaktit ilman ryhmää"
+
+#: src/Model/Group.php:420
+msgid "Create a new group"
+msgstr "Luo uusi ryhmä"
+
+#: src/Model/Group.php:422
+msgid "Edit groups"
+msgstr "Muokkaa ryhmiä"
+
+#: src/Model/Contact.php:667
+msgid "Drop Contact"
+msgstr "Poista kontakti"
+
+#: src/Model/Contact.php:1101
+msgid "Organisation"
+msgstr "Järjestö"
+
+#: src/Model/Contact.php:1104
+msgid "News"
+msgstr "Uutiset"
+
+#: src/Model/Contact.php:1107
+msgid "Forum"
+msgstr "Keskustelupalsta"
+
+#: src/Model/Contact.php:1286
+msgid "Connect URL missing."
+msgstr "Yhteys URL-linkki puuttuu."
+
+#: src/Model/Contact.php:1295
+msgid ""
+"The contact could not be added. Please check the relevant network "
+"credentials in your Settings -> Social Networks page."
+msgstr "Kontaktia ei pystytty lisäämään. Tarkista verkkoasetukset omista asetuksistasi (Settings -> Social Networks)."
+
+#: src/Model/Contact.php:1342
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Tämä sivusto ei salli yhteyksiä muiden verkkojen kanssa.."
 
-#: src/Content/Nav.php:218
-msgid "Site setup and configuration"
-msgstr "Sivuston asennus ja asetukset"
+#: src/Model/Contact.php:1343 src/Model/Contact.php:1357
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Yhteensopivia viestintäprotokolleja tai syötteitä ei löytynyt."
 
-#: src/Content/Nav.php:221
-msgid "Navigation"
-msgstr "Navigointi"
+#: src/Model/Contact.php:1355
+msgid "The profile address specified does not provide adequate information."
+msgstr "Annettu profiiliosoite ei sisällä riittävästi tietoa."
 
-#: src/Content/Nav.php:221
-msgid "Site map"
-msgstr "Sivustokartta"
+#: src/Model/Contact.php:1360
+msgid "An author or name was not found."
+msgstr "Julkaisija tai nimi puuttuu."
 
-#: src/Database/DBStructure.php:32
-msgid "There are no tables on MyISAM."
-msgstr "MyISAMissa ei ole taulukoita."
+#: src/Model/Contact.php:1363
+msgid "No browser URL could be matched to this address."
+msgstr ""
 
-#: src/Database/DBStructure.php:75
-#, php-format
+#: src/Model/Contact.php:1366
 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."
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr ""
 
-#: src/Database/DBStructure.php:80
-#, php-format
+#: src/Model/Contact.php:1367
+msgid "Use mailto: in front of address to force email check."
+msgstr "Käytä \"mailto:\" osoitteen edessä pakottaaksesi sähköpostin tarkastuksen."
+
+#: src/Model/Contact.php:1373
 msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "Virheviesti on\n[pre]%s[/pre]"
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "Profiilin osoite kuuluu verkkoon, joka on poistettu tältä sivustolta."
 
-#: src/Database/DBStructure.php:191
-#, php-format
+#: src/Model/Contact.php:1378
 msgid ""
-"\n"
-"Error %d occurred during database update:\n"
-"%s\n"
-msgstr "\n%d virhe tapahtui tietokannan päivityksen aikana:\n%s\n"
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Rajoitettu profiili. Tämä henkilö ei pysty/tule saamaan suoria/henkilökohtaisia ilmoituksia sinulta."
 
-#: src/Database/DBStructure.php:194
-msgid "Errors encountered performing database changes: "
-msgstr "Tietokannan muokkauksessa tapahtui virheitä:"
+#: src/Model/Contact.php:1429
+msgid "Unable to retrieve contact information."
+msgstr "Kontaktin tietoja ei voitu hakea."
 
-#: src/Database/DBStructure.php:210
+#: src/Model/Contact.php:1646 src/Protocol/DFRN.php:1515
 #, php-format
-msgid "%s: Database update"
-msgstr "%s: Tietokantapäivitys"
+msgid "%s's birthday"
+msgstr "%s: syntymäpäivä"
 
-#: src/Database/DBStructure.php:460
+#: src/Model/Contact.php:1647 src/Protocol/DFRN.php:1516
 #, php-format
-msgid "%s: updating %s table."
-msgstr "%s: päivitetään %s-taulukkoa."
-
-#: src/Model/Mail.php:40 src/Model/Mail.php:174
-msgid "[no subject]"
-msgstr "[ei aihetta]"
+msgid "Happy Birthday %s"
+msgstr "Hyvää syntymäpäivää %s"
 
 #: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419
 #: src/Model/Event.php:882
@@ -8888,11 +9005,11 @@ msgstr "Poista tapahtuma"
 
 #: src/Model/Event.php:815
 msgid "D g:i A"
-msgstr "D g:i A"
+msgstr "D H:i"
 
 #: src/Model/Event.php:816
 msgid "g:i A"
-msgstr "g:i A"
+msgstr "H:i"
 
 #: src/Model/Event.php:901 src/Model/Event.php:903
 msgid "Show map"
@@ -8902,40 +9019,20 @@ msgstr "Näytä kartta"
 msgid "Hide map"
 msgstr "Piilota kartta"
 
-#: 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 ""
-
-#: src/Model/Group.php:341
-msgid "Default privacy group for new contacts"
-msgstr "Oletusryhmä uusille kontakteille"
-
-#: src/Model/Group.php:374
-msgid "Everybody"
-msgstr "Kaikki"
-
-#: src/Model/Group.php:394
-msgid "edit"
-msgstr "muokkaa"
-
-#: src/Model/Group.php:418
-msgid "Edit group"
-msgstr "Muokkaa ryhmää"
-
-#: src/Model/Group.php:419
-msgid "Contacts not in any group"
-msgstr "Kontaktit ilman ryhmää"
+#: src/Model/Item.php:1883
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
+msgstr "%1$s osallistuu tapahtumaan %3$s, jonka järjestää %2$s"
 
-#: src/Model/Group.php:420
-msgid "Create a new group"
-msgstr "Luo uusi ryhmä"
+#: src/Model/Item.php:1888
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr "%1$s ei osallistu tapahtumaan %3$s, jonka järjestää %2$s"
 
-#: src/Model/Group.php:422
-msgid "Edit groups"
-msgstr "Muokkaa ryhmiä"
+#: src/Model/Item.php:1893
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr "%1$s ehkä osallistuu tapahtumaan %3$s, jonka järjestää %2$s"
 
 #: src/Model/Profile.php:97
 msgid "Requested account is not available."
@@ -9063,86 +9160,86 @@ msgstr "Kirjautuminen epäonnistui"
 msgid "Not enough information to authenticate"
 msgstr "Ei tarpeeksi tietoja kirjautumiseen"
 
-#: src/Model/User.php:346
+#: src/Model/User.php:347
 msgid "An invitation is required."
 msgstr "Vaaditaa kutsu."
 
-#: src/Model/User.php:350
+#: src/Model/User.php:351
 msgid "Invitation could not be verified."
 msgstr "Kutsua ei voitu vahvistaa."
 
-#: src/Model/User.php:357
+#: src/Model/User.php:358
 msgid "Invalid OpenID url"
 msgstr "Virheellinen OpenID url-osoite"
 
-#: src/Model/User.php:370 src/Module/Login.php:101
+#: src/Model/User.php:371 src/Module/Login.php:101
 msgid ""
 "We encountered a problem while logging in with the OpenID you provided. "
 "Please check the correct spelling of the ID."
 msgstr "Kohtasimme ongelman antamasi OpenID:n kanssa. Ole hyvä ja tarkista ID:n oikea kirjoitusasu."
 
-#: src/Model/User.php:370 src/Module/Login.php:101
+#: src/Model/User.php:371 src/Module/Login.php:101
 msgid "The error message was:"
 msgstr "Virheviesti oli:"
 
-#: src/Model/User.php:376
+#: src/Model/User.php:377
 msgid "Please enter the required information."
 msgstr "Syötä tarvittavat tiedot."
 
-#: src/Model/User.php:389
+#: src/Model/User.php:390
 msgid "Please use a shorter name."
 msgstr "Käytä lyhyempää nimeä."
 
-#: src/Model/User.php:392
+#: src/Model/User.php:393
 msgid "Name too short."
 msgstr "Nimi on liian lyhyt."
 
-#: src/Model/User.php:400
+#: src/Model/User.php:401
 msgid "That doesn't appear to be your full (First Last) name."
 msgstr "Tuo ei vakuta täydeltä nimeltäsi (Etunimi Sukunimi)."
 
-#: src/Model/User.php:405
+#: src/Model/User.php:406
 msgid "Your email domain is not among those allowed on this site."
 msgstr "Sähköpostiosoitteesi verkkotunnus on tämän sivuston estolistalla."
 
-#: src/Model/User.php:409
+#: src/Model/User.php:410
 msgid "Not a valid email address."
 msgstr "Virheellinen sähköpostiosoite."
 
-#: src/Model/User.php:413 src/Model/User.php:421
+#: src/Model/User.php:414 src/Model/User.php:422
 msgid "Cannot use that email."
 msgstr "Sähköpostiosoitetta ei voitu käyttää."
 
-#: src/Model/User.php:428
+#: src/Model/User.php:429
 msgid "Your nickname can only contain a-z, 0-9 and _."
 msgstr "Nimimerkki voi sisältää a-z, 0-9 ja _."
 
-#: src/Model/User.php:435 src/Model/User.php:491
+#: src/Model/User.php:436 src/Model/User.php:493
 msgid "Nickname is already registered. Please choose another."
 msgstr "Valitsemasi nimimerkki on jo käytössä. Valitse toinen nimimerkki."
 
-#: src/Model/User.php:445
+#: src/Model/User.php:446
 msgid "SERIOUS ERROR: Generation of security keys failed."
 msgstr "VAKAVA VIRHE: Salausavainten luominen epäonnistui."
 
-#: src/Model/User.php:478 src/Model/User.php:482
+#: src/Model/User.php:480 src/Model/User.php:484
 msgid "An error occurred during registration. Please try again."
 msgstr "Rekisteröityminen epäonnistui. Yritä uudelleen."
 
-#: src/Model/User.php:507
+#: src/Model/User.php:509
 msgid "An error occurred creating your default profile. Please try again."
 msgstr "Oletusprofiilin luominen epäonnistui. Yritä uudelleen."
 
-#: src/Model/User.php:514
+#: src/Model/User.php:516
 msgid "An error occurred creating your self contact. Please try again."
 msgstr "Yhteystietojesi luonti epäonnistui. Yritä uudelleen."
 
-#: src/Model/User.php:523
+#: src/Model/User.php:525
 msgid ""
 "An error occurred creating your default contact group. Please try again."
 msgstr "Oletusryhmäsi luonti epäonnistui. Yritä uudelleen."
 
-#: src/Model/User.php:597
+#: src/Model/User.php:599
 #, php-format
 msgid ""
 "\n"
@@ -9151,12 +9248,12 @@ msgid ""
 "\t\t"
 msgstr "\n\t\t\tHei %1$s,\n\t\t\t\tKiitoksia rekisteröitymisestä sivustolle %2$s. Tilisi on odottamassa ylläpidon hyväksyntää.\n\t\t"
 
-#: src/Model/User.php:607
+#: src/Model/User.php:609
 #, php-format
 msgid "Registration at %s"
 msgstr "Rekisteröityminen kohteessa %s"
 
-#: src/Model/User.php:625
+#: src/Model/User.php:627
 #, php-format
 msgid ""
 "\n"
@@ -9165,7 +9262,7 @@ msgid ""
 "\t\t"
 msgstr "\n\t\t\tHei %1$s,\n\t\t\t\tKiitoksia rekisteröinnistä sivustolle %2$s. Tilisi on luotu.\n\t\t"
 
-#: src/Model/User.php:629
+#: src/Model/User.php:631
 #, php-format
 msgid ""
 "\n"
@@ -9197,130 +9294,32 @@ msgid ""
 "\t\t\tThank you and welcome to %2$s."
 msgstr ""
 
-#: src/Model/Contact.php:667
-msgid "Drop Contact"
-msgstr "Poista kontakti"
-
-#: src/Model/Contact.php:1101
-msgid "Organisation"
-msgstr "Järjestö"
-
-#: src/Model/Contact.php:1104
-msgid "News"
-msgstr "Uutiset"
-
-#: src/Model/Contact.php:1107
-msgid "Forum"
-msgstr "Keskustelupalsta"
-
-#: src/Model/Contact.php:1286
-msgid "Connect URL missing."
-msgstr "Yhteys URL-linkki puuttuu."
-
-#: src/Model/Contact.php:1295
-msgid ""
-"The contact could not be added. Please check the relevant network "
-"credentials in your Settings -> Social Networks page."
-msgstr "Kontaktia ei pystytty lisäämään. Tarkista verkkoasetukset omista asetuksistasi (Settings -> Social Networks)."
-
-#: src/Model/Contact.php:1342
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Tämä sivusto ei salli yhteyksiä muiden verkkojen kanssa.."
-
-#: src/Model/Contact.php:1343 src/Model/Contact.php:1357
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Yhteensopivia viestintäprotokolleja tai syötteitä ei löytynyt."
-
-#: src/Model/Contact.php:1355
-msgid "The profile address specified does not provide adequate information."
-msgstr "Annettu profiiliosoite ei sisällä riittävästi tietoa."
-
-#: src/Model/Contact.php:1360
-msgid "An author or name was not found."
-msgstr "Julkaisija tai nimi puuttuu."
-
-#: src/Model/Contact.php:1363
-msgid "No browser URL could be matched to this address."
-msgstr ""
-
-#: src/Model/Contact.php:1366
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr ""
-
-#: src/Model/Contact.php:1367
-msgid "Use mailto: in front of address to force email check."
-msgstr "Käytä \"mailto:\" osoitteen edessä pakottaaksesi sähköpostin tarkastuksen."
-
-#: src/Model/Contact.php:1373
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "Profiilin osoite kuuluu verkkoon, joka on poistettu tältä sivustolta."
-
-#: src/Model/Contact.php:1378
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Rajoitettu profiili. Tämä henkilö ei pysty/tule saamaan suoria/henkilökohtaisia ilmoituksia sinulta."
-
-#: src/Model/Contact.php:1429
-msgid "Unable to retrieve contact information."
-msgstr "Kontaktin tietoja ei voitu hakea."
-
-#: src/Model/Contact.php:1646 src/Protocol/DFRN.php:1513
-#, php-format
-msgid "%s's birthday"
-msgstr "%s: syntymäpäivä"
-
-#: src/Model/Contact.php:1647 src/Protocol/DFRN.php:1514
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Hyvää syntymäpäivää %s"
-
-#: src/Model/Item.php:1851
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr "%1$s osallistuu tapahtumaan %3$s, jonka järjestää %2$s"
-
-#: src/Model/Item.php:1856
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr "%1$s ei osallistu tapahtumaan %3$s, jonka järjestää %2$s"
+#: src/Protocol/Diaspora.php:2521
+msgid "Sharing notification from Diaspora network"
+msgstr "Ilmoitus Diaspora -verkosta tapahtuneesta jakamisesta."
 
-#: src/Model/Item.php:1861
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr "%1$s ehkä osallistuu tapahtumaan %3$s, jonka järjestää %2$s"
+#: src/Protocol/Diaspora.php:3609
+msgid "Attachments:"
+msgstr "Liitteitä:"
 
-#: src/Protocol/OStatus.php:1799
+#: src/Protocol/OStatus.php:1798
 #, php-format
 msgid "%s is now following %s."
 msgstr "%s seuraa %s."
 
-#: src/Protocol/OStatus.php:1800
+#: src/Protocol/OStatus.php:1799
 msgid "following"
 msgstr "seuraa"
 
-#: src/Protocol/OStatus.php:1803
+#: src/Protocol/OStatus.php:1802
 #, php-format
 msgid "%s stopped following %s."
 msgstr "%s ei enää seuraa %s."
 
-#: src/Protocol/OStatus.php:1804
+#: src/Protocol/OStatus.php:1803
 msgid "stopped following"
 msgstr "ei enää seuraa"
 
-#: src/Protocol/Diaspora.php:2521
-msgid "Sharing notification from Diaspora network"
-msgstr "Ilmoitus Diaspora -verkosta tapahtuneesta jakamisesta."
-
-#: src/Protocol/Diaspora.php:3609
-msgid "Attachments:"
-msgstr "Liitteitä:"
-
 #: src/Worker/Delivery.php:415
 msgid "(no subject)"
 msgstr "(ei aihetta)"
@@ -9405,8 +9404,12 @@ msgid "This entry was edited"
 msgstr "Tämä kohde oli muokattu"
 
 #: src/Object/Post.php:187
-msgid "Remove from your stream"
-msgstr "Poista virrastasi"
+msgid "Delete globally"
+msgstr ""
+
+#: src/Object/Post.php:187
+msgid "Remove locally"
+msgstr ""
 
 #: src/Object/Post.php:200
 msgid "save to folder"
@@ -9527,15 +9530,15 @@ msgstr "Linkki"
 msgid "Video"
 msgstr "Video"
 
-#: src/App.php:524
+#: src/App.php:526
 msgid "Delete this item?"
 msgstr "Poista tämä kohde?"
 
-#: src/App.php:526
+#: src/App.php:528
 msgid "show fewer"
 msgstr "näytä vähemmän"
 
-#: src/App.php:1114
+#: src/App.php:1117
 msgid "No system theme config value set."
 msgstr ""
 
@@ -9543,12 +9546,12 @@ msgstr ""
 msgid "toggle mobile"
 msgstr "Mobiilisivusto päälle/pois"
 
-#: update.php:193
-#, php-format
-msgid "%s: Updating author-id and owner-id in item and thread table. "
-msgstr ""
-
 #: boot.php:796
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "%s päivitys epäonnistui, katso virhelokit."
+
+#: update.php:193
+#, php-format
+msgid "%s: Updating author-id and owner-id in item and thread table. "
+msgstr ""
index a6f4bbe1e87ab4d0dc8ac0a5b6aa4ba13242f793..a530cd8cf5d2ab3eb5877cef0fd1ea3d357f2f22 100644 (file)
@@ -65,11 +65,6 @@ $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."] = "Lomakkeen turvallisuusavain oli väärin. Tämä voi johtua siitä, että lomake on ollut avoinna liian kauan (>3 tuntia) ennen sen lähettämistä.";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "'%s' tietokantapalvelimen DNS-tieto ei löydy";
 $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.",
@@ -196,6 +191,10 @@ $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["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."] = "Lomakkeen turvallisuusavain oli väärin. Tämä voi johtua siitä, että lomake on ollut avoinna liian kauan (>3 tuntia) ennen sen lähettämistä.";
 $a->strings["newer"] = "uudempi";
 $a->strings["older"] = "vanhempi";
 $a->strings["first"] = "ensimmäinen";
@@ -344,7 +343,7 @@ $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["Resubscribing to OStatus contacts"] = "OStatus -kontaktien uudelleentilaus";
 $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.";
@@ -352,7 +351,6 @@ $a->strings["Do you really want to delete this suggestion?"] = "Haluatko varmast
 $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";
@@ -375,7 +373,7 @@ $a->strings["Or - did you try to upload an empty file?"] = "Yrititkö ladata tyh
 $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["- select -"] = "- valitse -";
-$a->strings["l F d, Y \\@ g:i A"] = "";
+$a->strings["l F d, Y \\@ g:i A"] = "l j.n.Y \\@ H:i";
 $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";
@@ -403,15 +401,6 @@ $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:";
@@ -449,63 +438,6 @@ $a->strings["Contact not found."] = "Kontaktia ei ole.";
 $a->strings["Friend suggestion sent."] = "Ystäväehdotus lähetettiin.";
 $a->strings["Suggest Friends"] = "Ehdota ystäviä";
 $a->strings["Suggest a friend for %s"] = "Ehdota ystävää ystävälle %s";
-$a->strings["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";
@@ -605,6 +537,7 @@ $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["Find"] = "Etsi";
 $a->strings["Update"] = "Päivitä";
 $a->strings["Archive"] = "Arkistoi";
@@ -619,6 +552,7 @@ $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["This is you"] = "Tämä olet sinä";
 $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";
@@ -637,22 +571,6 @@ $a->strings["Existing Page Delegates"] = "Sivun valtuutetut";
 $a->strings["Potential Delegates"] = "Mahdolliset valtuutetut";
 $a->strings["Add"] = "Lisää";
 $a->strings["No entries."] = "Ei kohteita.";
-$a->strings["Event can not end before it has started."] = "Tapahtuma ei voi päättyä ennen kuin on alkanut.";
-$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["Post successful."] = "Viestin lähetys onnistui.";
@@ -739,13 +657,6 @@ $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.";
@@ -780,29 +691,6 @@ $a->strings["You are cordially invited to join me and other close friends on Fri
 $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 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["Personal"] = "Henkilökohtainen";
-$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["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.";
@@ -865,7 +753,7 @@ $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["D, d M Y - g:i A"] = "D, j.n.Y - H:i";
 $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";
@@ -876,24 +764,6 @@ $a->strings["%d message"] = [
        0 => "%d viesti",
        1 => "%d viestiä",
 ];
-$a->strings["Group created."] = "Ryhmä luotu.";
-$a->strings["Could not create group."] = "Ryhmää ei voitu luoda.";
-$a->strings["Group not found."] = "Ryhmää ei löytynyt.";
-$a->strings["Group name changed."] = "Ryhmän nimi muutettu.";
-$a->strings["Save Group"] = "Tallenna ryhmä";
-$a->strings["Create a group of contacts/friends."] = "Luo kontakti/kaveriryhmä";
-$a->strings["Group Name: "] = "Ryhmän nimi:";
-$a->strings["Group removed."] = "Ryhmä poistettu.";
-$a->strings["Unable to remove group."] = "Ryhmää ei voida poistaa.";
-$a->strings["Delete Group"] = "Poista ryhmä";
-$a->strings["Group Editor"] = "Ryhmien muokkausta";
-$a->strings["Edit Group Name"] = "Muokkaa ryhmän nimeä";
-$a->strings["Members"] = "Jäsenet";
-$a->strings["Remove contact from group"] = "Poista kontakti ryhmästä";
-$a->strings["Add contact to group"] = "Lisää kontakti ryhmään";
-$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["Theme settings updated."] = "Teeman asetukset päivitetty.";
 $a->strings["Information"] = "Tietoja";
 $a->strings["Overview"] = "Yleiskatsaus";
@@ -1083,6 +953,7 @@ $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["Enabling this may violate privacy laws like the GDPR"] = "";
 $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"] = "";
@@ -1164,7 +1035,7 @@ $a->strings["If you have a restricted system where the webserver can't access th
 $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["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "";
 $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";
@@ -1284,6 +1155,14 @@ $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["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["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ä.";
@@ -1337,12 +1216,70 @@ $a->strings["Friendica"] = "Friendica";
 $a->strings["GNU Social (Pleroma, Mastodon)"] = "GNU Social (Pleroma, Mastodon)";
 $a->strings["Diaspora (Socialhome, Hubzilla)"] = "Diaspora (Socialhome, Hubzilla)";
 $a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - älä käytä tätä lomaketta. Kirjoita sen sijaan %s Diaspora-hakupalkkiisi.";
+$a->strings["Event can not end before it has started."] = "Tapahtuma ei voi päättyä ennen kuin on alkanut.";
+$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["Permissions"] = "Käyttöoikeudet";
+$a->strings["Failed to remove event"] = "Tapahtuman poisto epäonnistui";
+$a->strings["Event removed"] = "Tapahtuma poistettu";
+$a->strings["Group created."] = "Ryhmä luotu.";
+$a->strings["Could not create group."] = "Ryhmää ei voitu luoda.";
+$a->strings["Group not found."] = "Ryhmää ei löytynyt.";
+$a->strings["Group name changed."] = "Ryhmän nimi muutettu.";
+$a->strings["Save Group"] = "Tallenna ryhmä";
+$a->strings["Create a group of contacts/friends."] = "Luo kontakti/kaveriryhmä";
+$a->strings["Group Name: "] = "Ryhmän nimi:";
+$a->strings["Group removed."] = "Ryhmä poistettu.";
+$a->strings["Unable to remove group."] = "Ryhmää ei voida poistaa.";
+$a->strings["Delete Group"] = "Poista ryhmä";
+$a->strings["Group Editor"] = "Ryhmien muokkausta";
+$a->strings["Edit Group Name"] = "Muokkaa ryhmän nimeä";
+$a->strings["Members"] = "Jäsenet";
+$a->strings["Group is empty"] = "Ryhmä on tyhjä";
+$a->strings["Remove contact from group"] = "Poista kontakti ryhmästä";
+$a->strings["Add contact to group"] = "Lisää kontakti ryhmään";
 $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."] = "Viestin lähetti %s Friendica sosiaaliverkoston kautta.";
 $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["Remove term"] = "Poista kohde";
+$a->strings["Saved Searches"] = "Tallennetut haut";
+$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["Personal"] = "Henkilökohtainen";
+$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["Personal Notes"] = "Henkilökohtaiset tiedot";
 $a->strings["Invalid request identifier."] = "Virheellinen pyyntötunniste.";
 $a->strings["Discard"] = "Hylkää";
 $a->strings["Notifications"] = "Huomautukset";
@@ -1367,6 +1304,58 @@ $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["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["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["Comment"] = "Kommentti";
+$a->strings["Map"] = "Kartta";
+$a->strings["View Album"] = "Näytä albumi";
 $a->strings["Requested profile is not available."] = "Pyydettyä profiilia ei saatavilla.";
 $a->strings["%s's timeline"] = "%s: aikajana";
 $a->strings["%s's posts"] = "%s: julkaisut";
@@ -1479,6 +1468,10 @@ $a->strings["The user id is %d"] = "Käyttäjätunnus on %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["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["Account"] = "Tili";
 $a->strings["Display"] = "Ulkonäkö";
 $a->strings["Social Networks"] = "Sosiaalinen media";
@@ -1569,7 +1562,7 @@ $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["Bandwidth Saver Mode"] = "";
 $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."] = "";
@@ -1594,13 +1587,13 @@ $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["Publish your default profile in the global social directory?"] = "Julkaise oletusprofiilisi maailmanlaajuisessa sosiaaliluettelossa?";
+$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["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["Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Your public posts and replies will still be accessible by other means."] = "";
 $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?";
@@ -1664,6 +1657,13 @@ $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["%1\$s is following %2\$s's %3\$s"] = "";
+$a->strings["[Embedded content - reload page to view]"] = "[Upotettu sisältö - näet sen päivittämällä sivun]";
+$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["default"] = "oletus";
 $a->strings["greenzero"] = "greenzero";
 $a->strings["purplezero"] = "purplezero";
@@ -2026,6 +2026,32 @@ $a->strings["Errors encountered performing database changes: "] = "Tietokannan m
 $a->strings["%s: Database update"] = "%s: Tietokantapäivitys";
 $a->strings["%s: updating %s table."] = "%s: päivitetään %s-taulukkoa.";
 $a->strings["[no subject]"] = "[ei aihetta]";
+$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["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."] = "Kontaktia ei pystytty lisäämään. Tarkista verkkoasetukset omista asetuksistasi (Settings -> Social Networks).";
+$a->strings["This site is not configured to allow communications with other networks."] = "Tämä sivusto ei salli yhteyksiä muiden verkkojen kanssa..";
+$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."] = "Julkaisija tai nimi puuttuu.";
+$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."] = "Käytä \"mailto:\" osoitteen edessä pakottaaksesi sähköpostin tarkastuksen.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Profiilin osoite kuuluu verkkoon, joka on poistettu tältä sivustolta.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Rajoitettu profiili. Tämä henkilö ei pysty/tule saamaan suoria/henkilökohtaisia ilmoituksia sinulta.";
+$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["Starts:"] = "Alkaa:";
 $a->strings["Finishes:"] = "Päättyy:";
 $a->strings["all-day"] = "koko päivä";
@@ -2036,18 +2062,13 @@ $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"] = "D g:i A";
-$a->strings["g:i A"] = "g:i A";
+$a->strings["D g:i A"] = "D H:i";
+$a->strings["g:i A"] = "H:i";
 $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["%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";
@@ -2102,33 +2123,12 @@ $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Yo
 $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"] = "\n\t\t\tHei %1\$s,\n\t\t\t\tKiitoksia rekisteröinnistä sivustolle %2\$s. Tilisi on luotu.\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."] = "Kontaktia ei pystytty lisäämään. Tarkista verkkoasetukset omista asetuksistasi (Settings -> Social Networks).";
-$a->strings["This site is not configured to allow communications with other networks."] = "Tämä sivusto ei salli yhteyksiä muiden verkkojen kanssa..";
-$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."] = "Julkaisija tai nimi puuttuu.";
-$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."] = "Käytä \"mailto:\" osoitteen edessä pakottaaksesi sähköpostin tarkastuksen.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Profiilin osoite kuuluu verkkoon, joka on poistettu tältä sivustolta.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Rajoitettu profiili. Tämä henkilö ei pysty/tule saamaan suoria/henkilökohtaisia ilmoituksia sinulta.";
-$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["Sharing notification from Diaspora network"] = "Ilmoitus Diaspora -verkosta tapahtuneesta jakamisesta.";
+$a->strings["Attachments:"] = "Liitteitä:";
 $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"] = "Ilmoitus Diaspora -verkosta tapahtuneesta jakamisesta.";
-$a->strings["Attachments:"] = "Liitteitä:";
 $a->strings["(no subject)"] = "(ei aihetta)";
 $a->strings["Logged out."] = "Kirjautunut ulos.";
 $a->strings["Create a New Account"] = "Luo uusi käyttäjätili";
@@ -2145,7 +2145,8 @@ $a->strings["This data is required for communication and is passed on to the nod
 $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. Deletion of the data will also be requested from the nodes of the communication partners."] = "";
 $a->strings["Privacy Statement"] = "Tietosuojalausunto";
 $a->strings["This entry was edited"] = "Tämä kohde oli muokattu";
-$a->strings["Remove from your stream"] = "Poista virrastasi";
+$a->strings["Delete globally"] = "";
+$a->strings["Remove locally"] = "";
 $a->strings["save to folder"] = "tallenna kansioon";
 $a->strings["I will attend"] = "Osallistun";
 $a->strings["I will not attend"] = "En aio osallistua";
@@ -2182,5 +2183,5 @@ $a->strings["Delete this item?"] = "Poista tämä kohde?";
 $a->strings["show fewer"] = "näytä vähemmän";
 $a->strings["No system theme config value set."] = "";
 $a->strings["toggle mobile"] = "Mobiilisivusto päälle/pois";
-$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = "";
 $a->strings["Update %s failed. See error logs."] = "%s päivitys epäonnistui, katso virhelokit.";
+$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = "";
index dbf98b685e8b7c089cfa6bdd3bfb9020d121a922..43695c39f84c2dc2817d989e83abfd034f7188da 100644 (file)
@@ -16,8 +16,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-20 14:22+0200\n"
-"PO-Revision-Date: 2018-05-28 08:58+0000\n"
+"POT-Creation-Date: 2018-06-02 08:49+0200\n"
+"PO-Revision-Date: 2018-06-06 14:52+0000\n"
 "Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
 "Language-Team: Italian (http://www.transifex.com/Friendica/friendica/language/it/)\n"
 "MIME-Version: 1.0\n"
@@ -290,7 +290,7 @@ msgstr "'%1$s' può scegliere di estendere questa relazione in una relazione pi
 msgid "Please visit %s  if you wish to make any changes to this relationship."
 msgstr "Visita %s se desideri modificare questo collegamento."
 
-#: include/enotify.php:360 mod/removeme.php:44
+#: include/enotify.php:360 mod/removeme.php:45
 msgid "[Friendica System Notify]"
 msgstr "[Notifica di Sistema di Friendica]"
 
@@ -318,29 +318,6 @@ msgstr "Nome completo: %1$s\nIndirizzo del sito: %2$s\nNome utente: %3$s (%4$s)"
 msgid "Please visit %s to approve or reject the request."
 msgstr "Visita %s per approvare o rifiutare la richiesta."
 
-#: include/security.php:81
-msgid "Welcome "
-msgstr "Ciao"
-
-#: include/security.php:82
-msgid "Please upload a profile photo."
-msgstr "Carica una foto per il profilo."
-
-#: include/security.php:84
-msgid "Welcome back "
-msgstr "Ciao "
-
-#: 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 "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lungo (più di tre ore) prima di inviarla."
-
-#: include/dba.php:59
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Non trovo le informazioni DNS per il database server '%s'"
-
 #: include/api.php:1202
 #, php-format
 msgid "Daily posting limit of %d post reached. The post was rejected."
@@ -361,475 +338,474 @@ msgstr[1] "Limite settimanale di %d messaggi raggiunto. Il messaggio è stato ri
 msgid "Monthly posting limit of %d post reached. The post was rejected."
 msgstr "Limite mensile di %d messaggi raggiunto. Il messaggio è stato rifiutato."
 
-#: include/api.php:4522 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:4521 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:710 mod/photos.php:1137
+#: mod/photos.php:1154 mod/photos.php:1678 src/Model/User.php:555
+#: src/Model/User.php:563 src/Model/User.php:571
 msgid "Profile Photos"
 msgstr "Foto del profilo"
 
-#: include/conversation.php:144 include/conversation.php:282
-#: include/text.php:1749 src/Model/Item.php:1970
+#: include/conversation.php:144 include/conversation.php:279
+#: include/text.php:1749 src/Model/Item.php:2002
 msgid "event"
 msgstr "l'evento"
 
 #: 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:1968
+#: include/conversation.php:282 include/conversation.php:291
+#: mod/subthread.php:101 mod/tagger.php:72 src/Model/Item.php:2000
 #: src/Protocol/Diaspora.php:1957
 msgid "status"
 msgstr "stato"
 
-#: include/conversation.php:152 include/conversation.php:290
-#: include/text.php:1751 mod/subthread.php:97 mod/tagger.php:72
-#: src/Model/Item.php:1968
+#: include/conversation.php:152 include/conversation.php:287
+#: include/text.php:1751 mod/subthread.php:101 mod/tagger.php:72
+#: src/Model/Item.php:2000
 msgid "photo"
 msgstr "foto"
 
-#: include/conversation.php:164 src/Model/Item.php:1841
+#: include/conversation.php:164 src/Model/Item.php:1873
 #: src/Protocol/Diaspora.php:1953
 #, php-format
 msgid "%1$s likes %2$s's %3$s"
 msgstr "A %1$s piace %3$s di %2$s"
 
-#: include/conversation.php:167 src/Model/Item.php:1846
+#: include/conversation.php:166 src/Model/Item.php:1878
 #, php-format
 msgid "%1$s doesn't like %2$s's %3$s"
 msgstr "A %1$s non piace %3$s di %2$s"
 
-#: include/conversation.php:170
+#: include/conversation.php:168
 #, php-format
 msgid "%1$s attends %2$s's %3$s"
 msgstr "%1$s partecipa a %3$s di %2$s"
 
-#: include/conversation.php:173
+#: include/conversation.php:170
 #, php-format
 msgid "%1$s doesn't attend %2$s's %3$s"
 msgstr "%1$s non partecipa a %3$s di %2$s"
 
-#: include/conversation.php:176
+#: include/conversation.php:172
 #, php-format
 msgid "%1$s attends maybe %2$s's %3$s"
 msgstr "%1$s forse partecipa a %3$s di %2$s"
 
-#: include/conversation.php:209
+#: include/conversation.php:206
 #, php-format
 msgid "%1$s is now friends with %2$s"
 msgstr "%1$s e %2$s adesso sono amici"
 
-#: include/conversation.php:250
+#: include/conversation.php:247
 #, php-format
 msgid "%1$s poked %2$s"
 msgstr "%1$s ha stuzzicato %2$s"
 
-#: include/conversation.php:304 mod/tagger.php:110
+#: include/conversation.php:301 mod/tagger.php:110
 #, php-format
 msgid "%1$s tagged %2$s's %3$s with %4$s"
 msgstr "%1$s ha taggato %3$s di %2$s con %4$s"
 
-#: include/conversation.php:331
+#: include/conversation.php:328
 msgid "post/item"
 msgstr "post/elemento"
 
-#: include/conversation.php:332
+#: include/conversation.php:329
 #, php-format
 msgid "%1$s marked %2$s's %3$s as favorite"
 msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito"
 
-#: include/conversation.php:608 mod/photos.php:1501 mod/profiles.php:355
+#: include/conversation.php:609 mod/photos.php:1495 mod/profiles.php:355
 msgid "Likes"
 msgstr "Mi piace"
 
-#: include/conversation.php:608 mod/photos.php:1501 mod/profiles.php:359
+#: include/conversation.php:609 mod/photos.php:1495 mod/profiles.php:359
 msgid "Dislikes"
 msgstr "Non mi piace"
 
-#: include/conversation.php:609 include/conversation.php:1639
-#: mod/photos.php:1502
+#: include/conversation.php:610 include/conversation.php:1638
+#: mod/photos.php:1496
 msgid "Attending"
 msgid_plural "Attending"
 msgstr[0] "Partecipa"
 msgstr[1] "Partecipano"
 
-#: include/conversation.php:609 mod/photos.php:1502
+#: include/conversation.php:610 mod/photos.php:1496
 msgid "Not attending"
 msgstr "Non partecipa"
 
-#: include/conversation.php:609 mod/photos.php:1502
+#: include/conversation.php:610 mod/photos.php:1496
 msgid "Might attend"
 msgstr "Forse partecipa"
 
-#: include/conversation.php:721 mod/photos.php:1569 src/Object/Post.php:192
+#: include/conversation.php:722 mod/photos.php:1563 src/Object/Post.php:192
 msgid "Select"
 msgstr "Seleziona"
 
-#: include/conversation.php:722 mod/photos.php:1570 mod/contacts.php:830
-#: mod/contacts.php:1035 mod/admin.php:1827 mod/settings.php:730
-#: src/Object/Post.php:187
+#: include/conversation.php:723 mod/contacts.php:830 mod/contacts.php:1035
+#: mod/admin.php:1832 mod/photos.php:1564 mod/settings.php:730
 msgid "Delete"
 msgstr "Rimuovi"
 
-#: include/conversation.php:760 src/Object/Post.php:371
+#: include/conversation.php:761 src/Object/Post.php:371
 #: src/Object/Post.php:372
 #, php-format
 msgid "View %s's profile @ %s"
 msgstr "Vedi il profilo di %s @ %s"
 
-#: include/conversation.php:772 src/Object/Post.php:359
+#: include/conversation.php:773 src/Object/Post.php:359
 msgid "Categories:"
 msgstr "Categorie:"
 
-#: include/conversation.php:773 src/Object/Post.php:360
+#: include/conversation.php:774 src/Object/Post.php:360
 msgid "Filed under:"
 msgstr "Archiviato in:"
 
-#: include/conversation.php:780 src/Object/Post.php:385
+#: include/conversation.php:781 src/Object/Post.php:385
 #, php-format
 msgid "%s from %s"
 msgstr "%s da %s"
 
-#: include/conversation.php:795
+#: include/conversation.php:796
 msgid "View in context"
 msgstr "Vedi nel contesto"
 
-#: include/conversation.php:797 include/conversation.php:1312
-#: mod/wallmessage.php:145 mod/editpost.php:125 mod/photos.php:1473
-#: mod/message.php:245 mod/message.php:414 src/Object/Post.php:410
+#: include/conversation.php:798 include/conversation.php:1313
+#: mod/wallmessage.php:145 mod/editpost.php:125 mod/message.php:245
+#: mod/message.php:414 mod/photos.php:1467 src/Object/Post.php:410
 msgid "Please wait"
 msgstr "Attendi"
 
-#: include/conversation.php:868
+#: include/conversation.php:869
 msgid "remove"
 msgstr "rimuovi"
 
-#: include/conversation.php:872
+#: include/conversation.php:873
 msgid "Delete Selected Items"
 msgstr "Cancella elementi selezionati"
 
-#: include/conversation.php:1017 view/theme/frio/theme.php:352
+#: include/conversation.php:1018 view/theme/frio/theme.php:352
 msgid "Follow Thread"
 msgstr "Segui la discussione"
 
-#: include/conversation.php:1018 src/Model/Contact.php:662
+#: include/conversation.php:1019 src/Model/Contact.php:662
 msgid "View Status"
 msgstr "Visualizza stato"
 
-#: include/conversation.php:1019 include/conversation.php:1035
+#: include/conversation.php:1020 include/conversation.php:1036
 #: mod/allfriends.php:73 mod/suggest.php:82 mod/match.php:89
 #: mod/directory.php:159 mod/dirfind.php:217 src/Model/Contact.php:602
 #: src/Model/Contact.php:615 src/Model/Contact.php:663
 msgid "View Profile"
 msgstr "Visualizza profilo"
 
-#: include/conversation.php:1020 src/Model/Contact.php:664
+#: include/conversation.php:1021 src/Model/Contact.php:664
 msgid "View Photos"
 msgstr "Visualizza foto"
 
-#: include/conversation.php:1021 src/Model/Contact.php:665
+#: include/conversation.php:1022 src/Model/Contact.php:665
 msgid "Network Posts"
 msgstr "Post della Rete"
 
-#: include/conversation.php:1022 src/Model/Contact.php:666
+#: include/conversation.php:1023 src/Model/Contact.php:666
 msgid "View Contact"
 msgstr "Mostra contatto"
 
-#: include/conversation.php:1023 src/Model/Contact.php:668
+#: include/conversation.php:1024 src/Model/Contact.php:668
 msgid "Send PM"
 msgstr "Invia messaggio privato"
 
-#: include/conversation.php:1027 src/Model/Contact.php:669
+#: include/conversation.php:1028 src/Model/Contact.php:669
 msgid "Poke"
 msgstr "Stuzzica"
 
-#: include/conversation.php:1032 mod/allfriends.php:74 mod/suggest.php:83
+#: include/conversation.php:1033 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:616
 msgid "Connect/Follow"
 msgstr "Connetti/segui"
 
-#: include/conversation.php:1151
+#: include/conversation.php:1152
 #, php-format
 msgid "%s likes this."
 msgstr "Piace a %s."
 
-#: include/conversation.php:1154
+#: include/conversation.php:1155
 #, php-format
 msgid "%s doesn't like this."
 msgstr "Non piace a %s."
 
-#: include/conversation.php:1157
+#: include/conversation.php:1158
 #, php-format
 msgid "%s attends."
 msgstr "%s partecipa."
 
-#: include/conversation.php:1160
+#: include/conversation.php:1161
 #, php-format
 msgid "%s doesn't attend."
 msgstr "%s non partecipa."
 
-#: include/conversation.php:1163
+#: include/conversation.php:1164
 #, php-format
 msgid "%s attends maybe."
 msgstr "%s forse partecipa."
 
-#: include/conversation.php:1174
+#: include/conversation.php:1175
 msgid "and"
 msgstr "e"
 
-#: include/conversation.php:1180
+#: include/conversation.php:1181
 #, php-format
 msgid "and %d other people"
 msgstr "e altre %d persone"
 
-#: include/conversation.php:1189
+#: include/conversation.php:1190
 #, php-format
 msgid "<span  %1$s>%2$d people</span> like this"
 msgstr "Piace a <span %1$s>%2$d persone</span>."
 
-#: include/conversation.php:1190
+#: include/conversation.php:1191
 #, php-format
 msgid "%s like this."
 msgstr "a %s piace."
 
-#: include/conversation.php:1193
+#: include/conversation.php:1194
 #, php-format
 msgid "<span  %1$s>%2$d people</span> don't like this"
 msgstr "Non piace a <span %1$s>%2$d persone</span>."
 
-#: include/conversation.php:1194
+#: include/conversation.php:1195
 #, php-format
 msgid "%s don't like this."
 msgstr "a %s non piace."
 
-#: include/conversation.php:1197
+#: include/conversation.php:1198
 #, php-format
 msgid "<span  %1$s>%2$d people</span> attend"
 msgstr "<span  %1$s>%2$d persone</span> partecipano"
 
-#: include/conversation.php:1198
+#: include/conversation.php:1199
 #, php-format
 msgid "%s attend."
 msgstr "%s partecipa."
 
-#: include/conversation.php:1201
+#: include/conversation.php:1202
 #, php-format
 msgid "<span  %1$s>%2$d people</span> don't attend"
 msgstr "<span  %1$s>%2$d persone</span> non partecipano"
 
-#: include/conversation.php:1202
+#: include/conversation.php:1203
 #, php-format
 msgid "%s don't attend."
 msgstr "%s non partecipa."
 
-#: include/conversation.php:1205
+#: include/conversation.php:1206
 #, php-format
 msgid "<span  %1$s>%2$d people</span> attend maybe"
 msgstr "<span %1$s>%2$d persone</span> forse partecipano"
 
-#: include/conversation.php:1206
+#: include/conversation.php:1207
 #, php-format
 msgid "%s attend maybe."
 msgstr "%s forse partecipano."
 
-#: include/conversation.php:1236 include/conversation.php:1252
+#: include/conversation.php:1237 include/conversation.php:1253
 msgid "Visible to <strong>everybody</strong>"
 msgstr "Visibile a <strong>tutti</strong>"
 
-#: include/conversation.php:1237 include/conversation.php:1253
+#: include/conversation.php:1238 include/conversation.php:1254
 #: mod/wallmessage.php:120 mod/wallmessage.php:127 mod/message.php:181
 #: mod/message.php:188 mod/message.php:324 mod/message.php:331
 msgid "Please enter a link URL:"
 msgstr "Inserisci l'indirizzo del link:"
 
-#: include/conversation.php:1238 include/conversation.php:1254
+#: include/conversation.php:1239 include/conversation.php:1255
 msgid "Please enter a video link/URL:"
 msgstr "Inserisci un collegamento video / URL:"
 
-#: include/conversation.php:1239 include/conversation.php:1255
+#: include/conversation.php:1240 include/conversation.php:1256
 msgid "Please enter an audio link/URL:"
 msgstr "Inserisci un collegamento audio / URL:"
 
-#: include/conversation.php:1240 include/conversation.php:1256
+#: include/conversation.php:1241 include/conversation.php:1257
 msgid "Tag term:"
 msgstr "Tag:"
 
-#: include/conversation.php:1241 include/conversation.php:1257
+#: include/conversation.php:1242 include/conversation.php:1258
 #: mod/filer.php:34
 msgid "Save to Folder:"
 msgstr "Salva nella Cartella:"
 
-#: include/conversation.php:1242 include/conversation.php:1258
+#: include/conversation.php:1243 include/conversation.php:1259
 msgid "Where are you right now?"
 msgstr "Dove sei ora?"
 
-#: include/conversation.php:1243
+#: include/conversation.php:1244
 msgid "Delete item(s)?"
 msgstr "Cancellare questo elemento/i?"
 
-#: include/conversation.php:1290
+#: include/conversation.php:1291
 msgid "New Post"
 msgstr "Nuovo Messaggio"
 
-#: include/conversation.php:1293
+#: include/conversation.php:1294
 msgid "Share"
 msgstr "Condividi"
 
-#: include/conversation.php:1294 mod/wallmessage.php:143 mod/editpost.php:111
+#: include/conversation.php:1295 mod/wallmessage.php:143 mod/editpost.php:111
 #: mod/message.php:243 mod/message.php:411
 msgid "Upload photo"
 msgstr "Carica foto"
 
-#: include/conversation.php:1295 mod/editpost.php:112
+#: include/conversation.php:1296 mod/editpost.php:112
 msgid "upload photo"
 msgstr "carica foto"
 
-#: include/conversation.php:1296 mod/editpost.php:113
+#: include/conversation.php:1297 mod/editpost.php:113
 msgid "Attach file"
 msgstr "Allega file"
 
-#: include/conversation.php:1297 mod/editpost.php:114
+#: include/conversation.php:1298 mod/editpost.php:114
 msgid "attach file"
 msgstr "allega file"
 
-#: include/conversation.php:1298 mod/wallmessage.php:144 mod/editpost.php:115
+#: include/conversation.php:1299 mod/wallmessage.php:144 mod/editpost.php:115
 #: mod/message.php:244 mod/message.php:412
 msgid "Insert web link"
 msgstr "Inserisci link"
 
-#: include/conversation.php:1299 mod/editpost.php:116
+#: include/conversation.php:1300 mod/editpost.php:116
 msgid "web link"
 msgstr "link web"
 
-#: include/conversation.php:1300 mod/editpost.php:117
+#: include/conversation.php:1301 mod/editpost.php:117
 msgid "Insert video link"
 msgstr "Inserire collegamento video"
 
-#: include/conversation.php:1301 mod/editpost.php:118
+#: include/conversation.php:1302 mod/editpost.php:118
 msgid "video link"
 msgstr "link video"
 
-#: include/conversation.php:1302 mod/editpost.php:119
+#: include/conversation.php:1303 mod/editpost.php:119
 msgid "Insert audio link"
 msgstr "Inserisci collegamento audio"
 
-#: include/conversation.php:1303 mod/editpost.php:120
+#: include/conversation.php:1304 mod/editpost.php:120
 msgid "audio link"
 msgstr "link audio"
 
-#: include/conversation.php:1304 mod/editpost.php:121
+#: include/conversation.php:1305 mod/editpost.php:121
 msgid "Set your location"
 msgstr "La tua posizione"
 
-#: include/conversation.php:1305 mod/editpost.php:122
+#: include/conversation.php:1306 mod/editpost.php:122
 msgid "set location"
 msgstr "posizione"
 
-#: include/conversation.php:1306 mod/editpost.php:123
+#: include/conversation.php:1307 mod/editpost.php:123
 msgid "Clear browser location"
 msgstr "Rimuovi la localizzazione data dal browser"
 
-#: include/conversation.php:1307 mod/editpost.php:124
+#: include/conversation.php:1308 mod/editpost.php:124
 msgid "clear location"
 msgstr "canc. pos."
 
-#: include/conversation.php:1309 mod/editpost.php:138
+#: include/conversation.php:1310 mod/editpost.php:138
 msgid "Set title"
 msgstr "Scegli un titolo"
 
-#: include/conversation.php:1311 mod/editpost.php:140
+#: include/conversation.php:1312 mod/editpost.php:140
 msgid "Categories (comma-separated list)"
 msgstr "Categorie (lista separata da virgola)"
 
-#: include/conversation.php:1313 mod/editpost.php:126
+#: include/conversation.php:1314 mod/editpost.php:126
 msgid "Permission settings"
 msgstr "Impostazioni permessi"
 
-#: include/conversation.php:1314 mod/editpost.php:155
+#: include/conversation.php:1315 mod/editpost.php:155
 msgid "permissions"
 msgstr "permessi"
 
-#: include/conversation.php:1322 mod/editpost.php:135
+#: include/conversation.php:1323 mod/editpost.php:135
 msgid "Public post"
 msgstr "Messaggio pubblico"
 
-#: include/conversation.php:1326 mod/editpost.php:146 mod/photos.php:1492
-#: mod/photos.php:1531 mod/photos.php:1604 mod/events.php:528
+#: include/conversation.php:1327 mod/editpost.php:146 mod/events.php:529
+#: mod/photos.php:1486 mod/photos.php:1525 mod/photos.php:1598
 #: src/Object/Post.php:813
 msgid "Preview"
 msgstr "Anteprima"
 
-#: include/conversation.php:1330 include/items.php:387 mod/fbrowser.php:103
+#: include/conversation.php:1331 include/items.php:388 mod/fbrowser.php:103
 #: mod/fbrowser.php:134 mod/suggest.php:41 mod/tagrm.php:19 mod/tagrm.php:99
-#: mod/editpost.php:149 mod/photos.php:248 mod/photos.php:324
-#: mod/videos.php:147 mod/contacts.php:475 mod/unfollow.php:117
+#: mod/editpost.php:149 mod/contacts.php:475 mod/unfollow.php:117
 #: mod/follow.php:161 mod/message.php:141 mod/dfrn_request.php:658
-#: mod/settings.php:670 mod/settings.php:696
+#: mod/photos.php:248 mod/photos.php:317 mod/settings.php:670
+#: mod/settings.php:696 mod/videos.php:147
 msgid "Cancel"
 msgstr "Annulla"
 
-#: include/conversation.php:1335
+#: include/conversation.php:1336
 msgid "Post to Groups"
 msgstr "Invia ai Gruppi"
 
-#: include/conversation.php:1336
+#: include/conversation.php:1337
 msgid "Post to Contacts"
 msgstr "Invia ai Contatti"
 
-#: include/conversation.php:1337
+#: include/conversation.php:1338
 msgid "Private post"
 msgstr "Post privato"
 
-#: include/conversation.php:1342 mod/editpost.php:153
+#: include/conversation.php:1343 mod/editpost.php:153
 #: src/Model/Profile.php:338
 msgid "Message"
 msgstr "Messaggio"
 
-#: include/conversation.php:1343 mod/editpost.php:154
+#: include/conversation.php:1344 mod/editpost.php:154
 msgid "Browser"
 msgstr "Browser"
 
-#: include/conversation.php:1610
+#: include/conversation.php:1609
 msgid "View all"
 msgstr "Mostra tutto"
 
-#: include/conversation.php:1633
+#: include/conversation.php:1632
 msgid "Like"
 msgid_plural "Likes"
 msgstr[0] "Mi piace"
 msgstr[1] "Mi piace"
 
-#: include/conversation.php:1636
+#: include/conversation.php:1635
 msgid "Dislike"
 msgid_plural "Dislikes"
 msgstr[0] "Non mi piace"
 msgstr[1] "Non mi piace"
 
-#: include/conversation.php:1642
+#: include/conversation.php:1641
 msgid "Not Attending"
 msgid_plural "Not Attending"
 msgstr[0] "Non partecipa"
 msgstr[1] "Non partecipano"
 
-#: include/conversation.php:1645 src/Content/ContactSelector.php:125
+#: include/conversation.php:1644 src/Content/ContactSelector.php:125
 msgid "Undecided"
 msgid_plural "Undecided"
 msgstr[0] "Indeciso"
 msgstr[1] "Indecisi"
 
-#: include/items.php:342 mod/notice.php:22 mod/viewsrc.php:21
-#: mod/admin.php:277 mod/admin.php:1883 mod/admin.php:2131 mod/display.php:72
+#: include/items.php:343 mod/notice.php:22 mod/viewsrc.php:21
+#: mod/admin.php:277 mod/admin.php:1888 mod/admin.php:2136 mod/display.php:72
 #: mod/display.php:255 mod/display.php:356
 msgid "Item not found."
 msgstr "Elemento non trovato."
 
-#: include/items.php:382
+#: include/items.php:383
 msgid "Do you really want to delete this item?"
 msgstr "Vuoi veramente cancellare questo elemento?"
 
-#: include/items.php:384 mod/api.php:110 mod/suggest.php:38
+#: include/items.php:385 mod/api.php:110 mod/suggest.php:38
 #: mod/contacts.php:472 mod/follow.php:150 mod/message.php:138
 #: mod/dfrn_request.php:648 mod/profiles.php:543 mod/profiles.php:546
 #: mod/profiles.php:568 mod/register.php:238 mod/settings.php:1094
@@ -840,341 +816,360 @@ msgstr "Vuoi veramente cancellare questo elemento?"
 msgid "Yes"
 msgstr "Si"
 
-#: include/items.php:401 mod/allfriends.php:21 mod/api.php:35 mod/api.php:40
+#: include/items.php:402 mod/allfriends.php:21 mod/api.php:35 mod/api.php:40
 #: mod/attach.php:38 mod/common.php:26 mod/nogroup.php:28
 #: mod/repair_ostatus.php:13 mod/suggest.php:60 mod/uimport.php:28
 #: 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/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/ostatus_subscribe.php:16 mod/profile_photo.php:30
+#: mod/editpost.php:18 mod/fsuggest.php:80 mod/cal.php:304
+#: mod/contacts.php:386 mod/delegate.php:25 mod/delegate.php:43
+#: mod/delegate.php:54 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/crepair.php:98 mod/message.php:59 mod/message.php:104 mod/group.php:26
-#: mod/dfrn_confirm.php:68 mod/item.php:160 mod/notifications.php:73
-#: mod/profiles.php:182 mod/profiles.php:513 mod/register.php:54
-#: mod/settings.php:43 mod/settings.php:142 mod/settings.php:659 index.php:436
+#: mod/follow.php:118 mod/invite.php:20 mod/invite.php:111 mod/crepair.php:98
+#: mod/message.php:59 mod/message.php:104 mod/dfrn_confirm.php:68
+#: mod/events.php:194 mod/group.php:26 mod/item.php:160 mod/network.php:32
+#: mod/notes.php:30 mod/notifications.php:73 mod/photos.php:174
+#: mod/photos.php:1039 mod/profiles.php:182 mod/profiles.php:513
+#: mod/register.php:54 mod/settings.php:43 mod/settings.php:142
+#: mod/settings.php:659 index.php:436
 msgid "Permission denied."
 msgstr "Permesso negato."
 
-#: include/items.php:471 src/Content/Feature.php:96
+#: include/items.php:472 src/Content/Feature.php:96
 msgid "Archives"
 msgstr "Archivi"
 
-#: include/items.php:477 view/theme/vier/theme.php:258
+#: include/items.php:478 view/theme/vier/theme.php:258
 #: src/Content/ForumManager.php:130 src/Content/Widget.php:317
-#: src/Object/Post.php:438 src/App.php:525
+#: src/Object/Post.php:438 src/App.php:527
 msgid "show more"
 msgstr "mostra di più"
 
-#: include/text.php:303
+#: include/security.php:81
+msgid "Welcome "
+msgstr "Ciao"
+
+#: include/security.php:82
+msgid "Please upload a profile photo."
+msgstr "Carica una foto per il profilo."
+
+#: include/security.php:84
+msgid "Welcome back "
+msgstr "Ciao "
+
+#: include/security.php:449
+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 "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lungo (più di tre ore) prima di inviarla."
+
+#: include/text.php:302
 msgid "newer"
 msgstr "nuovi"
 
-#: include/text.php:304
+#: include/text.php:303
 msgid "older"
 msgstr "vecchi"
 
-#: include/text.php:309
+#: include/text.php:308
 msgid "first"
 msgstr "primo"
 
-#: include/text.php:310
+#: include/text.php:309
 msgid "prev"
 msgstr "prec"
 
-#: include/text.php:344
+#: include/text.php:343
 msgid "next"
 msgstr "succ"
 
-#: include/text.php:345
+#: include/text.php:344
 msgid "last"
 msgstr "ultimo"
 
-#: include/text.php:399
+#: include/text.php:398
 msgid "Loading more entries..."
 msgstr "Carico più elementi..."
 
-#: include/text.php:400
+#: include/text.php:399
 msgid "The end"
 msgstr "Fine"
 
-#: include/text.php:885
+#: include/text.php:884
 msgid "No contacts"
 msgstr "Nessun contatto"
 
-#: include/text.php:909
+#: include/text.php:908
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
 msgstr[0] "%d contatto"
 msgstr[1] "%d contatti"
 
-#: include/text.php:922
+#: include/text.php:921
 msgid "View Contacts"
 msgstr "Visualizza i contatti"
 
-#: include/text.php:1011 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 "Salva"
 
-#: include/text.php:1011
+#: include/text.php:1010
 msgid "Follow"
 msgstr "Segui"
 
-#: include/text.php:1017 mod/search.php:155 src/Content/Nav.php:142
+#: include/text.php:1016 mod/search.php:155 src/Content/Nav.php:142
 msgid "Search"
 msgstr "Cerca"
 
-#: include/text.php:1020 src/Content/Nav.php:58
+#: include/text.php:1019 src/Content/Nav.php:58
 msgid "@name, !forum, #tags, content"
 msgstr "@nome, !forum, #tag, contenuto"
 
-#: include/text.php:1026 src/Content/Nav.php:145
+#: include/text.php:1025 src/Content/Nav.php:145
 msgid "Full Text"
 msgstr "Testo Completo"
 
-#: include/text.php:1027 src/Content/Widget/TagCloud.php:54
+#: include/text.php:1026 src/Content/Widget/TagCloud.php:54
 #: src/Content/Nav.php:146
 msgid "Tags"
 msgstr "Tags:"
 
-#: include/text.php:1028 mod/viewcontacts.php:131 mod/contacts.php:814
+#: 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:213 src/Model/Profile.php:955 src/Model/Profile.php:958
 msgid "Contacts"
 msgstr "Contatti"
 
-#: include/text.php:1031 view/theme/vier/theme.php:253
+#: include/text.php:1030 view/theme/vier/theme.php:253
 #: src/Content/ForumManager.php:125 src/Content/Nav.php:151
 msgid "Forums"
 msgstr "Forum"
 
-#: include/text.php:1075
+#: include/text.php:1074
 msgid "poke"
 msgstr "stuzzica"
 
-#: include/text.php:1075
+#: include/text.php:1074
 msgid "poked"
 msgstr "ha stuzzicato"
 
-#: include/text.php:1076
+#: include/text.php:1075
 msgid "ping"
 msgstr "invia un ping"
 
-#: include/text.php:1076
+#: include/text.php:1075
 msgid "pinged"
 msgstr "ha inviato un ping"
 
-#: include/text.php:1077
+#: include/text.php:1076
 msgid "prod"
 msgstr "pungola"
 
-#: include/text.php:1077
+#: include/text.php:1076
 msgid "prodded"
 msgstr "ha pungolato"
 
-#: include/text.php:1078
+#: include/text.php:1077
 msgid "slap"
 msgstr "schiaffeggia"
 
-#: include/text.php:1078
+#: include/text.php:1077
 msgid "slapped"
 msgstr "ha schiaffeggiato"
 
-#: include/text.php:1079
+#: include/text.php:1078
 msgid "finger"
 msgstr "tocca"
 
-#: include/text.php:1079
+#: include/text.php:1078
 msgid "fingered"
 msgstr "ha toccato"
 
-#: include/text.php:1080
+#: include/text.php:1079
 msgid "rebuff"
 msgstr "respingi"
 
-#: include/text.php:1080
+#: include/text.php:1079
 msgid "rebuffed"
 msgstr "ha respinto"
 
-#: include/text.php:1094 mod/settings.php:935 src/Model/Event.php:379
+#: include/text.php:1093 mod/settings.php:935 src/Model/Event.php:379
 msgid "Monday"
 msgstr "Lunedì"
 
-#: include/text.php:1094 src/Model/Event.php:380
+#: include/text.php:1093 src/Model/Event.php:380
 msgid "Tuesday"
 msgstr "Martedì"
 
-#: include/text.php:1094 src/Model/Event.php:381
+#: include/text.php:1093 src/Model/Event.php:381
 msgid "Wednesday"
 msgstr "Mercoledì"
 
-#: include/text.php:1094 src/Model/Event.php:382
+#: include/text.php:1093 src/Model/Event.php:382
 msgid "Thursday"
 msgstr "Giovedì"
 
-#: include/text.php:1094 src/Model/Event.php:383
+#: include/text.php:1093 src/Model/Event.php:383
 msgid "Friday"
 msgstr "Venerdì"
 
-#: include/text.php:1094 src/Model/Event.php:384
+#: include/text.php:1093 src/Model/Event.php:384
 msgid "Saturday"
 msgstr "Sabato"
 
-#: include/text.php:1094 mod/settings.php:935 src/Model/Event.php:378
+#: include/text.php:1093 mod/settings.php:935 src/Model/Event.php:378
 msgid "Sunday"
 msgstr "Domenica"
 
-#: include/text.php:1098 src/Model/Event.php:399
+#: include/text.php:1097 src/Model/Event.php:399
 msgid "January"
 msgstr "Gennaio"
 
-#: include/text.php:1098 src/Model/Event.php:400
+#: include/text.php:1097 src/Model/Event.php:400
 msgid "February"
 msgstr "Febbraio"
 
-#: include/text.php:1098 src/Model/Event.php:401
+#: include/text.php:1097 src/Model/Event.php:401
 msgid "March"
 msgstr "Marzo"
 
-#: include/text.php:1098 src/Model/Event.php:402
+#: include/text.php:1097 src/Model/Event.php:402
 msgid "April"
 msgstr "Aprile"
 
-#: include/text.php:1098 include/text.php:1115 src/Model/Event.php:390
+#: include/text.php:1097 include/text.php:1114 src/Model/Event.php:390
 #: src/Model/Event.php:403
 msgid "May"
 msgstr "Maggio"
 
-#: include/text.php:1098 src/Model/Event.php:404
+#: include/text.php:1097 src/Model/Event.php:404
 msgid "June"
 msgstr "Giugno"
 
-#: include/text.php:1098 src/Model/Event.php:405
+#: include/text.php:1097 src/Model/Event.php:405
 msgid "July"
 msgstr "Luglio"
 
-#: include/text.php:1098 src/Model/Event.php:406
+#: include/text.php:1097 src/Model/Event.php:406
 msgid "August"
 msgstr "Agosto"
 
-#: include/text.php:1098 src/Model/Event.php:407
+#: include/text.php:1097 src/Model/Event.php:407
 msgid "September"
 msgstr "Settembre"
 
-#: include/text.php:1098 src/Model/Event.php:408
+#: include/text.php:1097 src/Model/Event.php:408
 msgid "October"
 msgstr "Ottobre"
 
-#: include/text.php:1098 src/Model/Event.php:409
+#: include/text.php:1097 src/Model/Event.php:409
 msgid "November"
 msgstr "Novembre"
 
-#: include/text.php:1098 src/Model/Event.php:410
+#: include/text.php:1097 src/Model/Event.php:410
 msgid "December"
 msgstr "Dicembre"
 
-#: include/text.php:1112 src/Model/Event.php:371
+#: include/text.php:1111 src/Model/Event.php:371
 msgid "Mon"
 msgstr "Lun"
 
-#: include/text.php:1112 src/Model/Event.php:372
+#: include/text.php:1111 src/Model/Event.php:372
 msgid "Tue"
 msgstr "Mar"
 
-#: include/text.php:1112 src/Model/Event.php:373
+#: include/text.php:1111 src/Model/Event.php:373
 msgid "Wed"
 msgstr "Mer"
 
-#: include/text.php:1112 src/Model/Event.php:374
+#: include/text.php:1111 src/Model/Event.php:374
 msgid "Thu"
 msgstr "Gio"
 
-#: include/text.php:1112 src/Model/Event.php:375
+#: include/text.php:1111 src/Model/Event.php:375
 msgid "Fri"
 msgstr "Ven"
 
-#: include/text.php:1112 src/Model/Event.php:376
+#: include/text.php:1111 src/Model/Event.php:376
 msgid "Sat"
 msgstr "Sab"
 
-#: include/text.php:1112 src/Model/Event.php:370
+#: include/text.php:1111 src/Model/Event.php:370
 msgid "Sun"
 msgstr "Dom"
 
-#: include/text.php:1115 src/Model/Event.php:386
+#: include/text.php:1114 src/Model/Event.php:386
 msgid "Jan"
 msgstr "Gen"
 
-#: include/text.php:1115 src/Model/Event.php:387
+#: include/text.php:1114 src/Model/Event.php:387
 msgid "Feb"
 msgstr "Feb"
 
-#: include/text.php:1115 src/Model/Event.php:388
+#: include/text.php:1114 src/Model/Event.php:388
 msgid "Mar"
 msgstr "Mar"
 
-#: include/text.php:1115 src/Model/Event.php:389
+#: include/text.php:1114 src/Model/Event.php:389
 msgid "Apr"
 msgstr "Apr"
 
-#: include/text.php:1115 src/Model/Event.php:392
+#: include/text.php:1114 src/Model/Event.php:392
 msgid "Jul"
 msgstr "Lug"
 
-#: include/text.php:1115 src/Model/Event.php:393
+#: include/text.php:1114 src/Model/Event.php:393
 msgid "Aug"
 msgstr "Ago"
 
-#: include/text.php:1115
+#: include/text.php:1114
 msgid "Sep"
 msgstr "Set"
 
-#: include/text.php:1115 src/Model/Event.php:395
+#: include/text.php:1114 src/Model/Event.php:395
 msgid "Oct"
 msgstr "Ott"
 
-#: include/text.php:1115 src/Model/Event.php:396
+#: include/text.php:1114 src/Model/Event.php:396
 msgid "Nov"
 msgstr "Nov"
 
-#: include/text.php:1115 src/Model/Event.php:397
+#: include/text.php:1114 src/Model/Event.php:397
 msgid "Dec"
 msgstr "Dic"
 
-#: include/text.php:1255
+#: include/text.php:1254
 #, php-format
 msgid "Content warning: %s"
 msgstr "Avviso contenuto: %s"
 
-#: include/text.php:1325 mod/videos.php:380
+#: include/text.php:1324 mod/videos.php:380
 msgid "View Video"
 msgstr "Guarda Video"
 
-#: include/text.php:1342
+#: include/text.php:1341
 msgid "bytes"
 msgstr "bytes"
 
-#: include/text.php:1375 include/text.php:1386 include/text.php:1419
+#: include/text.php:1374 include/text.php:1385 include/text.php:1418
 msgid "Click to open/close"
 msgstr "Clicca per aprire/chiudere"
 
-#: include/text.php:1534
+#: include/text.php:1533
 msgid "View on separate page"
 msgstr "Vedi in una pagina separata"
 
-#: include/text.php:1535
+#: include/text.php:1534
 msgid "view on separate page"
 msgstr "vedi in una pagina separata"
 
-#: include/text.php:1540 include/text.php:1547 src/Model/Event.php:594
+#: include/text.php:1539 include/text.php:1546 src/Model/Event.php:594
 msgid "link to source"
 msgstr "Collegamento all'originale"
 
@@ -1192,7 +1187,7 @@ msgstr[1] "commenti"
 msgid "post"
 msgstr "messaggio"
 
-#: include/text.php:1915
+#: include/text.php:1916
 msgid "Item filed"
 msgstr "Messaggio salvato"
 
@@ -1278,8 +1273,8 @@ msgid "Photos"
 msgstr "Foto"
 
 #: 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
+#: mod/photos.php:1050 mod/photos.php:1137 mod/photos.php:1154
+#: mod/photos.php:1653 mod/photos.php:1667 src/Model/Photo.php:244
 #: src/Model/Photo.php:253
 msgid "Contact Photos"
 msgstr "Foto dei contatti"
@@ -1349,7 +1344,7 @@ msgid ""
 " join."
 msgstr "Sulla tua pagina <em>Quick Start</em> - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti."
 
-#: mod/newmember.php:19 mod/admin.php:1935 mod/admin.php:2204
+#: mod/newmember.php:19 mod/admin.php:1940 mod/admin.php:2210
 #: mod/settings.php:124 view/theme/frio/theme.php:269 src/Content/Nav.php:207
 msgid "Settings"
 msgstr "Impostazioni"
@@ -1555,11 +1550,6 @@ msgstr "Ignora / Nascondi"
 msgid "Friend Suggestions"
 msgstr "Contatti suggeriti"
 
-#: 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 "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"
-
 #: mod/uimport.php:55 mod/register.php:192
 msgid ""
 "This site has exceeded the number of allowed daily account registrations. "
@@ -1632,11 +1622,11 @@ msgid "Select an identity to manage: "
 msgstr "Seleziona un'identità da gestire:"
 
 #: mod/manage.php:184 mod/localtime.php:56 mod/poke.php:199
-#: 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/contacts.php:610 mod/events.php:530
-#: mod/invite.php:154 mod/crepair.php:148 mod/install.php:198
-#: mod/install.php:237 mod/message.php:246 mod/message.php:413
+#: mod/fsuggest.php:114 mod/contacts.php:610 mod/invite.php:154
+#: mod/crepair.php:148 mod/install.php:198 mod/install.php:237
+#: mod/message.php:246 mod/message.php:413 mod/events.php:531
+#: mod/photos.php:1068 mod/photos.php:1148 mod/photos.php:1439
+#: mod/photos.php:1485 mod/photos.php:1524 mod/photos.php:1597
 #: mod/profiles.php:579 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:804
@@ -1743,10 +1733,10 @@ msgstr "Scegli cosa vuoi fare al destinatario"
 msgid "Make this post private"
 msgstr "Rendi questo post privato"
 
-#: 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/directory.php:42 mod/community.php:27
-#: mod/dfrn_request.php:602 mod/display.php:203
+#: mod/probe.php:13 mod/viewcontacts.php:45 mod/webfinger.php:16
+#: mod/directory.php:42 mod/community.php:27 mod/dfrn_request.php:602
+#: mod/display.php:203 mod/photos.php:920 mod/search.php:98 mod/search.php:104
+#: mod/videos.php:199
 msgid "Public access denied."
 msgstr "Accesso negato."
 
@@ -1791,45 +1781,6 @@ msgstr "Registrazione revocata per %s"
 msgid "Please login."
 msgstr "Accedi."
 
-#: mod/search.php:37 mod/network.php:194
-msgid "Remove term"
-msgstr "Rimuovi termine"
-
-#: mod/search.php:46 mod/network.php:201 src/Content/Feature.php:100
-msgid "Saved Searches"
-msgstr "Ricerche salvate"
-
-#: mod/search.php:105
-msgid "Only logged in users are permitted to perform a search."
-msgstr "Solo agli utenti autenticati è permesso eseguire ricerche."
-
-#: mod/search.php:129
-msgid "Too Many Requests"
-msgstr "Troppe richieste"
-
-#: mod/search.php:130
-msgid "Only one search per minute is permitted for not logged in users."
-msgstr "Solo una ricerca al minuto è permessa agli utenti non autenticati."
-
-#: mod/search.php:228 mod/community.php:141
-msgid "No results."
-msgstr "Nessun risultato."
-
-#: mod/search.php:234
-#, php-format
-msgid "Items tagged with: %s"
-msgstr "Elementi taggati con: %s"
-
-#: mod/search.php:236 mod/contacts.php:819
-#, php-format
-msgid "Results for: %s"
-msgstr "Risultati per: %s"
-
-#: mod/subthread.php:113
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s sta seguendo %3$s di %2$s"
-
 #: mod/tagrm.php:47
 msgid "Tag removed"
 msgstr "Tag rimosso"
@@ -1879,13 +1830,13 @@ msgstr "Nessun contatto."
 msgid "Access denied."
 msgstr "Accesso negato."
 
-#: mod/wall_upload.php:186 mod/photos.php:763 mod/photos.php:766
-#: mod/photos.php:795 mod/profile_photo.php:153
+#: mod/wall_upload.php:186 mod/profile_photo.php:153 mod/photos.php:751
+#: mod/photos.php:754 mod/photos.php:783
 #, php-format
 msgid "Image exceeds size limit of %s"
 msgstr "La dimensione dell'immagine supera il limite di %s"
 
-#: mod/wall_upload.php:200 mod/photos.php:818 mod/profile_photo.php:162
+#: mod/wall_upload.php:200 mod/profile_photo.php:162 mod/photos.php:806
 msgid "Unable to process image."
 msgstr "Impossibile caricare l'immagine."
 
@@ -1894,7 +1845,7 @@ msgstr "Impossibile caricare l'immagine."
 msgid "Wall Photos"
 msgstr "Foto della bacheca"
 
-#: mod/wall_upload.php:239 mod/photos.php:847 mod/profile_photo.php:307
+#: mod/wall_upload.php:239 mod/profile_photo.php:307 mod/photos.php:835
 msgid "Image upload failed."
 msgstr "Caricamento immagine fallito."
 
@@ -1993,332 +1944,97 @@ msgstr "Suggerisci amici"
 msgid "Suggest a friend for %s"
 msgstr "Suggerisci un amico a %s"
 
-#: mod/notes.php:52 src/Model/Profile.php:944
-msgid "Personal Notes"
-msgstr "Note personali"
+#: mod/cal.php:142 mod/display.php:316 mod/profile.php:174
+msgid "Access to this profile has been restricted."
+msgstr "L'accesso a questo profilo è stato limitato."
 
-#: mod/photos.php:108 src/Model/Profile.php:905
-msgid "Photo Albums"
-msgstr "Album foto"
+#: 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 "Eventi"
 
-#: mod/photos.php:109 mod/photos.php:1713
-msgid "Recent Photos"
-msgstr "Foto recenti"
+#: mod/cal.php:275 mod/events.php:392
+msgid "View"
+msgstr "Mostra"
 
-#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715
-msgid "Upload New Photos"
-msgstr "Carica nuove foto"
+#: mod/cal.php:276 mod/events.php:394
+msgid "Previous"
+msgstr "Precedente"
 
-#: mod/photos.php:126 mod/settings.php:51
-msgid "everybody"
-msgstr "tutti"
+#: mod/cal.php:277 mod/install.php:156 mod/events.php:395
+msgid "Next"
+msgstr "Successivo"
 
-#: mod/photos.php:184
-msgid "Contact information unavailable"
-msgstr "I dati di questo contatto non sono disponibili"
+#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412
+msgid "today"
+msgstr "oggi"
 
-#: mod/photos.php:204
-msgid "Album not found."
-msgstr "Album non trovato."
+#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304
+#: src/Model/Event.php:413
+msgid "month"
+msgstr "mese"
 
-#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161
-msgid "Delete Album"
-msgstr "Rimuovi album"
+#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305
+#: src/Model/Event.php:414
+msgid "week"
+msgstr "settimana"
 
-#: mod/photos.php:243
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Vuoi davvero cancellare questo album e tutte le sue foto?"
+#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306
+#: src/Model/Event.php:415
+msgid "day"
+msgstr "giorno"
 
-#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446
-msgid "Delete Photo"
-msgstr "Rimuovi foto"
+#: mod/cal.php:284 mod/events.php:404
+msgid "list"
+msgstr "lista"
 
-#: mod/photos.php:319
-msgid "Do you really want to delete this photo?"
-msgstr "Vuoi veramente cancellare questa foto?"
+#: mod/cal.php:297 src/Core/Console/NewPassword.php:73 src/Model/User.php:214
+msgid "User not found"
+msgstr "Utente non trovato"
 
-#: mod/photos.php:667
-msgid "a photo"
-msgstr "una foto"
+#: mod/cal.php:313
+msgid "This calendar format is not supported"
+msgstr "Questo formato di calendario non è supportato"
 
-#: mod/photos.php:667
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s è stato taggato in %2$s da %3$s"
+#: mod/cal.php:315
+msgid "No exportable data found"
+msgstr "Nessun dato esportabile trovato"
 
-#: mod/photos.php:769
-msgid "Image upload didn't complete, please try again"
-msgstr "Caricamento dell'immagine non completato. Prova di nuovo."
+#: mod/cal.php:332
+msgid "calendar"
+msgstr "calendario"
 
-#: mod/photos.php:772
-msgid "Image file is missing"
-msgstr "Il file dell'immagine è mancante"
+#: mod/contacts.php:71 mod/notifications.php:259 src/Model/Profile.php:516
+msgid "Network:"
+msgstr "Rete:"
 
-#: mod/photos.php:777
-msgid ""
-"Server can't accept new file upload at this time, please contact your "
-"administrator"
-msgstr "Il server non può accettare il caricamento di un nuovo file in questo momento, contattare l'amministratore"
+#: mod/contacts.php:157
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] "%d contatto modificato."
+msgstr[1] "%d contatti modificati"
 
-#: mod/photos.php:803
-msgid "Image file is empty."
-msgstr "Il file dell'immagine è vuoto."
+#: mod/contacts.php:184 mod/contacts.php:400
+msgid "Could not access contact record."
+msgstr "Non è possibile accedere al contatto."
 
-#: mod/photos.php:940
-msgid "No photos selected"
-msgstr "Nessuna foto selezionata"
+#: mod/contacts.php:194
+msgid "Could not locate selected profile."
+msgstr "Non riesco a trovare il profilo selezionato."
 
-#: mod/photos.php:1036 mod/videos.php:309
-msgid "Access to this item is restricted."
-msgstr "Questo oggetto non è visibile a tutti."
+#: mod/contacts.php:228
+msgid "Contact updated."
+msgstr "Contatto aggiornato."
 
-#: mod/photos.php:1090
-msgid "Upload Photos"
-msgstr "Carica foto"
+#: mod/contacts.php:230 mod/dfrn_request.php:415
+msgid "Failed to update contact record."
+msgstr "Errore nell'aggiornamento del contatto."
 
-#: mod/photos.php:1094 mod/photos.php:1156
-msgid "New album name: "
-msgstr "Nome nuovo album: "
-
-#: mod/photos.php:1095
-msgid "or existing album name: "
-msgstr "o nome di un album esistente: "
-
-#: mod/photos.php:1096
-msgid "Do not show a status post for this upload"
-msgstr "Non creare un post per questo upload"
-
-#: mod/photos.php:1098 mod/photos.php:1441 mod/events.php:533
-#: src/Core/ACL.php:318
-msgid "Permissions"
-msgstr "Permessi"
-
-#: mod/photos.php:1106 mod/photos.php:1449 mod/settings.php:1218
-msgid "Show to Groups"
-msgstr "Mostra ai gruppi"
-
-#: mod/photos.php:1107 mod/photos.php:1450 mod/settings.php:1219
-msgid "Show to Contacts"
-msgstr "Mostra ai contatti"
-
-#: mod/photos.php:1167
-msgid "Edit Album"
-msgstr "Modifica album"
-
-#: mod/photos.php:1172
-msgid "Show Newest First"
-msgstr "Mostra nuove foto per prime"
-
-#: mod/photos.php:1174
-msgid "Show Oldest First"
-msgstr "Mostra vecchie foto per prime"
-
-#: mod/photos.php:1195 mod/photos.php:1698
-msgid "View Photo"
-msgstr "Vedi foto"
-
-#: mod/photos.php:1236
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Permesso negato. L'accesso a questo elemento può essere limitato."
-
-#: mod/photos.php:1238
-msgid "Photo not available"
-msgstr "Foto non disponibile"
-
-#: mod/photos.php:1301
-msgid "View photo"
-msgstr "Vedi foto"
-
-#: mod/photos.php:1301
-msgid "Edit photo"
-msgstr "Modifica foto"
-
-#: mod/photos.php:1302
-msgid "Use as profile photo"
-msgstr "Usa come foto del profilo"
-
-#: mod/photos.php:1308 src/Object/Post.php:149
-msgid "Private Message"
-msgstr "Messaggio privato"
-
-#: mod/photos.php:1327
-msgid "View Full Size"
-msgstr "Vedi dimensione intera"
-
-#: mod/photos.php:1414
-msgid "Tags: "
-msgstr "Tag: "
-
-#: mod/photos.php:1417
-msgid "[Remove any tag]"
-msgstr "[Rimuovi tutti i tag]"
-
-#: mod/photos.php:1432
-msgid "New album name"
-msgstr "Nuovo nome dell'album"
-
-#: mod/photos.php:1433
-msgid "Caption"
-msgstr "Titolo"
-
-#: mod/photos.php:1434
-msgid "Add a Tag"
-msgstr "Aggiungi tag"
-
-#: mod/photos.php:1434
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-
-#: mod/photos.php:1435
-msgid "Do not rotate"
-msgstr "Non ruotare"
-
-#: mod/photos.php:1436
-msgid "Rotate CW (right)"
-msgstr "Ruota a destra"
-
-#: mod/photos.php:1437
-msgid "Rotate CCW (left)"
-msgstr "Ruota a sinistra"
-
-#: mod/photos.php:1471 src/Object/Post.php:304
-msgid "I like this (toggle)"
-msgstr "Mi piace (clic per cambiare)"
-
-#: mod/photos.php:1472 src/Object/Post.php:305
-msgid "I don't like this (toggle)"
-msgstr "Non mi piace (clic per cambiare)"
-
-#: mod/photos.php:1488 mod/photos.php:1527 mod/photos.php:1600
-#: mod/contacts.php:953 src/Object/Post.php:801
-msgid "This is you"
-msgstr "Questo sei tu"
-
-#: mod/photos.php:1490 mod/photos.php:1529 mod/photos.php:1602
-#: src/Object/Post.php:407 src/Object/Post.php:803
-msgid "Comment"
-msgstr "Commento"
-
-#: mod/photos.php:1634
-msgid "Map"
-msgstr "Mappa"
-
-#: mod/photos.php:1704 mod/videos.php:387
-msgid "View Album"
-msgstr "Sfoglia l'album"
-
-#: mod/videos.php:139
-msgid "Do you really want to delete this video?"
-msgstr "Vuoi veramente cancellare questo video?"
-
-#: mod/videos.php:144
-msgid "Delete Video"
-msgstr "Rimuovi video"
-
-#: mod/videos.php:207
-msgid "No videos selected"
-msgstr "Nessun video selezionato"
-
-#: mod/videos.php:396
-msgid "Recent Videos"
-msgstr "Video Recenti"
-
-#: mod/videos.php:398
-msgid "Upload New Videos"
-msgstr "Carica Nuovo Video"
-
-#: mod/cal.php:142 mod/display.php:316 mod/profile.php:174
-msgid "Access to this profile has been restricted."
-msgstr "L'accesso a questo profilo è stato limitato."
-
-#: 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 "Eventi"
-
-#: mod/cal.php:275 mod/events.php:392
-msgid "View"
-msgstr "Mostra"
-
-#: mod/cal.php:276 mod/events.php:394
-msgid "Previous"
-msgstr "Precedente"
-
-#: mod/cal.php:277 mod/events.php:395 mod/install.php:156
-msgid "Next"
-msgstr "Successivo"
-
-#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412
-msgid "today"
-msgstr "oggi"
-
-#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304
-#: src/Model/Event.php:413
-msgid "month"
-msgstr "mese"
-
-#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305
-#: src/Model/Event.php:414
-msgid "week"
-msgstr "settimana"
-
-#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306
-#: src/Model/Event.php:415
-msgid "day"
-msgstr "giorno"
-
-#: mod/cal.php:284 mod/events.php:404
-msgid "list"
-msgstr "lista"
-
-#: mod/cal.php:297 src/Core/Console/NewPassword.php:73 src/Model/User.php:214
-msgid "User not found"
-msgstr "Utente non trovato"
-
-#: mod/cal.php:313
-msgid "This calendar format is not supported"
-msgstr "Questo formato di calendario non è supportato"
-
-#: mod/cal.php:315
-msgid "No exportable data found"
-msgstr "Nessun dato esportabile trovato"
-
-#: mod/cal.php:332
-msgid "calendar"
-msgstr "calendario"
-
-#: mod/contacts.php:71 mod/notifications.php:259 src/Model/Profile.php:516
-msgid "Network:"
-msgstr "Rete:"
-
-#: mod/contacts.php:157
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] "%d contatto modificato."
-msgstr[1] "%d contatti modificati"
-
-#: mod/contacts.php:184 mod/contacts.php:400
-msgid "Could not access contact record."
-msgstr "Non è possibile accedere al contatto."
-
-#: mod/contacts.php:194
-msgid "Could not locate selected profile."
-msgstr "Non riesco a trovare il profilo selezionato."
-
-#: mod/contacts.php:228
-msgid "Contact updated."
-msgstr "Contatto aggiornato."
-
-#: mod/contacts.php:230 mod/dfrn_request.php:415
-msgid "Failed to update contact record."
-msgstr "Errore nell'aggiornamento del contatto."
-
-#: mod/contacts.php:421
-msgid "Contact has been blocked"
-msgstr "Il contatto è stato bloccato"
+#: mod/contacts.php:421
+msgid "Contact has been blocked"
+msgstr "Il contatto è stato bloccato"
 
 #: mod/contacts.php:421
 msgid "Contact has been unblocked"
@@ -2407,8 +2123,8 @@ msgid ""
 "are taken from the meta header in the feed item and are posted as hash tags."
 msgstr "Recupera informazioni come immagini di anteprima, titolo e teaser dall'elemento del feed. Puoi attivare questa funzione se il feed non contiene molto testo. Le parole chiave sono recuperate dal tag meta nella pagina dell'elemento e inseriti come hashtag."
 
-#: mod/contacts.php:572 mod/admin.php:1288 mod/admin.php:1450
-#: mod/admin.php:1460
+#: mod/contacts.php:572 mod/admin.php:1284 mod/admin.php:1449
+#: mod/admin.php:1459
 msgid "Disabled"
 msgstr "Disabilitato"
 
@@ -2484,12 +2200,12 @@ msgid "Update now"
 msgstr "Aggiorna adesso"
 
 #: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
-#: mod/admin.php:489 mod/admin.php:1829
+#: mod/admin.php:489 mod/admin.php:1834
 msgid "Unblock"
 msgstr "Sblocca"
 
 #: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
-#: mod/admin.php:488 mod/admin.php:1828
+#: mod/admin.php:488 mod/admin.php:1833
 msgid "Block"
 msgstr "Blocca"
 
@@ -2551,7 +2267,7 @@ msgstr "Lista separata da virgola di parole chiave che non dovranno essere conve
 msgid "Profile URL"
 msgstr "URL Profilo"
 
-#: mod/contacts.php:660 mod/events.php:518 mod/directory.php:148
+#: mod/contacts.php:660 mod/directory.php:148 mod/events.php:519
 #: mod/notifications.php:246 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:"
@@ -2644,6 +2360,11 @@ msgstr "Mostra solo contatti nascosti"
 msgid "Search your contacts"
 msgstr "Cerca nei tuoi contatti"
 
+#: mod/contacts.php:819 mod/search.php:236
+#, php-format
+msgid "Results for: %s"
+msgstr "Risultati per: %s"
+
 #: mod/contacts.php:820 mod/directory.php:209 view/theme/vier/theme.php:203
 #: src/Content/Widget.php:63
 msgid "Find"
@@ -2682,7 +2403,7 @@ msgstr "Vedi tutti i contatti"
 msgid "View all common friends"
 msgstr "Vedi tutti gli amici in comune"
 
-#: mod/contacts.php:895 mod/events.php:532 mod/admin.php:1363
+#: mod/contacts.php:895 mod/admin.php:1362 mod/events.php:533
 #: src/Model/Profile.php:863
 msgid "Advanced"
 msgstr "Avanzate"
@@ -2703,6 +2424,11 @@ msgstr "è un tuo fan"
 msgid "you are a fan of"
 msgstr "sei un fan di"
 
+#: mod/contacts.php:953 mod/photos.php:1482 mod/photos.php:1521
+#: mod/photos.php:1594 src/Object/Post.php:801
+msgid "This is you"
+msgstr "Questo sei tu"
+
 #: mod/contacts.php:1013
 msgid "Toggle Blocked status"
 msgstr "Inverti stato \"Blocca\""
@@ -2746,8 +2472,8 @@ msgid ""
 "settings. Please double check whom you give this access."
 msgstr "Gli utenti principali hanno il controllo totale su questo account, comprese le impostazioni. Assicurati di controllare due volte a chi stai fornendo questo accesso."
 
-#: mod/delegate.php:168 mod/admin.php:311 mod/admin.php:1358
-#: mod/admin.php:1994 mod/admin.php:2247 mod/admin.php:2321 mod/admin.php:2468
+#: mod/delegate.php:168 mod/admin.php:311 mod/admin.php:1357
+#: mod/admin.php:1999 mod/admin.php:2253 mod/admin.php:2327 mod/admin.php:2474
 #: mod/settings.php:669 mod/settings.php:776 mod/settings.php:864
 #: mod/settings.php:953 mod/settings.php:1183
 msgid "Save Settings"
@@ -2784,97 +2510,33 @@ msgstr "Aggiungi"
 msgid "No entries."
 msgstr "Nessuna voce."
 
-#: mod/events.php:105 mod/events.php:107
-msgid "Event can not end before it has started."
-msgstr "Un evento non può finire prima di iniziare."
-
-#: mod/events.php:114 mod/events.php:116
-msgid "Event title and start time are required."
-msgstr "Titolo e ora di inizio dell'evento sono richiesti."
+#: mod/feedtest.php:20
+msgid "You must be logged in to use this module"
+msgstr "Devi aver essere autenticato per usare questo modulo"
 
-#: mod/events.php:393
-msgid "Create New Event"
-msgstr "Crea un nuovo evento"
+#: mod/feedtest.php:48
+msgid "Source URL"
+msgstr "URL Sorgente"
 
-#: mod/events.php:506
-msgid "Event details"
-msgstr "Dettagli dell'evento"
+#: mod/oexchange.php:30
+msgid "Post successful."
+msgstr "Inviato!"
 
-#: mod/events.php:507
-msgid "Starting date and Title are required."
-msgstr "La data di inizio e il titolo sono richiesti."
+#: mod/ostatus_subscribe.php:21
+msgid "Subscribing to OStatus contacts"
+msgstr "Iscrizione a contatti OStatus"
 
-#: mod/events.php:508 mod/events.php:509
-msgid "Event Starts:"
-msgstr "L'evento inizia:"
+#: mod/ostatus_subscribe.php:33
+msgid "No contact provided."
+msgstr "Nessun contatto disponibile."
 
-#: mod/events.php:508 mod/events.php:520 mod/profiles.php:607
-msgid "Required"
-msgstr "Richiesto"
+#: mod/ostatus_subscribe.php:40
+msgid "Couldn't fetch information for contact."
+msgstr "Non è stato possibile recuperare le informazioni del contatto."
 
-#: mod/events.php:510 mod/events.php:526
-msgid "Finish date/time is not known or not relevant"
-msgstr "La data/ora di fine non è definita"
-
-#: mod/events.php:512 mod/events.php:513
-msgid "Event Finishes:"
-msgstr "L'evento finisce:"
-
-#: mod/events.php:514 mod/events.php:527
-msgid "Adjust for viewer timezone"
-msgstr "Visualizza con il fuso orario di chi legge"
-
-#: mod/events.php:516
-msgid "Description:"
-msgstr "Descrizione:"
-
-#: mod/events.php:520 mod/events.php:522
-msgid "Title:"
-msgstr "Titolo:"
-
-#: mod/events.php:523 mod/events.php:524
-msgid "Share this event"
-msgstr "Condividi questo evento"
-
-#: mod/events.php:531 src/Model/Profile.php:862
-msgid "Basic"
-msgstr "Base"
-
-#: mod/events.php:552
-msgid "Failed to remove event"
-msgstr "Rimozione evento fallita."
-
-#: mod/events.php:554
-msgid "Event removed"
-msgstr "Evento rimosso"
-
-#: mod/feedtest.php:20
-msgid "You must be logged in to use this module"
-msgstr "Devi aver essere autenticato per usare questo modulo"
-
-#: mod/feedtest.php:48
-msgid "Source URL"
-msgstr "URL Sorgente"
-
-#: mod/oexchange.php:30
-msgid "Post successful."
-msgstr "Inviato!"
-
-#: mod/ostatus_subscribe.php:21
-msgid "Subscribing to OStatus contacts"
-msgstr "Iscrizione a contatti OStatus"
-
-#: mod/ostatus_subscribe.php:33
-msgid "No contact provided."
-msgstr "Nessun contatto disponibile."
-
-#: mod/ostatus_subscribe.php:40
-msgid "Couldn't fetch information for contact."
-msgstr "Non è stato possibile recuperare le informazioni del contatto."
-
-#: mod/ostatus_subscribe.php:50
-msgid "Couldn't fetch friends for contact."
-msgstr "Non è stato possibile recuperare gli amici del contatto."
+#: mod/ostatus_subscribe.php:50
+msgid "Couldn't fetch friends for contact."
+msgstr "Non è stato possibile recuperare gli amici del contatto."
 
 #: mod/ostatus_subscribe.php:78
 msgid "success"
@@ -3251,36 +2913,6 @@ msgstr "Markdown"
 msgid "HTML"
 msgstr "HTML"
 
-#: mod/community.php:51
-msgid "Community option not available."
-msgstr "Opzione Comunità non disponibile"
-
-#: mod/community.php:68
-msgid "Not available."
-msgstr "Non disponibile."
-
-#: mod/community.php:81
-msgid "Local Community"
-msgstr "Comunità Locale"
-
-#: mod/community.php:84
-msgid "Posts from local users on this server"
-msgstr "Messaggi dagli utenti locali su questo sito"
-
-#: mod/community.php:92
-msgid "Global Community"
-msgstr "Comunità Globale"
-
-#: mod/community.php:95
-msgid "Posts from users of the whole federated network"
-msgstr "Messaggi dagli utenti della rete federata"
-
-#: mod/community.php:185
-msgid ""
-"This community stream shows all public posts received by this node. They may"
-" not reflect the opinions of this node’s users."
-msgstr "Questa pagina comunità mostra tutti i post pubblici ricevuti da questo nodo. Potrebbero non riflettere le opinioni degli utenti di questo nodo."
-
 #: mod/friendica.php:77
 msgid "This is Friendica, version"
 msgstr "Questo è Friendica, versione"
@@ -3437,95 +3069,6 @@ msgid ""
 "important, please visit http://friendi.ca"
 msgstr "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendi.ca "
 
-#: mod/network.php:202 src/Model/Group.php:413
-msgid "add"
-msgstr "aggiungi"
-
-#: 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] "Attenzione: Questo gruppo contiene %s membro da una rete che non permette la ricezione di messaggi non pubblici."
-msgstr[1] "Attenzione: Questo gruppo contiene %s membri da reti che non permettono la ricezione di messaggi non pubblici."
-
-#: mod/network.php:550
-msgid "Messages in this group won't be send to these receivers."
-msgstr "I messaggi in questo gruppo non saranno inviati ai quei contatti."
-
-#: mod/network.php:618
-msgid "No such group"
-msgstr "Nessun gruppo"
-
-#: mod/network.php:639 mod/group.php:216
-msgid "Group is empty"
-msgstr "Il gruppo è vuoto"
-
-#: mod/network.php:643
-#, php-format
-msgid "Group: %s"
-msgstr "Gruppo: %s"
-
-#: mod/network.php:669
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente."
-
-#: mod/network.php:672
-msgid "Invalid contact."
-msgstr "Contatto non valido."
-
-#: mod/network.php:937
-msgid "Commented Order"
-msgstr "Ordina per commento"
-
-#: mod/network.php:940
-msgid "Sort by Comment Date"
-msgstr "Ordina per data commento"
-
-#: mod/network.php:945
-msgid "Posted Order"
-msgstr "Ordina per invio"
-
-#: mod/network.php:948
-msgid "Sort by Post Date"
-msgstr "Ordina per data messaggio"
-
-#: mod/network.php:956 mod/profiles.php:594
-#: src/Core/NotificationsManager.php:185
-msgid "Personal"
-msgstr "Personale"
-
-#: mod/network.php:959
-msgid "Posts that mention or involve you"
-msgstr "Messaggi che ti citano o coinvolgono"
-
-#: mod/network.php:967
-msgid "New"
-msgstr "Nuovo"
-
-#: mod/network.php:970
-msgid "Activity Stream - by date"
-msgstr "Activity Stream - per data"
-
-#: mod/network.php:978
-msgid "Shared Links"
-msgstr "Links condivisi"
-
-#: mod/network.php:981
-msgid "Interesting Links"
-msgstr "Link Interessanti"
-
-#: mod/network.php:989
-msgid "Starred"
-msgstr "Preferiti"
-
-#: mod/network.php:992
-msgid "Favourite Posts"
-msgstr "Messaggi preferiti"
-
 #: mod/crepair.php:87
 msgid "Contact settings applied."
 msgstr "Contatto modificato."
@@ -3580,8 +3123,8 @@ msgid ""
 "entries from this contact."
 msgstr "Imposta questo contatto come 'io remoto', questo farà si che friendica re invii i nuovi messaggi da questo contatto."
 
-#: mod/crepair.php:158 mod/admin.php:494 mod/admin.php:1811 mod/admin.php:1822
-#: mod/admin.php:1835 mod/admin.php:1851 mod/settings.php:671
+#: mod/crepair.php:158 mod/admin.php:494 mod/admin.php:1816 mod/admin.php:1827
+#: mod/admin.php:1840 mod/admin.php:1856 mod/settings.php:671
 #: mod/settings.php:697
 msgid "Name"
 msgstr "Nome"
@@ -3844,79 +3387,6 @@ msgid_plural "%d messages"
 msgstr[0] "%d messaggio"
 msgstr[1] "%d messaggi"
 
-#: mod/group.php:36
-msgid "Group created."
-msgstr "Gruppo creato."
-
-#: mod/group.php:42
-msgid "Could not create group."
-msgstr "Impossibile creare il gruppo."
-
-#: mod/group.php:56 mod/group.php:157
-msgid "Group not found."
-msgstr "Gruppo non trovato."
-
-#: mod/group.php:70
-msgid "Group name changed."
-msgstr "Il nome del gruppo è cambiato."
-
-#: mod/group.php:97
-msgid "Save Group"
-msgstr "Salva gruppo"
-
-#: mod/group.php:102
-msgid "Create a group of contacts/friends."
-msgstr "Crea un gruppo di amici/contatti."
-
-#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421
-msgid "Group Name: "
-msgstr "Nome del gruppo:"
-
-#: mod/group.php:127
-msgid "Group removed."
-msgstr "Gruppo rimosso."
-
-#: mod/group.php:129
-msgid "Unable to remove group."
-msgstr "Impossibile rimuovere il gruppo."
-
-#: mod/group.php:192
-msgid "Delete Group"
-msgstr "Elimina Gruppo"
-
-#: mod/group.php:198
-msgid "Group Editor"
-msgstr "Modifica gruppo"
-
-#: mod/group.php:203
-msgid "Edit Group Name"
-msgstr "Modifica Nome Gruppo"
-
-#: mod/group.php:213
-msgid "Members"
-msgstr "Membri"
-
-#: mod/group.php:229
-msgid "Remove contact from group"
-msgstr "Rimuovi il contatto dal gruppo"
-
-#: mod/group.php:253
-msgid "Add contact to group"
-msgstr "Aggiungi il contatto al gruppo"
-
-#: mod/openid.php:29
-msgid "OpenID protocol error. No ID returned."
-msgstr "Errore protocollo OpenID. Nessun ID ricevuto."
-
-#: mod/openid.php:66
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito."
-
-#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:135
-msgid "Login failed."
-msgstr "Accesso fallito."
-
 #: mod/admin.php:107
 msgid "Theme settings updated."
 msgstr "Impostazioni del tema aggiornate."
@@ -3929,7 +3399,7 @@ msgstr "Informazioni"
 msgid "Overview"
 msgstr "Panoramica"
 
-#: mod/admin.php:182 mod/admin.php:722
+#: mod/admin.php:182 mod/admin.php:717
 msgid "Federation Statistics"
 msgstr "Statistiche sulla Federazione"
 
@@ -3937,19 +3407,19 @@ msgstr "Statistiche sulla Federazione"
 msgid "Configuration"
 msgstr "Configurazione"
 
-#: mod/admin.php:184 mod/admin.php:1357
+#: mod/admin.php:184 mod/admin.php:1356
 msgid "Site"
 msgstr "Sito"
 
-#: mod/admin.php:185 mod/admin.php:1289 mod/admin.php:1817 mod/admin.php:1833
+#: mod/admin.php:185 mod/admin.php:1285 mod/admin.php:1822 mod/admin.php:1838
 msgid "Users"
 msgstr "Utenti"
 
-#: mod/admin.php:186 mod/admin.php:1933 mod/admin.php:1993 mod/settings.php:87
+#: mod/admin.php:186 mod/admin.php:1938 mod/admin.php:1998 mod/settings.php:87
 msgid "Addons"
 msgstr "Addons"
 
-#: mod/admin.php:187 mod/admin.php:2202 mod/admin.php:2246
+#: mod/admin.php:187 mod/admin.php:2208 mod/admin.php:2252
 msgid "Themes"
 msgstr "Temi"
 
@@ -3970,7 +3440,7 @@ msgstr "Database"
 msgid "DB updates"
 msgstr "Aggiornamenti Database"
 
-#: mod/admin.php:192 mod/admin.php:757
+#: mod/admin.php:192 mod/admin.php:752
 msgid "Inspect Queue"
 msgstr "Ispeziona Coda di invio"
 
@@ -3990,11 +3460,11 @@ msgstr "Server Blocklist"
 msgid "Delete Item"
 msgstr "Rimuovi elemento"
 
-#: mod/admin.php:197 mod/admin.php:198 mod/admin.php:2320
+#: mod/admin.php:197 mod/admin.php:198 mod/admin.php:2326
 msgid "Logs"
 msgstr "Log"
 
-#: mod/admin.php:199 mod/admin.php:2387
+#: mod/admin.php:199 mod/admin.php:2393
 msgid "View Logs"
 msgstr "Vedi i log"
 
@@ -4027,9 +3497,9 @@ msgid "User registrations waiting for confirmation"
 msgstr "Utenti registrati in attesa di conferma"
 
 #: mod/admin.php:303 mod/admin.php:365 mod/admin.php:482 mod/admin.php:524
-#: mod/admin.php:721 mod/admin.php:756 mod/admin.php:852 mod/admin.php:1356
-#: mod/admin.php:1816 mod/admin.php:1932 mod/admin.php:1992 mod/admin.php:2201
-#: mod/admin.php:2245 mod/admin.php:2319 mod/admin.php:2386
+#: mod/admin.php:716 mod/admin.php:751 mod/admin.php:847 mod/admin.php:1355
+#: mod/admin.php:1821 mod/admin.php:1937 mod/admin.php:1997 mod/admin.php:2207
+#: mod/admin.php:2251 mod/admin.php:2325 mod/admin.php:2392
 msgid "Administration"
 msgstr "Amministrazione"
 
@@ -4175,7 +3645,7 @@ msgstr "Questa pagina ti permette di impedire che qualsiasi messaggio da un cont
 msgid "Block Remote Contact"
 msgstr "Blocca Contatto Remoto"
 
-#: mod/admin.php:486 mod/admin.php:1819
+#: mod/admin.php:486 mod/admin.php:1824
 msgid "select all"
 msgstr "seleziona tutti"
 
@@ -4239,67 +3709,67 @@ msgstr "GUID"
 msgid "The GUID of the item you want to delete."
 msgstr "Il GUID dell'elemento che vuoi cancellare."
 
-#: mod/admin.php:568
+#: mod/admin.php:563
 msgid "Item marked for deletion."
 msgstr "Elemento selezionato per l'eliminazione."
 
-#: mod/admin.php:639
+#: mod/admin.php:634
 msgid "unknown"
 msgstr "sconosciuto"
 
-#: mod/admin.php:715
+#: mod/admin.php:710
 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 "Questa pagina offre alcuni numeri riguardo la porzione del social network federato di cui il tuo nodo Friendica fa parte. Questi numeri non sono completi ma riflettono esclusivamente la porzione di rete di cui il tuo nodo e' a conoscenza."
 
-#: mod/admin.php:716
+#: mod/admin.php:711
 msgid ""
 "The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
 "will improve the data displayed here."
 msgstr "La funzione <em>Elenco Contatti Scoperto Automaticamente</em> non è abilitata, migliorerà i dati visualizzati qui."
 
-#: mod/admin.php:728
+#: mod/admin.php:723
 #, php-format
 msgid ""
 "Currently this node is aware of %d nodes with %d registered users from the "
 "following platforms:"
 msgstr "Attualmente questo nodo conosce %d nodi con %d utenti registrati dalle seguenti piattaforme:"
 
-#: mod/admin.php:759
+#: mod/admin.php:754
 msgid "ID"
 msgstr "ID"
 
-#: mod/admin.php:760
+#: mod/admin.php:755
 msgid "Recipient Name"
 msgstr "Nome Destinatario"
 
-#: mod/admin.php:761
+#: mod/admin.php:756
 msgid "Recipient Profile"
 msgstr "Profilo Destinatario"
 
-#: mod/admin.php:762 view/theme/frio/theme.php:266
+#: mod/admin.php:757 view/theme/frio/theme.php:266
 #: src/Core/NotificationsManager.php:178 src/Content/Nav.php:183
 msgid "Network"
 msgstr "Rete"
 
-#: mod/admin.php:763
+#: mod/admin.php:758
 msgid "Created"
 msgstr "Creato"
 
-#: mod/admin.php:764
+#: mod/admin.php:759
 msgid "Last Tried"
 msgstr "Ultimo Tentativo"
 
-#: mod/admin.php:765
+#: mod/admin.php:760
 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 "Questa pagina elenca il contenuto della coda di invio dei post. Questi sono post la cui consegna è fallita. Verranno inviati nuovamente più tardi ed eventualmente cancellati se la consegna continua a fallire."
 
-#: mod/admin.php:789
+#: mod/admin.php:784
 #, php-format
 msgid ""
 "Your DB still runs with MyISAM tables. You should change the engine type to "
@@ -4310,488 +3780,492 @@ msgid ""
 " an automatic conversion.<br />"
 msgstr "Stai ancora usando tabelle MyISAM. Dovresti cambiare il tipo motore a InnoDB. Siccome Friendica userà funzionalità specifiche di InnoDB nel futuro, dovresti modificarlo. Vedi <a href=\"%s\">qui</a>nel per una guida che puo' esserti utile nel convertire il motore delle tabelle. Puoi anche usare il comando <tt>php bin/console.php dbstructure toinnodb</tt> della tua installazione di Friendica per eseguire una conversione automatica. <br />"
 
-#: mod/admin.php:796
+#: mod/admin.php:791
 #, 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 "È disponibile per il download una nuova versione di Friendica. La tua versione è %1$s, la versione upstream è %2$s"
 
-#: mod/admin.php:806
+#: mod/admin.php:801
 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 "L'aggiornamento del database è fallito. Esegui \"php bin/console.php dbstructure update\" dalla riga di comando per poter vedere gli eventuali errori che potrebbero apparire."
 
-#: mod/admin.php:812
+#: mod/admin.php:807
 msgid "The worker was never executed. Please check your database structure!"
 msgstr "Il worker non è mai stato eseguito. Controlla la struttura del tuo database!"
 
-#: mod/admin.php:815
+#: mod/admin.php:810
 #, php-format
 msgid ""
 "The last worker execution was on %s UTC. This is older than one hour. Please"
 " check your crontab settings."
 msgstr "L'ultima esecuzione del worker è stata alle %sUTC, ovvero più di un'ora fa. Controlla le impostazioni del tuo crontab."
 
-#: mod/admin.php:820
+#: mod/admin.php:815
 msgid "Normal Account"
 msgstr "Account normale"
 
-#: mod/admin.php:821
+#: mod/admin.php:816
 msgid "Automatic Follower Account"
 msgstr "Account Follower Automatico"
 
-#: mod/admin.php:822
+#: mod/admin.php:817
 msgid "Public Forum Account"
 msgstr "Account Forum Publico"
 
-#: mod/admin.php:823
+#: mod/admin.php:818
 msgid "Automatic Friend Account"
 msgstr "Account per amicizia automatizzato"
 
-#: mod/admin.php:824
+#: mod/admin.php:819
 msgid "Blog Account"
 msgstr "Account Blog"
 
-#: mod/admin.php:825
+#: mod/admin.php:820
 msgid "Private Forum Account"
 msgstr "Account Forum Privato"
 
-#: mod/admin.php:847
+#: mod/admin.php:842
 msgid "Message queues"
 msgstr "Code messaggi"
 
-#: mod/admin.php:853
+#: mod/admin.php:848
 msgid "Summary"
 msgstr "Sommario"
 
-#: mod/admin.php:855
+#: mod/admin.php:850
 msgid "Registered users"
 msgstr "Utenti registrati"
 
-#: mod/admin.php:857
+#: mod/admin.php:852
 msgid "Pending registrations"
 msgstr "Registrazioni in attesa"
 
-#: mod/admin.php:858
+#: mod/admin.php:853
 msgid "Version"
 msgstr "Versione"
 
-#: mod/admin.php:863
+#: mod/admin.php:858
 msgid "Active addons"
 msgstr "Addon attivi"
 
-#: mod/admin.php:894
+#: mod/admin.php:889
 msgid "Can not parse base url. Must have at least <scheme>://<domain>"
 msgstr "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]"
 
-#: mod/admin.php:1224
+#: mod/admin.php:1220
 msgid "Site settings updated."
 msgstr "Impostazioni del sito aggiornate."
 
-#: mod/admin.php:1251 mod/settings.php:897
+#: mod/admin.php:1247 mod/settings.php:897
 msgid "No special theme for mobile devices"
 msgstr "Nessun tema speciale per i dispositivi mobili"
 
-#: mod/admin.php:1280
+#: mod/admin.php:1276
 msgid "No community page for local users"
 msgstr "Nessuna pagina di comunità per gli utenti locali"
 
-#: mod/admin.php:1281
+#: mod/admin.php:1277
 msgid "No community page"
 msgstr "Nessuna pagina Comunità"
 
-#: mod/admin.php:1282
+#: mod/admin.php:1278
 msgid "Public postings from users of this site"
 msgstr "Messaggi pubblici dagli utenti di questo sito"
 
-#: mod/admin.php:1283
+#: mod/admin.php:1279
 msgid "Public postings from the federated network"
 msgstr "Messaggi pubblici dalla rete federata"
 
-#: mod/admin.php:1284
+#: mod/admin.php:1280
 msgid "Public postings from local users and the federated network"
 msgstr "Messaggi pubblici dagli utenti di questo sito e dalla rete federata"
 
-#: mod/admin.php:1290
+#: mod/admin.php:1286
 msgid "Users, Global Contacts"
 msgstr "Utenti, Contatti Globali"
 
-#: mod/admin.php:1291
+#: mod/admin.php:1287
 msgid "Users, Global Contacts/fallback"
 msgstr "Utenti, Contatti Globali/fallback"
 
-#: mod/admin.php:1295
+#: mod/admin.php:1291
 msgid "One month"
 msgstr "Un mese"
 
-#: mod/admin.php:1296
+#: mod/admin.php:1292
 msgid "Three months"
 msgstr "Tre mesi"
 
-#: mod/admin.php:1297
+#: mod/admin.php:1293
 msgid "Half a year"
 msgstr "Sei mesi"
 
-#: mod/admin.php:1298
+#: mod/admin.php:1294
 msgid "One year"
 msgstr "Un anno"
 
-#: mod/admin.php:1303
+#: mod/admin.php:1299
 msgid "Multi user instance"
 msgstr "Istanza multi utente"
 
-#: mod/admin.php:1326
+#: mod/admin.php:1325
 msgid "Closed"
 msgstr "Chiusa"
 
-#: mod/admin.php:1327
+#: mod/admin.php:1326
 msgid "Requires approval"
 msgstr "Richiede l'approvazione"
 
-#: mod/admin.php:1328
+#: mod/admin.php:1327
 msgid "Open"
 msgstr "Aperta"
 
-#: mod/admin.php:1332
+#: mod/admin.php:1331
 msgid "No SSL policy, links will track page SSL state"
 msgstr "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina"
 
-#: mod/admin.php:1333
+#: mod/admin.php:1332
 msgid "Force all links to use SSL"
 msgstr "Forza tutti i link ad usare SSL"
 
-#: mod/admin.php:1334
+#: mod/admin.php:1333
 msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)"
 
-#: mod/admin.php:1338
+#: mod/admin.php:1337
 msgid "Don't check"
 msgstr "Non controllare"
 
-#: mod/admin.php:1339
+#: mod/admin.php:1338
 msgid "check the stable version"
 msgstr "controlla la versione stabile"
 
-#: mod/admin.php:1340
+#: mod/admin.php:1339
 msgid "check the development version"
 msgstr "controlla la versione di sviluppo"
 
-#: mod/admin.php:1359
+#: mod/admin.php:1358
 msgid "Republish users to directory"
 msgstr "Ripubblica gli utenti sulla directory"
 
-#: mod/admin.php:1360 mod/register.php:267
+#: mod/admin.php:1359 mod/register.php:267
 msgid "Registration"
 msgstr "Registrazione"
 
-#: mod/admin.php:1361
+#: mod/admin.php:1360
 msgid "File upload"
 msgstr "Caricamento file"
 
-#: mod/admin.php:1362
+#: mod/admin.php:1361
 msgid "Policies"
 msgstr "Politiche"
 
-#: mod/admin.php:1364
+#: mod/admin.php:1363
 msgid "Auto Discovered Contact Directory"
 msgstr "Elenco Contatti Scoperto Automaticamente"
 
-#: mod/admin.php:1365
+#: mod/admin.php:1364
 msgid "Performance"
 msgstr "Performance"
 
-#: mod/admin.php:1366
+#: mod/admin.php:1365
 msgid "Worker"
 msgstr "Worker"
 
-#: mod/admin.php:1367
+#: mod/admin.php:1366
 msgid "Message Relay"
 msgstr "Relay Messaggio"
 
-#: mod/admin.php:1368
+#: mod/admin.php:1367
 msgid ""
 "Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr "Trasloca - ATTENZIONE: funzione avanzata! Può rendere questo server irraggiungibile."
 
-#: mod/admin.php:1371
+#: mod/admin.php:1370
 msgid "Site name"
 msgstr "Nome del sito"
 
-#: mod/admin.php:1372
+#: mod/admin.php:1371
 msgid "Host name"
 msgstr "Nome host"
 
-#: mod/admin.php:1373
+#: mod/admin.php:1372
 msgid "Sender Email"
 msgstr "Mittente email"
 
-#: mod/admin.php:1373
+#: mod/admin.php:1372
 msgid ""
 "The email address your server shall use to send notification emails from."
 msgstr "L'indirizzo email che il tuo server dovrà usare per inviare notifiche via email."
 
-#: mod/admin.php:1374
+#: mod/admin.php:1373
 msgid "Banner/Logo"
 msgstr "Banner/Logo"
 
-#: mod/admin.php:1375
+#: mod/admin.php:1374
 msgid "Shortcut icon"
 msgstr "Icona shortcut"
 
-#: mod/admin.php:1375
+#: mod/admin.php:1374
 msgid "Link to an icon that will be used for browsers."
 msgstr "Link verso un'icona che verrà usata dai browser."
 
-#: mod/admin.php:1376
+#: mod/admin.php:1375
 msgid "Touch icon"
 msgstr "Icona touch"
 
-#: mod/admin.php:1376
+#: mod/admin.php:1375
 msgid "Link to an icon that will be used for tablets and mobiles."
 msgstr "Link verso un'icona che verrà usata dai tablet e i telefonini."
 
-#: mod/admin.php:1377
+#: mod/admin.php:1376
 msgid "Additional Info"
 msgstr "Informazioni aggiuntive"
 
-#: mod/admin.php:1377
+#: mod/admin.php:1376
 #, php-format
 msgid ""
 "For public servers: you can add additional information here that will be "
 "listed at %s/servers."
 msgstr "Per server pubblici: puoi aggiungere informazioni extra che verranno mostrate su %s/servers."
 
-#: mod/admin.php:1378
+#: mod/admin.php:1377
 msgid "System language"
 msgstr "Lingua di sistema"
 
-#: mod/admin.php:1379
+#: mod/admin.php:1378
 msgid "System theme"
 msgstr "Tema di sistema"
 
-#: mod/admin.php:1379
+#: mod/admin.php:1378
 msgid ""
 "Default system theme - may be over-ridden by user profiles - <a href='#' "
 "id='cnftheme'>change theme settings</a>"
 msgstr "Tema di sistema - può essere sovrascritto dalle impostazioni utente - <a href='#' id='cnftheme'>cambia le impostazioni del tema</a>"
 
-#: mod/admin.php:1380
+#: mod/admin.php:1379
 msgid "Mobile system theme"
 msgstr "Tema mobile di sistema"
 
-#: mod/admin.php:1380
+#: mod/admin.php:1379
 msgid "Theme for mobile devices"
 msgstr "Tema per dispositivi mobili"
 
-#: mod/admin.php:1381
+#: mod/admin.php:1380
 msgid "SSL link policy"
 msgstr "Gestione link SSL"
 
-#: mod/admin.php:1381
+#: mod/admin.php:1380
 msgid "Determines whether generated links should be forced to use SSL"
 msgstr "Determina se i link generati devono essere forzati a usare SSL"
 
-#: mod/admin.php:1382
+#: mod/admin.php:1381
 msgid "Force SSL"
 msgstr "Forza SSL"
 
-#: mod/admin.php:1382
+#: mod/admin.php:1381
 msgid ""
 "Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
 " to endless loops."
 msgstr "Forza tutte le richieste non SSL su SSL - Attenzione: su alcuni sistemi può portare a loop senza fine"
 
-#: mod/admin.php:1383
+#: mod/admin.php:1382
 msgid "Hide help entry from navigation menu"
 msgstr "Nascondi la voce 'Guida' dal menu di navigazione"
 
-#: mod/admin.php:1383
+#: mod/admin.php:1382
 msgid ""
 "Hides the menu entry for the Help pages from the navigation menu. You can "
 "still access it calling /help directly."
 msgstr "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente."
 
-#: mod/admin.php:1384
+#: mod/admin.php:1383
 msgid "Single user instance"
 msgstr "Istanza a singolo utente"
 
-#: mod/admin.php:1384
+#: mod/admin.php:1383
 msgid "Make this instance multi-user or single-user for the named user"
 msgstr "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato"
 
-#: mod/admin.php:1385
+#: mod/admin.php:1384
 msgid "Maximum image size"
 msgstr "Massima dimensione immagini"
 
-#: mod/admin.php:1385
+#: mod/admin.php:1384
 msgid ""
 "Maximum size in bytes of uploaded images. Default is 0, which means no "
 "limits."
 msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite."
 
-#: mod/admin.php:1386
+#: mod/admin.php:1385
 msgid "Maximum image length"
 msgstr "Massima lunghezza immagine"
 
-#: mod/admin.php:1386
+#: mod/admin.php:1385
 msgid ""
 "Maximum length in pixels of the longest side of uploaded images. Default is "
 "-1, which means no limits."
 msgstr "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite."
 
-#: mod/admin.php:1387
+#: mod/admin.php:1386
 msgid "JPEG image quality"
 msgstr "Qualità immagini JPEG"
 
-#: mod/admin.php:1387
+#: mod/admin.php:1386
 msgid ""
 "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
 "100, which is full quality."
 msgstr "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena."
 
-#: mod/admin.php:1389
+#: mod/admin.php:1388
 msgid "Register policy"
 msgstr "Politica di registrazione"
 
-#: mod/admin.php:1390
+#: mod/admin.php:1389
 msgid "Maximum Daily Registrations"
 msgstr "Massime registrazioni giornaliere"
 
-#: mod/admin.php:1390
+#: mod/admin.php:1389
 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 "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto."
 
-#: mod/admin.php:1391
+#: mod/admin.php:1390
 msgid "Register text"
 msgstr "Testo registrazione"
 
-#: mod/admin.php:1391
+#: mod/admin.php:1390
 msgid ""
 "Will be displayed prominently on the registration page. You can use BBCode "
 "here."
 msgstr "Sarà mostrato ben visibile nella pagina di registrazione. Puoi usare BBCode."
 
-#: mod/admin.php:1392
+#: mod/admin.php:1391
 msgid "Accounts abandoned after x days"
 msgstr "Account abbandonati dopo x giorni"
 
-#: mod/admin.php:1392
+#: mod/admin.php:1391
 msgid ""
 "Will not waste system resources polling external sites for abandonded "
 "accounts. Enter 0 for no time limit."
 msgstr "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo."
 
-#: mod/admin.php:1393
+#: mod/admin.php:1392
 msgid "Allowed friend domains"
 msgstr "Domini amici consentiti"
 
-#: mod/admin.php:1393
+#: mod/admin.php:1392
 msgid ""
 "Comma separated list of domains which are allowed to establish friendships "
 "with this site. Wildcards are accepted. Empty to allow any domains"
 msgstr "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Vuoto per accettare qualsiasi dominio."
 
-#: mod/admin.php:1394
+#: mod/admin.php:1393
 msgid "Allowed email domains"
 msgstr "Domini email consentiti"
 
-#: mod/admin.php:1394
+#: mod/admin.php:1393
 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 "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."
 
-#: mod/admin.php:1395
+#: mod/admin.php:1394
 msgid "No OEmbed rich content"
 msgstr "Nessun contenuto ricco da OEmbed"
 
-#: mod/admin.php:1395
+#: mod/admin.php:1394
 msgid ""
 "Don't show the rich content (e.g. embedded PDF), except from the domains "
 "listed below."
 msgstr "Non mostrare il contenuto ricco (p.e. PDF), tranne che dai domini elencati di seguito."
 
-#: mod/admin.php:1396
+#: mod/admin.php:1395
 msgid "Allowed OEmbed domains"
 msgstr "Domini OEmbed consentiti"
 
-#: mod/admin.php:1396
+#: mod/admin.php:1395
 msgid ""
 "Comma separated list of domains which oembed content is allowed to be "
 "displayed. Wildcards are accepted."
 msgstr "Elenco separato da virgola di domini il cui contenuto OEmbed verrà visualizzato. Sono permesse wildcard."
 
-#: mod/admin.php:1397
+#: mod/admin.php:1396
 msgid "Block public"
 msgstr "Blocca pagine pubbliche"
 
-#: mod/admin.php:1397
+#: mod/admin.php:1396
 msgid ""
 "Check to block public access to all otherwise public personal pages on this "
 "site unless you are currently logged in."
 msgstr "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato."
 
-#: mod/admin.php:1398
+#: mod/admin.php:1397
 msgid "Force publish"
 msgstr "Forza pubblicazione"
 
-#: mod/admin.php:1398
+#: mod/admin.php:1397
 msgid ""
 "Check to force all profiles on this site to be listed in the site directory."
 msgstr "Seleziona per forzare tutti i profili di questo sito ad essere compresi  nell'elenco di questo sito."
 
-#: mod/admin.php:1399
+#: mod/admin.php:1397
+msgid "Enabling this may violate privacy laws like the GDPR"
+msgstr "Abilitare questo potrebbe violare leggi sulla privacy come il GDPR"
+
+#: mod/admin.php:1398
 msgid "Global directory URL"
 msgstr "URL della directory globale"
 
-#: mod/admin.php:1399
+#: mod/admin.php:1398
 msgid ""
 "URL to the global directory. If this is not set, the global directory is "
 "completely unavailable to the application."
 msgstr "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato."
 
-#: mod/admin.php:1400
+#: mod/admin.php:1399
 msgid "Private posts by default for new users"
 msgstr "Post privati di default per i nuovi utenti"
 
-#: mod/admin.php:1400
+#: mod/admin.php:1399
 msgid ""
 "Set default post permissions for all new members to the default privacy "
 "group rather than public."
 msgstr "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici."
 
-#: mod/admin.php:1401
+#: mod/admin.php:1400
 msgid "Don't include post content in email notifications"
 msgstr "Non includere il contenuto dei post nelle notifiche via email"
 
-#: mod/admin.php:1401
+#: mod/admin.php:1400
 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 "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy"
 
-#: mod/admin.php:1402
+#: mod/admin.php:1401
 msgid "Disallow public access to addons listed in the apps menu."
 msgstr "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps."
 
-#: mod/admin.php:1402
+#: mod/admin.php:1401
 msgid ""
 "Checking this box will restrict addons listed in the apps menu to members "
 "only."
 msgstr "Selezionando questo box si limiterà ai soli membri l'accesso ai componenti aggiuntivi nel menu applicazioni"
 
-#: mod/admin.php:1403
+#: mod/admin.php:1402
 msgid "Don't embed private images in posts"
 msgstr "Non inglobare immagini private nei post"
 
-#: mod/admin.php:1403
+#: mod/admin.php:1402
 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 "
@@ -4799,210 +4273,210 @@ msgid ""
 "while."
 msgstr "Non sostituire le foto locali nei post con una copia incorporata dell'immagine. Questo significa che i contatti che riceveranno i post contenenti foto private dovranno autenticarsi e caricare ogni immagine, cosa che può richiedere un po' di tempo."
 
-#: mod/admin.php:1404
+#: mod/admin.php:1403
 msgid "Allow Users to set remote_self"
 msgstr "Permetti agli utenti di impostare 'io remoto'"
 
-#: mod/admin.php:1404
+#: mod/admin.php:1403
 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 "Selezionando questo, a tutti gli utenti sarà permesso di impostare qualsiasi contatto come 'io remoto' nella pagina di modifica del contatto. Impostare questa opzione fa si che tutti i messaggi di quel contatto vengano ripetuti nello stream dell'utente."
 
-#: mod/admin.php:1405
+#: mod/admin.php:1404
 msgid "Block multiple registrations"
 msgstr "Blocca registrazioni multiple"
 
-#: mod/admin.php:1405
+#: mod/admin.php:1404
 msgid "Disallow users to register additional accounts for use as pages."
 msgstr "Non permette all'utente di registrare account extra da usare come pagine."
 
-#: mod/admin.php:1406
+#: mod/admin.php:1405
 msgid "OpenID support"
 msgstr "Supporto OpenID"
 
-#: mod/admin.php:1406
+#: mod/admin.php:1405
 msgid "OpenID support for registration and logins."
 msgstr "Supporta OpenID per la registrazione e il login"
 
-#: mod/admin.php:1407
+#: mod/admin.php:1406
 msgid "Fullname check"
 msgstr "Controllo nome completo"
 
-#: mod/admin.php:1407
+#: mod/admin.php:1406
 msgid ""
 "Force users to register with a space between firstname and lastname in Full "
 "name, as an antispam measure"
 msgstr "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura anti spam"
 
-#: mod/admin.php:1408
+#: mod/admin.php:1407
 msgid "Community pages for visitors"
 msgstr "Pagina comunità per i visitatori"
 
-#: mod/admin.php:1408
+#: mod/admin.php:1407
 msgid ""
 "Which community pages should be available for visitors. Local users always "
 "see both pages."
 msgstr "Quale pagina comunità verrà mostrata ai visitatori. Gli utenti locali vedranno sempre entrambe le pagine."
 
-#: mod/admin.php:1409
+#: mod/admin.php:1408
 msgid "Posts per user on community page"
 msgstr "Messaggi per utente nella pagina Comunità"
 
-#: mod/admin.php:1409
+#: mod/admin.php:1408
 msgid ""
 "The maximum number of posts per user on the community page. (Not valid for "
 "'Global Community')"
 msgstr "Il numero massimo di messaggi per utente mostrato nella pagina Comunità (non valido per 'Comunità globale')"
 
-#: mod/admin.php:1410
+#: mod/admin.php:1409
 msgid "Enable OStatus support"
 msgstr "Abilita supporto OStatus"
 
-#: mod/admin.php:1410
+#: mod/admin.php:1409
 msgid ""
 "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
 "communications in OStatus are public, so privacy warnings will be "
 "occasionally displayed."
 msgstr "Fornisce la compatibilità integrata a OStatus (StatusNet, Gnu Social, etc.). Tutte le comunicazioni su OStatus sono pubbliche, quindi un avviso di privacy verrà mostrato occasionalmente."
 
-#: mod/admin.php:1411
+#: mod/admin.php:1410
 msgid "Only import OStatus threads from our contacts"
 msgstr "Importa conversazioni OStatus solo dai nostri contatti."
 
-#: mod/admin.php:1411
+#: mod/admin.php:1410
 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 "Normalmente importiamo tutto il contenuto dai contatti OStatus. Con questa opzione salviamo solo le conversazioni iniziate da un contatto è conosciuto a questo nodo."
 
-#: mod/admin.php:1412
+#: mod/admin.php:1411
 msgid "OStatus support can only be enabled if threading is enabled."
 msgstr "Il supporto OStatus può essere abilitato solo se è abilitato il threading."
 
-#: mod/admin.php:1414
+#: mod/admin.php:1413
 msgid ""
 "Diaspora support can't be enabled because Friendica was installed into a sub"
 " directory."
 msgstr "Il supporto a Diaspora non può essere abilitato perché Friendica è stato installato in una sotto directory."
 
-#: mod/admin.php:1415
+#: mod/admin.php:1414
 msgid "Enable Diaspora support"
 msgstr "Abilita il supporto a Diaspora"
 
-#: mod/admin.php:1415
+#: mod/admin.php:1414
 msgid "Provide built-in Diaspora network compatibility."
 msgstr "Fornisce compatibilità con il network Diaspora."
 
-#: mod/admin.php:1416
+#: mod/admin.php:1415
 msgid "Only allow Friendica contacts"
 msgstr "Permetti solo contatti Friendica"
 
-#: mod/admin.php:1416
+#: mod/admin.php:1415
 msgid ""
 "All contacts must use Friendica protocols. All other built-in communication "
 "protocols disabled."
 msgstr "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati."
 
-#: mod/admin.php:1417
+#: mod/admin.php:1416
 msgid "Verify SSL"
 msgstr "Verifica SSL"
 
-#: mod/admin.php:1417
+#: mod/admin.php:1416
 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 "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati."
 
-#: mod/admin.php:1418
+#: mod/admin.php:1417
 msgid "Proxy user"
 msgstr "Utente Proxy"
 
-#: mod/admin.php:1419
+#: mod/admin.php:1418
 msgid "Proxy URL"
 msgstr "URL Proxy"
 
-#: mod/admin.php:1420
+#: mod/admin.php:1419
 msgid "Network timeout"
 msgstr "Timeout rete"
 
-#: mod/admin.php:1420
+#: mod/admin.php:1419
 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)."
 
-#: mod/admin.php:1421
+#: mod/admin.php:1420
 msgid "Maximum Load Average"
 msgstr "Massimo carico medio"
 
-#: mod/admin.php:1421
+#: mod/admin.php:1420
 msgid ""
 "Maximum system load before delivery and poll processes are deferred - "
 "default 50."
 msgstr "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50."
 
-#: mod/admin.php:1422
+#: mod/admin.php:1421
 msgid "Maximum Load Average (Frontend)"
 msgstr "Media Massimo Carico (Frontend)"
 
-#: mod/admin.php:1422
+#: mod/admin.php:1421
 msgid "Maximum system load before the frontend quits service - default 50."
 msgstr "Massimo carico di sistema prima che il frontend fermi il servizio - default 50."
 
-#: mod/admin.php:1423
+#: mod/admin.php:1422
 msgid "Minimal Memory"
 msgstr "Memoria Minima"
 
-#: mod/admin.php:1423
+#: mod/admin.php:1422
 msgid ""
 "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
 "default 0 (deactivated)."
 msgstr "Minima memoria libera in MB per il worker. Necessita di avere accesso a /proc/meminfo - default 0 (disabilitato)."
 
-#: mod/admin.php:1424
+#: mod/admin.php:1423
 msgid "Maximum table size for optimization"
 msgstr "Dimensione massima della tabella per l'ottimizzazione"
 
-#: mod/admin.php:1424
+#: mod/admin.php:1423
 msgid ""
 "Maximum table size (in MB) for the automatic optimization. Enter -1 to "
 "disable it."
 msgstr "La dimensione massima (in MB) per l'ottimizzazione automatica. Inserisci -1 per disabilitarlo."
 
-#: mod/admin.php:1425
+#: mod/admin.php:1424
 msgid "Minimum level of fragmentation"
 msgstr "Livello minimo di frammentazione"
 
-#: mod/admin.php:1425
+#: mod/admin.php:1424
 msgid ""
 "Minimum fragmenation level to start the automatic optimization - default "
 "value is 30%."
 msgstr "Livello minimo di frammentazione per iniziare la procedura di ottimizzazione automatica - il valore di default è 30%."
 
-#: mod/admin.php:1427
+#: mod/admin.php:1426
 msgid "Periodical check of global contacts"
 msgstr "Check periodico dei contatti globali"
 
-#: mod/admin.php:1427
+#: mod/admin.php:1426
 msgid ""
 "If enabled, the global contacts are checked periodically for missing or "
 "outdated data and the vitality of the contacts and servers."
 msgstr "Se abilitato, i contatti globali sono controllati periodicamente per verificare dati mancanti o sorpassati e la vitalità dei contatti e dei server."
 
-#: mod/admin.php:1428
+#: mod/admin.php:1427
 msgid "Days between requery"
 msgstr "Giorni tra le richieste"
 
-#: mod/admin.php:1428
+#: mod/admin.php:1427
 msgid "Number of days after which a server is requeried for his contacts."
 msgstr "Numero di giorni dopo i quali al server vengono richiesti i suoi contatti."
 
-#: mod/admin.php:1429
+#: mod/admin.php:1428
 msgid "Discover contacts from other servers"
 msgstr "Trova contatti dagli altri server"
 
-#: mod/admin.php:1429
+#: mod/admin.php:1428
 msgid ""
 "Periodically query other servers for contacts. You can choose between "
 "'users': the users on the remote system, 'Global Contacts': active contacts "
@@ -5012,32 +4486,32 @@ msgid ""
 "Global Contacts'."
 msgstr "Richiede periodicamente contatti agli altri server. Puoi scegliere tra 'utenti', gli utenti sul sistema remoto, o 'contatti globali', i contatti attivi che sono conosciuti dal sistema. Il fallback è pensato per i server Redmatrix e i vecchi server Friendica, dove i contatti globali non sono disponibili. Il fallback incrementa il carico di sistema, per cui l'impostazione consigliata è \"Utenti, Contatti Globali\"."
 
-#: mod/admin.php:1430
+#: mod/admin.php:1429
 msgid "Timeframe for fetching global contacts"
 msgstr "Termine per il recupero contatti globali"
 
-#: mod/admin.php:1430
+#: mod/admin.php:1429
 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 "Quando si attiva la scoperta, questo valore definisce il periodo di tempo per l'attività dei contatti globali che vengono prelevati da altri server."
 
-#: mod/admin.php:1431
+#: mod/admin.php:1430
 msgid "Search the local directory"
 msgstr "Cerca la directory locale"
 
-#: mod/admin.php:1431
+#: mod/admin.php:1430
 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 "Cerca nella directory locale invece che nella directory globale. Durante la ricerca a livello locale, ogni ricerca verrà eseguita sulla directory globale in background. Ciò migliora i risultati della ricerca quando la ricerca viene ripetuta."
 
-#: mod/admin.php:1433
+#: mod/admin.php:1432
 msgid "Publish server information"
 msgstr "Pubblica informazioni server"
 
-#: mod/admin.php:1433
+#: mod/admin.php:1432
 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 "
@@ -5045,50 +4519,50 @@ msgid ""
 " href='http://the-federation.info/'>the-federation.info</a> for details."
 msgstr "Se abilitata, saranno pubblicati i dati generali del server e i dati di utilizzo. I dati contengono il nome e la versione del server, il numero di utenti con profili pubblici, numero dei posti e dei protocolli e connettori attivati. Per informazioni, vedere <a href='http://the-federation.info/'> the-federation.info </a>."
 
-#: mod/admin.php:1435
+#: mod/admin.php:1434
 msgid "Check upstream version"
 msgstr "Controlla versione upstream"
 
-#: mod/admin.php:1435
+#: mod/admin.php:1434
 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 "Abilita il controllo di nuove versioni di Friendica su Github. Se sono disponibili nuove versioni, ne sarai informato nel pannello Panoramica dell'amministrazione."
 
-#: mod/admin.php:1436
+#: mod/admin.php:1435
 msgid "Suppress Tags"
 msgstr "Sopprimi Tags"
 
-#: mod/admin.php:1436
+#: mod/admin.php:1435
 msgid "Suppress showing a list of hashtags at the end of the posting."
 msgstr "Non mostra la lista di hashtag in coda al messaggio"
 
-#: mod/admin.php:1437
+#: mod/admin.php:1436
 msgid "Clean database"
 msgstr "Pulisci database"
 
-#: mod/admin.php:1437
+#: mod/admin.php:1436
 msgid ""
 "Remove old remote items, orphaned database records and old content from some"
 " other helper tables."
 msgstr "Rimuove i i vecchi elementi remoti, i record del database orfani e il vecchio contenuto da alcune tabelle di supporto."
 
-#: mod/admin.php:1438
+#: mod/admin.php:1437
 msgid "Lifespan of remote items"
 msgstr "Durata della vita di oggetti remoti"
 
-#: mod/admin.php:1438
+#: mod/admin.php:1437
 msgid ""
 "When the database cleanup is enabled, this defines the days after which "
 "remote items will be deleted. Own items, and marked or filed items are "
 "always kept. 0 disables this behaviour."
 msgstr "Quando la pulizia del database è abilitata, questa impostazione definisce quali elementi remoti saranno cancellati. I propri elementi e quelli marcati preferiti o salvati in cartelle saranno sempre mantenuti. Il valore 0 disabilita questa funzionalità."
 
-#: mod/admin.php:1439
+#: mod/admin.php:1438
 msgid "Lifespan of unclaimed items"
 msgstr "Durata della vita di oggetti non reclamati"
 
-#: mod/admin.php:1439
+#: mod/admin.php:1438
 msgid ""
 "When the database cleanup is enabled, this defines the days after which "
 "unclaimed remote items (mostly content from the relay) will be deleted. "
@@ -5096,129 +4570,129 @@ msgid ""
 "items if set to 0."
 msgstr "Quando la pulizia del database è abilitata, questa impostazione definisce dopo quanti giorni gli elementi remoti non reclamanti (principalmente il contenuto dai relay) sarà cancellato. Il valore di default è 90 giorni. Se impostato a 0, verrà utilizzato il valore della durata della vita degli elementi remoti."
 
-#: mod/admin.php:1440
+#: mod/admin.php:1439
 msgid "Path to item cache"
 msgstr "Percorso cache elementi"
 
-#: mod/admin.php:1440
+#: mod/admin.php:1439
 msgid "The item caches buffers generated bbcode and external images."
 msgstr "La cache degli elementi memorizza il bbcode generato e le immagini esterne."
 
-#: mod/admin.php:1441
+#: mod/admin.php:1440
 msgid "Cache duration in seconds"
 msgstr "Durata della cache in secondi"
 
-#: mod/admin.php:1441
+#: mod/admin.php:1440
 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 "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno). Per disabilitare la cache, imposta il valore a -1."
 
-#: mod/admin.php:1442
+#: mod/admin.php:1441
 msgid "Maximum numbers of comments per post"
 msgstr "Numero massimo di commenti per post"
 
-#: mod/admin.php:1442
+#: mod/admin.php:1441
 msgid "How much comments should be shown for each post? Default value is 100."
 msgstr "Quanti commenti devono essere mostrati per ogni post? Default : 100."
 
-#: mod/admin.php:1443
+#: mod/admin.php:1442
 msgid "Temp path"
 msgstr "Percorso file temporanei"
 
-#: mod/admin.php:1443
+#: mod/admin.php:1442
 msgid ""
 "If you have a restricted system where the webserver can't access the system "
 "temp path, enter another path here."
 msgstr "Se si dispone di un sistema ristretto in cui il server web non può accedere al percorso temporaneo di sistema, inserire un altro percorso qui."
 
-#: mod/admin.php:1444
+#: mod/admin.php:1443
 msgid "Base path to installation"
 msgstr "Percorso base all'installazione"
 
-#: mod/admin.php:1444
+#: mod/admin.php:1443
 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 "Se il sistema non è in grado di rilevare il percorso corretto per l'installazione, immettere il percorso corretto qui. Questa impostazione deve essere inserita solo se si utilizza un sistema limitato e/o collegamenti simbolici al tuo webroot."
 
-#: mod/admin.php:1445
+#: mod/admin.php:1444
 msgid "Disable picture proxy"
 msgstr "Disabilita il proxy immagini"
 
-#: mod/admin.php:1445
+#: mod/admin.php:1444
 msgid ""
 "The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
+" systems with very low bandwidth."
 msgstr "Il proxy immagini aumenta le performance e la privacy. Non dovrebbe essere usato su server con poca banda disponibile."
 
-#: mod/admin.php:1446
+#: mod/admin.php:1445
 msgid "Only search in tags"
 msgstr "Cerca solo nei tag"
 
-#: mod/admin.php:1446
+#: mod/admin.php:1445
 msgid "On large systems the text search can slow down the system extremely."
 msgstr "Su server con molti dati, la ricerca nel testo può estremamente rallentare il sistema."
 
-#: mod/admin.php:1448
+#: mod/admin.php:1447
 msgid "New base url"
 msgstr "Nuovo url base"
 
-#: mod/admin.php:1448
+#: mod/admin.php:1447
 msgid ""
 "Change base url for this server. Sends relocate message to all Friendica and"
 " Diaspora* contacts of all users."
 msgstr "Cambia l'URL base di questo server. Invia il messaggio di trasloco a tutti i contatti Friendica e Diaspora* di tutti gli utenti."
 
-#: mod/admin.php:1450
+#: mod/admin.php:1449
 msgid "RINO Encryption"
 msgstr "Crittografia RINO"
 
-#: mod/admin.php:1450
+#: mod/admin.php:1449
 msgid "Encryption layer between nodes."
 msgstr "Crittografia delle comunicazioni tra nodi."
 
-#: mod/admin.php:1450
+#: mod/admin.php:1449
 msgid "Enabled"
 msgstr "Abilitato"
 
-#: mod/admin.php:1452
+#: mod/admin.php:1451
 msgid "Maximum number of parallel workers"
 msgstr "Massimo numero di lavori in parallelo"
 
-#: mod/admin.php:1452
+#: mod/admin.php:1451
 msgid ""
 "On shared hosters set this to 2. On larger systems, values of 10 are great. "
 "Default value is 4."
 msgstr "Su host condivisi imposta a 2. Su sistemi più grandi, valori fino a 10 vanno bene. Il valore di default è 4."
 
-#: mod/admin.php:1453
+#: mod/admin.php:1452
 msgid "Don't use 'proc_open' with the worker"
 msgstr "Non usare 'proc_open' con il worker"
 
-#: mod/admin.php:1453
+#: mod/admin.php:1452
 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 "Abilita se il tuo sistema non consente l'utilizzo di 'proc_open'. Può succedere con gli hosting condivisi. Se abiliti questa opzione, dovresti aumentare la frequenza delle chiamate al worker nel tuo crontab."
 
-#: mod/admin.php:1454
+#: mod/admin.php:1453
 msgid "Enable fastlane"
 msgstr "Abilita fastlane"
 
-#: mod/admin.php:1454
+#: mod/admin.php:1453
 msgid ""
 "When enabed, the fastlane mechanism starts an additional worker if processes"
 " with higher priority are blocked by processes of lower priority."
 msgstr "Quando abilitato, il meccanismo di fastlane avvia processi aggiuntivi se processi con priorità più alta sono bloccati da processi con priorità più bassa."
 
-#: mod/admin.php:1455
+#: mod/admin.php:1454
 msgid "Enable frontend worker"
 msgstr "Abilita worker da frontend"
 
-#: mod/admin.php:1455
+#: mod/admin.php:1454
 #, php-format
 msgid ""
 "When enabled the Worker process is triggered when backend access is "
@@ -5228,132 +4702,132 @@ msgid ""
 " on your server."
 msgstr "Quando abilitato, il processo è avviato quando viene eseguito un accesso al backend (per esempio, quando un messaggio viene consegnato). Su siti più piccoli potresti voler chiamare %s/worker regolarmente attraverso un cron esterno. Dovresti abilitare questa opzione solo se non puoi impostare esecuzioni pianificate sul tuo server. "
 
-#: mod/admin.php:1457
+#: mod/admin.php:1456
 msgid "Subscribe to relay"
 msgstr "Inscrivi a un relay"
 
-#: mod/admin.php:1457
+#: mod/admin.php:1456
 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 "Abilita la ricezione dei post pubblici dal relay. Saranno inclusi nelle ricerche, nei tag sottoscritti e nella pagina comunità globale."
 
-#: mod/admin.php:1458
+#: mod/admin.php:1457
 msgid "Relay server"
 msgstr "Server relay"
 
-#: mod/admin.php:1458
+#: mod/admin.php:1457
 msgid ""
 "Address of the relay server where public posts should be send to. For "
 "example https://relay.diasp.org"
 msgstr "Indirizzo del server relay dove i post pubblici verranno inviati. Per esempio https://relay.diasp.org"
 
-#: mod/admin.php:1459
+#: mod/admin.php:1458
 msgid "Direct relay transfer"
 msgstr "Trasferimento relay diretto"
 
-#: mod/admin.php:1459
+#: mod/admin.php:1458
 msgid ""
 "Enables the direct transfer to other servers without using the relay servers"
 msgstr "Abilita il trasferimento diretto agli altri server senza utilizzare i server relay."
 
-#: mod/admin.php:1460
+#: mod/admin.php:1459
 msgid "Relay scope"
 msgstr "Ambito del relay"
 
-#: mod/admin.php:1460
+#: mod/admin.php:1459
 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 "Può essere 'tutti' o 'tags'. 'tutti' significa che ogni post pubblico viene ricevuto. 'tags' significa che vengono ricevuti solo i post con i tag selezionati."
 
-#: mod/admin.php:1460
+#: mod/admin.php:1459
 msgid "all"
 msgstr "tutti"
 
-#: mod/admin.php:1460
+#: mod/admin.php:1459
 msgid "tags"
 msgstr "tags"
 
-#: mod/admin.php:1461
+#: mod/admin.php:1460
 msgid "Server tags"
 msgstr "Tags server"
 
-#: mod/admin.php:1461
+#: mod/admin.php:1460
 msgid "Comma separated list of tags for the 'tags' subscription."
 msgstr "Lista separata da virgola per la sottoscrizione 'tags'."
 
-#: mod/admin.php:1462
+#: mod/admin.php:1461
 msgid "Allow user tags"
 msgstr "Permetti tag utente"
 
-#: mod/admin.php:1462
+#: mod/admin.php:1461
 msgid ""
 "If enabled, the tags from the saved searches will used for the 'tags' "
 "subscription in addition to the 'relay_server_tags'."
 msgstr "Se abilitato, i tag delle ricerche salvate saranno usate per la sottoscrizione 'tags' in aggiunta ai tag server."
 
-#: mod/admin.php:1490
+#: mod/admin.php:1489
 msgid "Update has been marked successful"
 msgstr "L'aggiornamento è stato segnato come  di successo"
 
-#: mod/admin.php:1497
+#: mod/admin.php:1496
 #, php-format
 msgid "Database structure update %s was successfully applied."
 msgstr "Aggiornamento struttura database %s applicata con successo."
 
-#: mod/admin.php:1500
+#: mod/admin.php:1499
 #, php-format
 msgid "Executing of database structure update %s failed with error: %s"
 msgstr "Aggiornamento struttura database %s fallita con errore: %s"
 
-#: mod/admin.php:1513
+#: mod/admin.php:1515
 #, php-format
 msgid "Executing %s failed with error: %s"
 msgstr "Esecuzione di %s fallita con errore: %s"
 
-#: mod/admin.php:1515
+#: mod/admin.php:1517
 #, php-format
 msgid "Update %s was successfully applied."
 msgstr "L'aggiornamento %s è stato applicato con successo"
 
-#: mod/admin.php:1518
+#: mod/admin.php:1520
 #, php-format
 msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine."
 
-#: mod/admin.php:1521
+#: mod/admin.php:1523
 #, php-format
 msgid "There was no additional update function %s that needed to be called."
 msgstr "Non ci sono altre funzioni di aggiornamento %s da richiamare."
 
-#: mod/admin.php:1541
+#: mod/admin.php:1546
 msgid "No failed updates."
 msgstr "Nessun aggiornamento fallito."
 
-#: mod/admin.php:1542
+#: mod/admin.php:1547
 msgid "Check database structure"
 msgstr "Controlla struttura database"
 
-#: mod/admin.php:1547
+#: mod/admin.php:1552
 msgid "Failed Updates"
 msgstr "Aggiornamenti falliti"
 
-#: mod/admin.php:1548
+#: mod/admin.php:1553
 msgid ""
 "This does not include updates prior to 1139, which did not return a status."
 msgstr "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato."
 
-#: mod/admin.php:1549
+#: mod/admin.php:1554
 msgid "Mark success (if update was manually applied)"
 msgstr "Segna completato (se l'update è stato applicato manualmente)"
 
-#: mod/admin.php:1550
+#: mod/admin.php:1555
 msgid "Attempt to execute this update step automatically"
 msgstr "Cerco di eseguire questo aggiornamento in automatico"
 
-#: mod/admin.php:1589
+#: mod/admin.php:1594
 #, php-format
 msgid ""
 "\n"
@@ -5361,7 +4835,7 @@ msgid ""
 "\t\t\t\tthe administrator of %2$s has set up an account for you."
 msgstr "\nGentile %1$s,\n    l'amministratore di %2$s ha impostato un account per te."
 
-#: mod/admin.php:1592
+#: mod/admin.php:1597
 #, php-format
 msgid ""
 "\n"
@@ -5393,208 +4867,208 @@ msgid ""
 "\t\t\tThank you and welcome to %4$s."
 msgstr "\nI dettagli del tuo utente sono:\n    Indirizzo del sito: %1$s\n    Nome utente: %2$s\n    Password: %3$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\n\t\t\tSe mai vorrai cancellare il tuo account, lo potrai fare su%1$s/removeme\n\nGrazie e benvenuto su %4$s"
 
-#: mod/admin.php:1626 src/Model/User.php:663
+#: mod/admin.php:1631 src/Model/User.php:665
 #, php-format
 msgid "Registration details for %s"
 msgstr "Dettagli della registrazione di %s"
 
-#: mod/admin.php:1636
+#: mod/admin.php:1641
 #, php-format
 msgid "%s user blocked/unblocked"
 msgid_plural "%s users blocked/unblocked"
 msgstr[0] "%s utente bloccato/sbloccato"
 msgstr[1] "%s utenti bloccati/sbloccati"
 
-#: mod/admin.php:1642
+#: mod/admin.php:1647
 #, php-format
 msgid "%s user deleted"
 msgid_plural "%s users deleted"
 msgstr[0] "%s utente cancellato"
 msgstr[1] "%s utenti cancellati"
 
-#: mod/admin.php:1689
+#: mod/admin.php:1694
 #, php-format
 msgid "User '%s' deleted"
 msgstr "Utente '%s' cancellato"
 
-#: mod/admin.php:1697
+#: mod/admin.php:1702
 #, php-format
 msgid "User '%s' unblocked"
 msgstr "Utente '%s' sbloccato"
 
-#: mod/admin.php:1697
+#: mod/admin.php:1702
 #, php-format
 msgid "User '%s' blocked"
 msgstr "Utente '%s' bloccato"
 
-#: mod/admin.php:1754 mod/settings.php:1058
+#: mod/admin.php:1759 mod/settings.php:1058
 msgid "Normal Account Page"
 msgstr "Pagina Account Normale"
 
-#: mod/admin.php:1755 mod/settings.php:1062
+#: mod/admin.php:1760 mod/settings.php:1062
 msgid "Soapbox Page"
 msgstr "Pagina Sandbox"
 
-#: mod/admin.php:1756 mod/settings.php:1066
+#: mod/admin.php:1761 mod/settings.php:1066
 msgid "Public Forum"
 msgstr "Forum Pubblico"
 
-#: mod/admin.php:1757 mod/settings.php:1070
+#: mod/admin.php:1762 mod/settings.php:1070
 msgid "Automatic Friend Page"
 msgstr "Pagina con amicizia automatica"
 
-#: mod/admin.php:1758
+#: mod/admin.php:1763
 msgid "Private Forum"
 msgstr "Forum Privato"
 
-#: mod/admin.php:1761 mod/settings.php:1042
+#: mod/admin.php:1766 mod/settings.php:1042
 msgid "Personal Page"
 msgstr "Pagina Personale"
 
-#: mod/admin.php:1762 mod/settings.php:1046
+#: mod/admin.php:1767 mod/settings.php:1046
 msgid "Organisation Page"
 msgstr "Pagina Organizzazione"
 
-#: mod/admin.php:1763 mod/settings.php:1050
+#: mod/admin.php:1768 mod/settings.php:1050
 msgid "News Page"
 msgstr "Pagina Notizie"
 
-#: mod/admin.php:1764 mod/settings.php:1054
+#: mod/admin.php:1769 mod/settings.php:1054
 msgid "Community Forum"
 msgstr "Community Forum"
 
-#: mod/admin.php:1811 mod/admin.php:1822 mod/admin.php:1835 mod/admin.php:1853
+#: mod/admin.php:1816 mod/admin.php:1827 mod/admin.php:1840 mod/admin.php:1858
 #: src/Content/ContactSelector.php:82
 msgid "Email"
 msgstr "Email"
 
-#: mod/admin.php:1811 mod/admin.php:1835
+#: mod/admin.php:1816 mod/admin.php:1840
 msgid "Register date"
 msgstr "Data registrazione"
 
-#: mod/admin.php:1811 mod/admin.php:1835
+#: mod/admin.php:1816 mod/admin.php:1840
 msgid "Last login"
 msgstr "Ultimo accesso"
 
-#: mod/admin.php:1811 mod/admin.php:1835
+#: mod/admin.php:1816 mod/admin.php:1840
 msgid "Last item"
 msgstr "Ultimo elemento"
 
-#: mod/admin.php:1811
+#: mod/admin.php:1816
 msgid "Type"
 msgstr "Tipo"
 
-#: mod/admin.php:1818
+#: mod/admin.php:1823
 msgid "Add User"
 msgstr "Aggiungi utente"
 
-#: mod/admin.php:1820
+#: mod/admin.php:1825
 msgid "User registrations waiting for confirm"
 msgstr "Richieste di registrazione in attesa di conferma"
 
-#: mod/admin.php:1821
+#: mod/admin.php:1826
 msgid "User waiting for permanent deletion"
 msgstr "Utente in attesa di cancellazione definitiva"
 
-#: mod/admin.php:1822
+#: mod/admin.php:1827
 msgid "Request date"
 msgstr "Data richiesta"
 
-#: mod/admin.php:1823
+#: mod/admin.php:1828
 msgid "No registrations."
 msgstr "Nessuna registrazione."
 
-#: mod/admin.php:1824
+#: mod/admin.php:1829
 msgid "Note from the user"
 msgstr "Nota dall'utente"
 
-#: mod/admin.php:1825 mod/notifications.php:178 mod/notifications.php:262
+#: mod/admin.php:1830 mod/notifications.php:178 mod/notifications.php:262
 msgid "Approve"
 msgstr "Approva"
 
-#: mod/admin.php:1826
+#: mod/admin.php:1831
 msgid "Deny"
 msgstr "Nega"
 
-#: mod/admin.php:1830
+#: mod/admin.php:1835
 msgid "Site admin"
 msgstr "Amministrazione sito"
 
-#: mod/admin.php:1831
+#: mod/admin.php:1836
 msgid "Account expired"
 msgstr "Account scaduto"
 
-#: mod/admin.php:1834
+#: mod/admin.php:1839
 msgid "New User"
 msgstr "Nuovo Utente"
 
-#: mod/admin.php:1835
+#: mod/admin.php:1840
 msgid "Deleted since"
 msgstr "Rimosso da"
 
-#: mod/admin.php:1840
+#: mod/admin.php:1845
 msgid ""
 "Selected users will be deleted!\\n\\nEverything these users had posted on "
 "this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?"
 
-#: mod/admin.php:1841
+#: mod/admin.php:1846
 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 "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?"
 
-#: mod/admin.php:1851
+#: mod/admin.php:1856
 msgid "Name of the new user."
 msgstr "Nome del nuovo utente."
 
-#: mod/admin.php:1852
+#: mod/admin.php:1857
 msgid "Nickname"
 msgstr "Nome utente"
 
-#: mod/admin.php:1852
+#: mod/admin.php:1857
 msgid "Nickname of the new user."
 msgstr "Nome utente del nuovo utente."
 
-#: mod/admin.php:1853
+#: mod/admin.php:1858
 msgid "Email address of the new user."
 msgstr "Indirizzo Email del nuovo utente."
 
-#: mod/admin.php:1895
+#: mod/admin.php:1900
 #, php-format
 msgid "Addon %s disabled."
 msgstr "Addon %s disabilitato."
 
-#: mod/admin.php:1899
+#: mod/admin.php:1904
 #, php-format
 msgid "Addon %s enabled."
 msgstr "Addon %s abilitato."
 
-#: mod/admin.php:1909 mod/admin.php:2158
+#: mod/admin.php:1914 mod/admin.php:2163
 msgid "Disable"
 msgstr "Disabilita"
 
-#: mod/admin.php:1912 mod/admin.php:2161
+#: mod/admin.php:1917 mod/admin.php:2166
 msgid "Enable"
 msgstr "Abilita"
 
-#: mod/admin.php:1934 mod/admin.php:2203
+#: mod/admin.php:1939 mod/admin.php:2209
 msgid "Toggle"
 msgstr "Inverti"
 
-#: mod/admin.php:1942 mod/admin.php:2212
+#: mod/admin.php:1947 mod/admin.php:2218
 msgid "Author: "
 msgstr "Autore: "
 
-#: mod/admin.php:1943 mod/admin.php:2213
+#: mod/admin.php:1948 mod/admin.php:2219
 msgid "Maintainer: "
 msgstr "Manutentore: "
 
-#: mod/admin.php:1995
+#: mod/admin.php:2000
 msgid "Reload active addons"
 msgstr "Ricarica addon attivi."
 
-#: mod/admin.php:2000
+#: mod/admin.php:2005
 #, php-format
 msgid ""
 "There are currently no addons available on your node. You can find the "
@@ -5602,70 +5076,70 @@ msgid ""
 " the open addon registry at %2$s"
 msgstr "Non sono disponibili componenti aggiuntivi sul tuo nodo. Puoi trovare il repository ufficiale degli addon su %1$s e potresti trovare altri addon interessanti nell'open addon repository su %2$s"
 
-#: mod/admin.php:2120
+#: mod/admin.php:2125
 msgid "No themes found."
 msgstr "Nessun tema trovato."
 
-#: mod/admin.php:2194
+#: mod/admin.php:2200
 msgid "Screenshot"
 msgstr "Anteprima"
 
-#: mod/admin.php:2248
+#: mod/admin.php:2254
 msgid "Reload active themes"
 msgstr "Ricarica i temi attivi"
 
-#: mod/admin.php:2253
+#: mod/admin.php:2259
 #, php-format
 msgid "No themes found on the system. They should be placed in %1$s"
 msgstr "Non sono stati trovati temi sul tuo sistema. Dovrebbero essere in %1$s"
 
-#: mod/admin.php:2254
+#: mod/admin.php:2260
 msgid "[Experimental]"
 msgstr "[Sperimentale]"
 
-#: mod/admin.php:2255
+#: mod/admin.php:2261
 msgid "[Unsupported]"
 msgstr "[Non supportato]"
 
-#: mod/admin.php:2279
+#: mod/admin.php:2285
 msgid "Log settings updated."
 msgstr "Impostazioni Log aggiornate."
 
-#: mod/admin.php:2311
+#: mod/admin.php:2317
 msgid "PHP log currently enabled."
 msgstr "Log PHP abilitato."
 
-#: mod/admin.php:2313
+#: mod/admin.php:2319
 msgid "PHP log currently disabled."
 msgstr "Log PHP disabilitato"
 
-#: mod/admin.php:2322
+#: mod/admin.php:2328
 msgid "Clear"
 msgstr "Pulisci"
 
-#: mod/admin.php:2326
+#: mod/admin.php:2332
 msgid "Enable Debugging"
 msgstr "Abilita Debugging"
 
-#: mod/admin.php:2327
+#: mod/admin.php:2333
 msgid "Log file"
 msgstr "File di Log"
 
-#: mod/admin.php:2327
+#: mod/admin.php:2333
 msgid ""
 "Must be writable by web server. Relative to your Friendica top-level "
 "directory."
 msgstr "Il server web deve avere i permessi di scrittura. Relativo alla tua directory Friendica."
 
-#: mod/admin.php:2328
+#: mod/admin.php:2334
 msgid "Log level"
 msgstr "Livello di Log"
 
-#: mod/admin.php:2330
+#: mod/admin.php:2336
 msgid "PHP logging"
 msgstr "Log PHP"
 
-#: mod/admin.php:2331
+#: mod/admin.php:2337
 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 "
@@ -5674,37 +5148,71 @@ msgid ""
 "'display_errors' is to enable these options, set to '0' to disable them."
 msgstr "Per abilitare il log degli errori e degli avvisi di PHP puoi aggiungere le seguenti righe al file .htconfig.php nella tua installazione. La posizione del file impostato in 'error_log' è relativa alla directory principale della tua installazione Friendica e il server web deve avere i permessi di scrittura sul file. Il valore '1' per 'log_errors' e 'display_errors' abilita le opzioni, imposta '0' per disabilitarle."
 
-#: mod/admin.php:2362
+#: mod/admin.php:2368
 #, 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 "Errore aprendo il file di log <strong>%1$s</strong>. Controlla che il file %1$s esista e sia leggibile."
 
-#: mod/admin.php:2366
+#: mod/admin.php:2372
 #, 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 "Non posso aprire il file di log <strong>%1$s</strong> . Controlla che il file %1$s esista e sia leggibile."
 
-#: mod/admin.php:2457 mod/admin.php:2458 mod/settings.php:767
+#: mod/admin.php:2463 mod/admin.php:2464 mod/settings.php:767
 msgid "Off"
 msgstr "Spento"
 
-#: mod/admin.php:2457 mod/admin.php:2458 mod/settings.php:767
+#: mod/admin.php:2463 mod/admin.php:2464 mod/settings.php:767
 msgid "On"
 msgstr "Acceso"
 
-#: mod/admin.php:2458
+#: mod/admin.php:2464
 #, php-format
 msgid "Lock feature %s"
 msgstr "Blocca funzionalità %s"
 
-#: mod/admin.php:2466
+#: mod/admin.php:2472
 msgid "Manage Additional Features"
 msgstr "Gestisci Funzionalità Aggiuntive"
 
+#: mod/community.php:51
+msgid "Community option not available."
+msgstr "Opzione Comunità non disponibile"
+
+#: mod/community.php:68
+msgid "Not available."
+msgstr "Non disponibile."
+
+#: mod/community.php:81
+msgid "Local Community"
+msgstr "Comunità Locale"
+
+#: mod/community.php:84
+msgid "Posts from local users on this server"
+msgstr "Messaggi dagli utenti locali su questo sito"
+
+#: mod/community.php:92
+msgid "Global Community"
+msgstr "Comunità Globale"
+
+#: mod/community.php:95
+msgid "Posts from users of the whole federated network"
+msgstr "Messaggi dagli utenti della rete federata"
+
+#: mod/community.php:141 mod/search.php:228
+msgid "No results."
+msgstr "Nessun risultato."
+
+#: mod/community.php:185
+msgid ""
+"This community stream shows all public posts received by this node. They may"
+" not reflect the opinions of this node’s users."
+msgstr "Questa pagina comunità mostra tutti i post pubblici ricevuti da questo nodo. Potrebbero non riflettere le opinioni degli utenti di questo nodo."
+
 #: mod/dfrn_confirm.php:74 mod/profiles.php:39 mod/profiles.php:149
 #: mod/profiles.php:196 mod/profiles.php:525
 msgid "Profile not found."
@@ -5934,6 +5442,139 @@ msgid ""
 " bar."
 msgstr " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora."
 
+#: mod/events.php:105 mod/events.php:107
+msgid "Event can not end before it has started."
+msgstr "Un evento non può finire prima di iniziare."
+
+#: mod/events.php:114 mod/events.php:116
+msgid "Event title and start time are required."
+msgstr "Titolo e ora di inizio dell'evento sono richiesti."
+
+#: mod/events.php:393
+msgid "Create New Event"
+msgstr "Crea un nuovo evento"
+
+#: mod/events.php:507
+msgid "Event details"
+msgstr "Dettagli dell'evento"
+
+#: mod/events.php:508
+msgid "Starting date and Title are required."
+msgstr "La data di inizio e il titolo sono richiesti."
+
+#: mod/events.php:509 mod/events.php:510
+msgid "Event Starts:"
+msgstr "L'evento inizia:"
+
+#: mod/events.php:509 mod/events.php:521 mod/profiles.php:607
+msgid "Required"
+msgstr "Richiesto"
+
+#: mod/events.php:511 mod/events.php:527
+msgid "Finish date/time is not known or not relevant"
+msgstr "La data/ora di fine non è definita"
+
+#: mod/events.php:513 mod/events.php:514
+msgid "Event Finishes:"
+msgstr "L'evento finisce:"
+
+#: mod/events.php:515 mod/events.php:528
+msgid "Adjust for viewer timezone"
+msgstr "Visualizza con il fuso orario di chi legge"
+
+#: mod/events.php:517
+msgid "Description:"
+msgstr "Descrizione:"
+
+#: mod/events.php:521 mod/events.php:523
+msgid "Title:"
+msgstr "Titolo:"
+
+#: mod/events.php:524 mod/events.php:525
+msgid "Share this event"
+msgstr "Condividi questo evento"
+
+#: mod/events.php:532 src/Model/Profile.php:862
+msgid "Basic"
+msgstr "Base"
+
+#: mod/events.php:534 mod/photos.php:1086 mod/photos.php:1435
+#: src/Core/ACL.php:318
+msgid "Permissions"
+msgstr "Permessi"
+
+#: mod/events.php:553
+msgid "Failed to remove event"
+msgstr "Rimozione evento fallita."
+
+#: mod/events.php:555
+msgid "Event removed"
+msgstr "Evento rimosso"
+
+#: mod/group.php:36
+msgid "Group created."
+msgstr "Gruppo creato."
+
+#: mod/group.php:42
+msgid "Could not create group."
+msgstr "Impossibile creare il gruppo."
+
+#: mod/group.php:56 mod/group.php:157
+msgid "Group not found."
+msgstr "Gruppo non trovato."
+
+#: mod/group.php:70
+msgid "Group name changed."
+msgstr "Il nome del gruppo è cambiato."
+
+#: mod/group.php:97
+msgid "Save Group"
+msgstr "Salva gruppo"
+
+#: mod/group.php:102
+msgid "Create a group of contacts/friends."
+msgstr "Crea un gruppo di amici/contatti."
+
+#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421
+msgid "Group Name: "
+msgstr "Nome del gruppo:"
+
+#: mod/group.php:127
+msgid "Group removed."
+msgstr "Gruppo rimosso."
+
+#: mod/group.php:129
+msgid "Unable to remove group."
+msgstr "Impossibile rimuovere il gruppo."
+
+#: mod/group.php:192
+msgid "Delete Group"
+msgstr "Elimina Gruppo"
+
+#: mod/group.php:198
+msgid "Group Editor"
+msgstr "Modifica gruppo"
+
+#: mod/group.php:203
+msgid "Edit Group Name"
+msgstr "Modifica Nome Gruppo"
+
+#: mod/group.php:213
+msgid "Members"
+msgstr "Membri"
+
+#: mod/group.php:216 mod/network.php:639
+msgid "Group is empty"
+msgstr "Il gruppo è vuoto"
+
+#: mod/group.php:229
+msgid "Remove contact from group"
+msgstr "Rimuovi il contatto dal gruppo"
+
+#: mod/group.php:253
+msgid "Add contact to group"
+msgstr "Aggiungi il contatto al gruppo"
+
 #: mod/item.php:114
 msgid "Unable to locate original post."
 msgstr "Impossibile trovare il messaggio originale."
@@ -5965,6 +5606,103 @@ msgstr "Contatta il mittente rispondendo a questo post se non vuoi ricevere ques
 msgid "%s posted an update."
 msgstr "%s ha inviato un aggiornamento."
 
+#: mod/network.php:194 mod/search.php:37
+msgid "Remove term"
+msgstr "Rimuovi termine"
+
+#: mod/network.php:201 mod/search.php:46 src/Content/Feature.php:100
+msgid "Saved Searches"
+msgstr "Ricerche salvate"
+
+#: mod/network.php:202 src/Model/Group.php:413
+msgid "add"
+msgstr "aggiungi"
+
+#: 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] "Attenzione: Questo gruppo contiene %s membro da una rete che non permette la ricezione di messaggi non pubblici."
+msgstr[1] "Attenzione: Questo gruppo contiene %s membri da reti che non permettono la ricezione di messaggi non pubblici."
+
+#: mod/network.php:550
+msgid "Messages in this group won't be send to these receivers."
+msgstr "I messaggi in questo gruppo non saranno inviati ai quei contatti."
+
+#: mod/network.php:618
+msgid "No such group"
+msgstr "Nessun gruppo"
+
+#: mod/network.php:643
+#, php-format
+msgid "Group: %s"
+msgstr "Gruppo: %s"
+
+#: mod/network.php:669
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente."
+
+#: mod/network.php:672
+msgid "Invalid contact."
+msgstr "Contatto non valido."
+
+#: mod/network.php:943
+msgid "Commented Order"
+msgstr "Ordina per commento"
+
+#: mod/network.php:946
+msgid "Sort by Comment Date"
+msgstr "Ordina per data commento"
+
+#: mod/network.php:951
+msgid "Posted Order"
+msgstr "Ordina per invio"
+
+#: mod/network.php:954
+msgid "Sort by Post Date"
+msgstr "Ordina per data messaggio"
+
+#: mod/network.php:962 mod/profiles.php:594
+#: src/Core/NotificationsManager.php:185
+msgid "Personal"
+msgstr "Personale"
+
+#: mod/network.php:965
+msgid "Posts that mention or involve you"
+msgstr "Messaggi che ti citano o coinvolgono"
+
+#: mod/network.php:973
+msgid "New"
+msgstr "Nuovo"
+
+#: mod/network.php:976
+msgid "Activity Stream - by date"
+msgstr "Activity Stream - per data"
+
+#: mod/network.php:984
+msgid "Shared Links"
+msgstr "Links condivisi"
+
+#: mod/network.php:987
+msgid "Interesting Links"
+msgstr "Link Interessanti"
+
+#: mod/network.php:995
+msgid "Starred"
+msgstr "Preferiti"
+
+#: mod/network.php:998
+msgid "Favourite Posts"
+msgstr "Messaggi preferiti"
+
+#: mod/notes.php:52 src/Model/Profile.php:944
+msgid "Personal Notes"
+msgstr "Note personali"
+
 #: mod/notifications.php:37
 msgid "Invalid request identifier."
 msgstr "L'identificativo della richiesta non è valido."
@@ -6015,79 +5753,293 @@ msgstr "Dice di conoscerti: "
 msgid "yes"
 msgstr "si"
 
-#: mod/notifications.php:198
-msgid "no"
-msgstr "no"
+#: mod/notifications.php:198
+msgid "no"
+msgstr "no"
+
+#: mod/notifications.php:199 mod/notifications.php:204
+msgid "Shall your connection be bidirectional or not?"
+msgstr "La connessione dovrà essere bidirezionale o no?"
+
+#: mod/notifications.php:200 mod/notifications.php:205
+#, php-format
+msgid ""
+"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
+"also receive updates from them in your news feed."
+msgstr "Accettando %s come amico permette a %s di seguire i tuoi post, e a te di riceverne gli aggiornamenti."
+
+#: mod/notifications.php:201
+#, 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 "Accentrando %s come  abbonato gli permette di abbonarsi ai tuoi messaggi, ma tu non riceverai aggiornamenti da lui."
+
+#: mod/notifications.php:206
+#, 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 "Accentando %s come condivisore, gli permetti di abbonarsi ai tuoi messaggi, ma tu non riceverai nessun aggiornamento da loro."
+
+#: mod/notifications.php:217
+msgid "Friend"
+msgstr "Amico"
+
+#: mod/notifications.php:218
+msgid "Sharer"
+msgstr "Condivisore"
+
+#: mod/notifications.php:218
+msgid "Subscriber"
+msgstr "Abbonato"
+
+#: mod/notifications.php:273
+msgid "No introductions."
+msgstr "Nessuna presentazione."
+
+#: mod/notifications.php:314
+msgid "Show unread"
+msgstr "Mostra non letti"
+
+#: mod/notifications.php:314
+msgid "Show all"
+msgstr "Mostra tutti"
+
+#: mod/notifications.php:320
+#, php-format
+msgid "No more %s notifications."
+msgstr "Nessun'altra notifica %s."
+
+#: mod/openid.php:29
+msgid "OpenID protocol error. No ID returned."
+msgstr "Errore protocollo OpenID. Nessun ID ricevuto."
+
+#: mod/openid.php:66
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito."
+
+#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:135
+msgid "Login failed."
+msgstr "Accesso fallito."
+
+#: mod/photos.php:108 src/Model/Profile.php:905
+msgid "Photo Albums"
+msgstr "Album foto"
+
+#: mod/photos.php:109 mod/photos.php:1708
+msgid "Recent Photos"
+msgstr "Foto recenti"
+
+#: mod/photos.php:112 mod/photos.php:1198 mod/photos.php:1710
+msgid "Upload New Photos"
+msgstr "Carica nuove foto"
+
+#: mod/photos.php:126 mod/settings.php:51
+msgid "everybody"
+msgstr "tutti"
+
+#: mod/photos.php:184
+msgid "Contact information unavailable"
+msgstr "I dati di questo contatto non sono disponibili"
+
+#: mod/photos.php:204
+msgid "Album not found."
+msgstr "Album non trovato."
+
+#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1149
+msgid "Delete Album"
+msgstr "Rimuovi album"
+
+#: mod/photos.php:243
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Vuoi davvero cancellare questo album e tutte le sue foto?"
+
+#: mod/photos.php:303 mod/photos.php:314 mod/photos.php:1440
+msgid "Delete Photo"
+msgstr "Rimuovi foto"
+
+#: mod/photos.php:312
+msgid "Do you really want to delete this photo?"
+msgstr "Vuoi veramente cancellare questa foto?"
+
+#: mod/photos.php:655
+msgid "a photo"
+msgstr "una foto"
+
+#: mod/photos.php:655
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s è stato taggato in %2$s da %3$s"
+
+#: mod/photos.php:757
+msgid "Image upload didn't complete, please try again"
+msgstr "Caricamento dell'immagine non completato. Prova di nuovo."
+
+#: mod/photos.php:760
+msgid "Image file is missing"
+msgstr "Il file dell'immagine è mancante"
+
+#: mod/photos.php:765
+msgid ""
+"Server can't accept new file upload at this time, please contact your "
+"administrator"
+msgstr "Il server non può accettare il caricamento di un nuovo file in questo momento, contattare l'amministratore"
+
+#: mod/photos.php:791
+msgid "Image file is empty."
+msgstr "Il file dell'immagine è vuoto."
+
+#: mod/photos.php:928
+msgid "No photos selected"
+msgstr "Nessuna foto selezionata"
+
+#: mod/photos.php:1024 mod/videos.php:309
+msgid "Access to this item is restricted."
+msgstr "Questo oggetto non è visibile a tutti."
+
+#: mod/photos.php:1078
+msgid "Upload Photos"
+msgstr "Carica foto"
+
+#: mod/photos.php:1082 mod/photos.php:1144
+msgid "New album name: "
+msgstr "Nome nuovo album: "
+
+#: mod/photos.php:1083
+msgid "or existing album name: "
+msgstr "o nome di un album esistente: "
+
+#: mod/photos.php:1084
+msgid "Do not show a status post for this upload"
+msgstr "Non creare un post per questo upload"
+
+#: mod/photos.php:1094 mod/photos.php:1443 mod/settings.php:1218
+msgid "Show to Groups"
+msgstr "Mostra ai gruppi"
+
+#: mod/photos.php:1095 mod/photos.php:1444 mod/settings.php:1219
+msgid "Show to Contacts"
+msgstr "Mostra ai contatti"
+
+#: mod/photos.php:1155
+msgid "Edit Album"
+msgstr "Modifica album"
+
+#: mod/photos.php:1160
+msgid "Show Newest First"
+msgstr "Mostra nuove foto per prime"
+
+#: mod/photos.php:1162
+msgid "Show Oldest First"
+msgstr "Mostra vecchie foto per prime"
+
+#: mod/photos.php:1183 mod/photos.php:1693
+msgid "View Photo"
+msgstr "Vedi foto"
+
+#: mod/photos.php:1224
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Permesso negato. L'accesso a questo elemento può essere limitato."
+
+#: mod/photos.php:1226
+msgid "Photo not available"
+msgstr "Foto non disponibile"
+
+#: mod/photos.php:1294
+msgid "View photo"
+msgstr "Vedi foto"
+
+#: mod/photos.php:1294
+msgid "Edit photo"
+msgstr "Modifica foto"
+
+#: mod/photos.php:1295
+msgid "Use as profile photo"
+msgstr "Usa come foto del profilo"
+
+#: mod/photos.php:1301 src/Object/Post.php:149
+msgid "Private Message"
+msgstr "Messaggio privato"
+
+#: mod/photos.php:1321
+msgid "View Full Size"
+msgstr "Vedi dimensione intera"
+
+#: mod/photos.php:1408
+msgid "Tags: "
+msgstr "Tag: "
+
+#: mod/photos.php:1411
+msgid "[Remove any tag]"
+msgstr "[Rimuovi tutti i tag]"
 
-#: mod/notifications.php:199 mod/notifications.php:204
-msgid "Shall your connection be bidirectional or not?"
-msgstr "La connessione dovrà essere bidirezionale o no?"
+#: mod/photos.php:1426
+msgid "New album name"
+msgstr "Nuovo nome dell'album"
 
-#: mod/notifications.php:200 mod/notifications.php:205
-#, php-format
-msgid ""
-"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
-"also receive updates from them in your news feed."
-msgstr "Accettando %s come amico permette a %s di seguire i tuoi post, e a te di riceverne gli aggiornamenti."
+#: mod/photos.php:1427
+msgid "Caption"
+msgstr "Titolo"
 
-#: mod/notifications.php:201
-#, 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 "Accentrando %s come  abbonato gli permette di abbonarsi ai tuoi messaggi, ma tu non riceverai aggiornamenti da lui."
+#: mod/photos.php:1428
+msgid "Add a Tag"
+msgstr "Aggiungi tag"
 
-#: mod/notifications.php:206
-#, php-format
+#: mod/photos.php:1428
 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 "Accentando %s come condivisore, gli permetti di abbonarsi ai tuoi messaggi, ma tu non riceverai nessun aggiornamento da loro."
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: mod/notifications.php:217
-msgid "Friend"
-msgstr "Amico"
+#: mod/photos.php:1429
+msgid "Do not rotate"
+msgstr "Non ruotare"
 
-#: mod/notifications.php:218
-msgid "Sharer"
-msgstr "Condivisore"
+#: mod/photos.php:1430
+msgid "Rotate CW (right)"
+msgstr "Ruota a destra"
 
-#: mod/notifications.php:218
-msgid "Subscriber"
-msgstr "Abbonato"
+#: mod/photos.php:1431
+msgid "Rotate CCW (left)"
+msgstr "Ruota a sinistra"
 
-#: mod/notifications.php:273
-msgid "No introductions."
-msgstr "Nessuna presentazione."
+#: mod/photos.php:1465 src/Object/Post.php:304
+msgid "I like this (toggle)"
+msgstr "Mi piace (clic per cambiare)"
 
-#: mod/notifications.php:314
-msgid "Show unread"
-msgstr "Mostra non letti"
+#: mod/photos.php:1466 src/Object/Post.php:305
+msgid "I don't like this (toggle)"
+msgstr "Non mi piace (clic per cambiare)"
 
-#: mod/notifications.php:314
-msgid "Show all"
-msgstr "Mostra tutti"
+#: mod/photos.php:1484 mod/photos.php:1523 mod/photos.php:1596
+#: src/Object/Post.php:407 src/Object/Post.php:803
+msgid "Comment"
+msgstr "Commento"
 
-#: mod/notifications.php:320
-#, php-format
-msgid "No more %s notifications."
-msgstr "Nessun'altra notifica %s."
+#: mod/photos.php:1628
+msgid "Map"
+msgstr "Mappa"
+
+#: mod/photos.php:1699 mod/videos.php:387
+msgid "View Album"
+msgstr "Sfoglia l'album"
 
 #: mod/profile.php:37 src/Model/Profile.php:118
 msgid "Requested profile is not available."
 msgstr "Profilo richiesto non disponibile."
 
-#: mod/profile.php:78 mod/profile.php:81 src/Protocol/OStatus.php:1251
+#: mod/profile.php:78 mod/profile.php:81 src/Protocol/OStatus.php:1250
 #, php-format
 msgid "%s's timeline"
 msgstr "la timeline di %s"
 
-#: mod/profile.php:79 src/Protocol/OStatus.php:1252
+#: mod/profile.php:79 src/Protocol/OStatus.php:1251
 #, php-format
 msgid "%s's posts"
 msgstr "il messaggio di %s"
 
-#: mod/profile.php:80 src/Protocol/OStatus.php:1253
+#: mod/profile.php:80 src/Protocol/OStatus.php:1252
 #, php-format
 msgid "%s's comments"
 msgstr "il commento di %s"
@@ -6517,35 +6469,52 @@ msgstr "Registrati"
 msgid "Import your profile to this friendica instance"
 msgstr "Importa il tuo profilo in questo server friendica"
 
-#: mod/removeme.php:44
+#: mod/removeme.php:45
 msgid "User deleted their account"
 msgstr "L'utente ha cancellato il suo account"
 
-#: mod/removeme.php:45
+#: mod/removeme.php:46
 msgid ""
 "On your Friendica node an user deleted their account. Please ensure that "
 "their data is removed from the backups."
 msgstr "Sul tuo nodo Friendica un utente ha cancellato il suo account. Assicurati che i suoi dati siano rimossi dai backup."
 
-#: mod/removeme.php:46
+#: mod/removeme.php:47
 #, php-format
 msgid "The user id is %d"
 msgstr "L'id utente è %d"
 
-#: mod/removeme.php:77 mod/removeme.php:80
+#: mod/removeme.php:78 mod/removeme.php:81
 msgid "Remove My Account"
 msgstr "Rimuovi il mio account"
 
-#: mod/removeme.php:78
+#: mod/removeme.php:79
 msgid ""
 "This will completely remove your account. Once this has been done it is not "
 "recoverable."
 msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."
 
-#: mod/removeme.php:79
+#: mod/removeme.php:80
 msgid "Please enter your password for verification:"
 msgstr "Inserisci la tua password per verifica:"
 
+#: mod/search.php:105
+msgid "Only logged in users are permitted to perform a search."
+msgstr "Solo agli utenti autenticati è permesso eseguire ricerche."
+
+#: mod/search.php:129
+msgid "Too Many Requests"
+msgstr "Troppe richieste"
+
+#: mod/search.php:130
+msgid "Only one search per minute is permitted for not logged in users."
+msgstr "Solo una ricerca al minuto è permessa agli utenti non autenticati."
+
+#: mod/search.php:234
+#, php-format
+msgid "Items tagged with: %s"
+msgstr "Elementi taggati con: %s"
+
 #: mod/settings.php:56
 msgid "Account"
 msgstr "Account"
@@ -6590,7 +6559,7 @@ msgstr "Funzionalità aggiornate"
 msgid "Relocate message has been send to your contacts"
 msgstr "Il messaggio di trasloco è stato inviato ai tuoi contatti"
 
-#: mod/settings.php:384 src/Model/User.php:339
+#: mod/settings.php:384 src/Model/User.php:340
 msgid "Passwords do not match. Password unchanged."
 msgstr "Le password non corrispondono. Password non cambiata."
 
@@ -6931,7 +6900,7 @@ msgid ""
 msgstr "Quando disabilitato, la pagina \"rete\" è aggiornata continuamente, cosa che può confondere durante la lettura."
 
 #: mod/settings.php:969
-msgid "Bandwith Saver Mode"
+msgid "Bandwidth Saver Mode"
 msgstr "Modalità Salva Banda"
 
 #: mod/settings.php:969
@@ -7049,9 +7018,10 @@ msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito"
 #: mod/settings.php:1094
 #, 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 "Il tuo profilo sarà pubblicato nella directory globale di friendica (p.e. <a href=\"%s\">%s</a>). Il tuo profilo sarà visibile pubblicamente."
+"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 "Il tuo profilo verrà pubblicato nella <a href=\"%s\">directory locale</a> di questo nodo. I dettagli del tuo profilo potrebbero essere visibili pubblicamente a seconda delle impostazioni di sistema."
 
 #: mod/settings.php:1100
 msgid "Publish your default profile in the global social directory?"
@@ -7060,10 +7030,9 @@ msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale"
 #: mod/settings.php:1100
 #, 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 "Il tuo profilo verrà pubblicato nella <a href=\"%s\">directory locale</a> di questo nodo. I dettagli del tuo profilo potrebbero essere visibili pubblicamente a seconda delle impostazioni di sistema."
+"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 "Il tuo profilo sarà pubblicato nella directory globale di friendica (p.e. <a href=\"%s\">%s</a>). Il tuo profilo sarà visibile pubblicamente."
 
 #: mod/settings.php:1107
 msgid "Hide your contact/friend list from viewers of your default profile?"
@@ -7083,9 +7052,9 @@ msgstr "Nascondi i dettagli del tuo profilo ai visitatori anonimi?"
 #: mod/settings.php:1111
 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 "I visitatori anonimi vedranno nella tua pagina profilo solo la tua foto del profilo, il tuo nome e il nome utente che stai usando. Disabilita l'invio di messaggi pubblici verso Diaspora e altre reti."
+" the nickname you are using on your profile page. Your public posts and "
+"replies will still be accessible by other means."
+msgstr "I visitatori anonimi vedranno nella tua pagina profilo solo la tua foto del profilo, il tuo nome e il nome utente che stai usando. I tuoi post pubblici e le risposte saranno comunque accessibili in altre maniere."
 
 #: mod/settings.php:1115
 msgid "Allow friends to post to your profile page?"
@@ -7351,7 +7320,37 @@ msgstr "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi con
 msgid "Resend relocate message to contacts"
 msgstr "Invia nuovamente il messaggio di trasloco ai contatti"
 
-#: view/theme/duepuntozero/config.php:54 src/Model/User.php:502
+#: mod/subthread.php:117
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s sta seguendo %3$s di %2$s"
+
+#: mod/update_community.php:27 mod/update_display.php:27
+#: mod/update_network.php:33 mod/update_notes.php:40 mod/update_profile.php:39
+msgid "[Embedded content - reload page to view]"
+msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"
+
+#: mod/videos.php:139
+msgid "Do you really want to delete this video?"
+msgstr "Vuoi veramente cancellare questo video?"
+
+#: mod/videos.php:144
+msgid "Delete Video"
+msgstr "Rimuovi video"
+
+#: mod/videos.php:207
+msgid "No videos selected"
+msgstr "Nessun video selezionato"
+
+#: mod/videos.php:396
+msgid "Recent Videos"
+msgstr "Video Recenti"
+
+#: mod/videos.php:398
+msgid "Upload New Videos"
+msgstr "Carica Nuovo Video"
+
+#: view/theme/duepuntozero/config.php:54 src/Model/User.php:504
 msgid "default"
 msgstr "default"
 
@@ -8067,33 +8066,33 @@ msgstr "secondi"
 msgid "%1$d %2$s ago"
 msgstr "%1$d %2$s fa"
 
-#: src/Content/Text/BBCode.php:416
+#: src/Content/Text/BBCode.php:426
 msgid "view full size"
 msgstr "vedi a schermo intero"
 
-#: src/Content/Text/BBCode.php:842 src/Content/Text/BBCode.php:1611
-#: src/Content/Text/BBCode.php:1612
+#: src/Content/Text/BBCode.php:852 src/Content/Text/BBCode.php:1621
+#: src/Content/Text/BBCode.php:1622
 msgid "Image/photo"
 msgstr "Immagine/foto"
 
-#: src/Content/Text/BBCode.php:980
+#: src/Content/Text/BBCode.php:990
 #, 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"
 
-#: src/Content/Text/BBCode.php:1538 src/Content/Text/BBCode.php:1560
+#: src/Content/Text/BBCode.php:1548 src/Content/Text/BBCode.php:1570
 msgid "$1 wrote:"
 msgstr "$1 ha scritto:"
 
-#: src/Content/Text/BBCode.php:1620 src/Content/Text/BBCode.php:1621
+#: src/Content/Text/BBCode.php:1630 src/Content/Text/BBCode.php:1631
 msgid "Encrypted content"
 msgstr "Contenuto criptato"
 
-#: src/Content/Text/BBCode.php:1740
+#: src/Content/Text/BBCode.php:1750
 msgid "Invalid source protocol"
 msgstr "Protocollo sorgente non valido"
 
-#: src/Content/Text/BBCode.php:1751
+#: src/Content/Text/BBCode.php:1761
 msgid "Invalid link protocol"
 msgstr "Protocollo link non valido"
 
@@ -8337,7 +8336,7 @@ msgstr "Infedele"
 msgid "Sex Addict"
 msgstr "Sesso-dipendente"
 
-#: src/Content/ContactSelector.php:169 src/Model/User.php:519
+#: src/Content/ContactSelector.php:169 src/Model/User.php:521
 msgid "Friends"
 msgstr "Amici"
 
@@ -8782,68 +8781,186 @@ msgstr "Gestisci altre pagine"
 msgid "Profiles"
 msgstr "Profili"
 
-#: src/Content/Nav.php:210
-msgid "Manage/Edit Profiles"
-msgstr "Gestisci/Modifica i profili"
+#: src/Content/Nav.php:210
+msgid "Manage/Edit Profiles"
+msgstr "Gestisci/Modifica i profili"
+
+#: src/Content/Nav.php:218
+msgid "Site setup and configuration"
+msgstr "Configurazione del sito"
+
+#: src/Content/Nav.php:221
+msgid "Navigation"
+msgstr "Navigazione"
+
+#: src/Content/Nav.php:221
+msgid "Site map"
+msgstr "Mappa del sito"
+
+#: src/Database/DBStructure.php:32
+msgid "There are no tables on MyISAM."
+msgstr "Non ci sono tabelle MyISAM"
+
+#: 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 "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non sei in grado di aiutarmi. Il mio database potrebbe essere invalido."
+
+#: src/Database/DBStructure.php:80
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Il messaggio di errore è\n[pre]%s[/pre]"
+
+#: src/Database/DBStructure.php:191
+#, php-format
+msgid ""
+"\n"
+"Error %d occurred during database update:\n"
+"%s\n"
+msgstr "\nErrore %d durante l'aggiornamento del database:\n%s\n"
+
+#: src/Database/DBStructure.php:194
+msgid "Errors encountered performing database changes: "
+msgstr "Errori riscontrati eseguendo le modifiche al database:"
+
+#: src/Database/DBStructure.php:210
+#, php-format
+msgid "%s: Database update"
+msgstr "%s: Aggiornamento database"
+
+#: src/Database/DBStructure.php:460
+#, php-format
+msgid "%s: updating %s table."
+msgstr "%s: aggiornando la tabella %s."
+
+#: src/Model/Mail.php:40 src/Model/Mail.php:174
+msgid "[no subject]"
+msgstr "[nessun oggetto]"
+
+#: 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 "Un gruppo eliminato con questo nome è stato ricreato. I permessi  esistenti su un elemento <strong>possono</strong> essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."
+
+#: src/Model/Group.php:341
+msgid "Default privacy group for new contacts"
+msgstr "Gruppo predefinito per i nuovi contatti"
+
+#: src/Model/Group.php:374
+msgid "Everybody"
+msgstr "Tutti"
+
+#: src/Model/Group.php:394
+msgid "edit"
+msgstr "modifica"
+
+#: src/Model/Group.php:418
+msgid "Edit group"
+msgstr "Modifica gruppo"
+
+#: src/Model/Group.php:419
+msgid "Contacts not in any group"
+msgstr "Contatti in nessun gruppo."
+
+#: src/Model/Group.php:420
+msgid "Create a new group"
+msgstr "Crea un nuovo gruppo"
+
+#: src/Model/Group.php:422
+msgid "Edit groups"
+msgstr "Modifica gruppi"
+
+#: src/Model/Contact.php:667
+msgid "Drop Contact"
+msgstr "Rimuovi contatto"
+
+#: src/Model/Contact.php:1101
+msgid "Organisation"
+msgstr "Organizzazione"
+
+#: src/Model/Contact.php:1104
+msgid "News"
+msgstr "Notizie"
+
+#: src/Model/Contact.php:1107
+msgid "Forum"
+msgstr "Forum"
+
+#: src/Model/Contact.php:1286
+msgid "Connect URL missing."
+msgstr "URL di connessione mancante."
+
+#: src/Model/Contact.php:1295
+msgid ""
+"The contact could not be added. Please check the relevant network "
+"credentials in your Settings -> Social Networks page."
+msgstr "Il contatto non puo' essere aggiunto. Controlla le credenziali della rete nella tua pagina Impostazioni -> Reti Sociali"
 
-#: src/Content/Nav.php:218
-msgid "Site setup and configuration"
-msgstr "Configurazione del sito"
+#: src/Model/Contact.php:1342
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Questo sito non è configurato per permettere la comunicazione con altri network."
 
-#: src/Content/Nav.php:221
-msgid "Navigation"
-msgstr "Navigazione"
+#: src/Model/Contact.php:1343 src/Model/Contact.php:1357
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili."
 
-#: src/Content/Nav.php:221
-msgid "Site map"
-msgstr "Mappa del sito"
+#: src/Model/Contact.php:1355
+msgid "The profile address specified does not provide adequate information."
+msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni."
 
-#: src/Database/DBStructure.php:32
-msgid "There are no tables on MyISAM."
-msgstr "Non ci sono tabelle MyISAM"
+#: src/Model/Contact.php:1360
+msgid "An author or name was not found."
+msgstr "Non è stato trovato un nome o un autore"
 
-#: src/Database/DBStructure.php:75
-#, php-format
+#: src/Model/Contact.php:1363
+msgid "No browser URL could be matched to this address."
+msgstr "Nessun URL può essere associato a questo indirizzo."
+
+#: src/Model/Contact.php:1366
 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 "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non sei in grado di aiutarmi. Il mio database potrebbe essere invalido."
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email."
 
-#: src/Database/DBStructure.php:80
-#, php-format
+#: src/Model/Contact.php:1367
+msgid "Use mailto: in front of address to force email check."
+msgstr "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email."
+
+#: src/Model/Contact.php:1373
 msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "Il messaggio di errore è\n[pre]%s[/pre]"
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito."
 
-#: src/Database/DBStructure.php:191
-#, php-format
+#: src/Model/Contact.php:1378
 msgid ""
-"\n"
-"Error %d occurred during database update:\n"
-"%s\n"
-msgstr "\nErrore %d durante l'aggiornamento del database:\n%s\n"
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te."
 
-#: src/Database/DBStructure.php:194
-msgid "Errors encountered performing database changes: "
-msgstr "Errori riscontrati eseguendo le modifiche al database:"
+#: src/Model/Contact.php:1429
+msgid "Unable to retrieve contact information."
+msgstr "Impossibile recuperare informazioni sul contatto."
 
-#: src/Database/DBStructure.php:210
+#: src/Model/Contact.php:1646 src/Protocol/DFRN.php:1515
 #, php-format
-msgid "%s: Database update"
-msgstr "%s: Aggiornamento database"
+msgid "%s's birthday"
+msgstr "Compleanno di %s"
 
-#: src/Database/DBStructure.php:460
+#: src/Model/Contact.php:1647 src/Protocol/DFRN.php:1516
 #, php-format
-msgid "%s: updating %s table."
-msgstr "%s: aggiornando la tabella %s."
-
-#: src/Model/Mail.php:40 src/Model/Mail.php:174
-msgid "[no subject]"
-msgstr "[nessun oggetto]"
+msgid "Happy Birthday %s"
+msgstr "Buon compleanno %s"
 
 #: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419
 #: src/Model/Event.php:882
@@ -8903,40 +9020,20 @@ msgstr "Mostra mappa"
 msgid "Hide map"
 msgstr "Nascondi mappa"
 
-#: 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 "Un gruppo eliminato con questo nome è stato ricreato. I permessi  esistenti su un elemento <strong>possono</strong> essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."
-
-#: src/Model/Group.php:341
-msgid "Default privacy group for new contacts"
-msgstr "Gruppo predefinito per i nuovi contatti"
-
-#: src/Model/Group.php:374
-msgid "Everybody"
-msgstr "Tutti"
-
-#: src/Model/Group.php:394
-msgid "edit"
-msgstr "modifica"
-
-#: src/Model/Group.php:418
-msgid "Edit group"
-msgstr "Modifica gruppo"
-
-#: src/Model/Group.php:419
-msgid "Contacts not in any group"
-msgstr "Contatti in nessun gruppo."
+#: src/Model/Item.php:1883
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
+msgstr "%1$s parteciperà a %3$s di %2$s"
 
-#: src/Model/Group.php:420
-msgid "Create a new group"
-msgstr "Crea un nuovo gruppo"
+#: src/Model/Item.php:1888
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr "%1$s non parteciperà a %3$s di %2$s"
 
-#: src/Model/Group.php:422
-msgid "Edit groups"
-msgstr "Modifica gruppi"
+#: src/Model/Item.php:1893
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr "%1$s forse parteciperà a %3$s di %2$s"
 
 #: src/Model/Profile.php:97
 msgid "Requested account is not available."
@@ -9064,86 +9161,86 @@ msgstr "Accesso fallito."
 msgid "Not enough information to authenticate"
 msgstr "Informazioni insufficienti per l'autenticazione"
 
-#: src/Model/User.php:346
+#: src/Model/User.php:347
 msgid "An invitation is required."
 msgstr "E' richiesto un invito."
 
-#: src/Model/User.php:350
+#: src/Model/User.php:351
 msgid "Invitation could not be verified."
 msgstr "L'invito non puo' essere verificato."
 
-#: src/Model/User.php:357
+#: src/Model/User.php:358
 msgid "Invalid OpenID url"
 msgstr "Url OpenID non valido"
 
-#: src/Model/User.php:370 src/Module/Login.php:101
+#: src/Model/User.php:371 src/Module/Login.php:101
 msgid ""
 "We encountered a problem while logging in with the OpenID you provided. "
 "Please check the correct spelling of the ID."
 msgstr "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto."
 
-#: src/Model/User.php:370 src/Module/Login.php:101
+#: src/Model/User.php:371 src/Module/Login.php:101
 msgid "The error message was:"
 msgstr "Il messaggio riportato era:"
 
-#: src/Model/User.php:376
+#: src/Model/User.php:377
 msgid "Please enter the required information."
 msgstr "Inserisci le informazioni richieste."
 
-#: src/Model/User.php:389
+#: src/Model/User.php:390
 msgid "Please use a shorter name."
 msgstr "Usa un nome più corto."
 
-#: src/Model/User.php:392
+#: src/Model/User.php:393
 msgid "Name too short."
 msgstr "Il nome è troppo corto."
 
-#: src/Model/User.php:400
+#: src/Model/User.php:401
 msgid "That doesn't appear to be your full (First Last) name."
 msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)."
 
-#: src/Model/User.php:405
+#: src/Model/User.php:406
 msgid "Your email domain is not among those allowed on this site."
 msgstr "Il dominio della tua email non è tra quelli autorizzati su questo sito."
 
-#: src/Model/User.php:409
+#: src/Model/User.php:410
 msgid "Not a valid email address."
 msgstr "L'indirizzo email non è valido."
 
-#: src/Model/User.php:413 src/Model/User.php:421
+#: src/Model/User.php:414 src/Model/User.php:422
 msgid "Cannot use that email."
 msgstr "Non puoi usare quell'email."
 
-#: src/Model/User.php:428
+#: src/Model/User.php:429
 msgid "Your nickname can only contain a-z, 0-9 and _."
 msgstr "Il tuo nome utente può contenere solo a-z, 0-9 e _."
 
-#: src/Model/User.php:435 src/Model/User.php:491
+#: src/Model/User.php:436 src/Model/User.php:493
 msgid "Nickname is already registered. Please choose another."
 msgstr "Nome utente già registrato. Scegline un altro."
 
-#: src/Model/User.php:445
+#: src/Model/User.php:446
 msgid "SERIOUS ERROR: Generation of security keys failed."
 msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita."
 
-#: src/Model/User.php:478 src/Model/User.php:482
+#: src/Model/User.php:480 src/Model/User.php:484
 msgid "An error occurred during registration. Please try again."
 msgstr "C'è stato un errore durante la registrazione. Prova ancora."
 
-#: src/Model/User.php:507
+#: src/Model/User.php:509
 msgid "An error occurred creating your default profile. Please try again."
 msgstr "C'è stato un errore nella creazione del tuo profilo. Prova ancora."
 
-#: src/Model/User.php:514
+#: src/Model/User.php:516
 msgid "An error occurred creating your self contact. Please try again."
 msgstr "C'è stato un errore nella creazione del tuo contatto. Prova ancora."
 
-#: src/Model/User.php:523
+#: src/Model/User.php:525
 msgid ""
 "An error occurred creating your default contact group. Please try again."
 msgstr "C'è stato un errore nella creazione del tuo gruppo contatti di default. Prova ancora."
 
-#: src/Model/User.php:597
+#: src/Model/User.php:599
 #, php-format
 msgid ""
 "\n"
@@ -9152,12 +9249,12 @@ msgid ""
 "\t\t"
 msgstr "\nGentile %1$s,\n\tGrazie per la tua registrazione su %2$s. Il tuo account è in attesa di approvazione da parte di un amministratore.\n\t"
 
-#: src/Model/User.php:607
+#: src/Model/User.php:609
 #, php-format
 msgid "Registration at %s"
 msgstr "Registrazione su %s"
 
-#: src/Model/User.php:625
+#: src/Model/User.php:627
 #, php-format
 msgid ""
 "\n"
@@ -9166,7 +9263,7 @@ msgid ""
 "\t\t"
 msgstr "\nGentile %1$s,\n\tGrazie per esserti registrato su %2$s. Il tuo account è stato creato.\n\t"
 
-#: src/Model/User.php:629
+#: src/Model/User.php:631
 #, php-format
 msgid ""
 "\n"
@@ -9198,130 +9295,32 @@ msgid ""
 "\t\t\tThank you and welcome to %2$s."
 msgstr "\nI dettagli del tuo utente sono:\n    Indirizzo del sito: %3$s\n    Nome utente:%1$s \n    Password:%5$s \n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\n\t\t\tSe mai vorrai cancellare il tuo account, lo potrai fare su %3$s/removeme\n\nGrazie e benvenuto su %2$s"
 
-#: src/Model/Contact.php:667
-msgid "Drop Contact"
-msgstr "Rimuovi contatto"
-
-#: src/Model/Contact.php:1101
-msgid "Organisation"
-msgstr "Organizzazione"
-
-#: src/Model/Contact.php:1104
-msgid "News"
-msgstr "Notizie"
-
-#: src/Model/Contact.php:1107
-msgid "Forum"
-msgstr "Forum"
-
-#: src/Model/Contact.php:1286
-msgid "Connect URL missing."
-msgstr "URL di connessione mancante."
-
-#: src/Model/Contact.php:1295
-msgid ""
-"The contact could not be added. Please check the relevant network "
-"credentials in your Settings -> Social Networks page."
-msgstr "Il contatto non puo' essere aggiunto. Controlla le credenziali della rete nella tua pagina Impostazioni -> Reti Sociali"
-
-#: src/Model/Contact.php:1342
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Questo sito non è configurato per permettere la comunicazione con altri network."
-
-#: src/Model/Contact.php:1343 src/Model/Contact.php:1357
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili."
-
-#: src/Model/Contact.php:1355
-msgid "The profile address specified does not provide adequate information."
-msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni."
-
-#: src/Model/Contact.php:1360
-msgid "An author or name was not found."
-msgstr "Non è stato trovato un nome o un autore"
-
-#: src/Model/Contact.php:1363
-msgid "No browser URL could be matched to this address."
-msgstr "Nessun URL può essere associato a questo indirizzo."
-
-#: src/Model/Contact.php:1366
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email."
-
-#: src/Model/Contact.php:1367
-msgid "Use mailto: in front of address to force email check."
-msgstr "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email."
-
-#: src/Model/Contact.php:1373
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito."
-
-#: src/Model/Contact.php:1378
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te."
-
-#: src/Model/Contact.php:1429
-msgid "Unable to retrieve contact information."
-msgstr "Impossibile recuperare informazioni sul contatto."
-
-#: src/Model/Contact.php:1646 src/Protocol/DFRN.php:1513
-#, php-format
-msgid "%s's birthday"
-msgstr "Compleanno di %s"
-
-#: src/Model/Contact.php:1647 src/Protocol/DFRN.php:1514
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Buon compleanno %s"
-
-#: src/Model/Item.php:1851
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr "%1$s parteciperà a %3$s di %2$s"
-
-#: src/Model/Item.php:1856
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr "%1$s non parteciperà a %3$s di %2$s"
+#: src/Protocol/Diaspora.php:2521
+msgid "Sharing notification from Diaspora network"
+msgstr "Notifica di condivisione dal network Diaspora*"
 
-#: src/Model/Item.php:1861
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr "%1$s forse parteciperà a %3$s di %2$s"
+#: src/Protocol/Diaspora.php:3609
+msgid "Attachments:"
+msgstr "Allegati:"
 
-#: src/Protocol/OStatus.php:1799
+#: src/Protocol/OStatus.php:1798
 #, php-format
 msgid "%s is now following %s."
 msgstr "%s sta seguendo %s"
 
-#: src/Protocol/OStatus.php:1800
+#: src/Protocol/OStatus.php:1799
 msgid "following"
 msgstr "segue"
 
-#: src/Protocol/OStatus.php:1803
+#: src/Protocol/OStatus.php:1802
 #, php-format
 msgid "%s stopped following %s."
 msgstr "%s ha smesso di seguire %s"
 
-#: src/Protocol/OStatus.php:1804
+#: src/Protocol/OStatus.php:1803
 msgid "stopped following"
 msgstr "tolto dai seguiti"
 
-#: src/Protocol/Diaspora.php:2521
-msgid "Sharing notification from Diaspora network"
-msgstr "Notifica di condivisione dal network Diaspora*"
-
-#: src/Protocol/Diaspora.php:3609
-msgid "Attachments:"
-msgstr "Allegati:"
-
 #: src/Worker/Delivery.php:415
 msgid "(no subject)"
 msgstr "(nessun oggetto)"
@@ -9406,8 +9405,12 @@ msgid "This entry was edited"
 msgstr "Questa voce è stata modificata"
 
 #: src/Object/Post.php:187
-msgid "Remove from your stream"
-msgstr "Rimuovi dal tuo stream"
+msgid "Delete globally"
+msgstr "Rimuovi globalmente"
+
+#: src/Object/Post.php:187
+msgid "Remove locally"
+msgstr "Rimuovi localmente"
 
 #: src/Object/Post.php:200
 msgid "save to folder"
@@ -9528,15 +9531,15 @@ msgstr "Link"
 msgid "Video"
 msgstr "Video"
 
-#: src/App.php:524
+#: src/App.php:526
 msgid "Delete this item?"
 msgstr "Cancellare questo elemento?"
 
-#: src/App.php:526
+#: src/App.php:528
 msgid "show fewer"
 msgstr "mostra di meno"
 
-#: src/App.php:1114
+#: src/App.php:1117
 msgid "No system theme config value set."
 msgstr "Nessun tema di sistema impostato."
 
@@ -9544,12 +9547,12 @@ msgstr "Nessun tema di sistema impostato."
 msgid "toggle mobile"
 msgstr "commuta tema mobile"
 
-#: update.php:193
-#, php-format
-msgid "%s: Updating author-id and owner-id in item and thread table. "
-msgstr "%s: Aggiornamento author-id e owner-id nelle tabelle item e thread"
-
 #: boot.php:796
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "aggiornamento %s fallito. Guarda i log di errore."
+
+#: update.php:193
+#, php-format
+msgid "%s: Updating author-id and owner-id in item and thread table. "
+msgstr "%s: Aggiornamento author-id e owner-id nelle tabelle item e thread"
index 1bac053481175772c36526bb8a6973365d5b5656..bbf2b00a5ba04e2a550a91177ba0f588b1fa3c54 100644 (file)
@@ -65,11 +65,6 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "H
 $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Hai ricevuto una [url=%1\$s]richiesta di registrazione[/url] da %2\$s.";
 $a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nome completo: %1\$s\nIndirizzo del sito: %2\$s\nNome utente: %3\$s (%4\$s)";
 $a->strings["Please visit %s to approve or reject the request."] = "Visita %s per approvare o rifiutare la richiesta.";
-$a->strings["Welcome "] = "Ciao";
-$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo.";
-$a->strings["Welcome back "] = "Ciao ";
-$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."] = "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lungo (più di tre ore) prima di inviarla.";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'";
 $a->strings["Daily posting limit of %d post reached. The post was rejected."] = [
        0 => "Limite giornaliero di %d messaggio raggiunto. Il messaggio è stato rifiutato",
        1 => "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato.",
@@ -196,6 +191,10 @@ $a->strings["Yes"] = "Si";
 $a->strings["Permission denied."] = "Permesso negato.";
 $a->strings["Archives"] = "Archivi";
 $a->strings["show more"] = "mostra di più";
+$a->strings["Welcome "] = "Ciao";
+$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo.";
+$a->strings["Welcome back "] = "Ciao ";
+$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."] = "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lungo (più di tre ore) prima di inviarla.";
 $a->strings["newer"] = "nuovi";
 $a->strings["older"] = "vecchi";
 $a->strings["first"] = "primo";
@@ -352,7 +351,6 @@ $a->strings["Do you really want to delete this suggestion?"] = "Vuoi veramente c
 $a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore.";
 $a->strings["Ignore/Hide"] = "Ignora / Nascondi";
 $a->strings["Friend Suggestions"] = "Contatti suggeriti";
-$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]";
 $a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani.";
 $a->strings["Import"] = "Importa";
 $a->strings["Move account"] = "Muovi account";
@@ -403,15 +401,6 @@ $a->strings["All Contacts (with secure profile access)"] = "Tutti i contatti (co
 $a->strings["Account approved."] = "Account approvato.";
 $a->strings["Registration revoked for %s"] = "Registrazione revocata per %s";
 $a->strings["Please login."] = "Accedi.";
-$a->strings["Remove term"] = "Rimuovi termine";
-$a->strings["Saved Searches"] = "Ricerche salvate";
-$a->strings["Only logged in users are permitted to perform a search."] = "Solo agli utenti autenticati è permesso eseguire ricerche.";
-$a->strings["Too Many Requests"] = "Troppe richieste";
-$a->strings["Only one search per minute is permitted for not logged in users."] = "Solo una ricerca al minuto è permessa agli utenti non autenticati.";
-$a->strings["No results."] = "Nessun risultato.";
-$a->strings["Items tagged with: %s"] = "Elementi taggati con: %s";
-$a->strings["Results for: %s"] = "Risultati per: %s";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s";
 $a->strings["Tag removed"] = "Tag rimosso";
 $a->strings["Remove Item Tag"] = "Rimuovi il tag";
 $a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: ";
@@ -449,63 +438,6 @@ $a->strings["Contact not found."] = "Contatto non trovato.";
 $a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato.";
 $a->strings["Suggest Friends"] = "Suggerisci amici";
 $a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s";
-$a->strings["Personal Notes"] = "Note personali";
-$a->strings["Photo Albums"] = "Album foto";
-$a->strings["Recent Photos"] = "Foto recenti";
-$a->strings["Upload New Photos"] = "Carica nuove foto";
-$a->strings["everybody"] = "tutti";
-$a->strings["Contact information unavailable"] = "I dati di questo contatto non sono disponibili";
-$a->strings["Album not found."] = "Album non trovato.";
-$a->strings["Delete Album"] = "Rimuovi album";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Vuoi davvero cancellare questo album e tutte le sue foto?";
-$a->strings["Delete Photo"] = "Rimuovi foto";
-$a->strings["Do you really want to delete this photo?"] = "Vuoi veramente cancellare questa foto?";
-$a->strings["a photo"] = "una foto";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s è stato taggato in %2\$s da %3\$s";
-$a->strings["Image upload didn't complete, please try again"] = "Caricamento dell'immagine non completato. Prova di nuovo.";
-$a->strings["Image file is missing"] = "Il file dell'immagine è mancante";
-$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "Il server non può accettare il caricamento di un nuovo file in questo momento, contattare l'amministratore";
-$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto.";
-$a->strings["No photos selected"] = "Nessuna foto selezionata";
-$a->strings["Access to this item is restricted."] = "Questo oggetto non è visibile a tutti.";
-$a->strings["Upload Photos"] = "Carica foto";
-$a->strings["New album name: "] = "Nome nuovo album: ";
-$a->strings["or existing album name: "] = "o nome di un album esistente: ";
-$a->strings["Do not show a status post for this upload"] = "Non creare un post per questo upload";
-$a->strings["Permissions"] = "Permessi";
-$a->strings["Show to Groups"] = "Mostra ai gruppi";
-$a->strings["Show to Contacts"] = "Mostra ai contatti";
-$a->strings["Edit Album"] = "Modifica album";
-$a->strings["Show Newest First"] = "Mostra nuove foto per prime";
-$a->strings["Show Oldest First"] = "Mostra vecchie foto per prime";
-$a->strings["View Photo"] = "Vedi foto";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere limitato.";
-$a->strings["Photo not available"] = "Foto non disponibile";
-$a->strings["View photo"] = "Vedi foto";
-$a->strings["Edit photo"] = "Modifica foto";
-$a->strings["Use as profile photo"] = "Usa come foto del profilo";
-$a->strings["Private Message"] = "Messaggio privato";
-$a->strings["View Full Size"] = "Vedi dimensione intera";
-$a->strings["Tags: "] = "Tag: ";
-$a->strings["[Remove any tag]"] = "[Rimuovi tutti i tag]";
-$a->strings["New album name"] = "Nuovo nome dell'album";
-$a->strings["Caption"] = "Titolo";
-$a->strings["Add a Tag"] = "Aggiungi tag";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
-$a->strings["Do not rotate"] = "Non ruotare";
-$a->strings["Rotate CW (right)"] = "Ruota a destra";
-$a->strings["Rotate CCW (left)"] = "Ruota a sinistra";
-$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)";
-$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)";
-$a->strings["This is you"] = "Questo sei tu";
-$a->strings["Comment"] = "Commento";
-$a->strings["Map"] = "Mappa";
-$a->strings["View Album"] = "Sfoglia l'album";
-$a->strings["Do you really want to delete this video?"] = "Vuoi veramente cancellare questo video?";
-$a->strings["Delete Video"] = "Rimuovi video";
-$a->strings["No videos selected"] = "Nessun video selezionato";
-$a->strings["Recent Videos"] = "Video Recenti";
-$a->strings["Upload New Videos"] = "Carica Nuovo Video";
 $a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato.";
 $a->strings["Events"] = "Eventi";
 $a->strings["View"] = "Mostra";
@@ -605,6 +537,7 @@ $a->strings["Only show archived contacts"] = "Mostra solo contatti archiviati";
 $a->strings["Hidden"] = "Nascosto";
 $a->strings["Only show hidden contacts"] = "Mostra solo contatti nascosti";
 $a->strings["Search your contacts"] = "Cerca nei tuoi contatti";
+$a->strings["Results for: %s"] = "Risultati per: %s";
 $a->strings["Find"] = "Trova";
 $a->strings["Update"] = "Aggiorna";
 $a->strings["Archive"] = "Archivia";
@@ -619,6 +552,7 @@ $a->strings["Advanced Contact Settings"] = "Impostazioni avanzate Contatto";
 $a->strings["Mutual Friendship"] = "Amicizia reciproca";
 $a->strings["is a fan of yours"] = "è un tuo fan";
 $a->strings["you are a fan of"] = "sei un fan di";
+$a->strings["This is you"] = "Questo sei tu";
 $a->strings["Toggle Blocked status"] = "Inverti stato \"Blocca\"";
 $a->strings["Toggle Ignored status"] = "Inverti stato \"Ignora\"";
 $a->strings["Toggle Archive status"] = "Inverti stato \"Archiviato\"";
@@ -637,22 +571,6 @@ $a->strings["Existing Page Delegates"] = "Delegati Pagina Esistenti";
 $a->strings["Potential Delegates"] = "Delegati Potenziali";
 $a->strings["Add"] = "Aggiungi";
 $a->strings["No entries."] = "Nessuna voce.";
-$a->strings["Event can not end before it has started."] = "Un evento non può finire prima di iniziare.";
-$a->strings["Event title and start time are required."] = "Titolo e ora di inizio dell'evento sono richiesti.";
-$a->strings["Create New Event"] = "Crea un nuovo evento";
-$a->strings["Event details"] = "Dettagli dell'evento";
-$a->strings["Starting date and Title are required."] = "La data di inizio e il titolo sono richiesti.";
-$a->strings["Event Starts:"] = "L'evento inizia:";
-$a->strings["Required"] = "Richiesto";
-$a->strings["Finish date/time is not known or not relevant"] = "La data/ora di fine non è definita";
-$a->strings["Event Finishes:"] = "L'evento finisce:";
-$a->strings["Adjust for viewer timezone"] = "Visualizza con il fuso orario di chi legge";
-$a->strings["Description:"] = "Descrizione:";
-$a->strings["Title:"] = "Titolo:";
-$a->strings["Share this event"] = "Condividi questo evento";
-$a->strings["Basic"] = "Base";
-$a->strings["Failed to remove event"] = "Rimozione evento fallita.";
-$a->strings["Event removed"] = "Evento rimosso";
 $a->strings["You must be logged in to use this module"] = "Devi aver essere autenticato per usare questo modulo";
 $a->strings["Source URL"] = "URL Sorgente";
 $a->strings["Post successful."] = "Inviato!";
@@ -739,13 +657,6 @@ $a->strings["Source text"] = "Testo sorgente";
 $a->strings["BBCode"] = "BBCode";
 $a->strings["Markdown"] = "Markdown";
 $a->strings["HTML"] = "HTML";
-$a->strings["Community option not available."] = "Opzione Comunità non disponibile";
-$a->strings["Not available."] = "Non disponibile.";
-$a->strings["Local Community"] = "Comunità Locale";
-$a->strings["Posts from local users on this server"] = "Messaggi dagli utenti locali su questo sito";
-$a->strings["Global Community"] = "Comunità Globale";
-$a->strings["Posts from users of the whole federated network"] = "Messaggi dagli utenti della rete federata";
-$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "Questa pagina comunità mostra tutti i post pubblici ricevuti da questo nodo. Potrebbero non riflettere le opinioni degli utenti di questo nodo.";
 $a->strings["This is Friendica, version"] = "Questo è Friendica, versione";
 $a->strings["running at web location"] = "in esecuzione all'indirizzo web";
 $a->strings["Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more about the Friendica project."] = "Visita <a href=\"https://friendi.ca\">Friendi.ca</a> per saperne di più sul progetto Friendica.";
@@ -780,29 +691,6 @@ $a->strings["You are cordially invited to join me and other close friends on Fri
 $a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code";
 $a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:";
 $a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendi.ca ";
-$a->strings["add"] = "aggiungi";
-$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [
-       0 => "Attenzione: Questo gruppo contiene %s membro da una rete che non permette la ricezione di messaggi non pubblici.",
-       1 => "Attenzione: Questo gruppo contiene %s membri da reti che non permettono la ricezione di messaggi non pubblici.",
-];
-$a->strings["Messages in this group won't be send to these receivers."] = "I messaggi in questo gruppo non saranno inviati ai quei contatti.";
-$a->strings["No such group"] = "Nessun gruppo";
-$a->strings["Group is empty"] = "Il gruppo è vuoto";
-$a->strings["Group: %s"] = "Gruppo: %s";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente.";
-$a->strings["Invalid contact."] = "Contatto non valido.";
-$a->strings["Commented Order"] = "Ordina per commento";
-$a->strings["Sort by Comment Date"] = "Ordina per data commento";
-$a->strings["Posted Order"] = "Ordina per invio";
-$a->strings["Sort by Post Date"] = "Ordina per data messaggio";
-$a->strings["Personal"] = "Personale";
-$a->strings["Posts that mention or involve you"] = "Messaggi che ti citano o coinvolgono";
-$a->strings["New"] = "Nuovo";
-$a->strings["Activity Stream - by date"] = "Activity Stream - per data";
-$a->strings["Shared Links"] = "Links condivisi";
-$a->strings["Interesting Links"] = "Link Interessanti";
-$a->strings["Starred"] = "Preferiti";
-$a->strings["Favourite Posts"] = "Messaggi preferiti";
 $a->strings["Contact settings applied."] = "Contatto modificato.";
 $a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate.";
 $a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATTENZIONE: Queste sono impostazioni avanzate</strong> e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più";
@@ -876,24 +764,6 @@ $a->strings["%d message"] = [
        0 => "%d messaggio",
        1 => "%d messaggi",
 ];
-$a->strings["Group created."] = "Gruppo creato.";
-$a->strings["Could not create group."] = "Impossibile creare il gruppo.";
-$a->strings["Group not found."] = "Gruppo non trovato.";
-$a->strings["Group name changed."] = "Il nome del gruppo è cambiato.";
-$a->strings["Save Group"] = "Salva gruppo";
-$a->strings["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti.";
-$a->strings["Group Name: "] = "Nome del gruppo:";
-$a->strings["Group removed."] = "Gruppo rimosso.";
-$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo.";
-$a->strings["Delete Group"] = "Elimina Gruppo";
-$a->strings["Group Editor"] = "Modifica gruppo";
-$a->strings["Edit Group Name"] = "Modifica Nome Gruppo";
-$a->strings["Members"] = "Membri";
-$a->strings["Remove contact from group"] = "Rimuovi il contatto dal gruppo";
-$a->strings["Add contact to group"] = "Aggiungi il contatto al gruppo";
-$a->strings["OpenID protocol error. No ID returned."] = "Errore protocollo OpenID. Nessun ID ricevuto.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito.";
-$a->strings["Login failed."] = "Accesso fallito.";
 $a->strings["Theme settings updated."] = "Impostazioni del tema aggiornate.";
 $a->strings["Information"] = "Informazioni";
 $a->strings["Overview"] = "Panoramica";
@@ -1083,6 +953,7 @@ $a->strings["Block public"] = "Blocca pagine pubbliche";
 $a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato.";
 $a->strings["Force publish"] = "Forza pubblicazione";
 $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per forzare tutti i profili di questo sito ad essere compresi  nell'elenco di questo sito.";
+$a->strings["Enabling this may violate privacy laws like the GDPR"] = "Abilitare questo potrebbe violare leggi sulla privacy come il GDPR";
 $a->strings["Global directory URL"] = "URL della directory globale";
 $a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato.";
 $a->strings["Private posts by default for new users"] = "Post privati di default per i nuovi utenti";
@@ -1164,7 +1035,7 @@ $a->strings["If you have a restricted system where the webserver can't access th
 $a->strings["Base path to installation"] = "Percorso base all'installazione";
 $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."] = "Se il sistema non è in grado di rilevare il percorso corretto per l'installazione, immettere il percorso corretto qui. Questa impostazione deve essere inserita solo se si utilizza un sistema limitato e/o collegamenti simbolici al tuo webroot.";
 $a->strings["Disable picture proxy"] = "Disabilita il proxy immagini";
-$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Il proxy immagini aumenta le performance e la privacy. Non dovrebbe essere usato su server con poca banda disponibile.";
+$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "Il proxy immagini aumenta le performance e la privacy. Non dovrebbe essere usato su server con poca banda disponibile.";
 $a->strings["Only search in tags"] = "Cerca solo nei tag";
 $a->strings["On large systems the text search can slow down the system extremely."] = "Su server con molti dati, la ricerca nel testo può estremamente rallentare il sistema.";
 $a->strings["New base url"] = "Nuovo url base";
@@ -1284,6 +1155,14 @@ $a->strings["Off"] = "Spento";
 $a->strings["On"] = "Acceso";
 $a->strings["Lock feature %s"] = "Blocca funzionalità %s";
 $a->strings["Manage Additional Features"] = "Gestisci Funzionalità Aggiuntive";
+$a->strings["Community option not available."] = "Opzione Comunità non disponibile";
+$a->strings["Not available."] = "Non disponibile.";
+$a->strings["Local Community"] = "Comunità Locale";
+$a->strings["Posts from local users on this server"] = "Messaggi dagli utenti locali su questo sito";
+$a->strings["Global Community"] = "Comunità Globale";
+$a->strings["Posts from users of the whole federated network"] = "Messaggi dagli utenti della rete federata";
+$a->strings["No results."] = "Nessun risultato.";
+$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "Questa pagina comunità mostra tutti i post pubblici ricevuti da questo nodo. Potrebbero non riflettere le opinioni degli utenti di questo nodo.";
 $a->strings["Profile not found."] = "Profilo non trovato.";
 $a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Questo può accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e  già approvata.";
 $a->strings["Response from remote site was not understood."] = "Errore di comunicazione con l'altro sito.";
@@ -1337,12 +1216,70 @@ $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."] = " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora.";
+$a->strings["Event can not end before it has started."] = "Un evento non può finire prima di iniziare.";
+$a->strings["Event title and start time are required."] = "Titolo e ora di inizio dell'evento sono richiesti.";
+$a->strings["Create New Event"] = "Crea un nuovo evento";
+$a->strings["Event details"] = "Dettagli dell'evento";
+$a->strings["Starting date and Title are required."] = "La data di inizio e il titolo sono richiesti.";
+$a->strings["Event Starts:"] = "L'evento inizia:";
+$a->strings["Required"] = "Richiesto";
+$a->strings["Finish date/time is not known or not relevant"] = "La data/ora di fine non è definita";
+$a->strings["Event Finishes:"] = "L'evento finisce:";
+$a->strings["Adjust for viewer timezone"] = "Visualizza con il fuso orario di chi legge";
+$a->strings["Description:"] = "Descrizione:";
+$a->strings["Title:"] = "Titolo:";
+$a->strings["Share this event"] = "Condividi questo evento";
+$a->strings["Basic"] = "Base";
+$a->strings["Permissions"] = "Permessi";
+$a->strings["Failed to remove event"] = "Rimozione evento fallita.";
+$a->strings["Event removed"] = "Evento rimosso";
+$a->strings["Group created."] = "Gruppo creato.";
+$a->strings["Could not create group."] = "Impossibile creare il gruppo.";
+$a->strings["Group not found."] = "Gruppo non trovato.";
+$a->strings["Group name changed."] = "Il nome del gruppo è cambiato.";
+$a->strings["Save Group"] = "Salva gruppo";
+$a->strings["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti.";
+$a->strings["Group Name: "] = "Nome del gruppo:";
+$a->strings["Group removed."] = "Gruppo rimosso.";
+$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo.";
+$a->strings["Delete Group"] = "Elimina Gruppo";
+$a->strings["Group Editor"] = "Modifica gruppo";
+$a->strings["Edit Group Name"] = "Modifica Nome Gruppo";
+$a->strings["Members"] = "Membri";
+$a->strings["Group is empty"] = "Il gruppo è vuoto";
+$a->strings["Remove contact from group"] = "Rimuovi il contatto dal gruppo";
+$a->strings["Add contact to group"] = "Aggiungi il contatto al gruppo";
 $a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale.";
 $a->strings["Empty post discarded."] = "Messaggio vuoto scartato.";
 $a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica.";
 $a->strings["You may visit them online at %s"] = "Puoi visitarli online su %s";
 $a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi.";
 $a->strings["%s posted an update."] = "%s ha inviato un aggiornamento.";
+$a->strings["Remove term"] = "Rimuovi termine";
+$a->strings["Saved Searches"] = "Ricerche salvate";
+$a->strings["add"] = "aggiungi";
+$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [
+       0 => "Attenzione: Questo gruppo contiene %s membro da una rete che non permette la ricezione di messaggi non pubblici.",
+       1 => "Attenzione: Questo gruppo contiene %s membri da reti che non permettono la ricezione di messaggi non pubblici.",
+];
+$a->strings["Messages in this group won't be send to these receivers."] = "I messaggi in questo gruppo non saranno inviati ai quei contatti.";
+$a->strings["No such group"] = "Nessun gruppo";
+$a->strings["Group: %s"] = "Gruppo: %s";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente.";
+$a->strings["Invalid contact."] = "Contatto non valido.";
+$a->strings["Commented Order"] = "Ordina per commento";
+$a->strings["Sort by Comment Date"] = "Ordina per data commento";
+$a->strings["Posted Order"] = "Ordina per invio";
+$a->strings["Sort by Post Date"] = "Ordina per data messaggio";
+$a->strings["Personal"] = "Personale";
+$a->strings["Posts that mention or involve you"] = "Messaggi che ti citano o coinvolgono";
+$a->strings["New"] = "Nuovo";
+$a->strings["Activity Stream - by date"] = "Activity Stream - per data";
+$a->strings["Shared Links"] = "Links condivisi";
+$a->strings["Interesting Links"] = "Link Interessanti";
+$a->strings["Starred"] = "Preferiti";
+$a->strings["Favourite Posts"] = "Messaggi preferiti";
+$a->strings["Personal Notes"] = "Note personali";
 $a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido.";
 $a->strings["Discard"] = "Scarta";
 $a->strings["Notifications"] = "Notifiche";
@@ -1367,6 +1304,58 @@ $a->strings["No introductions."] = "Nessuna presentazione.";
 $a->strings["Show unread"] = "Mostra non letti";
 $a->strings["Show all"] = "Mostra tutti";
 $a->strings["No more %s notifications."] = "Nessun'altra notifica %s.";
+$a->strings["OpenID protocol error. No ID returned."] = "Errore protocollo OpenID. Nessun ID ricevuto.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito.";
+$a->strings["Login failed."] = "Accesso fallito.";
+$a->strings["Photo Albums"] = "Album foto";
+$a->strings["Recent Photos"] = "Foto recenti";
+$a->strings["Upload New Photos"] = "Carica nuove foto";
+$a->strings["everybody"] = "tutti";
+$a->strings["Contact information unavailable"] = "I dati di questo contatto non sono disponibili";
+$a->strings["Album not found."] = "Album non trovato.";
+$a->strings["Delete Album"] = "Rimuovi album";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Vuoi davvero cancellare questo album e tutte le sue foto?";
+$a->strings["Delete Photo"] = "Rimuovi foto";
+$a->strings["Do you really want to delete this photo?"] = "Vuoi veramente cancellare questa foto?";
+$a->strings["a photo"] = "una foto";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s è stato taggato in %2\$s da %3\$s";
+$a->strings["Image upload didn't complete, please try again"] = "Caricamento dell'immagine non completato. Prova di nuovo.";
+$a->strings["Image file is missing"] = "Il file dell'immagine è mancante";
+$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "Il server non può accettare il caricamento di un nuovo file in questo momento, contattare l'amministratore";
+$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto.";
+$a->strings["No photos selected"] = "Nessuna foto selezionata";
+$a->strings["Access to this item is restricted."] = "Questo oggetto non è visibile a tutti.";
+$a->strings["Upload Photos"] = "Carica foto";
+$a->strings["New album name: "] = "Nome nuovo album: ";
+$a->strings["or existing album name: "] = "o nome di un album esistente: ";
+$a->strings["Do not show a status post for this upload"] = "Non creare un post per questo upload";
+$a->strings["Show to Groups"] = "Mostra ai gruppi";
+$a->strings["Show to Contacts"] = "Mostra ai contatti";
+$a->strings["Edit Album"] = "Modifica album";
+$a->strings["Show Newest First"] = "Mostra nuove foto per prime";
+$a->strings["Show Oldest First"] = "Mostra vecchie foto per prime";
+$a->strings["View Photo"] = "Vedi foto";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere limitato.";
+$a->strings["Photo not available"] = "Foto non disponibile";
+$a->strings["View photo"] = "Vedi foto";
+$a->strings["Edit photo"] = "Modifica foto";
+$a->strings["Use as profile photo"] = "Usa come foto del profilo";
+$a->strings["Private Message"] = "Messaggio privato";
+$a->strings["View Full Size"] = "Vedi dimensione intera";
+$a->strings["Tags: "] = "Tag: ";
+$a->strings["[Remove any tag]"] = "[Rimuovi tutti i tag]";
+$a->strings["New album name"] = "Nuovo nome dell'album";
+$a->strings["Caption"] = "Titolo";
+$a->strings["Add a Tag"] = "Aggiungi tag";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
+$a->strings["Do not rotate"] = "Non ruotare";
+$a->strings["Rotate CW (right)"] = "Ruota a destra";
+$a->strings["Rotate CCW (left)"] = "Ruota a sinistra";
+$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)";
+$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)";
+$a->strings["Comment"] = "Commento";
+$a->strings["Map"] = "Mappa";
+$a->strings["View Album"] = "Sfoglia l'album";
 $a->strings["Requested profile is not available."] = "Profilo richiesto non disponibile.";
 $a->strings["%s's timeline"] = "la timeline di %s";
 $a->strings["%s's posts"] = "il messaggio di %s";
@@ -1479,6 +1468,10 @@ $a->strings["The user id is %d"] = "L'id utente è %d";
 $a->strings["Remove My Account"] = "Rimuovi il mio account";
 $a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo.";
 $a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:";
+$a->strings["Only logged in users are permitted to perform a search."] = "Solo agli utenti autenticati è permesso eseguire ricerche.";
+$a->strings["Too Many Requests"] = "Troppe richieste";
+$a->strings["Only one search per minute is permitted for not logged in users."] = "Solo una ricerca al minuto è permessa agli utenti non autenticati.";
+$a->strings["Items tagged with: %s"] = "Elementi taggati con: %s";
 $a->strings["Account"] = "Account";
 $a->strings["Display"] = "Visualizzazione";
 $a->strings["Social Networks"] = "Social Networks";
@@ -1569,7 +1562,7 @@ $a->strings["Don't show notices"] = "Non mostrare gli avvisi";
 $a->strings["Infinite scroll"] = "Scroll infinito";
 $a->strings["Automatic updates only at the top of the network page"] = "Aggiornamenti automatici solo in cima alla pagina \"rete\"";
 $a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "Quando disabilitato, la pagina \"rete\" è aggiornata continuamente, cosa che può confondere durante la lettura.";
-$a->strings["Bandwith Saver Mode"] = "Modalità Salva Banda";
+$a->strings["Bandwidth Saver Mode"] = "Modalità Salva Banda";
 $a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "Quando abilitato, il contenuto embeddato non è mostrato quando la pagina si aggiorna automaticamente, ma solo quando la pagina viene ricaricata.";
 $a->strings["Smart Threading"] = "Smart Threading";
 $a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = "Quando è abilitato, rimuove i rientri eccessivi nella visualizzazione delle discussioni, mantenendoli dove sono importanti. Funziona solo se le conversazioni a thread sono disponibili e abilitate.";
@@ -1594,13 +1587,13 @@ $a->strings["Requires manual approval of contact requests."] = "Richiede l'appro
 $a->strings["OpenID:"] = "OpenID:";
 $a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opzionale) Consente di loggarti in questo account con questo OpenID";
 $a->strings["Publish your default profile in your local site directory?"] = "Pubblica il tuo profilo predefinito nell'elenco locale del sito";
-$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."] = "Il tuo profilo sarà pubblicato nella directory globale di friendica (p.e. <a href=\"%s\">%s</a>). Il tuo profilo sarà visibile pubblicamente.";
-$a->strings["Publish your default profile in the global social directory?"] = "Pubblica il tuo profilo predefinito nell'elenco sociale globale";
 $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."] = "Il tuo profilo verrà pubblicato nella <a href=\"%s\">directory locale</a> di questo nodo. I dettagli del tuo profilo potrebbero essere visibili pubblicamente a seconda delle impostazioni di sistema.";
+$a->strings["Publish your default profile in the global social directory?"] = "Pubblica il tuo profilo predefinito nell'elenco sociale globale";
+$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."] = "Il tuo profilo sarà pubblicato nella directory globale di friendica (p.e. <a href=\"%s\">%s</a>). Il tuo profilo sarà visibile pubblicamente.";
 $a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito";
 $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"] = "La tua lista di contatti non sarà mostrata nella tua pagina profilo di default. Puoi decidere di mostrare la tua lista contatti separatamente per ogni profilo in più che crei.";
 $a->strings["Hide your profile details from anonymous viewers?"] = "Nascondi i dettagli del tuo profilo ai visitatori anonimi?";
-$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."] = "I visitatori anonimi vedranno nella tua pagina profilo solo la tua foto del profilo, il tuo nome e il nome utente che stai usando. Disabilita l'invio di messaggi pubblici verso Diaspora e altre reti.";
+$a->strings["Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Your public posts and replies will still be accessible by other means."] = "I visitatori anonimi vedranno nella tua pagina profilo solo la tua foto del profilo, il tuo nome e il nome utente che stai usando. I tuoi post pubblici e le risposte saranno comunque accessibili in altre maniere.";
 $a->strings["Allow friends to post to your profile page?"] = "Permetti agli amici di scrivere sulla tua pagina profilo?";
 $a->strings["Your contacts may write posts on your profile wall. These posts will be distributed to your contacts"] = "I tuoi contatti possono scrivere messaggi sulla tua pagina di profilo. Questi messaggi saranno distribuiti a tutti i tuoi contatti.";
 $a->strings["Allow friends to tag your posts?"] = "Permetti agli amici di aggiungere tag  ai tuoi messaggi?";
@@ -1664,6 +1657,13 @@ $a->strings["Change the behaviour of this account for special situations"] = "Mo
 $a->strings["Relocate"] = "Trasloca";
 $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."] = "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone.";
 $a->strings["Resend relocate message to contacts"] = "Invia nuovamente il messaggio di trasloco ai contatti";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s";
+$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]";
+$a->strings["Do you really want to delete this video?"] = "Vuoi veramente cancellare questo video?";
+$a->strings["Delete Video"] = "Rimuovi video";
+$a->strings["No videos selected"] = "Nessun video selezionato";
+$a->strings["Recent Videos"] = "Video Recenti";
+$a->strings["Upload New Videos"] = "Carica Nuovo Video";
 $a->strings["default"] = "default";
 $a->strings["greenzero"] = "greenzero";
 $a->strings["purplezero"] = "purplezero";
@@ -2026,6 +2026,32 @@ $a->strings["Errors encountered performing database changes: "] = "Errori riscon
 $a->strings["%s: Database update"] = "%s: Aggiornamento database";
 $a->strings["%s: updating %s table."] = "%s: aggiornando la tabella %s.";
 $a->strings["[no subject]"] = "[nessun oggetto]";
+$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."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi  esistenti su un elemento <strong>possono</strong> essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso.";
+$a->strings["Default privacy group for new contacts"] = "Gruppo predefinito per i nuovi contatti";
+$a->strings["Everybody"] = "Tutti";
+$a->strings["edit"] = "modifica";
+$a->strings["Edit group"] = "Modifica gruppo";
+$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo.";
+$a->strings["Create a new group"] = "Crea un nuovo gruppo";
+$a->strings["Edit groups"] = "Modifica gruppi";
+$a->strings["Drop Contact"] = "Rimuovi contatto";
+$a->strings["Organisation"] = "Organizzazione";
+$a->strings["News"] = "Notizie";
+$a->strings["Forum"] = "Forum";
+$a->strings["Connect URL missing."] = "URL di connessione mancante.";
+$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "Il contatto non puo' essere aggiunto. Controlla le credenziali della rete nella tua pagina Impostazioni -> Reti Sociali";
+$a->strings["This site is not configured to allow communications with other networks."] = "Questo sito non è configurato per permettere la comunicazione con altri network.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati protocolli di comunicazione o feed compatibili.";
+$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni.";
+$a->strings["An author or name was not found."] = "Non è stato trovato un nome o un autore";
+$a->strings["No browser URL could be matched to this address."] = "Nessun URL può essere associato a questo indirizzo.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email.";
+$a->strings["Use mailto: in front of address to force email check."] = "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te.";
+$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto.";
+$a->strings["%s's birthday"] = "Compleanno di %s";
+$a->strings["Happy Birthday %s"] = "Buon compleanno %s";
 $a->strings["Starts:"] = "Inizia:";
 $a->strings["Finishes:"] = "Finisce:";
 $a->strings["all-day"] = "tutto il giorno";
@@ -2040,14 +2066,9 @@ $a->strings["D g:i A"] = "D G:i";
 $a->strings["g:i A"] = "G:i";
 $a->strings["Show map"] = "Mostra mappa";
 $a->strings["Hide map"] = "Nascondi mappa";
-$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."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi  esistenti su un elemento <strong>possono</strong> essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso.";
-$a->strings["Default privacy group for new contacts"] = "Gruppo predefinito per i nuovi contatti";
-$a->strings["Everybody"] = "Tutti";
-$a->strings["edit"] = "modifica";
-$a->strings["Edit group"] = "Modifica gruppo";
-$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo.";
-$a->strings["Create a new group"] = "Crea un nuovo gruppo";
-$a->strings["Edit groups"] = "Modifica gruppi";
+$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s parteciperà a %3\$s di %2\$s";
+$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s non parteciperà a %3\$s di %2\$s";
+$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s forse parteciperà a %3\$s di %2\$s";
 $a->strings["Requested account is not available."] = "L'account richiesto non è disponibile.";
 $a->strings["Edit profile"] = "Modifica il profilo";
 $a->strings["Atom feed"] = "Feed Atom";
@@ -2102,33 +2123,12 @@ $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Yo
 $a->strings["Registration at %s"] = "Registrazione su %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"] = "\nGentile %1\$s,\n\tGrazie per esserti registrato su %2\$s. Il tuo account è stato creato.\n\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."] = "\nI dettagli del tuo utente sono:\n    Indirizzo del sito: %3\$s\n    Nome utente:%1\$s \n    Password:%5\$s \n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\n\t\t\tSe mai vorrai cancellare il tuo account, lo potrai fare su %3\$s/removeme\n\nGrazie e benvenuto su %2\$s";
-$a->strings["Drop Contact"] = "Rimuovi contatto";
-$a->strings["Organisation"] = "Organizzazione";
-$a->strings["News"] = "Notizie";
-$a->strings["Forum"] = "Forum";
-$a->strings["Connect URL missing."] = "URL di connessione mancante.";
-$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "Il contatto non puo' essere aggiunto. Controlla le credenziali della rete nella tua pagina Impostazioni -> Reti Sociali";
-$a->strings["This site is not configured to allow communications with other networks."] = "Questo sito non è configurato per permettere la comunicazione con altri network.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati protocolli di comunicazione o feed compatibili.";
-$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni.";
-$a->strings["An author or name was not found."] = "Non è stato trovato un nome o un autore";
-$a->strings["No browser URL could be matched to this address."] = "Nessun URL può essere associato a questo indirizzo.";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email.";
-$a->strings["Use mailto: in front of address to force email check."] = "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te.";
-$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto.";
-$a->strings["%s's birthday"] = "Compleanno di %s";
-$a->strings["Happy Birthday %s"] = "Buon compleanno %s";
-$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s parteciperà a %3\$s di %2\$s";
-$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s non parteciperà a %3\$s di %2\$s";
-$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s forse parteciperà a %3\$s di %2\$s";
+$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*";
+$a->strings["Attachments:"] = "Allegati:";
 $a->strings["%s is now following %s."] = "%s sta seguendo %s";
 $a->strings["following"] = "segue";
 $a->strings["%s stopped following %s."] = "%s ha smesso di seguire %s";
 $a->strings["stopped following"] = "tolto dai seguiti";
-$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*";
-$a->strings["Attachments:"] = "Allegati:";
 $a->strings["(no subject)"] = "(nessun oggetto)";
 $a->strings["Logged out."] = "Uscita effettuata.";
 $a->strings["Create a New Account"] = "Crea un nuovo account";
@@ -2145,7 +2145,8 @@ $a->strings["This data is required for communication and is passed on to the nod
 $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. Deletion of the data will also be requested from the nodes of the communication partners."] = "In qualsiasi momento un utente autenticato può esportare i dati del suo account dalle <a href=\"%1\$s/settings/uexport\">impostazioni dell'account</a>. Se l'utente vuole cancellare il suo account lo può fare da <a href=\"%1\$s/removeme\">%1\$s/removeme. L'eliminazione dell'account sarà permanente. L'eliminazione dei dati sarà altresì richiesta ai nodi che partecipano alle comunicazioni.";
 $a->strings["Privacy Statement"] = "Note sulla Privacy";
 $a->strings["This entry was edited"] = "Questa voce è stata modificata";
-$a->strings["Remove from your stream"] = "Rimuovi dal tuo stream";
+$a->strings["Delete globally"] = "Rimuovi globalmente";
+$a->strings["Remove locally"] = "Rimuovi localmente";
 $a->strings["save to folder"] = "salva nella cartella";
 $a->strings["I will attend"] = "Parteciperò";
 $a->strings["I will not attend"] = "Non parteciperò";
@@ -2182,5 +2183,5 @@ $a->strings["Delete this item?"] = "Cancellare questo elemento?";
 $a->strings["show fewer"] = "mostra di meno";
 $a->strings["No system theme config value set."] = "Nessun tema di sistema impostato.";
 $a->strings["toggle mobile"] = "commuta tema mobile";
-$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = "%s: Aggiornamento author-id e owner-id nelle tabelle item e thread";
 $a->strings["Update %s failed. See error logs."] = "aggiornamento %s fallito. Guarda i log di errore.";
+$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = "%s: Aggiornamento author-id e owner-id nelle tabelle item e thread";
index 204ab7bb494aa05fe8291c754e0a84f52fd2a658..729f918b04a85ed28042c4eeb6c7e78a791f2f96 100644 (file)
@@ -19,7 +19,7 @@ msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-06-02 08:49+0200\n"
-"PO-Revision-Date: 2018-06-03 14:31+0000\n"
+"PO-Revision-Date: 2018-06-06 18:50+0000\n"
 "Last-Translator: Pascal <pascal.deklerck@gmail.com>\n"
 "Language-Team: Dutch (http://www.transifex.com/Friendica/friendica/language/nl/)\n"
 "MIME-Version: 1.0\n"
@@ -8061,7 +8061,7 @@ msgstr "seconde"
 
 #: src/Util/Temporal.php:309
 msgid "seconds"
-msgstr "secondes"
+msgstr "seconden"
 
 #: src/Util/Temporal.php:318
 #, php-format
index 0f4f19238f638ee7329b03c8f624dd1e0837b30f..3eae4f1bcf83fc80af7895722a770e18211cce6e 100644 (file)
@@ -1830,7 +1830,7 @@ $a->strings["hours"] = "uren";
 $a->strings["minute"] = "minuut";
 $a->strings["minutes"] = "minuten";
 $a->strings["second"] = "seconde";
-$a->strings["seconds"] = "secondes";
+$a->strings["seconds"] = "seconden";
 $a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden";
 $a->strings["view full size"] = "Volledig formaat";
 $a->strings["Image/photo"] = "Afbeelding/foto";
index f2669ebe1d873933195087dfba6ac4c4e8b0be77..22455f2dc46f31fff99aa8cd06bb1c962d0978bc 100644 (file)
@@ -38,8 +38,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-20 14:22+0200\n"
-"PO-Revision-Date: 2018-05-24 16:34+0000\n"
+"POT-Creation-Date: 2018-06-02 08:49+0200\n"
+"PO-Revision-Date: 2018-06-07 20:38+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"
@@ -312,7 +312,7 @@ msgstr "'%1$s' możesz zdecydować o przedłużeniu tego w dwukierunkową lub ba
 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:44
+#: include/enotify.php:360 mod/removeme.php:45
 msgid "[Friendica System Notify]"
 msgstr "[Powiadomienie Systemu Friendica]"
 
@@ -340,29 +340,6 @@ msgstr "Pełna nazwa:\t%1$s \\nSite Lokalizacja:\t%2$s\\nLogin użytkownika: \t%
 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/dba.php:59
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Nie można zlokalizować serwera DNS dla bazy danych '%s'"
-
 #: include/api.php:1202
 #, php-format
 msgid "Daily posting limit of %d post reached. The post was rejected."
@@ -387,93 +364,93 @@ 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:4522 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:4521 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:710 mod/photos.php:1137
+#: mod/photos.php:1154 mod/photos.php:1678 src/Model/User.php:555
+#: src/Model/User.php:563 src/Model/User.php:571
 msgid "Profile Photos"
 msgstr "Zdjęcie profilowe"
 
-#: include/conversation.php:144 include/conversation.php:282
-#: include/text.php:1749 src/Model/Item.php:1970
+#: include/conversation.php:144 include/conversation.php:279
+#: include/text.php:1749 src/Model/Item.php:2002
 msgid "event"
 msgstr "wydarzenie"
 
 #: include/conversation.php:147 include/conversation.php:157
-#: include/conversation.php:285 include/conversation.php:294
-#: mod/subthread.php:97 mod/tagger.php:72 src/Model/Item.php:1968
+#: include/conversation.php:282 include/conversation.php:291
+#: mod/subthread.php:101 mod/tagger.php:72 src/Model/Item.php:2000
 #: src/Protocol/Diaspora.php:1957
 msgid "status"
 msgstr "status"
 
-#: include/conversation.php:152 include/conversation.php:290
-#: include/text.php:1751 mod/subthread.php:97 mod/tagger.php:72
-#: src/Model/Item.php:1968
+#: include/conversation.php:152 include/conversation.php:287
+#: include/text.php:1751 mod/subthread.php:101 mod/tagger.php:72
+#: src/Model/Item.php:2000
 msgid "photo"
 msgstr "zdjęcie"
 
-#: include/conversation.php:164 src/Model/Item.php:1841
+#: include/conversation.php:164 src/Model/Item.php:1873
 #: src/Protocol/Diaspora.php:1953
 #, php-format
 msgid "%1$s likes %2$s's %3$s"
 msgstr "%1$s lubi to %2$s's %3$s"
 
-#: include/conversation.php:167 src/Model/Item.php:1846
+#: include/conversation.php:166 src/Model/Item.php:1878
 #, php-format
 msgid "%1$s doesn't like %2$s's %3$s"
 msgstr "%1$s nie lubi %2$s's %3$s"
 
-#: include/conversation.php:170
+#: include/conversation.php:168
 #, php-format
 msgid "%1$s attends %2$s's %3$s"
 msgstr "%1$sbierze udział w %2$s's%3$s "
 
-#: include/conversation.php:173
+#: include/conversation.php:170
 #, php-format
 msgid "%1$s doesn't attend %2$s's %3$s"
 msgstr "%1$s nie uczestniczy %2$s 's %3$s"
 
-#: include/conversation.php:176
+#: include/conversation.php:172
 #, php-format
 msgid "%1$s attends maybe %2$s's %3$s"
 msgstr "%1$s może bierze udział %2$s 's %3$s"
 
-#: include/conversation.php:209
+#: include/conversation.php:206
 #, php-format
 msgid "%1$s is now friends with %2$s"
 msgstr "%1$s jest teraz znajomym z %2$s"
 
-#: include/conversation.php:250
+#: include/conversation.php:247
 #, php-format
 msgid "%1$s poked %2$s"
 msgstr "%1$s zaczepił Cię %2$s"
 
-#: include/conversation.php:304 mod/tagger.php:110
+#: include/conversation.php:301 mod/tagger.php:110
 #, php-format
 msgid "%1$s tagged %2$s's %3$s with %4$s"
 msgstr "%1$s zaznaczył %2$s'go %3$s przy użyciu %4$s"
 
-#: include/conversation.php:331
+#: include/conversation.php:328
 msgid "post/item"
 msgstr "stanowisko/pozycja"
 
-#: include/conversation.php:332
+#: include/conversation.php:329
 #, 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:608 mod/photos.php:1501 mod/profiles.php:355
+#: include/conversation.php:609 mod/photos.php:1495 mod/profiles.php:355
 msgid "Likes"
 msgstr "Lubię to"
 
-#: include/conversation.php:608 mod/photos.php:1501 mod/profiles.php:359
+#: include/conversation.php:609 mod/photos.php:1495 mod/profiles.php:359
 msgid "Dislikes"
 msgstr "Nie lubię tego"
 
-#: include/conversation.php:609 include/conversation.php:1639
-#: mod/photos.php:1502
+#: include/conversation.php:610 include/conversation.php:1638
+#: mod/photos.php:1496
 msgid "Attending"
 msgid_plural "Attending"
 msgstr[0] ""
@@ -481,349 +458,348 @@ msgstr[1] ""
 msgstr[2] ""
 msgstr[3] ""
 
-#: include/conversation.php:609 mod/photos.php:1502
+#: include/conversation.php:610 mod/photos.php:1496
 msgid "Not attending"
 msgstr "Nie uczestniczyłem"
 
-#: include/conversation.php:609 mod/photos.php:1502
+#: include/conversation.php:610 mod/photos.php:1496
 msgid "Might attend"
 msgstr "Może wziąć udział"
 
-#: include/conversation.php:721 mod/photos.php:1569 src/Object/Post.php:192
+#: include/conversation.php:722 mod/photos.php:1563 src/Object/Post.php:192
 msgid "Select"
 msgstr "Wybierz"
 
-#: include/conversation.php:722 mod/photos.php:1570 mod/contacts.php:830
-#: mod/contacts.php:1035 mod/admin.php:1827 mod/settings.php:730
-#: src/Object/Post.php:187
+#: include/conversation.php:723 mod/contacts.php:830 mod/contacts.php:1035
+#: mod/admin.php:1832 mod/photos.php:1564 mod/settings.php:730
 msgid "Delete"
 msgstr "Usuń"
 
-#: include/conversation.php:760 src/Object/Post.php:371
+#: include/conversation.php:761 src/Object/Post.php:371
 #: src/Object/Post.php:372
 #, php-format
 msgid "View %s's profile @ %s"
 msgstr "Pokaż %s's profil @ %s"
 
-#: include/conversation.php:772 src/Object/Post.php:359
+#: include/conversation.php:773 src/Object/Post.php:359
 msgid "Categories:"
 msgstr "Kategorie:"
 
-#: include/conversation.php:773 src/Object/Post.php:360
+#: include/conversation.php:774 src/Object/Post.php:360
 msgid "Filed under:"
 msgstr "Zapisano w:"
 
-#: include/conversation.php:780 src/Object/Post.php:385
+#: include/conversation.php:781 src/Object/Post.php:385
 #, php-format
 msgid "%s from %s"
 msgstr "%s od %s"
 
-#: include/conversation.php:795
+#: include/conversation.php:796
 msgid "View in context"
 msgstr "Zobacz w kontekście"
 
-#: include/conversation.php:797 include/conversation.php:1312
-#: mod/wallmessage.php:145 mod/editpost.php:125 mod/photos.php:1473
-#: mod/message.php:245 mod/message.php:414 src/Object/Post.php:410
+#: include/conversation.php:798 include/conversation.php:1313
+#: mod/wallmessage.php:145 mod/editpost.php:125 mod/message.php:245
+#: mod/message.php:414 mod/photos.php:1467 src/Object/Post.php:410
 msgid "Please wait"
 msgstr "Proszę czekać"
 
-#: include/conversation.php:868
+#: include/conversation.php:869
 msgid "remove"
 msgstr "usuń"
 
-#: include/conversation.php:872
+#: include/conversation.php:873
 msgid "Delete Selected Items"
 msgstr "Usuń zaznaczone elementy"
 
-#: include/conversation.php:1017 view/theme/frio/theme.php:352
+#: include/conversation.php:1018 view/theme/frio/theme.php:352
 msgid "Follow Thread"
 msgstr "Śledź wątek"
 
-#: include/conversation.php:1018 src/Model/Contact.php:662
+#: include/conversation.php:1019 src/Model/Contact.php:662
 msgid "View Status"
 msgstr "Zobacz status"
 
-#: include/conversation.php:1019 include/conversation.php:1035
+#: include/conversation.php:1020 include/conversation.php:1036
 #: mod/allfriends.php:73 mod/suggest.php:82 mod/match.php:89
 #: mod/directory.php:159 mod/dirfind.php:217 src/Model/Contact.php:602
 #: src/Model/Contact.php:615 src/Model/Contact.php:663
 msgid "View Profile"
 msgstr "Zobacz profil"
 
-#: include/conversation.php:1020 src/Model/Contact.php:664
+#: include/conversation.php:1021 src/Model/Contact.php:664
 msgid "View Photos"
 msgstr "Zobacz zdjęcia"
 
-#: include/conversation.php:1021 src/Model/Contact.php:665
+#: include/conversation.php:1022 src/Model/Contact.php:665
 msgid "Network Posts"
 msgstr "Wiadomości sieciowe"
 
-#: include/conversation.php:1022 src/Model/Contact.php:666
+#: include/conversation.php:1023 src/Model/Contact.php:666
 msgid "View Contact"
 msgstr "Pokaż kontakt"
 
-#: include/conversation.php:1023 src/Model/Contact.php:668
+#: include/conversation.php:1024 src/Model/Contact.php:668
 msgid "Send PM"
 msgstr "Wyślij prywatną wiadomość"
 
-#: include/conversation.php:1027 src/Model/Contact.php:669
+#: include/conversation.php:1028 src/Model/Contact.php:669
 msgid "Poke"
 msgstr "Zaczepka"
 
-#: include/conversation.php:1032 mod/allfriends.php:74 mod/suggest.php:83
+#: include/conversation.php:1033 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:616
 msgid "Connect/Follow"
 msgstr "Połącz/Obserwuj"
 
-#: include/conversation.php:1151
+#: include/conversation.php:1152
 #, php-format
 msgid "%s likes this."
 msgstr "%s lubi to."
 
-#: include/conversation.php:1154
+#: include/conversation.php:1155
 #, php-format
 msgid "%s doesn't like this."
 msgstr "%s nie lubi tego."
 
-#: include/conversation.php:1157
+#: include/conversation.php:1158
 #, php-format
 msgid "%s attends."
 msgstr "%s uczestniczy."
 
-#: include/conversation.php:1160
+#: include/conversation.php:1161
 #, php-format
 msgid "%s doesn't attend."
 msgstr "%s nie uczestniczy."
 
-#: include/conversation.php:1163
+#: include/conversation.php:1164
 #, php-format
 msgid "%s attends maybe."
 msgstr "%s może bierze udział."
 
-#: include/conversation.php:1174
+#: include/conversation.php:1175
 msgid "and"
 msgstr "i"
 
-#: include/conversation.php:1180
+#: include/conversation.php:1181
 #, php-format
 msgid "and %d other people"
 msgstr "i %d inni ludzie"
 
-#: include/conversation.php:1189
+#: include/conversation.php:1190
 #, 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:1190
+#: include/conversation.php:1191
 #, php-format
 msgid "%s like this."
 msgstr "%s lubię to."
 
-#: include/conversation.php:1193
+#: include/conversation.php:1194
 #, 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:1194
+#: include/conversation.php:1195
 #, php-format
 msgid "%s don't like this."
 msgstr "%s nie lubię tego."
 
-#: include/conversation.php:1197
+#: include/conversation.php:1198
 #, php-format
 msgid "<span  %1$s>%2$d people</span> attend"
 msgstr "<span  %1$s>%2$dosoby</span> uczestniczą"
 
-#: include/conversation.php:1198
+#: include/conversation.php:1199
 #, php-format
 msgid "%s attend."
 msgstr "%suczestniczy"
 
-#: include/conversation.php:1201
+#: include/conversation.php:1202
 #, 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:1202
+#: include/conversation.php:1203
 #, php-format
 msgid "%s don't attend."
 msgstr "%s nie uczestnicz"
 
-#: include/conversation.php:1205
+#: include/conversation.php:1206
 #, php-format
 msgid "<span  %1$s>%2$d people</span> attend maybe"
 msgstr "<span  %1$s>%2$dprzyjaciele</span>mogą uczestniczyć "
 
-#: include/conversation.php:1206
+#: include/conversation.php:1207
 #, php-format
 msgid "%s attend maybe."
 msgstr "%sbyć może uczestniczyć. "
 
-#: include/conversation.php:1236 include/conversation.php:1252
+#: include/conversation.php:1237 include/conversation.php:1253
 msgid "Visible to <strong>everybody</strong>"
 msgstr "Widoczne dla <strong>wszystkich</strong>"
 
-#: include/conversation.php:1237 include/conversation.php:1253
+#: include/conversation.php:1238 include/conversation.php:1254
 #: mod/wallmessage.php:120 mod/wallmessage.php:127 mod/message.php:181
 #: mod/message.php:188 mod/message.php:324 mod/message.php:331
 msgid "Please enter a link URL:"
 msgstr "Proszę wpisać adres URL:"
 
-#: include/conversation.php:1238 include/conversation.php:1254
+#: include/conversation.php:1239 include/conversation.php:1255
 msgid "Please enter a video link/URL:"
 msgstr "Podaj link do filmu"
 
-#: include/conversation.php:1239 include/conversation.php:1255
+#: include/conversation.php:1240 include/conversation.php:1256
 msgid "Please enter an audio link/URL:"
 msgstr "Podaj link do muzyki"
 
-#: include/conversation.php:1240 include/conversation.php:1256
+#: include/conversation.php:1241 include/conversation.php:1257
 msgid "Tag term:"
 msgstr "Termin tagu:"
 
-#: include/conversation.php:1241 include/conversation.php:1257
+#: include/conversation.php:1242 include/conversation.php:1258
 #: mod/filer.php:34
 msgid "Save to Folder:"
 msgstr "Zapisz w folderze:"
 
-#: include/conversation.php:1242 include/conversation.php:1258
+#: include/conversation.php:1243 include/conversation.php:1259
 msgid "Where are you right now?"
 msgstr "Gdzie teraz jesteś?"
 
-#: include/conversation.php:1243
+#: include/conversation.php:1244
 msgid "Delete item(s)?"
 msgstr "Usunąć pozycję (pozycje)?"
 
-#: include/conversation.php:1290
+#: include/conversation.php:1291
 msgid "New Post"
 msgstr "Nowy Post"
 
-#: include/conversation.php:1293
+#: include/conversation.php:1294
 msgid "Share"
 msgstr "Podziel się"
 
-#: include/conversation.php:1294 mod/wallmessage.php:143 mod/editpost.php:111
+#: include/conversation.php:1295 mod/wallmessage.php:143 mod/editpost.php:111
 #: mod/message.php:243 mod/message.php:411
 msgid "Upload photo"
 msgstr "Wyślij zdjęcie"
 
-#: include/conversation.php:1295 mod/editpost.php:112
+#: include/conversation.php:1296 mod/editpost.php:112
 msgid "upload photo"
 msgstr "dodaj zdjęcie"
 
-#: include/conversation.php:1296 mod/editpost.php:113
+#: include/conversation.php:1297 mod/editpost.php:113
 msgid "Attach file"
 msgstr "Załącz plik"
 
-#: include/conversation.php:1297 mod/editpost.php:114
+#: include/conversation.php:1298 mod/editpost.php:114
 msgid "attach file"
 msgstr "załącz plik"
 
-#: include/conversation.php:1298 mod/wallmessage.php:144 mod/editpost.php:115
+#: include/conversation.php:1299 mod/wallmessage.php:144 mod/editpost.php:115
 #: mod/message.php:244 mod/message.php:412
 msgid "Insert web link"
 msgstr "Wstaw link"
 
-#: include/conversation.php:1299 mod/editpost.php:116
+#: include/conversation.php:1300 mod/editpost.php:116
 msgid "web link"
 msgstr "Adres www"
 
-#: include/conversation.php:1300 mod/editpost.php:117
+#: include/conversation.php:1301 mod/editpost.php:117
 msgid "Insert video link"
 msgstr "Wstaw link do filmu"
 
-#: include/conversation.php:1301 mod/editpost.php:118
+#: include/conversation.php:1302 mod/editpost.php:118
 msgid "video link"
 msgstr "link do filmu"
 
-#: include/conversation.php:1302 mod/editpost.php:119
+#: include/conversation.php:1303 mod/editpost.php:119
 msgid "Insert audio link"
 msgstr "Wstaw link do audio"
 
-#: include/conversation.php:1303 mod/editpost.php:120
+#: include/conversation.php:1304 mod/editpost.php:120
 msgid "audio link"
 msgstr "Link do nagrania audio"
 
-#: include/conversation.php:1304 mod/editpost.php:121
+#: include/conversation.php:1305 mod/editpost.php:121
 msgid "Set your location"
 msgstr "Ustaw swoją lokalizację"
 
-#: include/conversation.php:1305 mod/editpost.php:122
+#: include/conversation.php:1306 mod/editpost.php:122
 msgid "set location"
 msgstr "wybierz lokalizację"
 
-#: include/conversation.php:1306 mod/editpost.php:123
+#: include/conversation.php:1307 mod/editpost.php:123
 msgid "Clear browser location"
 msgstr "Wyczyść lokalizację przeglądarki"
 
-#: include/conversation.php:1307 mod/editpost.php:124
+#: include/conversation.php:1308 mod/editpost.php:124
 msgid "clear location"
 msgstr "wyczyść lokalizację"
 
-#: include/conversation.php:1309 mod/editpost.php:138
+#: include/conversation.php:1310 mod/editpost.php:138
 msgid "Set title"
 msgstr "Podaj tytuł"
 
-#: include/conversation.php:1311 mod/editpost.php:140
+#: include/conversation.php:1312 mod/editpost.php:140
 msgid "Categories (comma-separated list)"
 msgstr "Kategorie (lista słów oddzielonych przecinkiem)"
 
-#: include/conversation.php:1313 mod/editpost.php:126
+#: include/conversation.php:1314 mod/editpost.php:126
 msgid "Permission settings"
 msgstr "Ustawienia uprawnień"
 
-#: include/conversation.php:1314 mod/editpost.php:155
+#: include/conversation.php:1315 mod/editpost.php:155
 msgid "permissions"
 msgstr "zezwolenia"
 
-#: include/conversation.php:1322 mod/editpost.php:135
+#: include/conversation.php:1323 mod/editpost.php:135
 msgid "Public post"
 msgstr "Publiczny post"
 
-#: include/conversation.php:1326 mod/editpost.php:146 mod/photos.php:1492
-#: mod/photos.php:1531 mod/photos.php:1604 mod/events.php:528
+#: include/conversation.php:1327 mod/editpost.php:146 mod/events.php:529
+#: mod/photos.php:1486 mod/photos.php:1525 mod/photos.php:1598
 #: src/Object/Post.php:813
 msgid "Preview"
 msgstr "Podgląd"
 
-#: include/conversation.php:1330 include/items.php:387 mod/fbrowser.php:103
+#: include/conversation.php:1331 include/items.php:388 mod/fbrowser.php:103
 #: mod/fbrowser.php:134 mod/suggest.php:41 mod/tagrm.php:19 mod/tagrm.php:99
-#: mod/editpost.php:149 mod/photos.php:248 mod/photos.php:324
-#: mod/videos.php:147 mod/contacts.php:475 mod/unfollow.php:117
+#: mod/editpost.php:149 mod/contacts.php:475 mod/unfollow.php:117
 #: mod/follow.php:161 mod/message.php:141 mod/dfrn_request.php:658
-#: mod/settings.php:670 mod/settings.php:696
+#: mod/photos.php:248 mod/photos.php:317 mod/settings.php:670
+#: mod/settings.php:696 mod/videos.php:147
 msgid "Cancel"
 msgstr "Anuluj"
 
-#: include/conversation.php:1335
+#: include/conversation.php:1336
 msgid "Post to Groups"
 msgstr "Opublikuj w grupach"
 
-#: include/conversation.php:1336
+#: include/conversation.php:1337
 msgid "Post to Contacts"
 msgstr "Wstaw do kontaktów"
 
-#: include/conversation.php:1337
+#: include/conversation.php:1338
 msgid "Private post"
 msgstr "Prywatne posty"
 
-#: include/conversation.php:1342 mod/editpost.php:153
+#: include/conversation.php:1343 mod/editpost.php:153
 #: src/Model/Profile.php:338
 msgid "Message"
 msgstr "Wiadomość"
 
-#: include/conversation.php:1343 mod/editpost.php:154
+#: include/conversation.php:1344 mod/editpost.php:154
 msgid "Browser"
 msgstr "Przeglądarka"
 
-#: include/conversation.php:1610
+#: include/conversation.php:1609
 msgid "View all"
 msgstr "Pokaż wszystkie"
 
-#: include/conversation.php:1633
+#: include/conversation.php:1632
 msgid "Like"
 msgid_plural "Likes"
 msgstr[0] ""
@@ -831,7 +807,7 @@ msgstr[1] ""
 msgstr[2] ""
 msgstr[3] ""
 
-#: include/conversation.php:1636
+#: include/conversation.php:1635
 msgid "Dislike"
 msgid_plural "Dislikes"
 msgstr[0] ""
@@ -839,7 +815,7 @@ msgstr[1] ""
 msgstr[2] ""
 msgstr[3] ""
 
-#: include/conversation.php:1642
+#: include/conversation.php:1641
 msgid "Not Attending"
 msgid_plural "Not Attending"
 msgstr[0] ""
@@ -847,7 +823,7 @@ msgstr[1] ""
 msgstr[2] ""
 msgstr[3] ""
 
-#: include/conversation.php:1645 src/Content/ContactSelector.php:125
+#: include/conversation.php:1644 src/Content/ContactSelector.php:125
 msgid "Undecided"
 msgid_plural "Undecided"
 msgstr[0] ""
@@ -855,17 +831,17 @@ msgstr[1] ""
 msgstr[2] ""
 msgstr[3] ""
 
-#: include/items.php:342 mod/notice.php:22 mod/viewsrc.php:21
-#: mod/admin.php:277 mod/admin.php:1883 mod/admin.php:2131 mod/display.php:72
+#: include/items.php:343 mod/notice.php:22 mod/viewsrc.php:21
+#: mod/admin.php:277 mod/admin.php:1888 mod/admin.php:2136 mod/display.php:72
 #: mod/display.php:255 mod/display.php:356
 msgid "Item not found."
 msgstr "Element nie znaleziony."
 
-#: include/items.php:382
+#: include/items.php:383
 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
+#: include/items.php:385 mod/api.php:110 mod/suggest.php:38
 #: mod/contacts.php:472 mod/follow.php:150 mod/message.php:138
 #: mod/dfrn_request.php:648 mod/profiles.php:543 mod/profiles.php:546
 #: mod/profiles.php:568 mod/register.php:238 mod/settings.php:1094
@@ -876,75 +852,94 @@ msgstr "Czy na pewno chcesz usunąć ten element?"
 msgid "Yes"
 msgstr "Tak"
 
-#: include/items.php:401 mod/allfriends.php:21 mod/api.php:35 mod/api.php:40
+#: include/items.php:402 mod/allfriends.php:21 mod/api.php:35 mod/api.php:40
 #: mod/attach.php:38 mod/common.php:26 mod/nogroup.php:28
 #: mod/repair_ostatus.php:13 mod/suggest.php:60 mod/uimport.php:28
 #: 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/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/ostatus_subscribe.php:16 mod/profile_photo.php:30
+#: mod/editpost.php:18 mod/fsuggest.php:80 mod/cal.php:304
+#: mod/contacts.php:386 mod/delegate.php:25 mod/delegate.php:43
+#: mod/delegate.php:54 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/crepair.php:98 mod/message.php:59 mod/message.php:104 mod/group.php:26
-#: mod/dfrn_confirm.php:68 mod/item.php:160 mod/notifications.php:73
-#: mod/profiles.php:182 mod/profiles.php:513 mod/register.php:54
-#: mod/settings.php:43 mod/settings.php:142 mod/settings.php:659 index.php:436
+#: mod/follow.php:118 mod/invite.php:20 mod/invite.php:111 mod/crepair.php:98
+#: mod/message.php:59 mod/message.php:104 mod/dfrn_confirm.php:68
+#: mod/events.php:194 mod/group.php:26 mod/item.php:160 mod/network.php:32
+#: mod/notes.php:30 mod/notifications.php:73 mod/photos.php:174
+#: mod/photos.php:1039 mod/profiles.php:182 mod/profiles.php:513
+#: mod/register.php:54 mod/settings.php:43 mod/settings.php:142
+#: mod/settings.php:659 index.php:436
 msgid "Permission denied."
 msgstr "Brak uprawnień."
 
-#: include/items.php:471 src/Content/Feature.php:96
+#: include/items.php:472 src/Content/Feature.php:96
 msgid "Archives"
 msgstr "Archiwum"
 
-#: include/items.php:477 view/theme/vier/theme.php:258
+#: include/items.php:478 view/theme/vier/theme.php:258
 #: src/Content/ForumManager.php:130 src/Content/Widget.php:317
-#: src/Object/Post.php:438 src/App.php:525
+#: src/Object/Post.php:438 src/App.php:527
 msgid "show more"
 msgstr "Pokaż więcej"
 
-#: include/text.php:303
+#: 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:449
+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:304
+#: include/text.php:303
 msgid "older"
 msgstr "starsze"
 
-#: include/text.php:309
+#: include/text.php:308
 msgid "first"
 msgstr "pierwszy"
 
-#: include/text.php:310
+#: include/text.php:309
 msgid "prev"
 msgstr "poprzedni"
 
-#: include/text.php:344
+#: include/text.php:343
 msgid "next"
 msgstr "następny"
 
-#: include/text.php:345
+#: include/text.php:344
 msgid "last"
 msgstr "ostatni"
 
-#: include/text.php:399
+#: include/text.php:398
 msgid "Loading more entries..."
 msgstr "Ładuję więcej wpisów..."
 
-#: include/text.php:400
+#: include/text.php:399
 msgid "The end"
 msgstr "Koniec"
 
-#: include/text.php:885
+#: include/text.php:884
 msgid "No contacts"
 msgstr "Brak kontaktów"
 
-#: include/text.php:909
+#: include/text.php:908
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
@@ -953,266 +948,266 @@ msgstr[1] "%d kontaktów"
 msgstr[2] "%d kontakty"
 msgstr[3] "%d Kontakty"
 
-#: include/text.php:922
+#: include/text.php:921
 msgid "View Contacts"
 msgstr "Widok kontaktów"
 
-#: include/text.php:1011 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 "Zapisz"
 
-#: include/text.php:1011
+#: include/text.php:1010
 msgid "Follow"
 msgstr "Śledź"
 
-#: include/text.php:1017 mod/search.php:155 src/Content/Nav.php:142
+#: include/text.php:1016 mod/search.php:155 src/Content/Nav.php:142
 msgid "Search"
 msgstr "Szukaj"
 
-#: include/text.php:1020 src/Content/Nav.php:58
+#: include/text.php:1019 src/Content/Nav.php:58
 msgid "@name, !forum, #tags, content"
 msgstr "@imię, !forum, #tagi, treść"
 
-#: include/text.php:1026 src/Content/Nav.php:145
+#: include/text.php:1025 src/Content/Nav.php:145
 msgid "Full Text"
 msgstr "Pełny tekst"
 
-#: include/text.php:1027 src/Content/Widget/TagCloud.php:54
+#: include/text.php:1026 src/Content/Widget/TagCloud.php:54
 #: src/Content/Nav.php:146
 msgid "Tags"
 msgstr "Tagi"
 
-#: include/text.php:1028 mod/viewcontacts.php:131 mod/contacts.php:814
+#: 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:213 src/Model/Profile.php:955 src/Model/Profile.php:958
 msgid "Contacts"
 msgstr "Kontakty"
 
-#: include/text.php:1031 view/theme/vier/theme.php:253
+#: include/text.php:1030 view/theme/vier/theme.php:253
 #: src/Content/ForumManager.php:125 src/Content/Nav.php:151
 msgid "Forums"
 msgstr "Fora"
 
-#: include/text.php:1075
+#: include/text.php:1074
 msgid "poke"
 msgstr "zaczep"
 
-#: include/text.php:1075
+#: include/text.php:1074
 msgid "poked"
 msgstr "zaczepił Cię"
 
-#: include/text.php:1076
+#: include/text.php:1075
 msgid "ping"
 msgstr "ping"
 
-#: include/text.php:1076
+#: include/text.php:1075
 msgid "pinged"
 msgstr "napięcia"
 
-#: include/text.php:1077
+#: include/text.php:1076
 msgid "prod"
 msgstr "zaczep"
 
-#: include/text.php:1077
+#: include/text.php:1076
 msgid "prodded"
 msgstr "zaczepiać"
 
-#: include/text.php:1078
+#: include/text.php:1077
 msgid "slap"
 msgstr "klask"
 
-#: include/text.php:1078
+#: include/text.php:1077
 msgid "slapped"
 msgstr "spoliczkowany"
 
-#: include/text.php:1079
+#: include/text.php:1078
 msgid "finger"
 msgstr "wskaż"
 
-#: include/text.php:1079
+#: include/text.php:1078
 msgid "fingered"
 msgstr "dotknięty"
 
-#: include/text.php:1080
+#: include/text.php:1079
 msgid "rebuff"
 msgstr "odrzuć"
 
-#: include/text.php:1080
+#: include/text.php:1079
 msgid "rebuffed"
 msgstr "odrzucony"
 
-#: include/text.php:1094 mod/settings.php:935 src/Model/Event.php:379
+#: include/text.php:1093 mod/settings.php:935 src/Model/Event.php:379
 msgid "Monday"
 msgstr "Poniedziałek"
 
-#: include/text.php:1094 src/Model/Event.php:380
+#: include/text.php:1093 src/Model/Event.php:380
 msgid "Tuesday"
 msgstr "Wtorek"
 
-#: include/text.php:1094 src/Model/Event.php:381
+#: include/text.php:1093 src/Model/Event.php:381
 msgid "Wednesday"
 msgstr "Środa"
 
-#: include/text.php:1094 src/Model/Event.php:382
+#: include/text.php:1093 src/Model/Event.php:382
 msgid "Thursday"
 msgstr "Czwartek"
 
-#: include/text.php:1094 src/Model/Event.php:383
+#: include/text.php:1093 src/Model/Event.php:383
 msgid "Friday"
 msgstr "Piątek"
 
-#: include/text.php:1094 src/Model/Event.php:384
+#: include/text.php:1093 src/Model/Event.php:384
 msgid "Saturday"
 msgstr "Sobota"
 
-#: include/text.php:1094 mod/settings.php:935 src/Model/Event.php:378
+#: include/text.php:1093 mod/settings.php:935 src/Model/Event.php:378
 msgid "Sunday"
 msgstr "Niedziela"
 
-#: include/text.php:1098 src/Model/Event.php:399
+#: include/text.php:1097 src/Model/Event.php:399
 msgid "January"
 msgstr "Styczeń"
 
-#: include/text.php:1098 src/Model/Event.php:400
+#: include/text.php:1097 src/Model/Event.php:400
 msgid "February"
 msgstr "Luty"
 
-#: include/text.php:1098 src/Model/Event.php:401
+#: include/text.php:1097 src/Model/Event.php:401
 msgid "March"
 msgstr "Marzec"
 
-#: include/text.php:1098 src/Model/Event.php:402
+#: include/text.php:1097 src/Model/Event.php:402
 msgid "April"
 msgstr "Kwiecień"
 
-#: include/text.php:1098 include/text.php:1115 src/Model/Event.php:390
+#: include/text.php:1097 include/text.php:1114 src/Model/Event.php:390
 #: src/Model/Event.php:403
 msgid "May"
 msgstr "Maj"
 
-#: include/text.php:1098 src/Model/Event.php:404
+#: include/text.php:1097 src/Model/Event.php:404
 msgid "June"
 msgstr "Czerwiec"
 
-#: include/text.php:1098 src/Model/Event.php:405
+#: include/text.php:1097 src/Model/Event.php:405
 msgid "July"
 msgstr "Lipiec"
 
-#: include/text.php:1098 src/Model/Event.php:406
+#: include/text.php:1097 src/Model/Event.php:406
 msgid "August"
 msgstr "Sierpień"
 
-#: include/text.php:1098 src/Model/Event.php:407
+#: include/text.php:1097 src/Model/Event.php:407
 msgid "September"
 msgstr "Wrzesień"
 
-#: include/text.php:1098 src/Model/Event.php:408
+#: include/text.php:1097 src/Model/Event.php:408
 msgid "October"
 msgstr "Październik"
 
-#: include/text.php:1098 src/Model/Event.php:409
+#: include/text.php:1097 src/Model/Event.php:409
 msgid "November"
 msgstr "Listopad"
 
-#: include/text.php:1098 src/Model/Event.php:410
+#: include/text.php:1097 src/Model/Event.php:410
 msgid "December"
 msgstr "Grudzień"
 
-#: include/text.php:1112 src/Model/Event.php:371
+#: include/text.php:1111 src/Model/Event.php:371
 msgid "Mon"
 msgstr "Pon"
 
-#: include/text.php:1112 src/Model/Event.php:372
+#: include/text.php:1111 src/Model/Event.php:372
 msgid "Tue"
 msgstr "Wt"
 
-#: include/text.php:1112 src/Model/Event.php:373
+#: include/text.php:1111 src/Model/Event.php:373
 msgid "Wed"
 msgstr "Śr"
 
-#: include/text.php:1112 src/Model/Event.php:374
+#: include/text.php:1111 src/Model/Event.php:374
 msgid "Thu"
 msgstr "Czw"
 
-#: include/text.php:1112 src/Model/Event.php:375
+#: include/text.php:1111 src/Model/Event.php:375
 msgid "Fri"
 msgstr "Pt"
 
-#: include/text.php:1112 src/Model/Event.php:376
+#: include/text.php:1111 src/Model/Event.php:376
 msgid "Sat"
 msgstr "Sob"
 
-#: include/text.php:1112 src/Model/Event.php:370
+#: include/text.php:1111 src/Model/Event.php:370
 msgid "Sun"
 msgstr "Niedz"
 
-#: include/text.php:1115 src/Model/Event.php:386
+#: include/text.php:1114 src/Model/Event.php:386
 msgid "Jan"
 msgstr "Sty"
 
-#: include/text.php:1115 src/Model/Event.php:387
+#: include/text.php:1114 src/Model/Event.php:387
 msgid "Feb"
 msgstr "Lut"
 
-#: include/text.php:1115 src/Model/Event.php:388
+#: include/text.php:1114 src/Model/Event.php:388
 msgid "Mar"
 msgstr "Mar"
 
-#: include/text.php:1115 src/Model/Event.php:389
+#: include/text.php:1114 src/Model/Event.php:389
 msgid "Apr"
 msgstr "Kwi"
 
-#: include/text.php:1115 src/Model/Event.php:392
+#: include/text.php:1114 src/Model/Event.php:392
 msgid "Jul"
 msgstr "Lip"
 
-#: include/text.php:1115 src/Model/Event.php:393
+#: include/text.php:1114 src/Model/Event.php:393
 msgid "Aug"
 msgstr "Sie"
 
-#: include/text.php:1115
+#: include/text.php:1114
 msgid "Sep"
 msgstr "Wrz"
 
-#: include/text.php:1115 src/Model/Event.php:395
+#: include/text.php:1114 src/Model/Event.php:395
 msgid "Oct"
 msgstr "Paź"
 
-#: include/text.php:1115 src/Model/Event.php:396
+#: include/text.php:1114 src/Model/Event.php:396
 msgid "Nov"
 msgstr "Lis"
 
-#: include/text.php:1115 src/Model/Event.php:397
+#: include/text.php:1114 src/Model/Event.php:397
 msgid "Dec"
 msgstr "Gru"
 
-#: include/text.php:1255
+#: include/text.php:1254
 #, php-format
 msgid "Content warning: %s"
 msgstr "Ostrzeżenie o treści: %s"
 
-#: include/text.php:1325 mod/videos.php:380
+#: include/text.php:1324 mod/videos.php:380
 msgid "View Video"
 msgstr "Zobacz film"
 
-#: include/text.php:1342
+#: include/text.php:1341
 msgid "bytes"
 msgstr "bajty"
 
-#: include/text.php:1375 include/text.php:1386 include/text.php:1419
+#: include/text.php:1374 include/text.php:1385 include/text.php:1418
 msgid "Click to open/close"
 msgstr "Kliknij aby otworzyć/zamknąć"
 
-#: include/text.php:1534
+#: include/text.php:1533
 msgid "View on separate page"
 msgstr "Zobacz na oddzielnej stronie"
 
-#: include/text.php:1535
+#: include/text.php:1534
 msgid "view on separate page"
 msgstr "zobacz na oddzielnej stronie"
 
-#: include/text.php:1540 include/text.php:1547 src/Model/Event.php:594
+#: include/text.php:1539 include/text.php:1546 src/Model/Event.php:594
 msgid "link to source"
 msgstr "link do źródła"
 
@@ -1232,7 +1227,7 @@ msgstr[3] "komentarz"
 msgid "post"
 msgstr "post"
 
-#: include/text.php:1915
+#: include/text.php:1916
 msgid "Item filed"
 msgstr "Element złożony"
 
@@ -1318,8 +1313,8 @@ msgid "Photos"
 msgstr "Zdjęcia"
 
 #: mod/fbrowser.php:43 mod/fbrowser.php:68 mod/photos.php:194
-#: mod/photos.php:1062 mod/photos.php:1149 mod/photos.php:1166
-#: mod/photos.php:1659 mod/photos.php:1673 src/Model/Photo.php:244
+#: mod/photos.php:1050 mod/photos.php:1137 mod/photos.php:1154
+#: mod/photos.php:1653 mod/photos.php:1667 src/Model/Photo.php:244
 #: src/Model/Photo.php:253
 msgid "Contact Photos"
 msgstr "Zdjęcia kontaktu"
@@ -1389,7 +1384,7 @@ msgid ""
 " 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ę."
 
-#: mod/newmember.php:19 mod/admin.php:1935 mod/admin.php:2204
+#: mod/newmember.php:19 mod/admin.php:1940 mod/admin.php:2210
 #: mod/settings.php:124 view/theme/frio/theme.php:269 src/Content/Nav.php:207
 msgid "Settings"
 msgstr "Ustawienia"
@@ -1595,11 +1590,6 @@ msgstr "Ignoruj/Ukryj"
 msgid "Friend Suggestions"
 msgstr "Osoby, które możesz znać"
 
-#: 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ć]"
-
 #: mod/uimport.php:55 mod/register.php:192
 msgid ""
 "This site has exceeded the number of allowed daily account registrations. "
@@ -1672,11 +1662,11 @@ msgid "Select an identity to manage: "
 msgstr "Wybierz tożsamość do zarządzania:"
 
 #: mod/manage.php:184 mod/localtime.php:56 mod/poke.php:199
-#: 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/contacts.php:610 mod/events.php:530
-#: mod/invite.php:154 mod/crepair.php:148 mod/install.php:198
-#: mod/install.php:237 mod/message.php:246 mod/message.php:413
+#: mod/fsuggest.php:114 mod/contacts.php:610 mod/invite.php:154
+#: mod/crepair.php:148 mod/install.php:198 mod/install.php:237
+#: mod/message.php:246 mod/message.php:413 mod/events.php:531
+#: mod/photos.php:1068 mod/photos.php:1148 mod/photos.php:1439
+#: mod/photos.php:1485 mod/photos.php:1524 mod/photos.php:1597
 #: mod/profiles.php:579 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:804
@@ -1783,10 +1773,10 @@ msgstr "Wybierz, co chcesz zrobić"
 msgid "Make this post private"
 msgstr "Ustaw ten post jako prywatny"
 
-#: 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/directory.php:42 mod/community.php:27
-#: mod/dfrn_request.php:602 mod/display.php:203
+#: mod/probe.php:13 mod/viewcontacts.php:45 mod/webfinger.php:16
+#: mod/directory.php:42 mod/community.php:27 mod/dfrn_request.php:602
+#: mod/display.php:203 mod/photos.php:920 mod/search.php:98 mod/search.php:104
+#: mod/videos.php:199
 msgid "Public access denied."
 msgstr "Publiczny dostęp zabroniony"
 
@@ -1831,45 +1821,6 @@ msgstr "Rejestracja odwołana dla %s"
 msgid "Please login."
 msgstr "Proszę się zalogować."
 
-#: mod/search.php:37 mod/network.php:194
-msgid "Remove term"
-msgstr "Usuń wpis"
-
-#: mod/search.php:46 mod/network.php:201 src/Content/Feature.php:100
-msgid "Saved Searches"
-msgstr "Zapisywanie wyszukiwania"
-
-#: mod/search.php:105
-msgid "Only logged in users are permitted to perform a search."
-msgstr "Tylko zalogowani użytkownicy mogą wyszukiwać."
-
-#: mod/search.php:129
-msgid "Too Many Requests"
-msgstr "Zbyt dużo próśb"
-
-#: mod/search.php:130
-msgid "Only one search per minute is permitted for not logged in users."
-msgstr "Dla niezalogowanych użytkowników dozwolone jest tylko jedno wyszukiwanie na minutę."
-
-#: mod/search.php:228 mod/community.php:141
-msgid "No results."
-msgstr "Brak wyników."
-
-#: mod/search.php:234
-#, php-format
-msgid "Items tagged with: %s"
-msgstr "Przedmioty oznaczone tagiem: %s"
-
-#: mod/search.php:236 mod/contacts.php:819
-#, php-format
-msgid "Results for: %s"
-msgstr "Wyniki dla: %s"
-
-#: mod/subthread.php:113
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$skolejny %2$s %3$s "
-
 #: mod/tagrm.php:47
 msgid "Tag removed"
 msgstr "Tag usunięty"
@@ -1919,13 +1870,13 @@ msgstr "brak kontaktów"
 msgid "Access denied."
 msgstr "Brak dostępu"
 
-#: mod/wall_upload.php:186 mod/photos.php:763 mod/photos.php:766
-#: mod/photos.php:795 mod/profile_photo.php:153
+#: mod/wall_upload.php:186 mod/profile_photo.php:153 mod/photos.php:751
+#: mod/photos.php:754 mod/photos.php:783
 #, php-format
 msgid "Image exceeds size limit of %s"
 msgstr "Obraz przekracza limit rozmiaru wynoszący %s"
 
-#: mod/wall_upload.php:200 mod/photos.php:818 mod/profile_photo.php:162
+#: mod/wall_upload.php:200 mod/profile_photo.php:162 mod/photos.php:806
 msgid "Unable to process image."
 msgstr "Przetwarzanie obrazu nie powiodło się."
 
@@ -1934,7 +1885,7 @@ msgstr "Przetwarzanie obrazu nie powiodło się."
 msgid "Wall Photos"
 msgstr "Tablica zdjęć"
 
-#: mod/wall_upload.php:239 mod/photos.php:847 mod/profile_photo.php:307
+#: mod/wall_upload.php:239 mod/profile_photo.php:307 mod/photos.php:835
 msgid "Image upload failed."
 msgstr "Przesyłanie obrazu nie powiodło się"
 
@@ -2033,334 +1984,99 @@ msgstr "Zaproponuj znajomych"
 msgid "Suggest a friend for %s"
 msgstr "Zaproponuj znajomych dla %s"
 
-#: mod/notes.php:52 src/Model/Profile.php:944
-msgid "Personal Notes"
-msgstr "Notatki"
+#: mod/cal.php:142 mod/display.php:316 mod/profile.php:174
+msgid "Access to this profile has been restricted."
+msgstr "Dostęp do tego profilu został ograniczony."
 
-#: mod/photos.php:108 src/Model/Profile.php:905
-msgid "Photo Albums"
-msgstr "Albumy zdjęć"
+#: 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 "Wydarzenia"
 
-#: mod/photos.php:109 mod/photos.php:1713
-msgid "Recent Photos"
-msgstr "Ostatnio dodane zdjęcia"
+#: mod/cal.php:275 mod/events.php:392
+msgid "View"
+msgstr "Widok"
 
-#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715
-msgid "Upload New Photos"
-msgstr "Wyślij nowe zdjęcie"
+#: mod/cal.php:276 mod/events.php:394
+msgid "Previous"
+msgstr "Poprzedni"
 
-#: mod/photos.php:126 mod/settings.php:51
-msgid "everybody"
-msgstr "wszyscy"
+#: mod/cal.php:277 mod/install.php:156 mod/events.php:395
+msgid "Next"
+msgstr "Następny"
 
-#: mod/photos.php:184
-msgid "Contact information unavailable"
-msgstr "Informacje kontaktowe są niedostępne."
+#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412
+msgid "today"
+msgstr "dzisiaj"
 
-#: mod/photos.php:204
-msgid "Album not found."
-msgstr "Album nie znaleziony"
+#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304
+#: src/Model/Event.php:413
+msgid "month"
+msgstr "miesiąc"
 
-#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161
-msgid "Delete Album"
-msgstr "Usuń album"
+#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305
+#: src/Model/Event.php:414
+msgid "week"
+msgstr "tydzień"
 
-#: 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/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306
+#: src/Model/Event.php:415
+msgid "day"
+msgstr "dzień"
 
-#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446
-msgid "Delete Photo"
-msgstr "Usuń zdjęcie"
+#: mod/cal.php:284 mod/events.php:404
+msgid "list"
+msgstr "lista"
 
-#: mod/photos.php:319
-msgid "Do you really want to delete this photo?"
-msgstr "Czy na pewno chcesz usunąć to zdjęcie ?"
+#: mod/cal.php:297 src/Core/Console/NewPassword.php:73 src/Model/User.php:214
+msgid "User not found"
+msgstr "Użytkownik nie znaleziony"
 
-#: mod/photos.php:667
-msgid "a photo"
-msgstr "zdjęcie"
+#: mod/cal.php:313
+msgid "This calendar format is not supported"
+msgstr "Ten format kalendarza nie jest obsługiwany"
 
-#: 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/cal.php:315
+msgid "No exportable data found"
+msgstr "Nie znaleziono danych do eksportu"
 
-#: 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/cal.php:332
+msgid "calendar"
+msgstr "kalendarz"
 
-#: mod/photos.php:772
-msgid "Image file is missing"
-msgstr "Brak pliku obrazu"
+#: mod/contacts.php:71 mod/notifications.php:259 src/Model/Profile.php:516
+msgid "Network:"
+msgstr "Sieć:"
 
-#: 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/contacts.php:157
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
 
-#: mod/photos.php:803
-msgid "Image file is empty."
-msgstr "Plik obrazka jest pusty."
+#: mod/contacts.php:184 mod/contacts.php:400
+msgid "Could not access contact record."
+msgstr "Nie można uzyskać dostępu do rejestru kontaktów."
 
-#: mod/photos.php:940
-msgid "No photos selected"
-msgstr "Nie zaznaczono zdjęć"
+#: mod/contacts.php:194
+msgid "Could not locate selected profile."
+msgstr "Nie można znaleźć wybranego profilu."
 
-#: mod/photos.php:1036 mod/videos.php:309
-msgid "Access to this item is restricted."
-msgstr "Dostęp do tego obiektu jest ograniczony."
+#: mod/contacts.php:228
+msgid "Contact updated."
+msgstr "Kontakt zaktualizowany"
 
-#: mod/photos.php:1090
-msgid "Upload Photos"
-msgstr "Prześlij zdjęcia"
+#: mod/contacts.php:230 mod/dfrn_request.php:415
+msgid "Failed to update contact record."
+msgstr "Aktualizacja rekordu kontaktu nie powiodła się."
 
-#: mod/photos.php:1094 mod/photos.php:1156
-msgid "New album name: "
-msgstr "Nazwa nowego albumu:"
-
-#: mod/photos.php:1095
-msgid "or existing album name: "
-msgstr "lub istniejąca nazwa albumu:"
-
-#: mod/photos.php:1096
-msgid "Do not show a status post for this upload"
-msgstr "Nie pokazuj statusu postów dla tego wysłania"
-
-#: mod/photos.php:1098 mod/photos.php:1441 mod/events.php:533
-#: src/Core/ACL.php:318
-msgid "Permissions"
-msgstr "Uprawnienia"
-
-#: mod/photos.php:1106 mod/photos.php:1449 mod/settings.php:1218
-msgid "Show to Groups"
-msgstr "Pokaż Grupy"
-
-#: mod/photos.php:1107 mod/photos.php:1450 mod/settings.php:1219
-msgid "Show to Contacts"
-msgstr "Pokaż kontakty"
-
-#: mod/photos.php:1167
-msgid "Edit Album"
-msgstr "Edytuj album"
-
-#: mod/photos.php:1172
-msgid "Show Newest First"
-msgstr "Najpierw pokaż najnowsze"
-
-#: mod/photos.php:1174
-msgid "Show Oldest First"
-msgstr "Najpierw pokaż najstarsze"
-
-#: mod/photos.php:1195 mod/photos.php:1698
-msgid "View Photo"
-msgstr "Zobacz zdjęcie"
-
-#: mod/photos.php:1236
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Odmowa dostępu. Dostęp do tych danych może być ograniczony."
-
-#: mod/photos.php:1238
-msgid "Photo not available"
-msgstr "Zdjęcie niedostępne"
-
-#: mod/photos.php:1301
-msgid "View photo"
-msgstr "Zobacz zdjęcie"
-
-#: mod/photos.php:1301
-msgid "Edit photo"
-msgstr "Edytuj zdjęcie"
-
-#: mod/photos.php:1302
-msgid "Use as profile photo"
-msgstr "Ustaw jako zdjęcie profilowe"
-
-#: mod/photos.php:1308 src/Object/Post.php:149
-msgid "Private Message"
-msgstr "Wiadomość prywatna"
-
-#: mod/photos.php:1327
-msgid "View Full Size"
-msgstr "Zobacz w pełnym rozmiarze"
-
-#: mod/photos.php:1414
-msgid "Tags: "
-msgstr "Tagi:"
-
-#: mod/photos.php:1417
-msgid "[Remove any tag]"
-msgstr "[Usuń dowolny tag]"
-
-#: mod/photos.php:1432
-msgid "New album name"
-msgstr "Nazwa nowego albumu"
-
-#: mod/photos.php:1433
-msgid "Caption"
-msgstr "Zawartość"
-
-#: mod/photos.php:1434
-msgid "Add a Tag"
-msgstr "Dodaj tag"
-
-#: mod/photos.php:1434
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-
-#: mod/photos.php:1435
-msgid "Do not rotate"
-msgstr "Nie obracaj"
-
-#: mod/photos.php:1436
-msgid "Rotate CW (right)"
-msgstr "Obróć CW (w prawo)"
-
-#: mod/photos.php:1437
-msgid "Rotate CCW (left)"
-msgstr "Obróć CCW (w lewo)"
-
-#: mod/photos.php:1471 src/Object/Post.php:304
-msgid "I like this (toggle)"
-msgstr "Lubię to (zmień)"
-
-#: mod/photos.php:1472 src/Object/Post.php:305
-msgid "I don't like this (toggle)"
-msgstr "Nie lubię tego (zmień)"
-
-#: mod/photos.php:1488 mod/photos.php:1527 mod/photos.php:1600
-#: mod/contacts.php:953 src/Object/Post.php:801
-msgid "This is you"
-msgstr "To jesteś ty"
-
-#: mod/photos.php:1490 mod/photos.php:1529 mod/photos.php:1602
-#: src/Object/Post.php:407 src/Object/Post.php:803
-msgid "Comment"
-msgstr "Komentarz"
-
-#: mod/photos.php:1634
-msgid "Map"
-msgstr "Mapa"
-
-#: mod/photos.php:1704 mod/videos.php:387
-msgid "View Album"
-msgstr "Zobacz album"
-
-#: mod/videos.php:139
-msgid "Do you really want to delete this video?"
-msgstr "Czy na pewno chcesz usunąć ten film wideo?"
-
-#: mod/videos.php:144
-msgid "Delete Video"
-msgstr "Usuń wideo"
-
-#: mod/videos.php:207
-msgid "No videos selected"
-msgstr "Nie zaznaczono filmów"
-
-#: mod/videos.php:396
-msgid "Recent Videos"
-msgstr "Ostatnio dodane filmy"
-
-#: mod/videos.php:398
-msgid "Upload New Videos"
-msgstr "Wstaw nowe filmy"
-
-#: mod/cal.php:142 mod/display.php:316 mod/profile.php:174
-msgid "Access to this profile has been restricted."
-msgstr "Dostęp do tego profilu został ograniczony."
-
-#: 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 "Wydarzenia"
-
-#: mod/cal.php:275 mod/events.php:392
-msgid "View"
-msgstr "Widok"
-
-#: mod/cal.php:276 mod/events.php:394
-msgid "Previous"
-msgstr "Poprzedni"
-
-#: mod/cal.php:277 mod/events.php:395 mod/install.php:156
-msgid "Next"
-msgstr "Następny"
-
-#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412
-msgid "today"
-msgstr "dzisiaj"
-
-#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304
-#: src/Model/Event.php:413
-msgid "month"
-msgstr "miesiąc"
-
-#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305
-#: src/Model/Event.php:414
-msgid "week"
-msgstr "tydzień"
-
-#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306
-#: src/Model/Event.php:415
-msgid "day"
-msgstr "dzień"
-
-#: mod/cal.php:284 mod/events.php:404
-msgid "list"
-msgstr "lista"
-
-#: mod/cal.php:297 src/Core/Console/NewPassword.php:73 src/Model/User.php:214
-msgid "User not found"
-msgstr "Użytkownik nie znaleziony"
-
-#: mod/cal.php:313
-msgid "This calendar format is not supported"
-msgstr "Ten format kalendarza nie jest obsługiwany"
-
-#: mod/cal.php:315
-msgid "No exportable data found"
-msgstr "Nie znaleziono danych do eksportu"
-
-#: mod/cal.php:332
-msgid "calendar"
-msgstr "kalendarz"
-
-#: mod/contacts.php:71 mod/notifications.php:259 src/Model/Profile.php:516
-msgid "Network:"
-msgstr "Sieć:"
-
-#: mod/contacts.php:157
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-
-#: mod/contacts.php:184 mod/contacts.php:400
-msgid "Could not access contact record."
-msgstr "Nie można uzyskać dostępu do rejestru kontaktów."
-
-#: mod/contacts.php:194
-msgid "Could not locate selected profile."
-msgstr "Nie można znaleźć wybranego profilu."
-
-#: mod/contacts.php:228
-msgid "Contact updated."
-msgstr "Kontakt zaktualizowany"
-
-#: mod/contacts.php:230 mod/dfrn_request.php:415
-msgid "Failed to update contact record."
-msgstr "Aktualizacja rekordu kontaktu nie powiodła się."
-
-#: mod/contacts.php:421
-msgid "Contact has been blocked"
-msgstr "Kontakt został zablokowany"
+#: mod/contacts.php:421
+msgid "Contact has been blocked"
+msgstr "Kontakt został zablokowany"
 
 #: mod/contacts.php:421
 msgid "Contact has been unblocked"
@@ -2449,8 +2165,8 @@ msgid ""
 "are taken from the meta header in the feed item and are posted as hash tags."
 msgstr "Pobieranie informacji, takich jak zdjęcia podglądu, tytuł i zwiastun z elementu kanału. Możesz to aktywować, jeśli plik danych nie zawiera dużo tekstu. Słowa kluczowe są pobierane z nagłówka meta w elemencie kanału i są publikowane jako znaczniki haszowania."
 
-#: mod/contacts.php:572 mod/admin.php:1288 mod/admin.php:1450
-#: mod/admin.php:1460
+#: mod/contacts.php:572 mod/admin.php:1284 mod/admin.php:1449
+#: mod/admin.php:1459
 msgid "Disabled"
 msgstr "Wyłączony"
 
@@ -2526,12 +2242,12 @@ msgid "Update now"
 msgstr "Aktualizuj teraz"
 
 #: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
-#: mod/admin.php:489 mod/admin.php:1829
+#: mod/admin.php:489 mod/admin.php:1834
 msgid "Unblock"
 msgstr "Odblokuj"
 
 #: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
-#: mod/admin.php:488 mod/admin.php:1828
+#: mod/admin.php:488 mod/admin.php:1833
 msgid "Block"
 msgstr "Zablokuj"
 
@@ -2593,7 +2309,7 @@ msgstr "Rozdzielana przecinkami lista słów kluczowych, które nie powinny zost
 msgid "Profile URL"
 msgstr "Adres URL profilu"
 
-#: mod/contacts.php:660 mod/events.php:518 mod/directory.php:148
+#: mod/contacts.php:660 mod/directory.php:148 mod/events.php:519
 #: mod/notifications.php:246 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:"
@@ -2686,6 +2402,11 @@ msgstr "Pokaż tylko ukryte kontakty"
 msgid "Search your contacts"
 msgstr "Wyszukaj w kontaktach"
 
+#: mod/contacts.php:819 mod/search.php:236
+#, php-format
+msgid "Results for: %s"
+msgstr "Wyniki dla: %s"
+
 #: mod/contacts.php:820 mod/directory.php:209 view/theme/vier/theme.php:203
 #: src/Content/Widget.php:63
 msgid "Find"
@@ -2724,7 +2445,7 @@ msgstr "Zobacz wszystkie kontakty"
 msgid "View all common friends"
 msgstr "Zobacz wszystkich popularnych znajomych"
 
-#: mod/contacts.php:895 mod/events.php:532 mod/admin.php:1363
+#: mod/contacts.php:895 mod/admin.php:1362 mod/events.php:533
 #: src/Model/Profile.php:863
 msgid "Advanced"
 msgstr "Zaawansowany"
@@ -2745,6 +2466,11 @@ msgstr "jest twoim fanem"
 msgid "you are a fan of"
 msgstr "jesteś fanem"
 
+#: mod/contacts.php:953 mod/photos.php:1482 mod/photos.php:1521
+#: mod/photos.php:1594 src/Object/Post.php:801
+msgid "This is you"
+msgstr "To jesteś ty"
+
 #: mod/contacts.php:1013
 msgid "Toggle Blocked status"
 msgstr "Przełącz na Zablokowany"
@@ -2788,8 +2514,8 @@ msgid ""
 "settings. Please double check whom you give this access."
 msgstr "Użytkownicy nadrzędni mają pełną kontrolę nad tym kontem, w tym także ustawienia konta. Sprawdź dokładnie, komu przyznasz ten dostęp."
 
-#: mod/delegate.php:168 mod/admin.php:311 mod/admin.php:1358
-#: mod/admin.php:1994 mod/admin.php:2247 mod/admin.php:2321 mod/admin.php:2468
+#: mod/delegate.php:168 mod/admin.php:311 mod/admin.php:1357
+#: mod/admin.php:1999 mod/admin.php:2253 mod/admin.php:2327 mod/admin.php:2474
 #: mod/settings.php:669 mod/settings.php:776 mod/settings.php:864
 #: mod/settings.php:953 mod/settings.php:1183
 msgid "Save Settings"
@@ -2826,93 +2552,29 @@ msgstr "Dodaj"
 msgid "No entries."
 msgstr "Brak wpisów."
 
-#: mod/events.php:105 mod/events.php:107
-msgid "Event can not end before it has started."
-msgstr "Wydarzenie nie może się zakończyć przed jego rozpoczęciem."
-
-#: mod/events.php:114 mod/events.php:116
-msgid "Event title and start time are required."
-msgstr "Wymagany tytuł wydarzenia i czas rozpoczęcia."
+#: mod/feedtest.php:20
+msgid "You must be logged in to use this module"
+msgstr "Musisz być zalogowany, aby korzystać z tego modułu"
 
-#: mod/events.php:393
-msgid "Create New Event"
-msgstr "Stwórz nowe wydarzenie"
+#: mod/feedtest.php:48
+msgid "Source URL"
+msgstr "Źródłowy adres URL"
 
-#: mod/events.php:506
-msgid "Event details"
-msgstr "Szczegóły wydarzenia"
+#: mod/oexchange.php:30
+msgid "Post successful."
+msgstr "Post dodany pomyślnie"
 
-#: mod/events.php:507
-msgid "Starting date and Title are required."
-msgstr "Data rozpoczęcia i tytuł są wymagane."
+#: mod/ostatus_subscribe.php:21
+msgid "Subscribing to OStatus contacts"
+msgstr "Subskrybowanie kontaktów OStatus"
 
-#: mod/events.php:508 mod/events.php:509
-msgid "Event Starts:"
-msgstr "Rozpoczęcie wydarzenia:"
+#: mod/ostatus_subscribe.php:33
+msgid "No contact provided."
+msgstr "Brak kontaktu."
 
-#: mod/events.php:508 mod/events.php:520 mod/profiles.php:607
-msgid "Required"
-msgstr "Wymagany"
-
-#: mod/events.php:510 mod/events.php:526
-msgid "Finish date/time is not known or not relevant"
-msgstr "Data/czas zakończenia nie jest znana lub jest nieistotna"
-
-#: mod/events.php:512 mod/events.php:513
-msgid "Event Finishes:"
-msgstr "Zakończenie wydarzenia:"
-
-#: mod/events.php:514 mod/events.php:527
-msgid "Adjust for viewer timezone"
-msgstr "Dopasuj dla strefy czasowej widza"
-
-#: mod/events.php:516
-msgid "Description:"
-msgstr "Opis:"
-
-#: mod/events.php:520 mod/events.php:522
-msgid "Title:"
-msgstr "Tytuł:"
-
-#: mod/events.php:523 mod/events.php:524
-msgid "Share this event"
-msgstr "Udostępnij te wydarzenie"
-
-#: mod/events.php:531 src/Model/Profile.php:862
-msgid "Basic"
-msgstr "Podstawowy"
-
-#: mod/events.php:552
-msgid "Failed to remove event"
-msgstr "Nie udało się usunąć wydarzenia"
-
-#: mod/events.php:554
-msgid "Event removed"
-msgstr "Wydarzenie zostało usunięte"
-
-#: mod/feedtest.php:20
-msgid "You must be logged in to use this module"
-msgstr "Musisz być zalogowany, aby korzystać z tego modułu"
-
-#: mod/feedtest.php:48
-msgid "Source URL"
-msgstr "Źródłowy adres URL"
-
-#: mod/oexchange.php:30
-msgid "Post successful."
-msgstr "Post dodany pomyślnie"
-
-#: mod/ostatus_subscribe.php:21
-msgid "Subscribing to OStatus contacts"
-msgstr "Subskrybowanie kontaktów OStatus"
-
-#: mod/ostatus_subscribe.php:33
-msgid "No contact provided."
-msgstr "Brak kontaktu."
-
-#: mod/ostatus_subscribe.php:40
-msgid "Couldn't fetch information for contact."
-msgstr "Nie można pobrać informacji o kontakcie."
+#: mod/ostatus_subscribe.php:40
+msgid "Couldn't fetch information for contact."
+msgstr "Nie można pobrać informacji o kontakcie."
 
 #: mod/ostatus_subscribe.php:50
 msgid "Couldn't fetch friends for contact."
@@ -3293,36 +2955,6 @@ msgstr "Markdown"
 msgid "HTML"
 msgstr "HTML"
 
-#: mod/community.php:51
-msgid "Community option not available."
-msgstr "Opcja wspólnotowa jest niedostępna."
-
-#: mod/community.php:68
-msgid "Not available."
-msgstr "Niedostępne."
-
-#: mod/community.php:81
-msgid "Local Community"
-msgstr "Lokalna społeczność"
-
-#: mod/community.php:84
-msgid "Posts from local users on this server"
-msgstr "Wpisy od lokalnych użytkowników na tym serwerze"
-
-#: mod/community.php:92
-msgid "Global Community"
-msgstr "Globalna społeczność"
-
-#: mod/community.php:95
-msgid "Posts from users of the whole federated network"
-msgstr "Wpisy od użytkowników całej sieci stowarzyszonej"
-
-#: mod/community.php:185
-msgid ""
-"This community stream shows all public posts received by this node. They may"
-" not reflect the opinions of this node’s users."
-msgstr "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/friendica.php:77
 msgid "This is Friendica, version"
 msgstr "To jest Friendica, wersja"
@@ -3481,97 +3113,6 @@ msgid ""
 "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/network.php:202 src/Model/Group.php:413
-msgid "add"
-msgstr "dodaj"
-
-#: 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/network.php:550
-msgid "Messages in this group won't be send to these receivers."
-msgstr "Wiadomości z tej grupy nie będą wysyłane do tych odbiorców."
-
-#: mod/network.php:618
-msgid "No such group"
-msgstr "Nie ma takiej grupy"
-
-#: mod/network.php:639 mod/group.php:216
-msgid "Group is empty"
-msgstr "Grupa jest pusta"
-
-#: mod/network.php:643
-#, php-format
-msgid "Group: %s"
-msgstr "Grupa: %s"
-
-#: mod/network.php:669
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione "
-
-#: mod/network.php:672
-msgid "Invalid contact."
-msgstr "Nieprawidłowy kontakt."
-
-#: mod/network.php:937
-msgid "Commented Order"
-msgstr "Porządek według komentarzy"
-
-#: mod/network.php:940
-msgid "Sort by Comment Date"
-msgstr "Sortuj według daty komentarza"
-
-#: mod/network.php:945
-msgid "Posted Order"
-msgstr "Porządek według wpisów"
-
-#: mod/network.php:948
-msgid "Sort by Post Date"
-msgstr "Sortuj według daty postów"
-
-#: mod/network.php:956 mod/profiles.php:594
-#: src/Core/NotificationsManager.php:185
-msgid "Personal"
-msgstr "Osobiste"
-
-#: mod/network.php:959
-msgid "Posts that mention or involve you"
-msgstr "Posty, które wspominają lub angażują Ciebie"
-
-#: mod/network.php:967
-msgid "New"
-msgstr "Nowy"
-
-#: mod/network.php:970
-msgid "Activity Stream - by date"
-msgstr "Strumień aktywności - według daty"
-
-#: mod/network.php:978
-msgid "Shared Links"
-msgstr "Udostępnione łącza"
-
-#: mod/network.php:981
-msgid "Interesting Links"
-msgstr "Interesujące linki"
-
-#: mod/network.php:989
-msgid "Starred"
-msgstr "Ulubione"
-
-#: mod/network.php:992
-msgid "Favourite Posts"
-msgstr "Ulubione posty"
-
 #: mod/crepair.php:87
 msgid "Contact settings applied."
 msgstr "Ustawienia kontaktu zaktualizowane."
@@ -3626,8 +3167,8 @@ msgid ""
 "entries from this contact."
 msgstr "Oznacz ten kontakt jako remote_self, spowoduje to, że friendica odeśle nowe wpisy z tego kontaktu."
 
-#: mod/crepair.php:158 mod/admin.php:494 mod/admin.php:1811 mod/admin.php:1822
-#: mod/admin.php:1835 mod/admin.php:1851 mod/settings.php:671
+#: mod/crepair.php:158 mod/admin.php:494 mod/admin.php:1816 mod/admin.php:1827
+#: mod/admin.php:1840 mod/admin.php:1856 mod/settings.php:671
 #: mod/settings.php:697
 msgid "Name"
 msgstr "Nazwa"
@@ -3892,79 +3433,6 @@ msgstr[1] " %d wiadomości"
 msgstr[2] " %d wiadomości"
 msgstr[3] " %d wiadomości"
 
-#: mod/group.php:36
-msgid "Group created."
-msgstr "Grupa utworzona."
-
-#: mod/group.php:42
-msgid "Could not create group."
-msgstr "Nie mogę stworzyć grupy"
-
-#: mod/group.php:56 mod/group.php:157
-msgid "Group not found."
-msgstr "Nie znaleziono grupy"
-
-#: mod/group.php:70
-msgid "Group name changed."
-msgstr "Nazwa grupy zmieniona"
-
-#: mod/group.php:97
-msgid "Save Group"
-msgstr "Zapisz grupę"
-
-#: mod/group.php:102
-msgid "Create a group of contacts/friends."
-msgstr "Stwórz grupę znajomych."
-
-#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421
-msgid "Group Name: "
-msgstr "Nazwa grupy: "
-
-#: mod/group.php:127
-msgid "Group removed."
-msgstr "Grupa usunięta."
-
-#: mod/group.php:129
-msgid "Unable to remove group."
-msgstr "Nie można usunąć grupy."
-
-#: mod/group.php:192
-msgid "Delete Group"
-msgstr "Usuń grupę"
-
-#: mod/group.php:198
-msgid "Group Editor"
-msgstr "Edycja grup"
-
-#: mod/group.php:203
-msgid "Edit Group Name"
-msgstr "Edytuj nazwę grupy"
-
-#: mod/group.php:213
-msgid "Members"
-msgstr "Członkowie"
-
-#: mod/group.php:229
-msgid "Remove contact from group"
-msgstr "Usuń kontakt z grupy"
-
-#: mod/group.php:253
-msgid "Add contact to group"
-msgstr "Dodaj kontakt do grupy"
-
-#: 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 ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "Konto nie zostało znalezione, a rejestracja OpenID nie jest dozwolona na tej stronie."
-
-#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:135
-msgid "Login failed."
-msgstr "Logowanie nieudane."
-
 #: mod/admin.php:107
 msgid "Theme settings updated."
 msgstr "Zaktualizowano ustawienia motywów."
@@ -3977,7 +3445,7 @@ msgstr "Informacje"
 msgid "Overview"
 msgstr "Przegląd"
 
-#: mod/admin.php:182 mod/admin.php:722
+#: mod/admin.php:182 mod/admin.php:717
 msgid "Federation Statistics"
 msgstr "Statystyki Organizacji"
 
@@ -3985,19 +3453,19 @@ msgstr "Statystyki Organizacji"
 msgid "Configuration"
 msgstr "Konfiguracja"
 
-#: mod/admin.php:184 mod/admin.php:1357
+#: mod/admin.php:184 mod/admin.php:1356
 msgid "Site"
 msgstr "Strona"
 
-#: mod/admin.php:185 mod/admin.php:1289 mod/admin.php:1817 mod/admin.php:1833
+#: mod/admin.php:185 mod/admin.php:1285 mod/admin.php:1822 mod/admin.php:1838
 msgid "Users"
 msgstr "Użytkownicy"
 
-#: mod/admin.php:186 mod/admin.php:1933 mod/admin.php:1993 mod/settings.php:87
+#: mod/admin.php:186 mod/admin.php:1938 mod/admin.php:1998 mod/settings.php:87
 msgid "Addons"
 msgstr "Dodatki"
 
-#: mod/admin.php:187 mod/admin.php:2202 mod/admin.php:2246
+#: mod/admin.php:187 mod/admin.php:2208 mod/admin.php:2252
 msgid "Themes"
 msgstr "Wygląd"
 
@@ -4018,7 +3486,7 @@ msgstr "Baza danych"
 msgid "DB updates"
 msgstr "Aktualizacje DB"
 
-#: mod/admin.php:192 mod/admin.php:757
+#: mod/admin.php:192 mod/admin.php:752
 msgid "Inspect Queue"
 msgstr "Sprawdź kolejkę"
 
@@ -4038,11 +3506,11 @@ msgstr "Lista zablokowanych serwerów"
 msgid "Delete Item"
 msgstr "Usuń przedmiot"
 
-#: mod/admin.php:197 mod/admin.php:198 mod/admin.php:2320
+#: mod/admin.php:197 mod/admin.php:198 mod/admin.php:2326
 msgid "Logs"
 msgstr "Logi"
 
-#: mod/admin.php:199 mod/admin.php:2387
+#: mod/admin.php:199 mod/admin.php:2393
 msgid "View Logs"
 msgstr "Zobacz rejestry"
 
@@ -4075,9 +3543,9 @@ msgid "User registrations waiting for confirmation"
 msgstr "Rejestracje użytkownika czekają na potwierdzenie."
 
 #: mod/admin.php:303 mod/admin.php:365 mod/admin.php:482 mod/admin.php:524
-#: mod/admin.php:721 mod/admin.php:756 mod/admin.php:852 mod/admin.php:1356
-#: mod/admin.php:1816 mod/admin.php:1932 mod/admin.php:1992 mod/admin.php:2201
-#: mod/admin.php:2245 mod/admin.php:2319 mod/admin.php:2386
+#: mod/admin.php:716 mod/admin.php:751 mod/admin.php:847 mod/admin.php:1355
+#: mod/admin.php:1821 mod/admin.php:1937 mod/admin.php:1997 mod/admin.php:2207
+#: mod/admin.php:2251 mod/admin.php:2325 mod/admin.php:2392
 msgid "Administration"
 msgstr "Administracja"
 
@@ -4225,7 +3693,7 @@ msgstr "Ta strona pozwala zapobiec wysyłaniu do węzła wiadomości od kontaktu
 msgid "Block Remote Contact"
 msgstr "Zablokuj kontakt zdalny"
 
-#: mod/admin.php:486 mod/admin.php:1819
+#: mod/admin.php:486 mod/admin.php:1824
 msgid "select all"
 msgstr "Zaznacz wszystko"
 
@@ -4291,67 +3759,67 @@ msgstr "GUID"
 msgid "The GUID of the item you want to delete."
 msgstr "Identyfikator elementu GUID, który chcesz usunąć."
 
-#: mod/admin.php:568
+#: mod/admin.php:563
 msgid "Item marked for deletion."
 msgstr "Przedmiot oznaczony do usunięcia."
 
-#: mod/admin.php:639
+#: mod/admin.php:634
 msgid "unknown"
 msgstr "nieznany"
 
-#: mod/admin.php:715
+#: mod/admin.php:710
 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/admin.php:716
+#: mod/admin.php:711
 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/admin.php:728
+#: mod/admin.php:723
 #, 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/admin.php:759
+#: mod/admin.php:754
 msgid "ID"
 msgstr "ID"
 
-#: mod/admin.php:760
+#: mod/admin.php:755
 msgid "Recipient Name"
 msgstr "Nazwa odbiorcy"
 
-#: mod/admin.php:761
+#: mod/admin.php:756
 msgid "Recipient Profile"
 msgstr "Profil odbiorcy"
 
-#: mod/admin.php:762 view/theme/frio/theme.php:266
+#: mod/admin.php:757 view/theme/frio/theme.php:266
 #: src/Core/NotificationsManager.php:178 src/Content/Nav.php:183
 msgid "Network"
 msgstr "Sieć"
 
-#: mod/admin.php:763
+#: mod/admin.php:758
 msgid "Created"
 msgstr "Utwórz"
 
-#: mod/admin.php:764
+#: mod/admin.php:759
 msgid "Last Tried"
 msgstr "Ostatnia wypróbowana"
 
-#: mod/admin.php:765
+#: mod/admin.php:760
 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/admin.php:789
+#: mod/admin.php:784
 #, php-format
 msgid ""
 "Your DB still runs with MyISAM tables. You should change the engine type to "
@@ -4362,488 +3830,492 @@ msgid ""
 " 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/admin.php:796
+#: mod/admin.php:791
 #, 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"
 
-#: mod/admin.php:806
+#: mod/admin.php:801
 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/admin.php:812
+#: mod/admin.php:807
 msgid "The worker was never executed. Please check your database structure!"
 msgstr "Pracownik nigdy nie został stracony. Sprawdź swoją strukturę bazy danych!"
 
-#: mod/admin.php:815
+#: mod/admin.php:810
 #, 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/admin.php:820
+#: mod/admin.php:815
 msgid "Normal Account"
 msgstr "Konto normalne"
 
-#: mod/admin.php:821
+#: mod/admin.php:816
 msgid "Automatic Follower Account"
 msgstr "Automatyczne konto obserwatora"
 
-#: mod/admin.php:822
+#: mod/admin.php:817
 msgid "Public Forum Account"
 msgstr "Publiczne konto na forum"
 
-#: mod/admin.php:823
+#: mod/admin.php:818
 msgid "Automatic Friend Account"
 msgstr "Automatyczny przyjaciel konta"
 
-#: mod/admin.php:824
+#: mod/admin.php:819
 msgid "Blog Account"
 msgstr "Konto Bloga"
 
-#: mod/admin.php:825
+#: mod/admin.php:820
 msgid "Private Forum Account"
 msgstr "Prywatne konto na forum"
 
-#: mod/admin.php:847
+#: mod/admin.php:842
 msgid "Message queues"
 msgstr "Wiadomości"
 
-#: mod/admin.php:853
+#: mod/admin.php:848
 msgid "Summary"
 msgstr "Podsumowanie"
 
-#: mod/admin.php:855
+#: mod/admin.php:850
 msgid "Registered users"
 msgstr "Zarejestrowani użytkownicy"
 
-#: mod/admin.php:857
+#: mod/admin.php:852
 msgid "Pending registrations"
 msgstr "Rejestracje w toku."
 
-#: mod/admin.php:858
+#: mod/admin.php:853
 msgid "Version"
 msgstr "Wersja"
 
-#: mod/admin.php:863
+#: mod/admin.php:858
 msgid "Active addons"
 msgstr "Aktywne dodatki"
 
-#: mod/admin.php:894
+#: mod/admin.php:889
 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/admin.php:1224
+#: mod/admin.php:1220
 msgid "Site settings updated."
 msgstr "Ustawienia strony zaktualizowane"
 
-#: mod/admin.php:1251 mod/settings.php:897
+#: mod/admin.php:1247 mod/settings.php:897
 msgid "No special theme for mobile devices"
 msgstr "Brak specialnego motywu dla urządzeń mobilnych"
 
-#: mod/admin.php:1280
+#: mod/admin.php:1276
 msgid "No community page for local users"
 msgstr "Brak strony społeczności dla użytkowników lokalnych"
 
-#: mod/admin.php:1281
+#: mod/admin.php:1277
 msgid "No community page"
 msgstr "Brak strony społeczności"
 
-#: mod/admin.php:1282
+#: mod/admin.php:1278
 msgid "Public postings from users of this site"
 msgstr "Publikacje publiczne od użytkowników tej strony"
 
-#: mod/admin.php:1283
+#: mod/admin.php:1279
 msgid "Public postings from the federated network"
 msgstr "Publikacje wpisy ze sfederowanej sieci"
 
-#: mod/admin.php:1284
+#: mod/admin.php:1280
 msgid "Public postings from local users and the federated network"
 msgstr "Publikacje publiczne od użytkowników lokalnych i sieci federacyjnej"
 
-#: mod/admin.php:1290
+#: mod/admin.php:1286
 msgid "Users, Global Contacts"
 msgstr "Użytkownicy, kontakty globalne"
 
-#: mod/admin.php:1291
+#: mod/admin.php:1287
 msgid "Users, Global Contacts/fallback"
 msgstr "Użytkownicy, kontakty globalne/awaryjne"
 
-#: mod/admin.php:1295
+#: mod/admin.php:1291
 msgid "One month"
 msgstr "Miesiąc"
 
-#: mod/admin.php:1296
+#: mod/admin.php:1292
 msgid "Three months"
 msgstr "Trzy miesiące"
 
-#: mod/admin.php:1297
+#: mod/admin.php:1293
 msgid "Half a year"
 msgstr "Pół roku"
 
-#: mod/admin.php:1298
+#: mod/admin.php:1294
 msgid "One year"
 msgstr "Rok"
 
-#: mod/admin.php:1303
+#: mod/admin.php:1299
 msgid "Multi user instance"
 msgstr "Tryb wielu użytkowników"
 
-#: mod/admin.php:1326
+#: mod/admin.php:1325
 msgid "Closed"
 msgstr "Zamknięte"
 
-#: mod/admin.php:1327
+#: mod/admin.php:1326
 msgid "Requires approval"
 msgstr "Wymagane zatwierdzenie."
 
-#: mod/admin.php:1328
+#: mod/admin.php:1327
 msgid "Open"
 msgstr "Otwarta"
 
-#: mod/admin.php:1332
+#: mod/admin.php:1331
 msgid "No SSL policy, links will track page SSL state"
 msgstr "Brak SSL , linki będą śledzić stan SSL ."
 
-#: mod/admin.php:1333
+#: mod/admin.php:1332
 msgid "Force all links to use SSL"
 msgstr "Wymuś by linki używały SSL."
 
-#: mod/admin.php:1334
+#: mod/admin.php:1333
 msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr "Wewnętrzne Certyfikaty , użyj SSL tylko dla linków lokalnych . "
 
-#: mod/admin.php:1338
+#: mod/admin.php:1337
 msgid "Don't check"
 msgstr "Nie sprawdzaj"
 
-#: mod/admin.php:1339
+#: mod/admin.php:1338
 msgid "check the stable version"
 msgstr "sprawdź wersję stabilną"
 
-#: mod/admin.php:1340
+#: mod/admin.php:1339
 msgid "check the development version"
 msgstr "sprawdź wersję rozwojową"
 
-#: mod/admin.php:1359
+#: mod/admin.php:1358
 msgid "Republish users to directory"
 msgstr "Ponownie opublikuj użytkowników w katalogu"
 
-#: mod/admin.php:1360 mod/register.php:267
+#: mod/admin.php:1359 mod/register.php:267
 msgid "Registration"
 msgstr "Rejestracja"
 
-#: mod/admin.php:1361
+#: mod/admin.php:1360
 msgid "File upload"
 msgstr "Przesyłanie plików"
 
-#: mod/admin.php:1362
+#: mod/admin.php:1361
 msgid "Policies"
 msgstr "Zasady"
 
-#: mod/admin.php:1364
+#: mod/admin.php:1363
 msgid "Auto Discovered Contact Directory"
 msgstr "Katalog kontaktów automatycznie odkrytych"
 
-#: mod/admin.php:1365
+#: mod/admin.php:1364
 msgid "Performance"
 msgstr "Ustawienia"
 
-#: mod/admin.php:1366
+#: mod/admin.php:1365
 msgid "Worker"
 msgstr "Pracownik"
 
-#: mod/admin.php:1367
+#: mod/admin.php:1366
 msgid "Message Relay"
 msgstr "Przekazywanie wiadomości"
 
-#: mod/admin.php:1368
+#: mod/admin.php:1367
 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/admin.php:1371
+#: mod/admin.php:1370
 msgid "Site name"
 msgstr "Nazwa strony"
 
-#: mod/admin.php:1372
+#: mod/admin.php:1371
 msgid "Host name"
 msgstr "Nazwa hosta"
 
-#: mod/admin.php:1373
+#: mod/admin.php:1372
 msgid "Sender Email"
 msgstr "E-mail nadawcy"
 
-#: mod/admin.php:1373
+#: mod/admin.php:1372
 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/admin.php:1374
+#: mod/admin.php:1373
 msgid "Banner/Logo"
 msgstr "Logo"
 
-#: mod/admin.php:1375
+#: mod/admin.php:1374
 msgid "Shortcut icon"
 msgstr "Ikona skrótu"
 
-#: mod/admin.php:1375
+#: mod/admin.php:1374
 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/admin.php:1376
+#: mod/admin.php:1375
 msgid "Touch icon"
 msgstr "Dołącz ikonę"
 
-#: mod/admin.php:1376
+#: mod/admin.php:1375
 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/admin.php:1377
+#: mod/admin.php:1376
 msgid "Additional Info"
 msgstr "Dodatkowe informacje"
 
-#: mod/admin.php:1377
+#: mod/admin.php:1376
 #, 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/admin.php:1378
+#: mod/admin.php:1377
 msgid "System language"
 msgstr "Język systemu"
 
-#: mod/admin.php:1379
+#: mod/admin.php:1378
 msgid "System theme"
 msgstr "Motyw systemowy"
 
-#: mod/admin.php:1379
+#: mod/admin.php:1378
 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/admin.php:1380
+#: mod/admin.php:1379
 msgid "Mobile system theme"
 msgstr "Motyw systemu mobilnego"
 
-#: mod/admin.php:1380
+#: mod/admin.php:1379
 msgid "Theme for mobile devices"
 msgstr "Motyw na urządzenia mobilne"
 
-#: mod/admin.php:1381
+#: mod/admin.php:1380
 msgid "SSL link policy"
 msgstr "polityka SSL"
 
-#: mod/admin.php:1381
+#: mod/admin.php:1380
 msgid "Determines whether generated links should be forced to use SSL"
 msgstr "Określa kiedy generowane linki powinny używać wymuszonego SSl."
 
-#: mod/admin.php:1382
+#: mod/admin.php:1381
 msgid "Force SSL"
 msgstr "Wymuś SSL"
 
-#: mod/admin.php:1382
+#: mod/admin.php:1381
 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/admin.php:1383
+#: mod/admin.php:1382
 msgid "Hide help entry from navigation menu"
 msgstr "Wyłącz pomoc w menu nawigacyjnym "
 
-#: mod/admin.php:1383
+#: mod/admin.php:1382
 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:1384
+#: mod/admin.php:1383
 msgid "Single user instance"
 msgstr "Tryb pojedynczego użytkownika"
 
-#: mod/admin.php:1384
+#: mod/admin.php:1383
 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/admin.php:1385
+#: mod/admin.php:1384
 msgid "Maximum image size"
 msgstr "Maksymalny rozmiar zdjęcia"
 
-#: mod/admin.php:1385
+#: mod/admin.php:1384
 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/admin.php:1386
+#: mod/admin.php:1385
 msgid "Maximum image length"
 msgstr "Maksymalna długość obrazu"
 
-#: mod/admin.php:1386
+#: mod/admin.php:1385
 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/admin.php:1387
+#: mod/admin.php:1386
 msgid "JPEG image quality"
 msgstr "Jakość obrazu JPEG"
 
-#: mod/admin.php:1387
+#: mod/admin.php:1386
 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/admin.php:1389
+#: mod/admin.php:1388
 msgid "Register policy"
 msgstr "Zasady rejestracji"
 
-#: mod/admin.php:1390
+#: mod/admin.php:1389
 msgid "Maximum Daily Registrations"
 msgstr "Maksymalna dzienna rejestracja"
 
-#: mod/admin.php:1390
+#: mod/admin.php:1389
 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/admin.php:1391
+#: mod/admin.php:1390
 msgid "Register text"
 msgstr "Zarejestruj tekst"
 
-#: mod/admin.php:1391
+#: mod/admin.php:1390
 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/admin.php:1392
+#: mod/admin.php:1391
 msgid "Accounts abandoned after x days"
 msgstr "Konto porzucone od x dni."
 
-#: mod/admin.php:1392
+#: mod/admin.php:1391
 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:1393
+#: mod/admin.php:1392
 msgid "Allowed friend domains"
 msgstr "Dozwolone domeny przyjaciół"
 
-#: mod/admin.php:1393
+#: mod/admin.php:1392
 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/admin.php:1394
+#: mod/admin.php:1393
 msgid "Allowed email domains"
 msgstr "Dozwolone domeny e-mailowe"
 
-#: mod/admin.php:1394
+#: mod/admin.php:1393
 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/admin.php:1395
+#: mod/admin.php:1394
 msgid "No OEmbed rich content"
 msgstr "Brak treści multimedialnych ze znaczkiem HTML"
 
-#: mod/admin.php:1395
+#: mod/admin.php:1394
 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/admin.php:1396
+#: mod/admin.php:1395
 msgid "Allowed OEmbed domains"
 msgstr "Dozwolone domeny OEmbed"
 
-#: mod/admin.php:1396
+#: mod/admin.php:1395
 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/admin.php:1397
+#: mod/admin.php:1396
 msgid "Block public"
 msgstr "Blokuj publicznie"
 
-#: mod/admin.php:1397
+#: mod/admin.php:1396
 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/admin.php:1398
+#: mod/admin.php:1397
 msgid "Force publish"
 msgstr "Wymuś publikację"
 
-#: mod/admin.php:1398
+#: mod/admin.php:1397
 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/admin.php:1399
+#: mod/admin.php:1397
+msgid "Enabling this may violate privacy laws like the GDPR"
+msgstr "Włączenie tego może naruszyć prawa ochrony prywatności, takie jak GDPR"
+
+#: mod/admin.php:1398
 msgid "Global directory URL"
 msgstr "Globalny adres URL katalogu"
 
-#: mod/admin.php:1399
+#: mod/admin.php:1398
 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/admin.php:1400
+#: mod/admin.php:1399
 msgid "Private posts by default for new users"
 msgstr "Prywatne posty domyślnie dla nowych użytkowników"
 
-#: mod/admin.php:1400
+#: mod/admin.php:1399
 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/admin.php:1401
+#: mod/admin.php:1400
 msgid "Don't include post content in email notifications"
 msgstr "Nie wklejaj zawartości postu do powiadomienia o poczcie"
 
-#: mod/admin.php:1401
+#: mod/admin.php:1400
 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/admin.php:1402
+#: mod/admin.php:1401
 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/admin.php:1402
+#: mod/admin.php:1401
 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/admin.php:1403
+#: mod/admin.php:1402
 msgid "Don't embed private images in posts"
 msgstr "Nie umieszczaj prywatnych zdjęć w postach"
 
-#: mod/admin.php:1403
+#: mod/admin.php:1402
 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 "
@@ -4851,210 +4323,210 @@ msgid ""
 "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/admin.php:1404
+#: mod/admin.php:1403
 msgid "Allow Users to set remote_self"
 msgstr "Zezwól użytkownikom na ustawienie remote_self"
 
-#: mod/admin.php:1404
+#: mod/admin.php:1403
 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/admin.php:1405
+#: mod/admin.php:1404
 msgid "Block multiple registrations"
 msgstr "Zablokuj wielokrotną rejestrację"
 
-#: mod/admin.php:1405
+#: mod/admin.php:1404
 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/admin.php:1406
+#: mod/admin.php:1405
 msgid "OpenID support"
 msgstr "Wsparcie OpenID"
 
-#: mod/admin.php:1406
+#: mod/admin.php:1405
 msgid "OpenID support for registration and logins."
 msgstr "Obsługa OpenID do rejestracji i logowania."
 
-#: mod/admin.php:1407
+#: mod/admin.php:1406
 msgid "Fullname check"
 msgstr "Sprawdzanie pełnej nazwy"
 
-#: mod/admin.php:1407
+#: mod/admin.php:1406
 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/admin.php:1408
+#: mod/admin.php:1407
 msgid "Community pages for visitors"
 msgstr "Strony społecznościowe dla odwiedzających"
 
-#: mod/admin.php:1408
+#: mod/admin.php:1407
 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/admin.php:1409
+#: mod/admin.php:1408
 msgid "Posts per user on community page"
 msgstr "Lista postów użytkownika na stronie społeczności"
 
-#: mod/admin.php:1409
+#: mod/admin.php:1408
 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/admin.php:1410
+#: mod/admin.php:1409
 msgid "Enable OStatus support"
 msgstr "Włącz wsparcie OStatus"
 
-#: mod/admin.php:1410
+#: mod/admin.php:1409
 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/admin.php:1411
+#: mod/admin.php:1410
 msgid "Only import OStatus threads from our contacts"
 msgstr "Importuj wątki OStatus tylko z naszych kontaktów"
 
-#: mod/admin.php:1411
+#: mod/admin.php:1410
 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/admin.php:1412
+#: mod/admin.php:1411
 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/admin.php:1414
+#: mod/admin.php:1413
 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/admin.php:1415
+#: mod/admin.php:1414
 msgid "Enable Diaspora support"
 msgstr "Włączyć obsługę Diaspory"
 
-#: mod/admin.php:1415
+#: mod/admin.php:1414
 msgid "Provide built-in Diaspora network compatibility."
 msgstr "Zapewnij wbudowaną kompatybilność z siecią Diaspora."
 
-#: mod/admin.php:1416
+#: mod/admin.php:1415
 msgid "Only allow Friendica contacts"
 msgstr "Dopuść tylko kontakty Friendrica"
 
-#: mod/admin.php:1416
+#: mod/admin.php:1415
 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/admin.php:1417
+#: mod/admin.php:1416
 msgid "Verify SSL"
 msgstr "Weryfikacja SSL"
 
-#: mod/admin.php:1417
+#: mod/admin.php:1416
 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:1418
+#: mod/admin.php:1417
 msgid "Proxy user"
 msgstr "Użytkownik proxy"
 
-#: mod/admin.php:1419
+#: mod/admin.php:1418
 msgid "Proxy URL"
 msgstr "URL Proxy"
 
-#: mod/admin.php:1420
+#: mod/admin.php:1419
 msgid "Network timeout"
 msgstr "Network timeout"
 
-#: mod/admin.php:1420
+#: mod/admin.php:1419
 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr "Wartość jest w sekundach. Ustaw na 0 dla nieograniczonej (niezalecane)."
 
-#: mod/admin.php:1421
+#: mod/admin.php:1420
 msgid "Maximum Load Average"
 msgstr "Maksymalne obciążenie średnie"
 
-#: mod/admin.php:1421
+#: mod/admin.php:1420
 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/admin.php:1422
+#: mod/admin.php:1421
 msgid "Maximum Load Average (Frontend)"
 msgstr "Maksymalne obciążenie średnie (Frontend)"
 
-#: mod/admin.php:1422
+#: mod/admin.php:1421
 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/admin.php:1423
+#: mod/admin.php:1422
 msgid "Minimal Memory"
 msgstr "Minimalna pamięć"
 
-#: mod/admin.php:1423
+#: mod/admin.php:1422
 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/admin.php:1424
+#: mod/admin.php:1423
 msgid "Maximum table size for optimization"
 msgstr "Maksymalny rozmiar stołu do optymalizacji"
 
-#: mod/admin.php:1424
+#: mod/admin.php:1423
 msgid ""
 "Maximum table size (in MB) for the automatic optimization. Enter -1 to "
 "disable it."
 msgstr "Maksymalny rozmiar tablicy (w MB) do automatycznej optymalizacji. Wprowadź -1, aby go wyłączyć."
 
-#: mod/admin.php:1425
+#: mod/admin.php:1424
 msgid "Minimum level of fragmentation"
 msgstr "Minimalny poziom fragmentacji"
 
-#: mod/admin.php:1425
+#: mod/admin.php:1424
 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/admin.php:1427
+#: mod/admin.php:1426
 msgid "Periodical check of global contacts"
 msgstr "Okresowa kontrola kontaktów globalnych"
 
-#: mod/admin.php:1427
+#: mod/admin.php:1426
 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."
 
-#: mod/admin.php:1428
+#: mod/admin.php:1427
 msgid "Days between requery"
 msgstr "Dni między żądaniem"
 
-#: mod/admin.php:1428
+#: mod/admin.php:1427
 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:1429
+#: mod/admin.php:1428
 msgid "Discover contacts from other servers"
 msgstr "Odkryj kontakty z innych serwerów"
 
-#: mod/admin.php:1429
+#: mod/admin.php:1428
 msgid ""
 "Periodically query other servers for contacts. You can choose between "
 "'users': the users on the remote system, 'Global Contacts': active contacts "
@@ -5064,32 +4536,32 @@ msgid ""
 "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/admin.php:1430
+#: mod/admin.php:1429
 msgid "Timeframe for fetching global contacts"
 msgstr "Czas pobierania globalnych kontaktów"
 
-#: mod/admin.php:1430
+#: mod/admin.php:1429
 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/admin.php:1431
+#: mod/admin.php:1430
 msgid "Search the local directory"
 msgstr "Wyszukaj w lokalnym katalogu"
 
-#: mod/admin.php:1431
+#: mod/admin.php:1430
 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/admin.php:1433
+#: mod/admin.php:1432
 msgid "Publish server information"
 msgstr "Publikuj informacje o serwerze"
 
-#: mod/admin.php:1433
+#: mod/admin.php:1432
 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 "
@@ -5097,50 +4569,50 @@ msgid ""
 " 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/admin.php:1435
+#: mod/admin.php:1434
 msgid "Check upstream version"
 msgstr "Sprawdź wersję powyżej"
 
-#: mod/admin.php:1435
+#: mod/admin.php:1434
 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/admin.php:1436
+#: mod/admin.php:1435
 msgid "Suppress Tags"
 msgstr "Ukryj tagi"
 
-#: mod/admin.php:1436
+#: mod/admin.php:1435
 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/admin.php:1437
+#: mod/admin.php:1436
 msgid "Clean database"
 msgstr "Wyczyść bazę danych"
 
-#: mod/admin.php:1437
+#: mod/admin.php:1436
 msgid ""
 "Remove old remote items, orphaned database records and old content from some"
 " other helper tables."
 msgstr "Usuń stare zdalne pozycje, osierocone rekordy bazy danych i starą zawartość z innych tabel pomocników."
 
-#: mod/admin.php:1438
+#: mod/admin.php:1437
 msgid "Lifespan of remote items"
 msgstr "Żywotność odległych przedmiotów"
 
-#: mod/admin.php:1438
+#: mod/admin.php:1437
 msgid ""
 "When the database cleanup is enabled, this defines the days after which "
 "remote items will be deleted. Own items, and marked or filed items are "
 "always kept. 0 disables this behaviour."
 msgstr "Po włączeniu czyszczenia bazy danych określa dni, po których zdalne elementy zostaną usunięte. Własne przedmioty oraz oznaczone lub wypełnione pozycje są zawsze przechowywane. 0 wyłącza to zachowanie."
 
-#: mod/admin.php:1439
+#: mod/admin.php:1438
 msgid "Lifespan of unclaimed items"
 msgstr "Żywotność nieodebranych przedmiotów"
 
-#: mod/admin.php:1439
+#: mod/admin.php:1438
 msgid ""
 "When the database cleanup is enabled, this defines the days after which "
 "unclaimed remote items (mostly content from the relay) will be deleted. "
@@ -5148,129 +4620,129 @@ msgid ""
 "items if set to 0."
 msgstr "Po włączeniu czyszczenia bazy danych określa się dni, po których usunięte zostaną nieodebrane zdalne elementy (głównie zawartość z przekaźnika). Wartość domyślna to 90 dni. Wartość domyślna dla ogólnej długości życia zdalnych pozycji, jeśli jest ustawiona na 0."
 
-#: mod/admin.php:1440
+#: mod/admin.php:1439
 msgid "Path to item cache"
 msgstr "Ścieżka do pamięci podręcznej"
 
-#: mod/admin.php:1440
+#: mod/admin.php:1439
 msgid "The item caches buffers generated bbcode and external images."
 msgstr "Pozycja buforuje bufory generowane bbcode i obrazy zewnętrzne."
 
-#: mod/admin.php:1441
+#: mod/admin.php:1440
 msgid "Cache duration in seconds"
 msgstr "Czas trwania w sekundach"
 
-#: mod/admin.php:1441
+#: mod/admin.php:1440
 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/admin.php:1442
+#: mod/admin.php:1441
 msgid "Maximum numbers of comments per post"
 msgstr "Maksymalna liczba komentarzy na post"
 
-#: mod/admin.php:1442
+#: mod/admin.php:1441
 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/admin.php:1443
+#: mod/admin.php:1442
 msgid "Temp path"
 msgstr "Ścieżka do Temp"
 
-#: mod/admin.php:1443
+#: mod/admin.php:1442
 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/admin.php:1444
+#: mod/admin.php:1443
 msgid "Base path to installation"
 msgstr "Podstawowa ścieżka do instalacji"
 
-#: mod/admin.php:1444
+#: mod/admin.php:1443
 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/admin.php:1445
+#: mod/admin.php:1444
 msgid "Disable picture proxy"
 msgstr "Wyłącz obraz proxy"
 
-#: mod/admin.php:1445
+#: mod/admin.php:1444
 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."
+" systems with very low bandwidth."
+msgstr "Serwer proxy zwiększa wydajność i prywatność. Nie powinno być używane w systemach o bardzo niskiej przepustowości."
 
-#: mod/admin.php:1446
+#: mod/admin.php:1445
 msgid "Only search in tags"
 msgstr "Szukaj tylko w tagach"
 
-#: mod/admin.php:1446
+#: mod/admin.php:1445
 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/admin.php:1448
+#: mod/admin.php:1447
 msgid "New base url"
 msgstr "Nowy bazowy adres url"
 
-#: mod/admin.php:1448
+#: mod/admin.php:1447
 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:1450
+#: mod/admin.php:1449
 msgid "RINO Encryption"
 msgstr "Szyfrowanie RINO"
 
-#: mod/admin.php:1450
+#: mod/admin.php:1449
 msgid "Encryption layer between nodes."
 msgstr "Warstwa szyfrowania między węzłami."
 
-#: mod/admin.php:1450
+#: mod/admin.php:1449
 msgid "Enabled"
 msgstr "Włącz"
 
-#: mod/admin.php:1452
+#: mod/admin.php:1451
 msgid "Maximum number of parallel workers"
 msgstr "Maksymalna liczba równoległych pracowników"
 
-#: mod/admin.php:1452
+#: mod/admin.php:1451
 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:1453
+#: mod/admin.php:1452
 msgid "Don't use 'proc_open' with the worker"
 msgstr "Nie używaj 'proc_open' z robotnikiem"
 
-#: mod/admin.php:1453
+#: mod/admin.php:1452
 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:1454
+#: mod/admin.php:1453
 msgid "Enable fastlane"
 msgstr "Włącz Fastlane"
 
-#: mod/admin.php:1454
+#: mod/admin.php:1453
 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/admin.php:1455
+#: mod/admin.php:1454
 msgid "Enable frontend worker"
 msgstr "Włącz pracownika frontend"
 
-#: mod/admin.php:1455
+#: mod/admin.php:1454
 #, php-format
 msgid ""
 "When enabled the Worker process is triggered when backend access is "
@@ -5280,132 +4752,132 @@ msgid ""
 " 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/admin.php:1457
+#: mod/admin.php:1456
 msgid "Subscribe to relay"
 msgstr "Subskrybuj przekaźnik"
 
-#: mod/admin.php:1457
+#: mod/admin.php:1456
 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/admin.php:1458
+#: mod/admin.php:1457
 msgid "Relay server"
 msgstr "Serwer przekazujący"
 
-#: mod/admin.php:1458
+#: mod/admin.php:1457
 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/admin.php:1459
+#: mod/admin.php:1458
 msgid "Direct relay transfer"
 msgstr "Bezpośredni transfer przekaźników"
 
-#: mod/admin.php:1459
+#: mod/admin.php:1458
 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/admin.php:1460
+#: mod/admin.php:1459
 msgid "Relay scope"
 msgstr "Zakres przekaźnika"
 
-#: mod/admin.php:1460
+#: mod/admin.php:1459
 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/admin.php:1460
+#: mod/admin.php:1459
 msgid "all"
 msgstr "wszystko"
 
-#: mod/admin.php:1460
+#: mod/admin.php:1459
 msgid "tags"
 msgstr "tagi"
 
-#: mod/admin.php:1461
+#: mod/admin.php:1460
 msgid "Server tags"
 msgstr "Serwer tagów"
 
-#: mod/admin.php:1461
+#: mod/admin.php:1460
 msgid "Comma separated list of tags for the 'tags' subscription."
 msgstr "Lista oddzielonych przecinkami znaczników dla subskrypcji 'tagów'."
 
-#: mod/admin.php:1462
+#: mod/admin.php:1461
 msgid "Allow user tags"
 msgstr "Pozwól na tagi użytkowników"
 
-#: mod/admin.php:1462
+#: mod/admin.php:1461
 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/admin.php:1490
+#: mod/admin.php:1489
 msgid "Update has been marked successful"
 msgstr "Aktualizacja została oznaczona jako udana"
 
-#: mod/admin.php:1497
+#: mod/admin.php:1496
 #, php-format
 msgid "Database structure update %s was successfully applied."
 msgstr "Pomyślnie zastosowano aktualizację %s struktury bazy danych."
 
-#: mod/admin.php:1500
+#: mod/admin.php:1499
 #, 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/admin.php:1513
+#: mod/admin.php:1515
 #, php-format
 msgid "Executing %s failed with error: %s"
 msgstr "Wykonanie %s nie powiodło się z powodu błędu:%s"
 
-#: mod/admin.php:1515
+#: mod/admin.php:1517
 #, php-format
 msgid "Update %s was successfully applied."
 msgstr "Aktualizacja %s została pomyślnie zastosowana."
 
-#: mod/admin.php:1518
+#: mod/admin.php:1520
 #, 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/admin.php:1521
+#: mod/admin.php:1523
 #, 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/admin.php:1541
+#: mod/admin.php:1546
 msgid "No failed updates."
 msgstr "Brak błędów aktualizacji."
 
-#: mod/admin.php:1542
+#: mod/admin.php:1547
 msgid "Check database structure"
 msgstr "Sprawdź strukturę bazy danych"
 
-#: mod/admin.php:1547
+#: mod/admin.php:1552
 msgid "Failed Updates"
 msgstr "Błąd aktualizacji"
 
-#: mod/admin.php:1548
+#: mod/admin.php:1553
 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/admin.php:1549
+#: mod/admin.php:1554
 msgid "Mark success (if update was manually applied)"
 msgstr "Oznacz sukces (jeśli aktualizacja została ręcznie zastosowana)"
 
-#: mod/admin.php:1550
+#: mod/admin.php:1555
 msgid "Attempt to execute this update step automatically"
 msgstr "Spróbuj automatycznie wykonać ten krok aktualizacji"
 
-#: mod/admin.php:1589
+#: mod/admin.php:1594
 #, php-format
 msgid ""
 "\n"
@@ -5413,7 +4885,7 @@ msgid ""
 "\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/admin.php:1592
+#: mod/admin.php:1597
 #, php-format
 msgid ""
 "\n"
@@ -5445,12 +4917,12 @@ msgid ""
 "\t\t\tThank you and welcome to %4$s."
 msgstr "\n\t\t\tDane logowania są następuje:\n\t\t\tLokalizacja witryny:\t%1$s\n\t\t\tNazwa użytkownika:%2$s\n\t\t\tHasło:%3$s\n\n\t\t\tPo zalogowaniu możesz zmienić hasło do swojego konta na stronie \"Ustawienia\"\n \t\t\tProszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie.\n\n\t\t\tMożesz również dodać podstawowe informacje do swojego domyślnego profilu\n\t\t\t(na stronie \"Profil\"), aby inne osoby mogły łatwo Cię znaleźć.\n\n\t\t\tZalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego,\n\t\t\tdodanie niektórych \"słów kluczowych\" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) - i\n\t\t\tbyć może w jakim kraju mieszkasz; jeśli nie chcesz być bardziej szczegółowy.\n\n\t\t\tW pełni szanujemy Twoje prawo do prywatności i żaden z tych elementów nie jest konieczny.\n\t\t\tJeśli jesteś nowy i nie znasz tutaj nikogo, oni mogą ci pomóc\n\t\t\tmożesz zdobyć nowych interesujących przyjaciół\n\n\t\t\tJeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić w %1$s/Usuń konto\n\n\t\t\tDziękujemy i Zapraszamy do%4$s"
 
-#: mod/admin.php:1626 src/Model/User.php:663
+#: mod/admin.php:1631 src/Model/User.php:665
 #, php-format
 msgid "Registration details for %s"
 msgstr "Szczegóły rejestracji dla %s"
 
-#: mod/admin.php:1636
+#: mod/admin.php:1641
 #, php-format
 msgid "%s user blocked/unblocked"
 msgid_plural "%s users blocked/unblocked"
@@ -5459,7 +4931,7 @@ msgstr[1] ""
 msgstr[2] ""
 msgstr[3] ""
 
-#: mod/admin.php:1642
+#: mod/admin.php:1647
 #, php-format
 msgid "%s user deleted"
 msgid_plural "%s users deleted"
@@ -5468,189 +4940,189 @@ msgstr[1] " %s użytkownicy usunięci"
 msgstr[2] " %s usuniętych użytkowników "
 msgstr[3] " %s usuniętych użytkowników "
 
-#: mod/admin.php:1689
+#: mod/admin.php:1694
 #, php-format
 msgid "User '%s' deleted"
 msgstr "Użytkownik '%s' usunięty"
 
-#: mod/admin.php:1697
+#: mod/admin.php:1702
 #, php-format
 msgid "User '%s' unblocked"
 msgstr "Użytkownik '%s' odblokowany"
 
-#: mod/admin.php:1697
+#: mod/admin.php:1702
 #, php-format
 msgid "User '%s' blocked"
 msgstr "Użytkownik '%s' zablokowany"
 
-#: mod/admin.php:1754 mod/settings.php:1058
+#: mod/admin.php:1759 mod/settings.php:1058
 msgid "Normal Account Page"
 msgstr "Normalna strona konta"
 
-#: mod/admin.php:1755 mod/settings.php:1062
+#: mod/admin.php:1760 mod/settings.php:1062
 msgid "Soapbox Page"
 msgstr "Strona Soapbox"
 
-#: mod/admin.php:1756 mod/settings.php:1066
+#: mod/admin.php:1761 mod/settings.php:1066
 msgid "Public Forum"
 msgstr "Forum publiczne"
 
-#: mod/admin.php:1757 mod/settings.php:1070
+#: mod/admin.php:1762 mod/settings.php:1070
 msgid "Automatic Friend Page"
 msgstr "Automatyczna strona znajomego"
 
-#: mod/admin.php:1758
+#: mod/admin.php:1763
 msgid "Private Forum"
 msgstr "Prywatne forum"
 
-#: mod/admin.php:1761 mod/settings.php:1042
+#: mod/admin.php:1766 mod/settings.php:1042
 msgid "Personal Page"
 msgstr "Strona osobista"
 
-#: mod/admin.php:1762 mod/settings.php:1046
+#: mod/admin.php:1767 mod/settings.php:1046
 msgid "Organisation Page"
 msgstr "Strona Organizacji"
 
-#: mod/admin.php:1763 mod/settings.php:1050
+#: mod/admin.php:1768 mod/settings.php:1050
 msgid "News Page"
 msgstr "Strona Wiadomości"
 
-#: mod/admin.php:1764 mod/settings.php:1054
+#: mod/admin.php:1769 mod/settings.php:1054
 msgid "Community Forum"
 msgstr "Forum społecznościowe"
 
-#: mod/admin.php:1811 mod/admin.php:1822 mod/admin.php:1835 mod/admin.php:1853
+#: mod/admin.php:1816 mod/admin.php:1827 mod/admin.php:1840 mod/admin.php:1858
 #: src/Content/ContactSelector.php:82
 msgid "Email"
 msgstr "E-mail"
 
-#: mod/admin.php:1811 mod/admin.php:1835
+#: mod/admin.php:1816 mod/admin.php:1840
 msgid "Register date"
 msgstr "Data rejestracji"
 
-#: mod/admin.php:1811 mod/admin.php:1835
+#: mod/admin.php:1816 mod/admin.php:1840
 msgid "Last login"
 msgstr "Ostatnie logowanie"
 
-#: mod/admin.php:1811 mod/admin.php:1835
+#: mod/admin.php:1816 mod/admin.php:1840
 msgid "Last item"
 msgstr "Ostatni element"
 
-#: mod/admin.php:1811
+#: mod/admin.php:1816
 msgid "Type"
 msgstr "Typu"
 
-#: mod/admin.php:1818
+#: mod/admin.php:1823
 msgid "Add User"
 msgstr "Dodaj użytkownika"
 
-#: mod/admin.php:1820
+#: mod/admin.php:1825
 msgid "User registrations waiting for confirm"
 msgstr "Zarejestrowani użytkownicy czekający na potwierdzenie"
 
-#: mod/admin.php:1821
+#: mod/admin.php:1826
 msgid "User waiting for permanent deletion"
 msgstr "Użytkownik czekający na trwałe usunięcie"
 
-#: mod/admin.php:1822
+#: mod/admin.php:1827
 msgid "Request date"
 msgstr "Data prośby"
 
-#: mod/admin.php:1823
+#: mod/admin.php:1828
 msgid "No registrations."
 msgstr "Brak rejestracji."
 
-#: mod/admin.php:1824
+#: mod/admin.php:1829
 msgid "Note from the user"
 msgstr "Uwaga od użytkownika"
 
-#: mod/admin.php:1825 mod/notifications.php:178 mod/notifications.php:262
+#: mod/admin.php:1830 mod/notifications.php:178 mod/notifications.php:262
 msgid "Approve"
 msgstr "Zatwierdź"
 
-#: mod/admin.php:1826
+#: mod/admin.php:1831
 msgid "Deny"
 msgstr "Odmów"
 
-#: mod/admin.php:1830
+#: mod/admin.php:1835
 msgid "Site admin"
 msgstr "Administracja stroną"
 
-#: mod/admin.php:1831
+#: mod/admin.php:1836
 msgid "Account expired"
 msgstr "Konto wygasło."
 
-#: mod/admin.php:1834
+#: mod/admin.php:1839
 msgid "New User"
 msgstr "Nowy użytkownik"
 
-#: mod/admin.php:1835
+#: mod/admin.php:1840
 msgid "Deleted since"
 msgstr "Skasowany od"
 
-#: mod/admin.php:1840
+#: mod/admin.php:1845
 msgid ""
 "Selected users will be deleted!\\n\\nEverything these users had posted on "
 "this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr "Zaznaczeni użytkownicy zostaną usunięci!\\n\\nWszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?"
 
-#: mod/admin.php:1841
+#: mod/admin.php:1846
 msgid ""
 "The user {0} will be deleted!\\n\\nEverything this user has posted on this "
 "site will be permanently deleted!\\n\\nAre you sure?"
 msgstr "Użytkownik {0} zostanie usunięty!\\n\\nWszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?"
 
-#: mod/admin.php:1851
+#: mod/admin.php:1856
 msgid "Name of the new user."
 msgstr "Nazwa nowego użytkownika."
 
-#: mod/admin.php:1852
+#: mod/admin.php:1857
 msgid "Nickname"
 msgstr "Pseudonim"
 
-#: mod/admin.php:1852
+#: mod/admin.php:1857
 msgid "Nickname of the new user."
 msgstr "Pseudonim nowego użytkownika."
 
-#: mod/admin.php:1853
+#: mod/admin.php:1858
 msgid "Email address of the new user."
 msgstr "Adres email nowego użytkownika."
 
-#: mod/admin.php:1895
+#: mod/admin.php:1900
 #, php-format
 msgid "Addon %s disabled."
 msgstr "Dodatek %s wyłączony."
 
-#: mod/admin.php:1899
+#: mod/admin.php:1904
 #, php-format
 msgid "Addon %s enabled."
 msgstr "Dodatek %s włączony."
 
-#: mod/admin.php:1909 mod/admin.php:2158
+#: mod/admin.php:1914 mod/admin.php:2163
 msgid "Disable"
 msgstr "Wyłącz"
 
-#: mod/admin.php:1912 mod/admin.php:2161
+#: mod/admin.php:1917 mod/admin.php:2166
 msgid "Enable"
 msgstr "Zezwól"
 
-#: mod/admin.php:1934 mod/admin.php:2203
+#: mod/admin.php:1939 mod/admin.php:2209
 msgid "Toggle"
 msgstr "Włącz"
 
-#: mod/admin.php:1942 mod/admin.php:2212
+#: mod/admin.php:1947 mod/admin.php:2218
 msgid "Author: "
 msgstr "Autor: "
 
-#: mod/admin.php:1943 mod/admin.php:2213
+#: mod/admin.php:1948 mod/admin.php:2219
 msgid "Maintainer: "
 msgstr "Opiekun:"
 
-#: mod/admin.php:1995
+#: mod/admin.php:2000
 msgid "Reload active addons"
 msgstr "Załaduj ponownie aktywne dodatki"
 
-#: mod/admin.php:2000
+#: mod/admin.php:2005
 #, php-format
 msgid ""
 "There are currently no addons available on your node. You can find the "
@@ -5658,70 +5130,70 @@ msgid ""
 " the open addon registry at %2$s"
 msgstr "W twoim węźle nie ma obecnie żadnych dodatków. Możesz znaleźć oficjalne repozytorium dodatków na %1$s i możesz znaleźć inne interesujące dodatki w otwartym rejestrze dodatków na %2$s"
 
-#: mod/admin.php:2120
+#: mod/admin.php:2125
 msgid "No themes found."
 msgstr "Nie znaleziono motywów."
 
-#: mod/admin.php:2194
+#: mod/admin.php:2200
 msgid "Screenshot"
 msgstr "Zrzut ekranu"
 
-#: mod/admin.php:2248
+#: mod/admin.php:2254
 msgid "Reload active themes"
 msgstr "Przeładuj aktywne motywy"
 
-#: mod/admin.php:2253
+#: mod/admin.php:2259
 #, 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:2254
+#: mod/admin.php:2260
 msgid "[Experimental]"
 msgstr "[Eksperymentalne]"
 
-#: mod/admin.php:2255
+#: mod/admin.php:2261
 msgid "[Unsupported]"
 msgstr "[Niewspieralne]"
 
-#: mod/admin.php:2279
+#: mod/admin.php:2285
 msgid "Log settings updated."
 msgstr "Zaktualizowano ustawienia logów."
 
-#: mod/admin.php:2311
+#: mod/admin.php:2317
 msgid "PHP log currently enabled."
 msgstr "Dziennik PHP jest obecnie włączony."
 
-#: mod/admin.php:2313
+#: mod/admin.php:2319
 msgid "PHP log currently disabled."
 msgstr "Dziennik PHP jest obecnie wyłączony."
 
-#: mod/admin.php:2322
+#: mod/admin.php:2328
 msgid "Clear"
 msgstr "Wyczyść"
 
-#: mod/admin.php:2326
+#: mod/admin.php:2332
 msgid "Enable Debugging"
 msgstr "Włącz debugowanie"
 
-#: mod/admin.php:2327
+#: mod/admin.php:2333
 msgid "Log file"
 msgstr "Plik logów"
 
-#: mod/admin.php:2327
+#: mod/admin.php:2333
 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:2328
+#: mod/admin.php:2334
 msgid "Log level"
 msgstr "Poziom logów"
 
-#: mod/admin.php:2330
+#: mod/admin.php:2336
 msgid "PHP logging"
 msgstr "Logowanie w PHP"
 
-#: mod/admin.php:2331
+#: mod/admin.php:2337
 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 "
@@ -5730,37 +5202,71 @@ msgid ""
 "'display_errors' is to enable these options, set to '0' to disable them."
 msgstr "Aby włączyć rejestrowanie błędów i ostrzeżeń PHP, możesz dodać następujące dane do pliku .htconfig.php instalacji. Nazwa pliku ustawiona w linii 'error_log' odnosi się do katalogu najwyższego poziomu friendiki i musi być zapisywalna przez serwer WWW. Opcja '1' dla 'log_errors' i 'display_errors' polega na włączeniu tych opcji, ustawieniu na '0', aby je wyłączyć."
 
-#: mod/admin.php:2362
+#: mod/admin.php:2368
 #, 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/admin.php:2366
+#: mod/admin.php:2372
 #, 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:2457 mod/admin.php:2458 mod/settings.php:767
+#: mod/admin.php:2463 mod/admin.php:2464 mod/settings.php:767
 msgid "Off"
 msgstr "Wyłącz"
 
-#: mod/admin.php:2457 mod/admin.php:2458 mod/settings.php:767
+#: mod/admin.php:2463 mod/admin.php:2464 mod/settings.php:767
 msgid "On"
 msgstr "Włącz"
 
-#: mod/admin.php:2458
+#: mod/admin.php:2464
 #, php-format
 msgid "Lock feature %s"
 msgstr "Funkcja blokady %s"
 
-#: mod/admin.php:2466
+#: mod/admin.php:2472
 msgid "Manage Additional Features"
 msgstr "Zarządzanie dodatkowymi funkcjami"
 
+#: mod/community.php:51
+msgid "Community option not available."
+msgstr "Opcja wspólnotowa jest niedostępna."
+
+#: mod/community.php:68
+msgid "Not available."
+msgstr "Niedostępne."
+
+#: mod/community.php:81
+msgid "Local Community"
+msgstr "Lokalna społeczność"
+
+#: mod/community.php:84
+msgid "Posts from local users on this server"
+msgstr "Wpisy od lokalnych użytkowników na tym serwerze"
+
+#: mod/community.php:92
+msgid "Global Community"
+msgstr "Globalna społeczność"
+
+#: mod/community.php:95
+msgid "Posts from users of the whole federated network"
+msgstr "Wpisy od użytkowników całej sieci stowarzyszonej"
+
+#: mod/community.php:141 mod/search.php:228
+msgid "No results."
+msgstr "Brak wyników."
+
+#: mod/community.php:185
+msgid ""
+"This community stream shows all public posts received by this node. They may"
+" not reflect the opinions of this node’s users."
+msgstr "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/dfrn_confirm.php:74 mod/profiles.php:39 mod/profiles.php:149
 #: mod/profiles.php:196 mod/profiles.php:525
 msgid "Profile not found."
@@ -5992,6 +5498,139 @@ msgid ""
 " bar."
 msgstr "- proszę nie używać tego formularza. Zamiast tego wpisz %s do paska wyszukiwania Diaspory."
 
+#: mod/events.php:105 mod/events.php:107
+msgid "Event can not end before it has started."
+msgstr "Wydarzenie nie może się zakończyć przed jego rozpoczęciem."
+
+#: mod/events.php:114 mod/events.php:116
+msgid "Event title and start time are required."
+msgstr "Wymagany tytuł wydarzenia i czas rozpoczęcia."
+
+#: mod/events.php:393
+msgid "Create New Event"
+msgstr "Stwórz nowe wydarzenie"
+
+#: mod/events.php:507
+msgid "Event details"
+msgstr "Szczegóły wydarzenia"
+
+#: mod/events.php:508
+msgid "Starting date and Title are required."
+msgstr "Data rozpoczęcia i tytuł są wymagane."
+
+#: mod/events.php:509 mod/events.php:510
+msgid "Event Starts:"
+msgstr "Rozpoczęcie wydarzenia:"
+
+#: mod/events.php:509 mod/events.php:521 mod/profiles.php:607
+msgid "Required"
+msgstr "Wymagany"
+
+#: mod/events.php:511 mod/events.php:527
+msgid "Finish date/time is not known or not relevant"
+msgstr "Data/czas zakończenia nie jest znana lub jest nieistotna"
+
+#: mod/events.php:513 mod/events.php:514
+msgid "Event Finishes:"
+msgstr "Zakończenie wydarzenia:"
+
+#: mod/events.php:515 mod/events.php:528
+msgid "Adjust for viewer timezone"
+msgstr "Dopasuj dla strefy czasowej widza"
+
+#: mod/events.php:517
+msgid "Description:"
+msgstr "Opis:"
+
+#: mod/events.php:521 mod/events.php:523
+msgid "Title:"
+msgstr "Tytuł:"
+
+#: mod/events.php:524 mod/events.php:525
+msgid "Share this event"
+msgstr "Udostępnij te wydarzenie"
+
+#: mod/events.php:532 src/Model/Profile.php:862
+msgid "Basic"
+msgstr "Podstawowy"
+
+#: mod/events.php:534 mod/photos.php:1086 mod/photos.php:1435
+#: src/Core/ACL.php:318
+msgid "Permissions"
+msgstr "Uprawnienia"
+
+#: mod/events.php:553
+msgid "Failed to remove event"
+msgstr "Nie udało się usunąć wydarzenia"
+
+#: mod/events.php:555
+msgid "Event removed"
+msgstr "Wydarzenie zostało usunięte"
+
+#: mod/group.php:36
+msgid "Group created."
+msgstr "Grupa utworzona."
+
+#: mod/group.php:42
+msgid "Could not create group."
+msgstr "Nie mogę stworzyć grupy"
+
+#: mod/group.php:56 mod/group.php:157
+msgid "Group not found."
+msgstr "Nie znaleziono grupy"
+
+#: mod/group.php:70
+msgid "Group name changed."
+msgstr "Nazwa grupy zmieniona"
+
+#: mod/group.php:97
+msgid "Save Group"
+msgstr "Zapisz grupę"
+
+#: mod/group.php:102
+msgid "Create a group of contacts/friends."
+msgstr "Stwórz grupę znajomych."
+
+#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421
+msgid "Group Name: "
+msgstr "Nazwa grupy: "
+
+#: mod/group.php:127
+msgid "Group removed."
+msgstr "Grupa usunięta."
+
+#: mod/group.php:129
+msgid "Unable to remove group."
+msgstr "Nie można usunąć grupy."
+
+#: mod/group.php:192
+msgid "Delete Group"
+msgstr "Usuń grupę"
+
+#: mod/group.php:198
+msgid "Group Editor"
+msgstr "Edycja grup"
+
+#: mod/group.php:203
+msgid "Edit Group Name"
+msgstr "Edytuj nazwę grupy"
+
+#: mod/group.php:213
+msgid "Members"
+msgstr "Członkowie"
+
+#: mod/group.php:216 mod/network.php:639
+msgid "Group is empty"
+msgstr "Grupa jest pusta"
+
+#: mod/group.php:229
+msgid "Remove contact from group"
+msgstr "Usuń kontakt z grupy"
+
+#: mod/group.php:253
+msgid "Add contact to group"
+msgstr "Dodaj kontakt do grupy"
+
 #: mod/item.php:114
 msgid "Unable to locate original post."
 msgstr "Nie można zlokalizować oryginalnej wiadomości."
@@ -6023,6 +5662,105 @@ msgstr "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz o
 msgid "%s posted an update."
 msgstr "%s zaktualizował wpis."
 
+#: mod/network.php:194 mod/search.php:37
+msgid "Remove term"
+msgstr "Usuń wpis"
+
+#: mod/network.php:201 mod/search.php:46 src/Content/Feature.php:100
+msgid "Saved Searches"
+msgstr "Zapisywanie wyszukiwania"
+
+#: mod/network.php:202 src/Model/Group.php:413
+msgid "add"
+msgstr "dodaj"
+
+#: 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/network.php:550
+msgid "Messages in this group won't be send to these receivers."
+msgstr "Wiadomości z tej grupy nie będą wysyłane do tych odbiorców."
+
+#: mod/network.php:618
+msgid "No such group"
+msgstr "Nie ma takiej grupy"
+
+#: mod/network.php:643
+#, php-format
+msgid "Group: %s"
+msgstr "Grupa: %s"
+
+#: mod/network.php:669
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione "
+
+#: mod/network.php:672
+msgid "Invalid contact."
+msgstr "Nieprawidłowy kontakt."
+
+#: mod/network.php:943
+msgid "Commented Order"
+msgstr "Porządek według komentarzy"
+
+#: mod/network.php:946
+msgid "Sort by Comment Date"
+msgstr "Sortuj według daty komentarza"
+
+#: mod/network.php:951
+msgid "Posted Order"
+msgstr "Porządek według wpisów"
+
+#: mod/network.php:954
+msgid "Sort by Post Date"
+msgstr "Sortuj według daty postów"
+
+#: mod/network.php:962 mod/profiles.php:594
+#: src/Core/NotificationsManager.php:185
+msgid "Personal"
+msgstr "Osobiste"
+
+#: mod/network.php:965
+msgid "Posts that mention or involve you"
+msgstr "Posty, które wspominają lub angażują Ciebie"
+
+#: mod/network.php:973
+msgid "New"
+msgstr "Nowy"
+
+#: mod/network.php:976
+msgid "Activity Stream - by date"
+msgstr "Strumień aktywności - według daty"
+
+#: mod/network.php:984
+msgid "Shared Links"
+msgstr "Udostępnione łącza"
+
+#: mod/network.php:987
+msgid "Interesting Links"
+msgstr "Interesujące linki"
+
+#: mod/network.php:995
+msgid "Starred"
+msgstr "Ulubione"
+
+#: mod/network.php:998
+msgid "Favourite Posts"
+msgstr "Ulubione posty"
+
+#: mod/notes.php:52 src/Model/Profile.php:944
+msgid "Personal Notes"
+msgstr "Notatki"
+
 #: mod/notifications.php:37
 msgid "Invalid request identifier."
 msgstr "Nieprawidłowe żądanie identyfikatora."
@@ -6073,79 +5811,293 @@ msgstr "Twierdzi, że go znasz:"
 msgid "yes"
 msgstr "tak"
 
-#: mod/notifications.php:198
-msgid "no"
-msgstr "nie"
+#: mod/notifications.php:198
+msgid "no"
+msgstr "nie"
+
+#: mod/notifications.php:199 mod/notifications.php:204
+msgid "Shall your connection be bidirectional or not?"
+msgstr "Czy twoje połączenie ma być dwukierunkowe, czy nie?"
+
+#: mod/notifications.php:200 mod/notifications.php:205
+#, php-format
+msgid ""
+"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
+"also receive updates from them in your news feed."
+msgstr "Przyjmowanie %s jako znajomego pozwala %s zasubskrybować twoje posty, a także otrzymywać od nich aktualizacje w swoim kanale wiadomości."
+
+#: mod/notifications.php:201
+#, php-format
+msgid ""
+"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
+" will not receive updates from them in your news feed."
+msgstr "Zaakceptowanie %s jako subskrybenta umożliwia im subskrybowanie Twoich postów, ale nie otrzymasz od nich aktualizacji w swoim kanale wiadomości."
+
+#: mod/notifications.php:206
+#, php-format
+msgid ""
+"Accepting %s as a sharer allows them to subscribe to your posts, but you "
+"will not receive updates from them in your news feed."
+msgstr "Akceptowanie %s jako udostępniający pozwala im subskrybować twoje posty, ale nie otrzymasz od nich aktualizacji w swoim kanale wiadomości."
+
+#: mod/notifications.php:217
+msgid "Friend"
+msgstr "Znajomy"
+
+#: mod/notifications.php:218
+msgid "Sharer"
+msgstr "Udostępniający/a"
+
+#: mod/notifications.php:218
+msgid "Subscriber"
+msgstr "Subskrybent"
+
+#: mod/notifications.php:273
+msgid "No introductions."
+msgstr "Brak dostępu."
+
+#: mod/notifications.php:314
+msgid "Show unread"
+msgstr "Pokaż nieprzeczytane"
+
+#: mod/notifications.php:314
+msgid "Show all"
+msgstr "Pokaż wszystko"
+
+#: mod/notifications.php:320
+#, php-format
+msgid "No more %s notifications."
+msgstr "Nigdy więcej %s powiadomień."
+
+#: 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 ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Konto nie zostało znalezione, a rejestracja OpenID nie jest dozwolona na tej stronie."
+
+#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:135
+msgid "Login failed."
+msgstr "Logowanie nieudane."
+
+#: mod/photos.php:108 src/Model/Profile.php:905
+msgid "Photo Albums"
+msgstr "Albumy zdjęć"
+
+#: mod/photos.php:109 mod/photos.php:1708
+msgid "Recent Photos"
+msgstr "Ostatnio dodane zdjęcia"
+
+#: mod/photos.php:112 mod/photos.php:1198 mod/photos.php:1710
+msgid "Upload New Photos"
+msgstr "Wyślij nowe zdjęcie"
+
+#: mod/photos.php:126 mod/settings.php:51
+msgid "everybody"
+msgstr "wszyscy"
+
+#: mod/photos.php:184
+msgid "Contact information unavailable"
+msgstr "Informacje kontaktowe są niedostępne."
+
+#: mod/photos.php:204
+msgid "Album not found."
+msgstr "Album nie znaleziony"
+
+#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1149
+msgid "Delete Album"
+msgstr "Usuń album"
+
+#: mod/photos.php:243
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?"
+
+#: mod/photos.php:303 mod/photos.php:314 mod/photos.php:1440
+msgid "Delete Photo"
+msgstr "Usuń zdjęcie"
+
+#: mod/photos.php:312
+msgid "Do you really want to delete this photo?"
+msgstr "Czy na pewno chcesz usunąć to zdjęcie ?"
+
+#: mod/photos.php:655
+msgid "a photo"
+msgstr "zdjęcie"
+
+#: mod/photos.php:655
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$szostał oznaczony tagiem %2$s przez %3$s"
+
+#: mod/photos.php:757
+msgid "Image upload didn't complete, please try again"
+msgstr "Przesyłanie zdjęć nie zostało zakończone, spróbuj ponownie"
+
+#: mod/photos.php:760
+msgid "Image file is missing"
+msgstr "Brak pliku obrazu"
+
+#: mod/photos.php:765
+msgid ""
+"Server can't accept new file upload at this time, please contact your "
+"administrator"
+msgstr "Serwer nie może teraz przyjąć nowego pliku, skontaktuj się z administratorem"
+
+#: mod/photos.php:791
+msgid "Image file is empty."
+msgstr "Plik obrazka jest pusty."
+
+#: mod/photos.php:928
+msgid "No photos selected"
+msgstr "Nie zaznaczono zdjęć"
+
+#: mod/photos.php:1024 mod/videos.php:309
+msgid "Access to this item is restricted."
+msgstr "Dostęp do tego obiektu jest ograniczony."
+
+#: mod/photos.php:1078
+msgid "Upload Photos"
+msgstr "Prześlij zdjęcia"
+
+#: mod/photos.php:1082 mod/photos.php:1144
+msgid "New album name: "
+msgstr "Nazwa nowego albumu:"
+
+#: mod/photos.php:1083
+msgid "or existing album name: "
+msgstr "lub istniejąca nazwa albumu:"
+
+#: mod/photos.php:1084
+msgid "Do not show a status post for this upload"
+msgstr "Nie pokazuj statusu postów dla tego wysłania"
+
+#: mod/photos.php:1094 mod/photos.php:1443 mod/settings.php:1218
+msgid "Show to Groups"
+msgstr "Pokaż Grupy"
+
+#: mod/photos.php:1095 mod/photos.php:1444 mod/settings.php:1219
+msgid "Show to Contacts"
+msgstr "Pokaż kontakty"
+
+#: mod/photos.php:1155
+msgid "Edit Album"
+msgstr "Edytuj album"
+
+#: mod/photos.php:1160
+msgid "Show Newest First"
+msgstr "Najpierw pokaż najnowsze"
+
+#: mod/photos.php:1162
+msgid "Show Oldest First"
+msgstr "Najpierw pokaż najstarsze"
+
+#: mod/photos.php:1183 mod/photos.php:1693
+msgid "View Photo"
+msgstr "Zobacz zdjęcie"
+
+#: mod/photos.php:1224
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Odmowa dostępu. Dostęp do tych danych może być ograniczony."
+
+#: mod/photos.php:1226
+msgid "Photo not available"
+msgstr "Zdjęcie niedostępne"
+
+#: mod/photos.php:1294
+msgid "View photo"
+msgstr "Zobacz zdjęcie"
+
+#: mod/photos.php:1294
+msgid "Edit photo"
+msgstr "Edytuj zdjęcie"
+
+#: mod/photos.php:1295
+msgid "Use as profile photo"
+msgstr "Ustaw jako zdjęcie profilowe"
+
+#: mod/photos.php:1301 src/Object/Post.php:149
+msgid "Private Message"
+msgstr "Wiadomość prywatna"
+
+#: mod/photos.php:1321
+msgid "View Full Size"
+msgstr "Zobacz w pełnym rozmiarze"
+
+#: mod/photos.php:1408
+msgid "Tags: "
+msgstr "Tagi:"
+
+#: mod/photos.php:1411
+msgid "[Remove any tag]"
+msgstr "[Usuń dowolny tag]"
 
-#: mod/notifications.php:199 mod/notifications.php:204
-msgid "Shall your connection be bidirectional or not?"
-msgstr "Czy twoje połączenie ma być dwukierunkowe, czy nie?"
+#: mod/photos.php:1426
+msgid "New album name"
+msgstr "Nazwa nowego albumu"
 
-#: mod/notifications.php:200 mod/notifications.php:205
-#, php-format
-msgid ""
-"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
-"also receive updates from them in your news feed."
-msgstr "Przyjmowanie %s jako znajomego pozwala %s zasubskrybować twoje posty, a także otrzymywać od nich aktualizacje w swoim kanale wiadomości."
+#: mod/photos.php:1427
+msgid "Caption"
+msgstr "Zawartość"
 
-#: mod/notifications.php:201
-#, php-format
-msgid ""
-"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
-" will not receive updates from them in your news feed."
-msgstr "Zaakceptowanie %s jako subskrybenta umożliwia im subskrybowanie Twoich postów, ale nie otrzymasz od nich aktualizacji w swoim kanale wiadomości."
+#: mod/photos.php:1428
+msgid "Add a Tag"
+msgstr "Dodaj tag"
 
-#: mod/notifications.php:206
-#, php-format
+#: mod/photos.php:1428
 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."
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: mod/notifications.php:217
-msgid "Friend"
-msgstr "Znajomy"
+#: mod/photos.php:1429
+msgid "Do not rotate"
+msgstr "Nie obracaj"
 
-#: mod/notifications.php:218
-msgid "Sharer"
-msgstr "Udostępniający/a"
+#: mod/photos.php:1430
+msgid "Rotate CW (right)"
+msgstr "Obróć CW (w prawo)"
 
-#: mod/notifications.php:218
-msgid "Subscriber"
-msgstr "Subskrybent"
+#: mod/photos.php:1431
+msgid "Rotate CCW (left)"
+msgstr "Obróć CCW (w lewo)"
 
-#: mod/notifications.php:273
-msgid "No introductions."
-msgstr "Brak dostępu."
+#: mod/photos.php:1465 src/Object/Post.php:304
+msgid "I like this (toggle)"
+msgstr "Lubię to (zmień)"
 
-#: mod/notifications.php:314
-msgid "Show unread"
-msgstr "Pokaż nieprzeczytane"
+#: mod/photos.php:1466 src/Object/Post.php:305
+msgid "I don't like this (toggle)"
+msgstr "Nie lubię tego (zmień)"
 
-#: mod/notifications.php:314
-msgid "Show all"
-msgstr "Pokaż wszystko"
+#: mod/photos.php:1484 mod/photos.php:1523 mod/photos.php:1596
+#: src/Object/Post.php:407 src/Object/Post.php:803
+msgid "Comment"
+msgstr "Komentarz"
 
-#: mod/notifications.php:320
-#, php-format
-msgid "No more %s notifications."
-msgstr "Nigdy więcej %s powiadomień."
+#: mod/photos.php:1628
+msgid "Map"
+msgstr "Mapa"
+
+#: mod/photos.php:1699 mod/videos.php:387
+msgid "View Album"
+msgstr "Zobacz album"
 
 #: mod/profile.php:37 src/Model/Profile.php:118
 msgid "Requested profile is not available."
 msgstr "Żądany profil jest niedostępny"
 
-#: mod/profile.php:78 mod/profile.php:81 src/Protocol/OStatus.php:1251
+#: mod/profile.php:78 mod/profile.php:81 src/Protocol/OStatus.php:1250
 #, php-format
 msgid "%s's timeline"
 msgstr "%s oś czasu "
 
-#: mod/profile.php:79 src/Protocol/OStatus.php:1252
+#: mod/profile.php:79 src/Protocol/OStatus.php:1251
 #, php-format
 msgid "%s's posts"
 msgstr "%s posty "
 
-#: mod/profile.php:80 src/Protocol/OStatus.php:1253
+#: mod/profile.php:80 src/Protocol/OStatus.php:1252
 #, php-format
 msgid "%s's comments"
 msgstr "%s komentarze "
@@ -6575,35 +6527,52 @@ msgstr "Zarejestruj"
 msgid "Import your profile to this friendica instance"
 msgstr "Zaimportuj swój profil do tej instancji friendica"
 
-#: mod/removeme.php:44
+#: mod/removeme.php:45
 msgid "User deleted their account"
 msgstr "Użytkownik usunął swoje konto"
 
-#: mod/removeme.php:45
+#: mod/removeme.php:46
 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:46
+#: mod/removeme.php:47
 #, php-format
 msgid "The user id is %d"
 msgstr "Identyfikatorem użytkownika jest %d"
 
-#: mod/removeme.php:77 mod/removeme.php:80
+#: mod/removeme.php:78 mod/removeme.php:81
 msgid "Remove My Account"
 msgstr "Usuń moje konto"
 
-#: mod/removeme.php:78
+#: mod/removeme.php:79
 msgid ""
 "This will completely remove your account. Once this has been done it is not "
 "recoverable."
 msgstr "Spowoduje to całkowite usunięcie Twojego konta. Po wykonaniu tej czynności nie można jej cofnąć."
 
-#: mod/removeme.php:79
+#: mod/removeme.php:80
 msgid "Please enter your password for verification:"
 msgstr "Wprowadź hasło w celu weryfikacji."
 
+#: mod/search.php:105
+msgid "Only logged in users are permitted to perform a search."
+msgstr "Tylko zalogowani użytkownicy mogą wyszukiwać."
+
+#: mod/search.php:129
+msgid "Too Many Requests"
+msgstr "Zbyt dużo próśb"
+
+#: mod/search.php:130
+msgid "Only one search per minute is permitted for not logged in users."
+msgstr "Dla niezalogowanych użytkowników dozwolone jest tylko jedno wyszukiwanie na minutę."
+
+#: mod/search.php:234
+#, php-format
+msgid "Items tagged with: %s"
+msgstr "Przedmioty oznaczone tagiem: %s"
+
 #: mod/settings.php:56
 msgid "Account"
 msgstr "Konto"
@@ -6648,7 +6617,7 @@ msgstr "Funkcje zaktualizowane"
 msgid "Relocate message has been send to your contacts"
 msgstr "Przeniesienie wiadomości zostało wysłane do Twoich kontaktów"
 
-#: mod/settings.php:384 src/Model/User.php:339
+#: mod/settings.php:384 src/Model/User.php:340
 msgid "Passwords do not match. Password unchanged."
 msgstr "Hasła nie pasują do siebie. Hasło niezmienione."
 
@@ -6989,7 +6958,7 @@ msgid ""
 msgstr "Po wyłączeniu strona sieciowa jest cały czas aktualizowana, co może być mylące podczas czytania."
 
 #: mod/settings.php:969
-msgid "Bandwith Saver Mode"
+msgid "Bandwidth Saver Mode"
 msgstr "Tryb oszczędzania przepustowości"
 
 #: mod/settings.php:969
@@ -7107,9 +7076,10 @@ msgstr "Opublikować Twój domyślny profil w Twoim lokalnym katalogu stron?"
 #: mod/settings.php:1094
 #, 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."
+"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/settings.php:1100
 msgid "Publish your default profile in the global social directory?"
@@ -7118,10 +7088,9 @@ msgstr "Opublikować Twój domyślny profil w globalnym, społecznościowym kata
 #: mod/settings.php:1100
 #, 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."
+"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/settings.php:1107
 msgid "Hide your contact/friend list from viewers of your default profile?"
@@ -7141,9 +7110,9 @@ msgstr "Ukryć dane Twojego profilu przed anonimowymi widzami?"
 #: mod/settings.php:1111
 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."
+" the nickname you are using on your profile page. Your public posts and "
+"replies will still be accessible by other means."
+msgstr "Anonimowi użytkownicy zobaczą tylko Twoje zdjęcie profilowe, swoją wyświetlaną nazwę i pseudonim, którego używasz na stronie profilu. Twoje publiczne posty i odpowiedzi będą nadal dostępne w inny sposób."
 
 #: mod/settings.php:1115
 msgid "Allow friends to post to your profile page?"
@@ -7409,7 +7378,37 @@ msgstr "Jeśli ten profil został przeniesiony z innego serwera, a niektóre z T
 msgid "Resend relocate message to contacts"
 msgstr "Wyślij ponownie przenieść wiadomości do kontaktów"
 
-#: view/theme/duepuntozero/config.php:54 src/Model/User.php:502
+#: mod/subthread.php:117
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$skolejny %2$s %3$s "
+
+#: mod/update_community.php:27 mod/update_display.php:27
+#: mod/update_network.php:33 mod/update_notes.php:40 mod/update_profile.php:39
+msgid "[Embedded content - reload page to view]"
+msgstr "[Dodatkowa zawartość - odśwież stronę by zobaczyć]"
+
+#: mod/videos.php:139
+msgid "Do you really want to delete this video?"
+msgstr "Czy na pewno chcesz usunąć ten film wideo?"
+
+#: mod/videos.php:144
+msgid "Delete Video"
+msgstr "Usuń wideo"
+
+#: mod/videos.php:207
+msgid "No videos selected"
+msgstr "Nie zaznaczono filmów"
+
+#: mod/videos.php:396
+msgid "Recent Videos"
+msgstr "Ostatnio dodane filmy"
+
+#: mod/videos.php:398
+msgid "Upload New Videos"
+msgstr "Wstaw nowe filmy"
+
+#: view/theme/duepuntozero/config.php:54 src/Model/User.php:504
 msgid "default"
 msgstr "standardowe"
 
@@ -8127,33 +8126,33 @@ msgstr "sekundy"
 msgid "%1$d %2$s ago"
 msgstr "%1$d %2$s temu"
 
-#: src/Content/Text/BBCode.php:416
+#: src/Content/Text/BBCode.php:426
 msgid "view full size"
 msgstr "Zobacz w pełnym wymiarze"
 
-#: src/Content/Text/BBCode.php:842 src/Content/Text/BBCode.php:1611
-#: src/Content/Text/BBCode.php:1612
+#: src/Content/Text/BBCode.php:852 src/Content/Text/BBCode.php:1621
+#: src/Content/Text/BBCode.php:1622
 msgid "Image/photo"
 msgstr "Obrazek/zdjęcie"
 
-#: src/Content/Text/BBCode.php:980
+#: src/Content/Text/BBCode.php:990
 #, 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"
 
-#: src/Content/Text/BBCode.php:1538 src/Content/Text/BBCode.php:1560
+#: src/Content/Text/BBCode.php:1548 src/Content/Text/BBCode.php:1570
 msgid "$1 wrote:"
 msgstr "$1 napisał:"
 
-#: src/Content/Text/BBCode.php:1620 src/Content/Text/BBCode.php:1621
+#: src/Content/Text/BBCode.php:1630 src/Content/Text/BBCode.php:1631
 msgid "Encrypted content"
 msgstr "Szyfrowana treść"
 
-#: src/Content/Text/BBCode.php:1740
+#: src/Content/Text/BBCode.php:1750
 msgid "Invalid source protocol"
 msgstr "Nieprawidłowy protokół źródłowy"
 
-#: src/Content/Text/BBCode.php:1751
+#: src/Content/Text/BBCode.php:1761
 msgid "Invalid link protocol"
 msgstr "Niepoprawny link protokołu"
 
@@ -8397,7 +8396,7 @@ msgstr "Niewierny"
 msgid "Sex Addict"
 msgstr "Uzależniony od seksu"
 
-#: src/Content/ContactSelector.php:169 src/Model/User.php:519
+#: src/Content/ContactSelector.php:169 src/Model/User.php:521
 msgid "Friends"
 msgstr "Przyjaciele"
 
@@ -8846,68 +8845,186 @@ msgstr "Zarządzaj innymi stronami"
 msgid "Profiles"
 msgstr "Profile"
 
-#: src/Content/Nav.php:210
-msgid "Manage/Edit Profiles"
-msgstr "Zarządzaj/Edytuj profile"
+#: src/Content/Nav.php:210
+msgid "Manage/Edit Profiles"
+msgstr "Zarządzaj/Edytuj profile"
+
+#: src/Content/Nav.php:218
+msgid "Site setup and configuration"
+msgstr "Konfiguracja i ustawienia instancji"
+
+#: src/Content/Nav.php:221
+msgid "Navigation"
+msgstr "Nawigacja"
+
+#: src/Content/Nav.php:221
+msgid "Site map"
+msgstr "Mapa strony"
+
+#: src/Database/DBStructure.php:32
+msgid "There are no tables on MyISAM."
+msgstr "W MyISAM nie ma tabel."
+
+#: src/Database/DBStructure.php:75
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tThe friendica developers released update %s recently,\n"
+"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n"
+"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
+"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
+msgstr "\n\t\t\t\tDeweloperzy friendica wydali niedawno aktualizację %s,\n\t\t\t\tale podczas próby instalacji, coś poszło nie tak.\n\t\t\t\tZostanie to naprawione wkrótce i nie mogę tego zrobić sam. Proszę skontaktować się z \n\t\t\t\tprogramistami friendica, jeśli nie możesz mi pomóc na własną rękę. Moja baza danych może być nieprawidłowa."
+
+#: src/Database/DBStructure.php:80
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Komunikat o błędzie jest \n[pre]%s[/ pre]"
+
+#: src/Database/DBStructure.php:191
+#, php-format
+msgid ""
+"\n"
+"Error %d occurred during database update:\n"
+"%s\n"
+msgstr "\nWystąpił błąd %d podczas aktualizacji bazy danych:\n%s\n"
+
+#: src/Database/DBStructure.php:194
+msgid "Errors encountered performing database changes: "
+msgstr "Napotkane błędy powodujące zmiany w bazie danych:"
+
+#: src/Database/DBStructure.php:210
+#, php-format
+msgid "%s: Database update"
+msgstr "%s: Aktualizacja bazy danych:"
+
+#: src/Database/DBStructure.php:460
+#, php-format
+msgid "%s: updating %s table."
+msgstr "%s: aktualizowanie %s tabeli."
+
+#: src/Model/Mail.php:40 src/Model/Mail.php:174
+msgid "[no subject]"
+msgstr "[bez tematu]"
+
+#: src/Model/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."
+
+#: src/Model/Group.php:341
+msgid "Default privacy group for new contacts"
+msgstr "Domyślne ustawienia prywatności dla nowych kontaktów"
+
+#: src/Model/Group.php:374
+msgid "Everybody"
+msgstr "Wszyscy"
+
+#: src/Model/Group.php:394
+msgid "edit"
+msgstr "edytuj"
+
+#: src/Model/Group.php:418
+msgid "Edit group"
+msgstr "Edytuj grupy"
+
+#: src/Model/Group.php:419
+msgid "Contacts not in any group"
+msgstr "Kontakt nie jest w żadnej grupie"
+
+#: src/Model/Group.php:420
+msgid "Create a new group"
+msgstr "Stwórz nową grupę"
+
+#: src/Model/Group.php:422
+msgid "Edit groups"
+msgstr "Edytuj grupy"
+
+#: src/Model/Contact.php:667
+msgid "Drop Contact"
+msgstr "Upuść kontakt"
+
+#: src/Model/Contact.php:1101
+msgid "Organisation"
+msgstr "Organizacja"
+
+#: src/Model/Contact.php:1104
+msgid "News"
+msgstr "Aktualności"
+
+#: src/Model/Contact.php:1107
+msgid "Forum"
+msgstr "Forum"
+
+#: src/Model/Contact.php:1286
+msgid "Connect URL missing."
+msgstr "Brak adresu URL połączenia."
+
+#: src/Model/Contact.php:1295
+msgid ""
+"The contact could not be added. Please check the relevant network "
+"credentials in your Settings -> Social Networks page."
+msgstr "Nie można dodać kontaktu. Sprawdź odpowiednie poświadczenia sieciowe na stronie Ustawienia -> Sieci społecznościowe."
 
-#: src/Content/Nav.php:218
-msgid "Site setup and configuration"
-msgstr "Konfiguracja i ustawienia instancji"
+#: src/Model/Contact.php:1342
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami"
 
-#: src/Content/Nav.php:221
-msgid "Navigation"
-msgstr "Nawigacja"
+#: src/Model/Contact.php:1343 src/Model/Contact.php:1357
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Nie znaleziono żadnych kompatybilnych protokołów komunikacyjnych ani źródeł."
 
-#: src/Content/Nav.php:221
-msgid "Site map"
-msgstr "Mapa strony"
+#: src/Model/Contact.php:1355
+msgid "The profile address specified does not provide adequate information."
+msgstr "Dany adres profilu nie dostarcza odpowiednich informacji."
 
-#: src/Database/DBStructure.php:32
-msgid "There are no tables on MyISAM."
-msgstr "W MyISAM nie ma tabel."
+#: src/Model/Contact.php:1360
+msgid "An author or name was not found."
+msgstr "Autor lub nazwa nie zostało znalezione."
 
-#: src/Database/DBStructure.php:75
-#, php-format
+#: src/Model/Contact.php:1363
+msgid "No browser URL could be matched to this address."
+msgstr "Przeglądarka WWW nie może odnaleźć podanego adresu"
+
+#: src/Model/Contact.php:1366
 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."
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Nie można dopasować @-stylu Adres identyfikacyjny ze znanym protokołem lub kontaktem e-mail."
 
-#: src/Database/DBStructure.php:80
-#, php-format
+#: src/Model/Contact.php:1367
+msgid "Use mailto: in front of address to force email check."
+msgstr "Użyj mailto: przed adresem, aby wymusić sprawdzanie poczty e-mail."
+
+#: src/Model/Contact.php:1373
 msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "Komunikat o błędzie jest \n[pre]%s[/ pre]"
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "Określony adres profilu należy do sieci, która została wyłączona na tej stronie."
 
-#: src/Database/DBStructure.php:191
-#, php-format
+#: src/Model/Contact.php:1378
 msgid ""
-"\n"
-"Error %d occurred during database update:\n"
-"%s\n"
-msgstr "\nWystąpił błąd %d podczas aktualizacji bazy danych:\n%s\n"
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie."
 
-#: src/Database/DBStructure.php:194
-msgid "Errors encountered performing database changes: "
-msgstr "Napotkane błędy powodujące zmiany w bazie danych:"
+#: src/Model/Contact.php:1429
+msgid "Unable to retrieve contact information."
+msgstr "Nie można otrzymać informacji kontaktowych"
 
-#: src/Database/DBStructure.php:210
+#: src/Model/Contact.php:1646 src/Protocol/DFRN.php:1515
 #, php-format
-msgid "%s: Database update"
-msgstr "%s: Aktualizacja bazy danych:"
+msgid "%s's birthday"
+msgstr "Urodziny %s"
 
-#: src/Database/DBStructure.php:460
+#: src/Model/Contact.php:1647 src/Protocol/DFRN.php:1516
 #, php-format
-msgid "%s: updating %s table."
-msgstr "%s: aktualizowanie %s tabeli."
-
-#: src/Model/Mail.php:40 src/Model/Mail.php:174
-msgid "[no subject]"
-msgstr "[bez tematu]"
+msgid "Happy Birthday %s"
+msgstr "Urodziny %s"
 
 #: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419
 #: src/Model/Event.php:882
@@ -8967,40 +9084,20 @@ msgstr "Pokaż mapę"
 msgid "Hide map"
 msgstr "Ukryj mapę"
 
-#: 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."
-
-#: src/Model/Group.php:341
-msgid "Default privacy group for new contacts"
-msgstr "Domyślne ustawienia prywatności dla nowych kontaktów"
-
-#: src/Model/Group.php:374
-msgid "Everybody"
-msgstr "Wszyscy"
-
-#: src/Model/Group.php:394
-msgid "edit"
-msgstr "edytuj"
-
-#: src/Model/Group.php:418
-msgid "Edit group"
-msgstr "Edytuj grupy"
-
-#: src/Model/Group.php:419
-msgid "Contacts not in any group"
-msgstr "Kontakt nie jest w żadnej grupie"
+#: src/Model/Item.php:1883
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
+msgstr "%1$suczestniczy %2$s's %3$s "
 
-#: src/Model/Group.php:420
-msgid "Create a new group"
-msgstr "Stwórz nową grupę"
+#: src/Model/Item.php:1888
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr "%1$snie uczestniczy %2$s's %3$s "
 
-#: src/Model/Group.php:422
-msgid "Edit groups"
-msgstr "Edytuj grupy"
+#: src/Model/Item.php:1893
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr "%1$smogą uczestniczyć %2$s's %3$s "
 
 #: src/Model/Profile.php:97
 msgid "Requested account is not available."
@@ -9128,86 +9225,86 @@ msgstr "Logowanie nieudane"
 msgid "Not enough information to authenticate"
 msgstr "Za mało informacji do uwierzytelnienia"
 
-#: src/Model/User.php:346
+#: src/Model/User.php:347
 msgid "An invitation is required."
 msgstr "Wymagane zaproszenie."
 
-#: src/Model/User.php:350
+#: src/Model/User.php:351
 msgid "Invitation could not be verified."
 msgstr "Zaproszenie niezweryfikowane."
 
-#: src/Model/User.php:357
+#: src/Model/User.php:358
 msgid "Invalid OpenID url"
 msgstr "Nieprawidłowy adres url OpenID"
 
-#: src/Model/User.php:370 src/Module/Login.php:101
+#: src/Model/User.php:371 src/Module/Login.php:101
 msgid ""
 "We encountered a problem while logging in with the OpenID you provided. "
 "Please check the correct spelling of the ID."
 msgstr "Napotkaliśmy problem podczas logowania z podanym przez nas identyfikatorem OpenID. Sprawdź poprawną pisownię identyfikatora."
 
-#: src/Model/User.php:370 src/Module/Login.php:101
+#: src/Model/User.php:371 src/Module/Login.php:101
 msgid "The error message was:"
 msgstr "Komunikat o błędzie:"
 
-#: src/Model/User.php:376
+#: src/Model/User.php:377
 msgid "Please enter the required information."
 msgstr "Wprowadź wymagane informacje"
 
-#: src/Model/User.php:389
+#: src/Model/User.php:390
 msgid "Please use a shorter name."
 msgstr "Użyj dłuższej nazwy."
 
-#: src/Model/User.php:392
+#: src/Model/User.php:393
 msgid "Name too short."
 msgstr "Nazwa jest za krótka."
 
-#: src/Model/User.php:400
+#: src/Model/User.php:401
 msgid "That doesn't appear to be your full (First Last) name."
 msgstr "Wydaje mi się, że to nie jest twoje pełne imię (pierwsze imię) i nazwisko."
 
-#: src/Model/User.php:405
+#: src/Model/User.php:406
 msgid "Your email domain is not among those allowed on this site."
 msgstr "Twoja domena internetowa nie jest obsługiwana na tej stronie."
 
-#: src/Model/User.php:409
+#: src/Model/User.php:410
 msgid "Not a valid email address."
 msgstr "Niepoprawny adres e mail.."
 
-#: src/Model/User.php:413 src/Model/User.php:421
+#: src/Model/User.php:414 src/Model/User.php:422
 msgid "Cannot use that email."
 msgstr "Nie możesz użyć tego e-maila. "
 
-#: src/Model/User.php:428
+#: src/Model/User.php:429
 msgid "Your nickname can only contain a-z, 0-9 and _."
 msgstr "Twój pseudonim może zawierać tylko a-z, 0-9 i _."
 
-#: src/Model/User.php:435 src/Model/User.php:491
+#: src/Model/User.php:436 src/Model/User.php:493
 msgid "Nickname is already registered. Please choose another."
 msgstr "Ten login jest zajęty. Wybierz inny."
 
-#: src/Model/User.php:445
+#: src/Model/User.php:446
 msgid "SERIOUS ERROR: Generation of security keys failed."
 msgstr "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń."
 
-#: src/Model/User.php:478 src/Model/User.php:482
+#: src/Model/User.php:480 src/Model/User.php:484
 msgid "An error occurred during registration. Please try again."
 msgstr "Wystąpił bład podczas rejestracji, Spróbuj ponownie."
 
-#: src/Model/User.php:507
+#: src/Model/User.php:509
 msgid "An error occurred creating your default profile. Please try again."
 msgstr "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie."
 
-#: src/Model/User.php:514
+#: src/Model/User.php:516
 msgid "An error occurred creating your self contact. Please try again."
 msgstr "Wystąpił błąd podczas tworzenia własnego kontaktu. Proszę spróbuj ponownie."
 
-#: src/Model/User.php:523
+#: src/Model/User.php:525
 msgid ""
 "An error occurred creating your default contact group. Please try again."
 msgstr "Wystąpił błąd podczas tworzenia domyślnej grupy kontaktów. Proszę spróbuj ponownie."
 
-#: src/Model/User.php:597
+#: src/Model/User.php:599
 #, php-format
 msgid ""
 "\n"
@@ -9216,12 +9313,12 @@ msgid ""
 "\t\t"
 msgstr "\n\t\t\tDrodzy %1$s, \n\t\t\t\tDziękujemy za rejestrację na stronie %2$s. Twoje konto czeka na zatwierdzenie przez administratora."
 
-#: src/Model/User.php:607
+#: src/Model/User.php:609
 #, php-format
 msgid "Registration at %s"
 msgstr "Rejestracja w %s"
 
-#: src/Model/User.php:625
+#: src/Model/User.php:627
 #, php-format
 msgid ""
 "\n"
@@ -9230,7 +9327,7 @@ msgid ""
 "\t\t"
 msgstr "\n\t\t\tDrodzy %1$s, \n\t\t\t\tDziękujemy za rejestrację na stronie %2$s. Twoje konto zostało utworzone."
 
-#: src/Model/User.php:629
+#: src/Model/User.php:631
 #, php-format
 msgid ""
 "\n"
@@ -9262,130 +9359,32 @@ msgid ""
 "\t\t\tThank you and welcome to %2$s."
 msgstr "\n\t\t\tDane logowania są następuje:\n\t\t\tLokalizacja witryny:\t%3$s\n\t\t\tNazwa użytkownika:\t\t%1$s\n\t\t\tHasło:\t\t%5$s\n\n\t\t\tPo zalogowaniu możesz zmienić hasło do swojego konta na stronie \"Ustawienia\"\n \t\t\tProszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie.\n\n\t\t\tMożesz również dodać podstawowe informacje do swojego domyślnego profilu\n\t\t\t(na stronie \"Profil\"), aby inne osoby mogły łatwo Cię znaleźć.\n\n\t\t\tZalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego,\n\t\t\tdodanie niektórych \"słów kluczowych\" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) - i\n\t\t\tbyć może w jakim kraju mieszkasz; jeśli nie chcesz być bardziej szczegółowy.\n\n\t\t\tW pełni szanujemy Twoje prawo do prywatności i żaden z tych elementów nie jest konieczny.\n\t\t\tJeśli jesteś nowy i nie znasz tutaj nikogo, oni mogą ci pomóc\n\t\t\tmożesz zdobyć nowych interesujących przyjaciół\n\n\t\t\tJeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić w %3$s/Usuń konto\n\n\t\t\tDziękujemy i Zapraszamy do %2$s."
 
-#: src/Model/Contact.php:667
-msgid "Drop Contact"
-msgstr "Upuść kontakt"
-
-#: src/Model/Contact.php:1101
-msgid "Organisation"
-msgstr "Organizacja"
-
-#: src/Model/Contact.php:1104
-msgid "News"
-msgstr "Aktualności"
-
-#: src/Model/Contact.php:1107
-msgid "Forum"
-msgstr "Forum"
-
-#: src/Model/Contact.php:1286
-msgid "Connect URL missing."
-msgstr "Brak adresu URL połączenia."
-
-#: src/Model/Contact.php:1295
-msgid ""
-"The contact could not be added. Please check the relevant network "
-"credentials in your Settings -> Social Networks page."
-msgstr "Nie można dodać kontaktu. Sprawdź odpowiednie poświadczenia sieciowe na stronie Ustawienia -> Sieci społecznościowe."
-
-#: src/Model/Contact.php:1342
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami"
-
-#: src/Model/Contact.php:1343 src/Model/Contact.php:1357
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Nie znaleziono żadnych kompatybilnych protokołów komunikacyjnych ani źródeł."
-
-#: src/Model/Contact.php:1355
-msgid "The profile address specified does not provide adequate information."
-msgstr "Dany adres profilu nie dostarcza odpowiednich informacji."
-
-#: src/Model/Contact.php:1360
-msgid "An author or name was not found."
-msgstr "Autor lub nazwa nie zostało znalezione."
-
-#: src/Model/Contact.php:1363
-msgid "No browser URL could be matched to this address."
-msgstr "Przeglądarka WWW nie może odnaleźć podanego adresu"
-
-#: src/Model/Contact.php:1366
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Nie można dopasować @-stylu Adres identyfikacyjny ze znanym protokołem lub kontaktem e-mail."
-
-#: src/Model/Contact.php:1367
-msgid "Use mailto: in front of address to force email check."
-msgstr "Użyj mailto: przed adresem, aby wymusić sprawdzanie poczty e-mail."
-
-#: src/Model/Contact.php:1373
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "Określony adres profilu należy do sieci, która została wyłączona na tej stronie."
-
-#: src/Model/Contact.php:1378
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie."
-
-#: src/Model/Contact.php:1429
-msgid "Unable to retrieve contact information."
-msgstr "Nie można otrzymać informacji kontaktowych"
-
-#: src/Model/Contact.php:1646 src/Protocol/DFRN.php:1513
-#, php-format
-msgid "%s's birthday"
-msgstr "Urodziny %s"
-
-#: src/Model/Contact.php:1647 src/Protocol/DFRN.php:1514
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Urodziny %s"
-
-#: src/Model/Item.php:1851
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr "%1$suczestniczy %2$s's %3$s "
-
-#: src/Model/Item.php:1856
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr "%1$snie uczestniczy %2$s's %3$s "
+#: src/Protocol/Diaspora.php:2521
+msgid "Sharing notification from Diaspora network"
+msgstr "Wspólne powiadomienie z sieci Diaspora"
 
-#: src/Model/Item.php:1861
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr "%1$smogą uczestniczyć %2$s's %3$s "
+#: src/Protocol/Diaspora.php:3609
+msgid "Attachments:"
+msgstr "Załączniki:"
 
-#: src/Protocol/OStatus.php:1799
+#: src/Protocol/OStatus.php:1798
 #, php-format
 msgid "%s is now following %s."
 msgstr "%sjest teraz następujące %s. "
 
-#: src/Protocol/OStatus.php:1800
+#: src/Protocol/OStatus.php:1799
 msgid "following"
 msgstr "następujący"
 
-#: src/Protocol/OStatus.php:1803
+#: src/Protocol/OStatus.php:1802
 #, php-format
 msgid "%s stopped following %s."
 msgstr "%sprzestał śledzić %s. "
 
-#: src/Protocol/OStatus.php:1804
+#: src/Protocol/OStatus.php:1803
 msgid "stopped following"
 msgstr "przestał śledzić"
 
-#: src/Protocol/Diaspora.php:2521
-msgid "Sharing notification from Diaspora network"
-msgstr "Wspólne powiadomienie z sieci Diaspora"
-
-#: src/Protocol/Diaspora.php:3609
-msgid "Attachments:"
-msgstr "Załączniki:"
-
 #: src/Worker/Delivery.php:415
 msgid "(no subject)"
 msgstr "(bez tematu)"
@@ -9470,8 +9469,12 @@ msgid "This entry was edited"
 msgstr "Ten wpis został zedytowany"
 
 #: src/Object/Post.php:187
-msgid "Remove from your stream"
-msgstr "Usuń ze swojego strumienia"
+msgid "Delete globally"
+msgstr "Usuń globalnie"
+
+#: src/Object/Post.php:187
+msgid "Remove locally"
+msgstr "Usuń lokalnie"
 
 #: src/Object/Post.php:200
 msgid "save to folder"
@@ -9594,15 +9597,15 @@ msgstr "Link"
 msgid "Video"
 msgstr "Video"
 
-#: src/App.php:524
+#: src/App.php:526
 msgid "Delete this item?"
 msgstr "Usunąć ten element?"
 
-#: src/App.php:526
+#: src/App.php:528
 msgid "show fewer"
 msgstr "Pokaż mniej"
 
-#: src/App.php:1114
+#: src/App.php:1117
 msgid "No system theme config value set."
 msgstr "Nie ustawiono wartości konfiguracyjnej zestawu tematycznego."
 
@@ -9610,12 +9613,12 @@ msgstr "Nie ustawiono wartości konfiguracyjnej zestawu tematycznego."
 msgid "toggle mobile"
 msgstr "przełącz na mobilny"
 
-#: update.php:193
-#, php-format
-msgid "%s: Updating author-id and owner-id in item and thread table. "
-msgstr "%s: Aktualizowanie ID autora i właściciela w tabeli pozycji i wątku."
-
 #: boot.php:796
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Aktualizacja %s nie powiodła się. Zobacz dziennik błędów."
+
+#: update.php:193
+#, php-format
+msgid "%s: Updating author-id and owner-id in item and thread table. "
+msgstr "%s: Aktualizowanie ID autora i właściciela w tabeli pozycji i wątku."
index 8ccf61eccb8a029945ee2b15446588f472f790d7..5c82ff999b069af9ff69084f8027bb4716776f6c 100644 (file)
@@ -65,11 +65,6 @@ $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."] = "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 \\nSite Lokalizacja:\t%2\$s\\nLogin 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 ";
-$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."] = "Znacznik zabezpieczeń formularza nie był poprawny. Prawdopodobnie stało się tak, ponieważ formularz został otwarty zbyt długo (> 3 godziny) przed jego przesłaniem.";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Nie można zlokalizować serwera DNS dla bazy danych '%s'";
 $a->strings["Daily posting limit of %d post reached. The post was rejected."] = [
        0 => "",
        1 => "",
@@ -210,6 +205,10 @@ $a->strings["Yes"] = "Tak";
 $a->strings["Permission denied."] = "Brak uprawnień.";
 $a->strings["Archives"] = "Archiwum";
 $a->strings["show more"] = "Pokaż więcej";
+$a->strings["Welcome "] = "Witaj ";
+$a->strings["Please upload a profile photo."] = "Proszę dodać zdjęcie profilowe.";
+$a->strings["Welcome back "] = "Witaj ponownie ";
+$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."] = "Znacznik zabezpieczeń formularza nie był poprawny. Prawdopodobnie stało się tak, ponieważ formularz został otwarty zbyt długo (> 3 godziny) przed jego przesłaniem.";
 $a->strings["newer"] = "nowsze";
 $a->strings["older"] = "starsze";
 $a->strings["first"] = "pierwszy";
@@ -370,7 +369,6 @@ $a->strings["Do you really want to delete this suggestion?"] = "Czy na pewno chc
 $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";
@@ -421,15 +419,6 @@ $a->strings["All Contacts (with secure profile access)"] = "Wszystkie kontakty (
 $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"] = "Zapisywanie 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";
@@ -467,63 +456,6 @@ $a->strings["Contact not found."] = "Kontakt nie znaleziony";
 $a->strings["Friend suggestion sent."] = "Wysłana propozycja dodania do znajomych.";
 $a->strings["Suggest Friends"] = "Zaproponuj znajomych";
 $a->strings["Suggest a friend for %s"] = "Zaproponuj znajomych dla %s";
-$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]"] = "[Usuń dowolny tag]";
-$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["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["Access to this profile has been restricted."] = "Dostęp do tego profilu został ograniczony.";
 $a->strings["Events"] = "Wydarzenia";
 $a->strings["View"] = "Widok";
@@ -625,6 +557,7 @@ $a->strings["Only show archived contacts"] = "Pokaż tylko zarchiwizowane kontak
 $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["Find"] = "Znajdź";
 $a->strings["Update"] = "Zaktualizuj";
 $a->strings["Archive"] = "Archiwum";
@@ -639,6 +572,7 @@ $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["This is you"] = "To jesteś ty";
 $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";
@@ -657,22 +591,6 @@ $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["Post successful."] = "Post dodany pomyślnie";
@@ -759,13 +677,6 @@ $a->strings["Source text"] = "Tekst źródłowy";
 $a->strings["BBCode"] = "BBCode";
 $a->strings["Markdown"] = "Markdown";
 $a->strings["HTML"] = "HTML";
-$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["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.";
@@ -802,31 +713,6 @@ $a->strings["You are cordially invited to join me and other close friends on Fri
 $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["add"] = "dodaj";
-$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [
-       0 => "",
-       1 => "",
-       2 => "",
-       3 => "",
-];
-$a->strings["Messages in this group won't be send to these receivers."] = "Wiadomości z tej grupy nie będą wysyłane do tych odbiorców.";
-$a->strings["No such group"] = "Nie ma takiej grupy";
-$a->strings["Group is empty"] = "Grupa jest pusta";
-$a->strings["Group: %s"] = "Grupa: %s";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione ";
-$a->strings["Invalid contact."] = "Nieprawidłowy kontakt.";
-$a->strings["Commented Order"] = "Porządek według komentarzy";
-$a->strings["Sort by Comment Date"] = "Sortuj według daty komentarza";
-$a->strings["Posted Order"] = "Porządek według wpisów";
-$a->strings["Sort by Post Date"] = "Sortuj według daty postów";
-$a->strings["Personal"] = "Osobiste";
-$a->strings["Posts that mention or involve you"] = "Posty, które wspominają lub angażują Ciebie";
-$a->strings["New"] = "Nowy";
-$a->strings["Activity Stream - by date"] = "Strumień aktywności - według daty";
-$a->strings["Shared Links"] = "Udostępnione łącza";
-$a->strings["Interesting Links"] = "Interesujące linki";
-$a->strings["Starred"] = "Ulubione";
-$a->strings["Favourite Posts"] = "Ulubione posty";
 $a->strings["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ć.";
@@ -902,24 +788,6 @@ $a->strings["%d message"] = [
        2 => " %d wiadomości",
        3 => " %d wiadomości",
 ];
-$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"] = "Edycja grup";
-$a->strings["Edit Group Name"] = "Edytuj nazwę grupy";
-$a->strings["Members"] = "Członkowie";
-$a->strings["Remove contact from group"] = "Usuń kontakt z grupy";
-$a->strings["Add contact to group"] = "Dodaj kontakt do grupy";
-$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["Theme settings updated."] = "Zaktualizowano ustawienia motywów.";
 $a->strings["Information"] = "Informacje";
 $a->strings["Overview"] = "Przegląd";
@@ -1113,6 +981,7 @@ $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["Enabling this may violate privacy laws like the GDPR"] = "Włączenie tego może naruszyć prawa ochrony prywatności, takie jak GDPR";
 $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";
@@ -1194,7 +1063,7 @@ $a->strings["If you have a restricted system where the webserver can't access th
 $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["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "Serwer proxy zwiększa wydajność i prywatność. Nie powinno być używane 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";
@@ -1318,6 +1187,14 @@ $a->strings["Off"] = "Wyłącz";
 $a->strings["On"] = "Włącz";
 $a->strings["Lock feature %s"] = "Funkcja blokady %s";
 $a->strings["Manage Additional Features"] = "Zarządzanie dodatkowymi funkcjami";
+$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["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";
@@ -1373,12 +1250,72 @@ $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["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["Permissions"] = "Uprawnienia";
+$a->strings["Failed to remove event"] = "Nie udało się usunąć wydarzenia";
+$a->strings["Event removed"] = "Wydarzenie zostało usunięte";
+$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"] = "Edycja grup";
+$a->strings["Edit Group Name"] = "Edytuj nazwę grupy";
+$a->strings["Members"] = "Członkowie";
+$a->strings["Group is empty"] = "Grupa jest pusta";
+$a->strings["Remove contact from group"] = "Usuń kontakt z grupy";
+$a->strings["Add contact to group"] = "Dodaj kontakt do grupy";
 $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["Remove term"] = "Usuń wpis";
+$a->strings["Saved Searches"] = "Zapisywanie wyszukiwania";
+$a->strings["add"] = "dodaj";
+$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [
+       0 => "",
+       1 => "",
+       2 => "",
+       3 => "",
+];
+$a->strings["Messages in this group won't be send to these receivers."] = "Wiadomości z tej grupy nie będą wysyłane do tych odbiorców.";
+$a->strings["No such group"] = "Nie ma takiej grupy";
+$a->strings["Group: %s"] = "Grupa: %s";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione ";
+$a->strings["Invalid contact."] = "Nieprawidłowy kontakt.";
+$a->strings["Commented Order"] = "Porządek według komentarzy";
+$a->strings["Sort by Comment Date"] = "Sortuj według daty komentarza";
+$a->strings["Posted Order"] = "Porządek według wpisów";
+$a->strings["Sort by Post Date"] = "Sortuj według daty postów";
+$a->strings["Personal"] = "Osobiste";
+$a->strings["Posts that mention or involve you"] = "Posty, które wspominają lub angażują Ciebie";
+$a->strings["New"] = "Nowy";
+$a->strings["Activity Stream - by date"] = "Strumień aktywności - według daty";
+$a->strings["Shared Links"] = "Udostępnione łącza";
+$a->strings["Interesting Links"] = "Interesujące linki";
+$a->strings["Starred"] = "Ulubione";
+$a->strings["Favourite Posts"] = "Ulubione posty";
+$a->strings["Personal Notes"] = "Notatki";
 $a->strings["Invalid request identifier."] = "Nieprawidłowe żądanie identyfikatora.";
 $a->strings["Discard"] = "Odrzuć";
 $a->strings["Notifications"] = "Powiadomienia";
@@ -1403,6 +1340,58 @@ $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["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["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]"] = "[Usuń dowolny tag]";
+$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["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 timeline"] = "%s oś czasu ";
 $a->strings["%s's posts"] = "%s posty ";
@@ -1515,6 +1504,10 @@ $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["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["Account"] = "Konto";
 $a->strings["Display"] = "Wygląd";
 $a->strings["Social Networks"] = "Portale społecznościowe";
@@ -1605,7 +1598,7 @@ $a->strings["Don't show notices"] = "Nie pokazuj powiadomień";
 $a->strings["Infinite scroll"] = "Nieskończone przewijanie";
 $a->strings["Automatic updates only at the top of the network page"] = "Automatyczne aktualizacje tylko u góry strony sieci";
 $a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "Po wyłączeniu strona sieciowa jest cały czas aktualizowana, co może być mylące podczas czytania.";
-$a->strings["Bandwith Saver Mode"] = "Tryb oszczędzania przepustowości";
+$a->strings["Bandwidth Saver Mode"] = "Tryb oszczędzania przepustowości";
 $a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "Po włączeniu wbudowana zawartość nie jest wyświetlana w automatycznych aktualizacjach, wyświetlają się tylko przy przeładowaniu strony.";
 $a->strings["Smart Threading"] = "Inteligentne wątki";
 $a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = "Włączenie tej opcji powoduje pomijanie wcięcia wątków zewnętrznych, zachowując je w dowolnym miejscu. Działa tylko wtedy, gdy wątki są dostępne i włączone.";
@@ -1630,13 +1623,13 @@ $a->strings["Requires manual approval of contact requests."] = "Wymaga ręcznego
 $a->strings["OpenID:"] = "OpenID:";
 $a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opcjonalnie) Pozwól zalogować się na to konto przy pomocy OpenID.";
 $a->strings["Publish your default profile in your local site directory?"] = "Opublikować Twój domyślny profil w Twoim lokalnym katalogu stron?";
-$a->strings["Your profile will be published in the global friendica directories (e.g. <a href=\"%s\">%s</a>). Your profile will be visible in public."] = "Twój profil zostanie opublikowany w globalnych katalogach friendica (np.<a href=\"%s\">%s</a>). Twój profil będzie widoczny publicznie.";
-$a->strings["Publish your default profile in the global social directory?"] = "Opublikować Twój domyślny profil w globalnym, społecznościowym katalogu?";
 $a->strings["Your profile will be published in this node's <a href=\"%s\">local directory</a>. Your profile details may be publicly visible depending on the system settings."] = "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.";
+$a->strings["Publish your default profile in the global social directory?"] = "Opublikować Twój domyślny profil w globalnym, społecznościowym katalogu?";
+$a->strings["Your profile will be published in the global friendica directories (e.g. <a href=\"%s\">%s</a>). Your profile will be visible in public."] = "Twój profil zostanie opublikowany w globalnych katalogach friendica (np.<a href=\"%s\">%s</a>). Twój profil będzie widoczny publicznie.";
 $a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Ukryć listę znajomych przed odwiedzającymi Twój profil?";
 $a->strings["Your contact list won't be shown in your default profile page. You can decide to show your contact list separately for each additional profile you create"] = "Twoja lista kontaktów nie będzie wyświetlana na domyślnej stronie profilu. Możesz zdecydować o wyświetleniu listy kontaktów osobno dla każdego tworzonego dodatkowego profilu.";
 $a->strings["Hide your profile details from anonymous viewers?"] = "Ukryć dane Twojego profilu przed anonimowymi widzami?";
-$a->strings["Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Disables posting public messages to Diaspora and other networks."] = "Anonimowi użytkownicy zobaczą tylko Twoje zdjęcie profilowe, Twoją wyświetlaną nazwę i pseudonim, którego używasz na stronie profilu. Wyłącza wysyłanie publicznych wiadomości do Diaspory i innych sieci.";
+$a->strings["Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Your public posts and replies will still be accessible by other means."] = "Anonimowi użytkownicy zobaczą tylko Twoje zdjęcie profilowe, swoją wyświetlaną nazwę i pseudonim, którego używasz na stronie profilu. Twoje publiczne posty i odpowiedzi będą nadal dostępne w inny sposób.";
 $a->strings["Allow friends to post to your profile page?"] = "Zezwalać znajomym na publikowanie postów na stronie Twojego profilu?";
 $a->strings["Your contacts may write posts on your profile wall. These posts will be distributed to your contacts"] = "Twoi znajomi mogą pisać posty na stronie Twojego profilu. Posty zostaną przesłane do Twoich kontaktów.";
 $a->strings["Allow friends to tag your posts?"] = "Zezwolić na oznaczanie Twoich postów przez znajomych?";
@@ -1700,6 +1693,13 @@ $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["%1\$s is following %2\$s's %3\$s"] = "%1\$skolejny %2\$s %3\$s ";
+$a->strings["[Embedded content - reload page to view]"] = "[Dodatkowa zawartość - odśwież stronę by zobaczyć]";
+$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["default"] = "standardowe";
 $a->strings["greenzero"] = "greenzero";
 $a->strings["purplezero"] = "purplezero";
@@ -2068,6 +2068,32 @@ $a->strings["Errors encountered performing database changes: "] = "Napotkane bł
 $a->strings["%s: Database update"] = "%s: Aktualizacja bazy danych:";
 $a->strings["%s: updating %s table."] = "%s: aktualizowanie %s tabeli.";
 $a->strings["[no subject]"] = "[bez tematu]";
+$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["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ń";
@@ -2082,14 +2108,9 @@ $a->strings["D g:i A"] = "D g:m AM/PM";
 $a->strings["g:i A"] = "g:m AM/PM";
 $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["%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["Requested account is not available."] = "Żądane konto jest niedostępne.";
 $a->strings["Edit profile"] = "Edytuj profil";
 $a->strings["Atom feed"] = "Kanał Atom";
@@ -2144,33 +2165,12 @@ $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Yo
 $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["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["%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["Sharing notification from Diaspora network"] = "Wspólne powiadomienie z sieci Diaspora";
+$a->strings["Attachments:"] = "Załączniki:";
 $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["(no subject)"] = "(bez tematu)";
 $a->strings["Logged out."] = "Wyloguj";
 $a->strings["Create a New Account"] = "Załóż nowe konto";
@@ -2187,7 +2187,8 @@ $a->strings["This data is required for communication and is passed on to the nod
 $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. Deletion of the data will also be requested from the nodes of the communication partners."] = "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</a>. Usunięcie konta będzie trwałe. Skasowanie danych będzie również wymagane od węzłów partnerów komunikacyjnych.";
 $a->strings["Privacy Statement"] = "Oświadczenie o prywatności";
 $a->strings["This entry was edited"] = "Ten wpis został zedytowany";
-$a->strings["Remove from your stream"] = "Usuń ze swojego strumienia";
+$a->strings["Delete globally"] = "Usuń globalnie";
+$a->strings["Remove locally"] = "Usuń lokalnie";
 $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ć";
@@ -2226,5 +2227,5 @@ $a->strings["Delete this item?"] = "Usunąć ten element?";
 $a->strings["show fewer"] = "Pokaż mniej";
 $a->strings["No system theme config value set."] = "Nie ustawiono wartości konfiguracyjnej zestawu tematycznego.";
 $a->strings["toggle mobile"] = "przełącz na mobilny";
-$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = "%s: Aktualizowanie ID autora i właściciela w tabeli pozycji i wątku.";
 $a->strings["Update %s failed. See error logs."] = "Aktualizacja %s nie powiodła się. Zobacz dziennik błędów.";
+$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = "%s: Aktualizowanie ID autora i właściciela w tabeli pozycji i wątku.";
index 859df01613a7deec6d41f2210da6d072495af0a0..26c69ba37c471696549163232ffe494e42c9ea14 100644 (file)
@@ -550,6 +550,10 @@ function filter_replace(item) {
                this.attr('autocomplete','off');
                var a = this.textcomplete([contacts], {className:'accontacts', appendTo: '#contact-list'});
 
+               if(autosubmit) {
+                       a.on('textComplete:select', function(e,value,strategy) {submit_form(this);});
+               }
+
                a.on('textComplete:select', function(e, value, strategy) {
                        $(".dropdown-menu.textcomplete-dropdown.media-list").show();
                });